@charset "utf-8";

:root {
  --main-color: #4d8290;
  --on-sale-color: #d6331f;
  --text-base-color: #000;
  --text-base-color-light: #fff;
  --done-color: #666666;

  --background-color: #f6f6f6;

  --border-color: #c9c9c9;

  --inria-sans-font: "Inria Sans", sans-serif;
  --inter-font: "Inter", sans-serif;
  --noto-sans-font: "Noto Sans JP", sans-serif;
  --yu-gothic-font: "Yu Gothic Pr6N B", sans-serif;

  --mixed-font: "Inria Sans", "Noto Sans JP", sans-serif;

  --font-size: 100%;

  --pc-width: 92%;
  --pc-max-width-small: 1240px;
  --pc-max-width: 1300px;
  --canvas-width: 1440px;
}

@media (max-width: 375px) {
  :root {
    --font-size: ;
  }
}

@media (min-width: 375px) and (max-width: 600px) {
  :root {
    --font-size: 100%;
  }
}

@media (min-width: 560px) {
  :root {
    --font-size: 120%;
  }
}

@media (min-width: 768px) {
  :root {
    --font-size: 90%;
  }
}

@media (min-width: 1024px) {
  :root {
    --font-size: 100%;
  }
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto-sans-font);
  background: var(--background-color);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
button {
  line-height: 1.5;
}

address {
  font-style: normal;
}

button {
  touch-action: manipulation;
  cursor: pointer;
}

/* ------------------------------------------
Header / Footer
------------------------------------------ */

body:has(.menu-toggle:checked) {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  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;
  z-index: 20;
  background-color: #f6f6f6;
  color: #fff;
  transition: transform 0.4s;
  transform: translateY(-100%);
}

header.is-fixed {
  transform: translateY(0);
}

header a,
header a:hover {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 992px) {
  header {
    padding: 0 46px;
  }
}
header.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
header .menu-toggle {
  display: none;
}
header .menu-toggle:checked + .menu-icon span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  top: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(1) {
    top: 10px;
  }
}
header .menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle:checked + .menu-icon span:nth-child(3) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  bottom: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(3) {
    bottom: 10px;
  }
}
header .menu-toggle:checked + .menu-icon + .menu-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
header .header-logo {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.625rem;
  padding-left: 18px;
}
@media (min-width: 992px) {
  header .header-logo {
    font-size: 0.9375rem;
    padding-left: 0;
  }
}
header .header-logo img {
  width: auto;
  max-width: unset;
  height: 9px;
}
@media (min-width: 600px) {
  header .header-logo img {
    height: initial;
  }
}
header .header-index {
  position: absolute;
  left: 50%;
  max-width: 105px;
  width: 22%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
header .header-index img {
}

header .menu-icon {
  width: 4em;
  height: 3.4em;
  position: relative;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1em;
}
header .menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  border: 0.5px solid #9fa0a0;
  -webkit-transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, transform 0.4s;
  transition: opacity 0s, transform 0.4s, -webkit-transform 0.4s;
}
header .menu-wrapper {
  z-index: 10;
  position: fixed;
  top: 70px;
  right: 0;
  width: 100vw;
  height: calc(100dvh - 70px);
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
  opacity: 0;
  line-height: 2;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: auto;
}
header .menu-wrapper nav {
  width: 250px;
  margin: 40px auto 0;
}
@media (min-width: 600px) {
  header .menu-wrapper nav {
    margin: 85px auto 0;
  }
}
header .menu-wrapper p {
  font-size: 1rem;
  padding: 5px 0;
}
header .menu-wrapper p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (min-width: 600px) {
  header .menu-wrapper p {
    padding: 10px 0;
  }
}
header .menu-wrapper p.top {
  vertical-align: middle;
}
header .menu-wrapper p.top img {
  width: 105px;
}
header .menu-wrapper p.top span {
  vertical-align: middle;
}
header .menu-wrapper p.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
header .menu-wrapper hr {
  height: 1px;
  border: none;
  background-color: #ffffff;
  margin: 15px 0;
}

#instagram {
  background-color: #d6e0ec;
  text-align: center;
  padding: 30px 0;
}
footer #instagram a {
  font-size: 0.875rem;
  display: inline-block;
  color: #434242 !important;
}
#instagram a span {
  font-size: 40px;
  display: block;
  padding-top: 10px;
}

