@charset "UTF-8";
/* ==========================================================================
  Reset
========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, main {
  display: block;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

ul, li, ol {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
}

em {
  font-style: normal;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
　Base
========================================================================== */
* {
  box-sizing: border-box;
  font-size: 100%;
  position: relative;
}

html {
  font-size: 62.5%;
  height: 100%;
}
@media (max-width: 45rem) {
  html {
    font-size: 56%;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background: #f6f5fb;
  color: #000;
  font-weight: normal;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 0;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0, 0, 0);
}
a::after {
  transition: all 0.5s ease-in-out;
}
a:hover {
  opacity: 0.8;
}

.hover_nomove:hover {
  transform: none;
}

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

.header {
  position: relative;
  background: #fff;
  padding: 0 2rem;
  height: 12rem;
}
@media (max-width: 600px) {
  .header {
    display: flex;
    height: 10rem;
  }
}
.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.header__logo {
  width: 8rem;
}
@media (max-width: 600px) {
  .header__logo {
    width: 7rem;
  }
}
.header__sns {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.header__sns-icon {
  width: 3.5rem;
}
.header__sns-icon--large {
  width: 8rem;
}

.p-index {
  max-width: 94rem;
  width: 100%;
  margin: auto;
  padding: 0 2rem;
  margin-top: 5rem;
}
.p-index__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 600px) {
  .p-index__list {
    gap: 4rem;
  }
}
.p-index__list-item img {
  border-radius: 1rem;
}
.p-index__list-link--soon {
  border-radius: 1rem;
  display: block;
}
.p-index__list-link--soon::after {
  border-radius: 1rem;
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(115, 115, 159, 0.8);
  left: 0;
  top: 0;
}
.p-index__list-text {
  color: #f7efef;
  position: absolute;
  font-weight: bold;
  font-size: 4rem;
  left: 0;
  top: 0;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: rotate(-5deg);
}
@media (max-width: 500px) {
  .p-index__list-text {
    font-size: 3rem;
  }
}

.footer {
  margin-top: 12rem;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: #d9d9e2;
}
.footer__copy {
  margin-top: 1rem;
}
.footer__top {
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 10rem;
  border-radius: 1rem 1rem 0 0;
  position: absolute;
  top: -4rem;
  background: #d9d9e2;
  right: 2vw;
}
@media (max-width: 600px) {
  .footer__top {
    padding: 1rem 5rem;
    right: 2rem;
  }
}

.p-page {
  max-width: 94rem;
  width: 100%;
  margin: 2rem auto 0;
}
.p-page__block {
  display: flex;
  flex-direction: column;
}
.p-page__line {
  margin: 2rem auto;
}
.p-page__detail, .p-page__detail--sixth, .p-page__detail--fifth, .p-page__detail--fourth, .p-page__detail--third, .p-page__detail--second {
  border: solid 1px #c6c4c4;
  padding: 2rem;
  margin: 0 3rem;
  background: #fff;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .p-page__detail, .p-page__detail--sixth, .p-page__detail--fifth, .p-page__detail--fourth, .p-page__detail--third, .p-page__detail--second {
    margin: 0;
    border-width: 1px 0;
    padding: 2rem 1.4rem;
  }
}
.p-page__detail--second .p-page__title-box {
  background: #736ba7;
}
.p-page__detail--second .p-page__btn {
  color: #736ba7;
  border-color: #736ba7;
}
.p-page__detail--second .p-page__btn:hover {
  background: #736ba7;
}
.p-page__detail--third .p-page__title-box {
  background: #b0272f;
}
.p-page__detail--third .p-page__btn {
  color: #b0272f;
  border-color: #b0272f;
}
.p-page__detail--third .p-page__btn:hover {
  background: #b0272f;
}
.p-page__detail--fourth .p-page__title-box {
  background: #909046;
}
.p-page__detail--fourth .p-page__btn {
  color: #909046;
  border-color: #909046;
}
.p-page__detail--fourth .p-page__btn:hover {
  background: #909046;
}
.p-page__detail--fifth .p-page__title-box {
  background: #c06550;
}
.p-page__detail--fifth .p-page__btn {
  color: #c06550;
  border-color: #c06550;
}
.p-page__detail--fifth .p-page__btn:hover {
  background: #c06550;
}
.p-page__detail--sixth .p-page__title-box {
  background: #a54b4b;
}
.p-page__detail--sixth .p-page__btn {
  color: #a54b4b;
  border-color: #a54b4b;
}
.p-page__detail--sixth .p-page__btn:hover {
  background: #a54b4b;
}
.p-page__title-box {
  background: #91485b;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.7rem 3rem;
  width: max-content;
  border-radius: 5px;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.p-page__btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .p-page__btn-box {
    flex-direction: column;
  }
}
.p-page__btn {
  border-radius: 5rem;
  width: max-content;
  font-size: 1.8rem;
  font-weight: bold;
  color: #91485b;
  padding: 0.8rem 5rem;
  background: #fff;
  border: solid 2px #91485b;
  transition: 0.5s;
}
@media (max-width: 600px) {
  .p-page__btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
  }
}
.p-page__btn:hover {
  background: #91485b;
  color: #fff;
}/*# sourceMappingURL=style.css.map */