@import url("https://use.typekit.net/rqs8ikq.css");

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes fade-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  80% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@keyframes fade-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  80% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@-webkit-keyframes infinity-scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes infinity-scroll-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes infinity-scroll-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

html {
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: calc(10* (100vw / 1298));
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10* (100vw / 768));
  }
}

body {
  width: 100%;
}

.main-container.__landing-page img,
.main-container.__landing-page video {
  width: 100%;
  height: auto;
}

.main-container.__landing-page a {
  display: block;
}

.main-container.__landing-page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.main-container.__landing-page a,
.main-container.__landing-page picture {
  display: block;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .sp_component {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .main-container.__landing-page .pc_component {
    display: none;
  }

  .main-container.__landing-page .order_1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .main-container.__landing-page .order_2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/*//////////////////////////////////////////////////

Title : _layout.css
For   : "issue_210910" styles of the site

Created       : 2021-09-10
Last Modified : 2021-09-10

==========================================

Content

    common

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            common
============================================================================================== */
.main-container.__landing-page {
  width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #1d1c1a;
  line-height: 1;
  text-align: justify;
  background: #eee4dd;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page {
    padding-bottom: 200px;
  }
}

@media screen and (min-width: 1025px) {
  .main-container.__landing-page {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-container.__landing-page {
    font-size: 12px;
  }
}

.main-container.__landing-page a,
.main-container.__landing-page picture {
  display: block;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landing-page {
    width: 100%;
    padding: 0 0 26.04167vw;
    font-size: 2.08333vw;
  }
}

/*//////////////////////////////////////////////////

Title : _firstview.css
For   : "issue_sample" styles of the site

Created       : 2021-09-10
Last Modified : 2021-09-10

==========================================

Content

    first view

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                          first view
============================================================================================== */
.main-container.__landing-page .firstview__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-animation-name: fade-out;
  animation-name: fade-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background: #000;
  z-index: 100;
}

.main-container.__landing-page .firstview__number {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: 2s linear infinite rotation;
  animation: 2s linear infinite rotation;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .firstview__number {
    width: 62px;
    height: 62px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) and (max-width: 767px) {
  .main-container.__landing-page .firstview__number {
    width: 12.23958vw;
    height: 12.23958vw;
  }
}

/*//////////////////////////////////////////////////

Title : _content.css
For   : "issue_sample" styles of the site

Created       : 2021-09-10
Last Modified : 2021-09-10

==========================================

Content

    content

//////////////////////////////////////////////////*/
/* ==============================================================================================
																						content
============================================================================================== */
.main-container.__landing-page .content__wrapper {
  position: relative;
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__wrapper {
    padding-top: 330px;
  }
}

.main-container.__landing-page .content__index {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  letter-spacing: 0.025em;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__index {
    height: 62px;
    margin-top: 500px;
    padding: 0 90px;
  }
}

.main-container.__landing-page .content__index .index__number {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: 2s linear infinite rotation;
  animation: 2s linear infinite rotation;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__index .index__number {
    width: 60px;
    height: 60px;
  }
}

.main-container.__landing-page .content__lead {
  text-align: center;
}

.main-container.__landing-page .content__lead span {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__lead {
    margin-top: 150px;
    line-height: 1.78571;
  }
}

.main-container.__landing-page .content__block {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__block {
    max-width: 1400px;
    margin: 150px auto 0;
    padding: 0 50px;
  }
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list:nth-of-type(2) {
    margin-top: 180px;
  }
}

.main-container.__landing-page .content__list .logo-pique {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list .logo-pique {
    width: 354px;
    margin-bottom: 90px;
  }
}

.main-container.__landing-page .content__list dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list dl dt {
    padding: 20px 0;
  }

  .main-container.__landing-page .content__list dl dt:not(:nth-of-type(1)) {
    margin-top: 60px;
  }
}

.main-container.__landing-page .content__list dl dt .date {
  letter-spacing: 0.025em;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.main-container.__landing-page .content__list dl dt .title {
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list dl dt .title {
    margin-left: 12.06897%;
    font-size: 9.14286em;
  }
}

.main-container.__landing-page .content__list dl dt .title.pique {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list dl dt .title.pique {
    margin-left: 0;
    font-size: 6.85714em;
  }
}

.main-container.__landing-page .content__list dl dt.active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 3;
}

.main-container.__landing-page .content__list dl dt.active+dd {
  visibility: visible;
  opacity: 1;
}

.main-container.__landing-page .content__list dl dd {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__list dl dd {
    width: 650px;
    height: 850px;
  }
}

.main-container.__landing-page .content__star {
  margin: 0 auto;
  -webkit-animation: 5s linear infinite rotation;
  animation: 5s linear infinite rotation;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__star {
    width: 38px;
    margin-top: 220px;
  }
}

.main-container.__landing-page .content__flow {
  margin: 0 auto;
  overflow: hidden;
}

.main-container.__landing-page .content__flow .flow__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-container.__landing-page .content__flow .flow__block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__flow .flow__block ul li img {
    width: auto;
  }
}