footer {
  position: relative;
  background: #4d8290;
  padding-top: 1px;
  padding-bottom: 1.5rem;
}
footer a {
  text-decoration: none;
  color: #ffffff !important;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
footer .wrapper {
  margin-right: auto;
  margin-left: auto;
}
footer ul {
  list-style: none;
  padding: 0;
}

footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo span {
  display: inline-block;
  width: 1.6em;
  text-align: center;
}
footer .footer-hobo span:before {
  font-size: 1.6em;
}
footer .footer-hobo span.hb-hobo::before {
  font-size: 1.2em;
}
footer .footer-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
    margin-bottom: initial;
  }
}
footer .footer-share img {
  width: 3.2em;
}
@media (min-width: 992px) {
  footer .footer-share img {
    width: 2.8em;
  }
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 17.5rem;
  margin-top: 3em !important;
  padding-top: 1em;
  padding-bottom: 0.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before,
footer .footer-sns::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  border-top: 1px dashed;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.2em;
}
footer .footer-sns li:first-of-type {
  font-size: 0.75rem;
  padding-bottom: 0.2em;
}
footer .footer-store,
footer .footer-copy {
  font-size: 0.96em;
}
footer .footer-store li {
  margin-bottom: 0.4em;
}

.footer-columns-2 .wrapper {
  width: calc(100% - 5rem);
  max-width: 55rem;
}
@media (min-width: 600px) {
  .footer-columns-2 .wrapper {
    display: grid;
    grid-template-columns: minmax(15rem, 1fr) 1fr;
    gap: min(8vw, 7.5rem);
  }
}
.footer-columns-2 .footer-hobo,
.footer-columns-2 .footer-sns,
.footer-columns-2 .footer-store,
.footer-columns-2 .footer-copy {
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  line-height: 2;
}
.footer-columns-2 .footer-store {
  font-size: 0.75rem;
  margin-top: 0;
  margin-bottom: 36px;
}
@media (min-width: 600px) {
  .footer-columns-2 .footer-store {
    margin-top: 1.6em;
  }
}
.footer-columns-2 .footer-copy {
  font-size: 0.75rem;
  margin: 0;
}

footer + footer {
  border-top: 4px solid #ffffff;
}

/* ------------------------------------------
page
------------------------------------------ */
main {
  overflow-x: clip;
}

/* top */
.top {
}

.top__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.top__title {
  position: relative;
  z-index: 2;
  align-self: end;
  grid-column: 1/2;
  grid-row: 1/2;
  width: 42%;

  margin-bottom: 1.25rem;
  margin-left: 1.25rem;
}

.top__title img {
  width: 100%;
  max-width: unset;
}

.topNav {
  display: none;
}

.topNav__list {
}

.topCreator {
  grid-row: 2/3;
  padding: 3.875rem 1.25rem 3.375rem;
  overflow: hidden;
}

.thumbnailSwiper {
  margin-top: 0.5rem;
  max-width: 12.5rem;
  overflow: visible;
}

.thumbnailSwiper__button {
  position: absolute;
  top: 6.25rem;
  width: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.thumbnailSwiper__button--prev {
  left: -1.75rem;
}

.thumbnailSwiper__button--next {
  right: -1.75rem;
}

.thumbnailSwiper__button.swiper-button-disabled {
  display: none;
}

.topCreatorThumbnailList {
  display: none;
}

.topCreator__text {
  max-width: 13.75rem;

  img {
    width: 100%;
  }
}

.topCreator__container {
  display: grid;
  justify-items: center;
  margin-top: 0.625rem;
}

.topCreator__figure {
  display: grid;
  justify-items: center;
  gap: 1.125rem;
  font-size: 0.75rem;
}

.topSwiper {
  grid-column: 1/2;
  grid-row: 1/2;
  min-width: 0;
  width: 100%;
}

.news {
  min-height: 10.625rem;
  padding-block: 1rem;
  color: var(--text-base-color-light);
  background: var(--main-color);
  scroll-margin-top: 70px;
}

.news__inner {
  width: calc(100% - 1.125rem * 2);
  margin-inline: auto;
}

.news__title img {
  width: 3.25rem;
}

.news__list {
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
  margin-left: 1.875rem;
}

.news__item {
  display: flex;
  gap: 2em;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.65;
  line-break: strict;
}

.news__item a {
  color: var(--text-base-color-light);
  text-decoration: none;
}

.content {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 1.875rem;
}

.section {
  order: var(--data-order, 0);
}

.section::after {
  content: "";
  display: block;
  margin-top: 5.625rem;
  width: calc(100% - 1.5625rem);
  height: 1px;
  background: var(--border-color);
  margin-inline: auto;
}

.section__title {
  margin-left: 1.75rem;
}

.section__title img {
  max-width: 100%;
  width: auto;
  height: 3rem;
}

.sectionContents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-top: 2.1875rem;
}

