@charset "UTF-8";
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* font
---------------------------------------------*/
.font--m {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* common
---------------------------------------------*/
body {
  width: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  overflow-y: hidden;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

.wrapper {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

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

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}

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

.inner {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .inner {
    max-width: 800px;
    padding: 0 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 769px) {
  main {
    padding-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 75px;
  }
}

/* load
---------------------------------------------*/
.load {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 100;
}

.load img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: fade 1s ease-in-out infinite none alternate;
          animation: fade 1s ease-in-out infinite none alternate;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 769px) {
  .load img {
    width: 14%;
  }
}

@media screen and (max-width: 768px) {
  .load img {
    width: 25%;
  }
}

/* header
---------------------------------------------*/
.header {
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  position: fixed;
  z-index: 90;
  display: none;
}

@media screen and (min-width: 769px) {
  .header {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}

.header .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .header .left {
    gap: 15px;
    left: 4.7%;
  }
}

@media screen and (max-width: 768px) {
  .header .left {
    gap: 10px;
    left: 3%;
  }
}

.header .left__logo a {
  display: block;
}

@media screen and (min-width: 769px) {
  .header .left__logo a {
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .header .left__logo a {
    width: 100px;
  }
}

@media screen and (min-width: 769px) {
  .header .left__logo a:hover {
    opacity: 0.7;
  }
}

.header .left__title {
  color: #434343;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 769px) {
  .header .left__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .header .left__title {
    font-size: 10px;
  }
}

.header .right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .header .right {
    width: 24px;
    right: 4.7%;
  }
}

@media screen and (max-width: 768px) {
  .header .right {
    width: 20px;
    right: 3%;
  }
}

.header .right a {
  display: block;
}

@media screen and (min-width: 769px) {
  .header .right a:hover {
    opacity: 0.7;
  }
}

/* top
---------------------------------------------*/
.top {
  background-size: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 769px) {
  .top {
    background-image: url(../images/top/top_pc.jpg);
    background-position: left bottom;
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .top {
    background-image: url(../images/top/top_sp.jpg);
    background-position: right bottom;
    height: calc(var(--vh, 1vh) * 100);
  }
}

.top__title {
  position: absolute;
}

@media screen and (min-width: 769px) {
  .top__title {
    left: 49.5%;
    top: 33.5%;
  }
}

@media screen and (max-width: 768px) {
  .top__title {
    right: 24%;
    top: 11%;
  }
}

.top__text--big {
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {
  .top__text--big {
    font-size: 4.1vw;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top__text--big {
    font-size: 27px;
    margin-bottom: 12px;
  }
}

.top__text--m {
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {
  .top__text--m {
    font-size: 2.7vw;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top__text--m {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 769px) {
  .top__text--type,
  .top .typed-cursor {
    font-size: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .top__text--type,
  .top .typed-cursor {
    font-size: 13px;
  }
}

/* section
---------------------------------------------*/
@media screen and (min-width: 769px) {
  section {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 768px) {
  section {
    margin-bottom: 150px;
  }
}

@media screen and (min-width: 769px) {
  section:last-child {
    margin-bottom: 180px;
  }
}

@media screen and (max-width: 768px) {
  section:last-child {
    margin-bottom: 125px;
  }
}

.list {
  width: 100%;
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 769px) {
  .list {
    gap: 20px;
    -ms-grid-columns: calc(50% - 10px) calc(50% - 10px);
        grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .list {
    gap: 8px;
    -ms-grid-columns: calc(50% - 4px) calc(50% - 4px);
        grid-template-columns: calc(50% - 4px) calc(50% - 4px);
  }
}

.list .item {
  position: relative;
}

.list .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.item--slide a {
  display: block;
}

@media screen and (min-width: 769px) {
  .item--slide a:hover {
    opacity: 0.7;
  }
}

.modalOpen {
  position: absolute;
}

@media screen and (min-width: 769px) {
  .modalOpen {
    width: 34px;
    height: 34px;
    bottom: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .modalOpen {
    width: 4.6vw;
    height: 4.6vw;
    bottom: 6px;
    right: 6px;
  }
}

.modalOpen::before, .modalOpen::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
}

.modalOpen::before {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .modalOpen::before {
    height: 2px;
  }
}

@media screen and (max-width: 768px) {
  .modalOpen::before {
    height: 1px;
  }
}

.modalOpen::after {
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
  .modalOpen::after {
    width: 2px;
  }
}

@media screen and (max-width: 768px) {
  .modalOpen::after {
    width: 1px;
  }
}

@media screen and (min-width: 769px) {
  .modalOpen--big {
    width: 38px;
    height: 38px;
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .modalOpen--big {
    width: 6.6vw;
    height: 6.6vw;
    bottom: 15px;
    right: 15px;
  }
}

/* secA
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .secA .list {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "Amain Amain" "A1 A2" "A3 A3" "A4 A5";
  }
}

@media screen and (max-width: 768px) {
  .secA .list {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "Amain Amain" "A1 A2" "A3 A3" "A4 A5";
  }
}

.secA .list .item--main {
  grid-area: Amain;
  position: relative;
}

.secA .list .item--main .item__text {
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  position: absolute;
}

@media screen and (min-width: 769px) {
  .secA .list .item--main .item__text {
    font-size: 38px;
    left: 20px;
    top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .secA .list .item--main .item__text {
    font-size: 6.2vw;
    left: 15px;
    top: 15px;
  }
}

.secA .list .item--1 {
  grid-area: A1;
}

.secA .list .item--2 {
  grid-area: A2;
}

.secA .list .item--3 {
  grid-area: A3;
}

.secA .list .item--4 {
  grid-area: A4;
}

.secA .list .item--5 {
  grid-area: A5;
}

/* secB
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .secB .list {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "Bmain Bmain" "B2 B4" "B2 B5" "B3 B6";
  }
}

@media screen and (max-width: 768px) {
  .secB .list {
    -ms-grid-rows: auto auto auto auto auto;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas: "Bmain Bmain" "B1 B1" "B2 B4" "B2 B5" "B3 B6";
  }
}

.secB .list .item--main {
  grid-area: Bmain;
  position: relative;
}

.secB .list .item--main .item__text {
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
}

@media screen and (min-width: 769px) {
  .secB .list .item--main .item__text {
    font-size: 38px;
    left: 20px;
    top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .secB .list .item--main .item__text {
    font-size: 6.2vw;
    left: 15px;
    top: 15px;
  }
}

.secB .list .item--1 {
  grid-area: B1;
}

.secB .list .item--2 {
  grid-area: B2;
}

.secB .list .item--3 {
  grid-area: B3;
}

.secB .list .item--4 {
  grid-area: B4;
}

.secB .list .item--5 {
  grid-area: B5;
}

.secB .list .item--6 {
  grid-area: B6;
}

/* secC
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .secC .list {
    -ms-grid-rows: auto auto auto auto auto;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas: "Cmain Cmain" "C1 C2" "C1 C3" "C4 C6" "C5 C6";
  }
}

@media screen and (max-width: 768px) {
  .secC .list {
    -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "Cmain Cmain" "C1 C1" "C4 C6" "C5 C6";
  }
}

.secC .list .item--main {
  grid-area: Cmain;
  position: relative;
}

.secC .list .item--main .item__text {
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(90deg) translateX(100%);
          transform: rotate(90deg) translateX(100%);
  position: absolute;
}

@media screen and (min-width: 769px) {
  .secC .list .item--main .item__text {
    font-size: 38px;
    right: 20px;
    top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .secC .list .item--main .item__text {
    font-size: 6.2vw;
    right: 15px;
    top: 15px;
  }
}

.secC .list .item--1 {
  grid-area: C1;
}

.secC .list .item--2 {
  grid-area: C2;
}

.secC .list .item--3 {
  grid-area: C3;
}

.secC .list .item--4 {
  grid-area: C4;
}

.secC .list .item--5 {
  grid-area: C5;
}

.secC .list .item--6 {
  grid-area: C6;
}

/* modal
---------------------------------------------*/
.modalWrap {
  overflow-y: overlay;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  display: none;
}

.modalWrap .modalBack {
  background-color: rgba(0, 0, 0, 0.4);
  margin-bottom: 100vh;
}

@media screen and (min-width: 769px) {
  .modalWrap .modalBack {
    padding: 100px 5%;
  }
}

@media screen and (max-width: 768px) {
  .modalWrap .modalBack {
    padding: 50px 5%;
  }
}

.modalWrap .modalInner {
  background-color: #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .modalWrap .modalInner {
    max-width: 550px;
    padding: 60px 125px;
  }
}

@media screen and (max-width: 768px) {
  .modalWrap .modalInner {
    max-width: 88%;
    padding: 30px 6%;
  }
}

@media screen and (min-width: 769px) {
  .modalWrap .modalInner--yoko {
    max-width: 750px;
  }
}

.modalClose {
  position: absolute;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .modalClose {
    width: 70px;
    height: 70px;
    top: 15px;
    left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .modalClose {
    width: 30px;
    height: 30px;
    top: 25px;
    left: 5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.modalClose::before, .modalClose::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
}

.modalClose::before {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  height: 2px;
}

.modalClose::after {
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 2px;
}

.modalMain {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .modalMain {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .modalMain {
    margin-bottom: 28px;
  }
}

.credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .credit {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .credit {
    gap: 25px 4%;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .credit li {
    max-width: 170px;
  }
}

@media screen and (max-width: 768px) {
  .credit li {
    width: 48%;
  }
}

.credit li a {
  display: block;
  color: #000;
}

@media screen and (min-width: 769px) {
  .credit li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .credit li a {
    font-size: 11px;
  }
}

@media screen and (min-width: 769px) {
  .credit li a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .credit__top {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .credit__top {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 769px) {
  .credit__img {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 768px) {
  .credit__img {
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 769px) {
  .credit__name {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 768px) {
  .credit__name {
    margin-bottom: 5px;
  }
}

.credit__buy {
  border: 1px solid #000;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .credit__buy {
    line-height: 22px;
    font-size: 12px;
  }
}

/* staff
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .staff {
    margin-bottom: 180px;
  }
}

@media screen and (max-width: 768px) {
  .staff {
    margin-bottom: 125px;
  }
}

.staff__text {
  color: #000;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

/* footer
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .footer {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 75px;
  }
}

.footer__logo {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .footer__logo {
    width: 100px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 73px;
    margin-bottom: 25px;
  }
}

.footer__logo a {
  display: block;
}

@media screen and (min-width: 769px) {
  .footer__logo a:hover {
    opacity: 0.7;
  }
}

.footer__copy {
  color: #000;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .footer__copy {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 10px;
  }
}
/*# sourceMappingURL=style.css.map */