.main-container.__landing-page .content__flow .flow__block--upper ul {
  -webkit-animation: infinity-scroll-left 200s infinite linear 0.5s both;
  animation: infinity-scroll-left 200s infinite linear 0.5s both;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__flow .flow__block--lower {
    margin-top: 10px;
  }
}

.main-container.__landing-page .content__flow .flow__block--lower ul {
  -webkit-animation: infinity-scroll-right 200s infinite linear 0.5s both;
  animation: infinity-scroll-right 200s infinite linear 0.5s both;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__flow--header .flow__block ul li img {
    height: 284px;
  }
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__flow--footer {
    margin-top: 220px;
  }

  .main-container.__landing-page .content__flow--footer .flow__block ul li img {
    height: 104px;
  }
}

.main-container.__landing-page .content__logo {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .main-container.__landing-page .content__logo {
    width: 220px;
    margin-top: 260px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landing-page .content__wrapper {
    padding-top: 52.08333vw;
  }

  .main-container.__landing-page .content__index {
    height: 5.46875vw;
    margin-top: 69.66146vw;
    padding: 0 7.8125vw;
  }

  .main-container.__landing-page .content__index .index__number {
    width: 5.46875vw;
    height: 5.46875vw;
  }

  .main-container.__landing-page .content__lead {
    margin-top: 22.13542vw;
    font-size: 1.95312vw;
    line-height: 1.66667;
  }

  .main-container.__landing-page .content__lead span {
    font-size: 2.08333vw;
  }

  .main-container.__landing-page .content__block {
    margin: 19.53125vw auto 0;
    padding: 0 6.51042vw;
  }

  .main-container.__landing-page .content__list {
    margin-top: 21.48438vw;
  }

  .main-container.__landing-page .content__list .logo-pique {
    width: 38.15104vw;
    margin-bottom: 10.41667vw;
  }

  .main-container.__landing-page .content__list dl dt {
    padding: 2.60417vw 0;
  }

  .main-container.__landing-page .content__list dl dt:not(:nth-of-type(1)) {
    margin-top: 5.20833vw;
  }

  .main-container.__landing-page .content__list dl dt .title {
    margin-left: 8.46354vw;
    font-size: 7.8125vw;
  }

  .main-container.__landing-page .content__list dl dt .title.pique {
    margin-left: 0;
  }

  .main-container.__landing-page .content__list dl dd {
    width: 53.38542vw;
    height: 69.66146vw;
  }

  .main-container.__landing-page .content__star {
    width: 4.94792vw;
    margin-top: 26.04167vw;
  }

  .main-container.__landing-page .content__flow .flow__block ul li img {
    width: auto;
  }

  .main-container.__landing-page .content__flow .flow__block--lower {
    margin-top: 1.30208vw;
  }

  .main-container.__landing-page .content__flow--header .flow__block ul li img {
    height: 24.73958vw;
  }

  .main-container.__landing-page .content__flow--footer {
    margin-top: 27.99479vw;
  }

  .main-container.__landing-page .content__flow--footer .flow__block ul li img {
    height: 12.76042vw;
  }

  .main-container.__landing-page .content__logo {
    width: 21.61458vw;
    margin-top: 29.94792vw;
  }
}

/*# sourceMappingURL=layout.css.map */