.sectionContentsItem__inner {
  display: grid;
  color: var(--text-base-color);
  text-decoration: none;
}

.sectionContentsItem__inner.comingsoon {
  pointer-events: none;
  opacity: 0.5;
}

.sectionContentsItem__title {
  order: 3;
  margin-top: 0.625rem;
  padding: 0 0.5rem;
  text-align: center;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 2.25;
  line-break: strict;
}

.sectionContentsItem__title span {
  display: inline-block;
}

.sectionContentsItem__label {
  order: 2;
  width: 5.4375rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.sectionContentsItem__image {
  order: 1;
}

.sectionItems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.75rem 0.25rem;
  margin-top: 5rem;
  padding-inline: 1rem;
}

.sectionItem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 0;
  justify-items: center;
}

.sectionItem.is-done {
  /* pointer-events: none; */
}

.sectionItem__inner {
  display: grid;
  grid-row: span 4;
  gap: 0;
  row-gap: 0;
  align-items: start;
  align-content: start;
  justify-items: center;
  text-decoration: none;
  color: var(--text-base-color);
}

.sectionItem__inner.is-soon {
  pointer-events: none;
}

.sectionItem__name {
  grid-row: 2/3;
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.65;
  text-align: center;
}

.sectionItem__price {
  grid-row: 3/4;
  font-size: 0.75rem;
  line-height: 1.65;
  text-align: center;
}

.sectionItem__bottom {
  grid-row: 4/5;
  margin-top: 0.625rem;
  font-family: var(--mixed-font);
}

.sectionItem__badge {
  display: grid;
  place-items: center;
  min-width: 5.375rem;
  width: fit-content;
  margin-inline: auto;
  height: 1.375rem;
  padding-inline: 0.375rem;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-base-color-light);
  background: var(--on-sale-color);
}

.sectionItem__badge.is-done {
  background: var(--done-color);
}

.sectionItem__attention {
  margin-top: 0.5em;
  text-align: center;
  font-family: var(--noto-sans-font);
  font-weight: 700;
  font-size: 0.625rem;
  color: var(--on-sale-color);
}

.sectionItem__img {
  grid-row: 1/2;
}

.sectionSwiper {
  margin-top: 5.25rem;
}

.sectionSwiper .swiper-slide {
  width: 20.625rem;
}

.about {
  padding-block: 5rem;
}

.about__container {
  margin-inline: auto;
  width: calc(100% - 0.75rem * 2);
}

.about__title img {
  width: auto;
  height: 0.875rem;
}

.about__inner {
  display: grid;
  gap: 5rem;
  margin-top: 6rem;
}

.about__logo {
  justify-self: center;
  max-width: 15.625rem;
  width: 100%;
}

.about__logo img {
  width: 100%;
  max-width: unset;
}

.about__content {
  display: grid;
  gap: 5rem;
}

.aboutBlock__title {
  display: flex;
  gap: 1em;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--main-color);
}

.aboutBlock__title::before {
  content: "■";
}

.aboutBlock__body {
  margin-top: 1.75em;
  font-size: 0.75rem;
  line-height: 1.75;
}

.aboutBlock__body p + p {
  margin-top: 1.75em;
}

.aboutBlock__body a {
  color: var(--main-color);
  text-decoration: none;
}

@media (min-width: 992px) {
  .top {
    width: 100%;
    max-width: var(--canvas-width);
    margin-inline: auto;
  }

  .top__container {
    align-items: start;
    grid-template-rows: auto auto 1fr;
    grid-template-columns: 51% 49%;
  }

  .top__title {
    margin-top: 3.875rem;
    margin-left: 3.5rem;
    align-self: start;
    max-width: 12.125rem;
    margin-bottom: 0;
  }

  .topNav {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: block;
    padding-top: 4.125rem;
    padding-left: 3.5rem;
  }

  .topNav__list {
    display: grid;
    gap: 2.5rem;
    padding: 0;
    list-style: none;
  }

  .topNav__list img {
    width: auto;
    height: 0.75rem;
  }

  .topCreator {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding-left: 3.5rem;
    padding-bottom: 5.3125rem;
  }

  .thumbnailSwiper {
    display: none;
  }

  .topCreatorThumbnailList {
    display: flex;
    justify-self: start;
    align-items: flex-end;
    gap: 5rem;
    margin-top: 2.8125rem;
  }

  .topCreator__figure {
    order: var(--data-order, 0);
    flex: 1;
    max-width: 6.25rem;
    margin-top: 0;
    gap: 1.25rem;
    font-size: 0.875rem;
    cursor: pointer;
  }

  .topCreator__figure.is-active {
    flex: 2;
    max-width: 12.5rem;
  }

  .topSwiper {
    grid-column: 2/3;
    grid-row: 1 / span 3;
  }

  .news {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
    min-height: 9.5rem;
  }

  .news__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9.375rem;
    width: var(--pc-width);
    max-width: var(--pc-max-width);
  }

  .news__title {
    margin-top: 0.5rem;
  }

  .news__title img {
    width: 2.6875rem;
  }

  .news__list {
    margin-top: 0;
    margin-left: 0;
  }

  .news__item {
    font-size: 0.875rem;
    line-height: 2;
  }

  .content {
    margin-top: 5rem;
    gap: 7.5rem;
  }

  .section::after {
    margin-top: 5rem;
    width: var(--pc-width);
    max-width: var(--pc-max-width);
  }

  .section__container {
    width: var(--pc-width);
    max-width: var(--pc-max-width);
    margin-inline: auto;
  }

  .section__title {
    margin-left: 0;

    img {
      height: 3.4375rem;
    }
  }

  .sectionContents {
    max-width: var(--pc-max-width-small);
    margin-top: 5rem;
    gap: 0.75rem;
    margin-inline: auto;
  }

  .sectionContentsItem__title {
    margin-top: 1.25rem;
    line-height: 2;
    font-size: 0.875rem;
  }

  .sectionItems {
    gap: 2rem 5rem;
    display: flex;
    flex-wrap: wrap;
    width: var(--pc-width);
    max-width: var(--pc-max-width);
    margin-inline: auto;
    margin-top: 4.375rem;
    padding: 0;
  }

  .sectionItem {
    flex: 1 0 auto;
    max-width: max-content;
  }

  .sectionItem__img {
    max-width: 12.5rem;
    margin-inline: auto;
  }

  .sectionItem__name {
    margin-top: 0.9375rem;
  }

  .sectionSwiper {
    margin-top: 6.875rem;
  }

  .sectionSwiper .swiper-slide {
    width: 25rem;
  }

  .about {
    padding-block: 5rem 10rem;
  }

  .about__container {
    width: var(--pc-width);
    max-width: var(--pc-max-width);
    margin-inline: auto;
  }

  .about__title {
    margin-top: 5.25rem;
  }

  .about__inner {
    justify-content: space-between;
    grid-template-columns: auto auto;
    max-width: 51.875rem;
    margin-top: 4rem;
    margin-inline: auto;
  }

  .about__logo {
    width: 15.625rem;
  }

  .aboutBlock__body {
    margin-top: 2em;
    font-size: 0.875rem;
    line-height: 2;
  }

  .aboutBlock__body p + p {
    margin-top: 2em;
  }

  .aboutBlock__body p span {
    display: block;
  }
}

@media (hover: hover) {
  .topNav__list a {
    transition: opacity 0.2s ease-out;
  }

  .topNav__list a:hover {
    opacity: 0.7;
  }

  .news__item a {
    transition: opacity 0.2s ease-out;
  }

  .news__item a:hover {
    opacity: 0.7;
  }

  .sectionContentsItem__inner {
    transition: opacity 0.2s ease-out;
  }

  .sectionContentsItem__inner:hover {
    opacity: 0.7;
  }

  .sectionItem__inner {
    transition: opacity 0.2s ease-out;
  }
  .sectionItem__inner:hover {
    opacity: 0.7;
  }

  .aboutBlock__body a {
    transition: opacity 0.2s ease-out;
  }
  .aboutBlock__body a:hover {
    opacity: 0.7;
  }
}
