@charset "UTF-8";
/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

@font-face {
  font-family: "Honoka-Shin-Antique";
  src: url("../fonts/Honoka-Shin-Antique-Maru_R.otf") format("opentype"), url("../fonts/Honoka-Shin-Antique-Maru_R.ttf") format("truetype");
}
html {
  font-size: 62.5%;
  /* スムーススクロールの設定 */
  /* スクロールした時の間隔を設定 */
}

body {
  background: #FAFAFA;
  color: #222222;
  font-family: "Honoka-Shin-Antique", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  min-width: 375px;
  overflow-x: clip;
  overflow-y: scroll;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 920px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.l-wrapper {
  overflow: clip;
}

.l-inner {
  width: calc(100% - 100px);
  max-width: 1040px;
  margin-inline: auto;
}
@media screen and (max-width: 920px) {
  .l-inner {
    width: 81.86%;
  }
}
.l-inner.-large {
  max-width: 1280px;
}

.c-link-btn {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  gap: 15px;
}
.c-link-btn:hover .c-link-btn__arrow {
  translate: 8px 0;
}
@media screen and (max-width: 920px) {
  .c-link-btn {
    grid-template-columns: max-content max-content;
  }
}

.c-link-btn__text {
  line-height: 1.2;
  font-family: "Oxygen", sans-serif;
}

.c-link-btn__arrow {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/ico_arrow02.svg) no-repeat center center/auto 10px;
  border-radius: 50%;
  background-color: rgba(82, 82, 82, 0.7);
  transition: 0.5s ease-out;
}
@media screen and (max-width: 920px) {
  .c-link-btn__arrow {
    width: 30px;
    height: 30px;
    background-size: auto 10px;
  }
}

.c-heading {
  line-height: 1.2;
  margin-bottom: 80px;
}
@media screen and (max-width: 920px) {
  .c-heading {
    margin-bottom: 50px;
  }
}
.c-heading .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 920px) {
  .c-heading .-en {
    font-size: 3.4rem;
  }
}
.c-heading .-jp {
  margin-top: 5px;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 920px) {
  .c-heading .-jp {
    font-size: 1.2rem;
  }
}

.c-heading-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
}
.c-heading-column > .c-heading {
  margin-bottom: 0;
}
@media screen and (max-width: 920px) {
  .c-heading-column {
    margin-bottom: 50px;
  }
}

.c-item-card a {
  position: relative;
  display: block;
}
.c-item-card a:has(.c-item-card__icon) {
  pointer-events: none;
}
.c-item-card figure img {
  width: 100%;
}

.c-item-card__detail {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (min-width: 920px) {
  .c-item-card__detail {
    padding: 0 7.5%;
  }
}

.c-item-card__color {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.c-item-card__color > li {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.c-item-card__price {
  margin-top: 5px;
  font-family: "Oxygen", sans-serif;
}

.c-item-card__icon {
  position: absolute;
  z-index: 2;
  top: min(3%, 10px);
  right: min(3%, 10px);
  align-content: center;
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background-color: #7B7C7A;
}
@media screen and (max-width: 920px) {
  .c-item-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
}

.c-collection-card {
  position: relative;
  display: block;
  overflow: hidden;
}
.c-collection-card img {
  aspect-ratio: 1/1;
  position: relative;
  transition: 0.7s ease-out;
}
.c-collection-card::before {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.7s ease-out;
}
.c-collection-card:hover img {
  scale: 1.01;
}
.c-collection-card:hover::before {
  opacity: 0;
}

.c-collection-card__text {
  z-index: 2;
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: right;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 920px) {
  .c-collection-card__text {
    right: 13px;
    bottom: 14px;
  }
}
.c-collection-card__text .-en {
  display: block;
  font-family: "Oxygen", sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 920px) {
  .c-collection-card__text .-en {
    font-size: 1.5rem;
  }
}
.c-collection-card__text .-jp {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
}

.c-column-card {
  display: block;
}
.c-column-card figure {
  display: block;
  margin-bottom: 20px;
}
.c-column-card .-date {
  margin-bottom: 10px;
  font-family: "Oxygen", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: #4B4B4B;
}
.c-column-card .-name {
  font-size: 1.6rem;
  line-height: 1.5;
}

.c-arrow-prev,
.c-arrow-next {
  z-index: 5;
  position: absolute;
  cursor: pointer;
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/ico_arrow02.svg) no-repeat center center/auto 19px;
  background-color: rgba(82, 82, 82, 0.7);
  border-radius: 50%;
  transition: 0.5s ease-out;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 920px) {
  .c-arrow-prev,
  .c-arrow-next {
    width: 30px;
    height: 30px;
    background-size: auto 10px;
  }
}
.c-arrow-prev.swiper-button-disabled,
.c-arrow-next.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
.c-arrow-prev.swiper-button-lock,
.c-arrow-next.swiper-button-lock {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.c-arrow-prev {
  left: -43px;
  scale: -1 1;
}
@media screen and (max-width: 920px) {
  .c-arrow-prev {
    left: -20px;
  }
}

.c-arrow-next {
  right: -43px;
}
@media screen and (max-width: 920px) {
  .c-arrow-next {
    right: -20px;
  }
}

.p-mainvisual__image {
  position: relative;
  width: calc(100% - 40px);
  margin: 100px auto 0;
  overflow: hidden;
}
.p-mainvisual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
@media screen and (max-width: 920px) {
  .p-mainvisual__image {
    width: calc(100% - 20px);
    height: calc(100svh - 90px);
    margin: 72px auto 0;
  }
}

.p-mainvisual__video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mainvisual__title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Oxygen", sans-serif;
  font-size: min(5.3vw, 3rem);
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 920px) {
  .p-mainvisual__title {
    padding-top: 8vw;
    padding-left: 5vw;
    letter-spacing: 0.22em;
    color: #7B7C7A;
  }
}
@media screen and (min-width: 920px) {
  .p-mainvisual__title {
    align-content: center;
    text-align: center;
    letter-spacing: 0.28em;
    color: #fff;
    background: radial-gradient(rgba(23, 26, 20, 0.2), rgba(23, 26, 20, 0) 50%);
  }
}

.p-introduction {
  padding-top: 120px;
}

@media screen and (max-width: 920px) {
  .p-introduction__title {
    width: 80%;
  }
}

.p-introduction__desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
}
.p-introduction__desc p {
  font-size: 1.6rem;
}
@media screen and (max-width: 920px) {
  .p-introduction__desc {
    margin-top: 40px;
  }
  .p-introduction__desc .c-link-btn {
    margin-top: 30px;
    margin-left: auto;
  }
}

.p-introduction-image {
  display: grid;
  grid-template-columns: 100px max-content;
  justify-content: end;
  margin-top: 80px;
  margin-bottom: 140px;
}
.p-introduction-image img {
  width: 80vw;
}
@media screen and (min-width: 1200px) {
  .p-introduction-image img {
    width: calc(50vw + 445px);
  }
}
@media screen and (max-width: 920px) {
  .p-introduction-image {
    grid-template-columns: 16.6% 1fr;
    margin-bottom: 84px;
  }
  .p-introduction-image img {
    width: 100%;
    aspect-ratio: 312/202;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 47% bottom;
       object-position: 47% bottom;
  }
}

.p-introduction-image__text {
  display: grid;
  justify-content: end;
  align-items: end;
  writing-mode: vertical-rl;
  font-family: "Oxygen", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
}
@media screen and (max-width: 920px) {
  .p-introduction-image__text {
    padding-right: 13px;
    font-size: 1.33rem;
    align-items: start;
  }
}

.p-series {
  background: #E7F0F3;
}

@media screen and (min-width: 920px) {
  .p-series-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
}
@media screen and (max-width: 920px) {
  .p-series-grid {
    padding-top: 72px;
  }
}

.p-series-menu {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 920px) {
  .p-series-menu {
    padding: 100px 20px 20px;
    border-right: 1px solid #BFC1BD;
  }
}
@media screen and (max-width: 920px) {
  .p-series-menu {
    display: contents;
  }
}

.p-series-menu-box {
  font-family: "Oxygen", sans-serif;
}
@media screen and (min-width: 920px) {
  .p-series-menu-box {
    position: sticky;
    top: 120px;
    line-height: 1.2;
    border: 1px solid #BFC1BD;
    border-radius: 5px;
    overflow: hidden;
  }
}
@media screen and (max-width: 920px) {
  .p-series-menu-box {
    display: contents;
  }
}

.p-series-menu-box__head {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .p-series-menu-box__head {
    padding: 20px;
    font-weight: 300;
    color: #fff;
    background: #5D95D4;
  }
}
@media screen and (max-width: 920px) {
  .p-series-menu-box__head {
    padding: 20px 0;
    line-height: 1;
  }
}

@media screen and (max-width: 920px) {
  .p-series-menu-box__body {
    z-index: 2;
    background: #E7F0F3;
  }
}

@media screen and (min-width: 920px) {
  .p-series-menu-box__list {
    background-color: #fff;
  }
  .p-series-menu-box__list > li {
    border-top: 1px solid #BFC1BD;
  }
}
@media screen and (max-width: 920px) {
  .p-series-menu-box__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(100px, 33.33% - 6px, 150px);
    gap: 9px;
    align-items: start;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .p-series-menu-box__list::-webkit-scrollbar {
    height: 2px;
  }
  .p-series-menu-box__list::-webkit-scrollbar-thumb {
    background: #5D95D4;
    border-radius: 5px;
  }
  .p-series-menu-box__list::-webkit-scrollbar-track {
    background-color: #CFD2D6;
  }
}

@media screen and (min-width: 920px) {
  .p-series-menu-box__item {
    display: grid;
    grid-template-columns: clamp(40px, 27vh - 120px, 75px) 1fr;
    align-items: center;
    gap: 17px;
    padding: 10px;
    transition: background-color 0.55s ease-out;
  }
  .p-series-menu-box__item figure {
    aspect-ratio: 75/66;
  }
  .p-series-menu-box__item .-name {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    word-break: break-all;
  }
  .p-series-menu-box__item.is-active {
    background-color: rgba(93, 149, 212, 0.2);
  }
}
@media screen and (max-width: 920px) {
  .p-series-menu-box__item {
    display: block;
    padding: 9px 7px;
    text-align: center;
  }
  .p-series-menu-box__item .-name {
    margin-top: 9px;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    line-height: 1;
  }
}

.p-series-lineup {
  counter-reset: number 0;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 920px) {
  .p-series-lineup {
    padding-top: 125px;
  }
}

.p-series-lineup__section {
  position: relative;
}
@media screen and (min-width: 920px) {
  .p-series-lineup__section {
    padding: 70px 0 30px min(3.1vw, 40px);
  }
}
@media screen and (max-width: 920px) {
  .p-series-lineup__section {
    padding: 60px 15px;
  }
}
.p-series-lineup__section:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: #BFC1BD;
}
@media screen and (max-width: 920px) {
  .p-series-lineup__section:not(:first-child)::before {
    left: 50%;
    translate: -50% 0;
  }
}

@media screen and (min-width: 1200px) {
  .p-series-lineup__grid {
    display: grid;
    grid-template-columns: 43.5% 56.5%;
  }
}

.p-series-lineup__desc {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-series-lineup__desc {
    z-index: 2;
    padding: 40px 0 0 min(4vw, 60px);
  }
}

.p-series-lineup__name {
  line-height: 1.2;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}
.p-series-lineup__name .-en {
  font-family: "Oxygen", sans-serif;
  font-size: 3.4rem;
}
.p-series-lineup__name .-jp {
  margin-top: 5px;
  font-size: 1.2rem;
}

@media screen and (min-width: 1200px) {
  .p-series-lineup__images {
    padding-left: min(4vw, 60px);
  }
}

.p-series-lineup__slider {
  position: relative;
  max-width: 500px;
  overflow: visible;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 920px) {
  .p-series-lineup__slider::after {
    content: "";
    z-index: 2;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background: #E7F0F3;
  }
}
.p-series-lineup__slider .c-arrow-prev,
.p-series-lineup__slider .c-arrow-next {
  top: 40%;
}
@media screen and (min-width: 1200px) {
  .p-series-lineup__slider {
    margin: 0;
  }
}

.p-product-list__controller:has(.swiper-button-lock) {
  display: none;
}
@media screen and (min-width: 920px) {
  .p-product-list__controller {
    display: contents;
  }
}
@media screen and (max-width: 920px) {
  .p-product-list__controller {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 50px 0 30px;
  }
  .p-product-list__controller .c-arrow-prev,
  .p-product-list__controller .c-arrow-next {
    position: relative;
    top: inherit;
    left: inherit;
    right: inherit;
    translate: 0 0;
  }
}

@media screen and (min-width: 920px) {
  .p-product-list__pager {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .p-product-list__pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    font-family: "Oxygen", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .p-product-list__pager .js-pageNext {
    position: absolute;
  }
  .p-product-list__pager .p-product-list__pager-left > *,
  .p-product-list__pager .p-product-list__pager-right > *,
  .p-product-list__pager .p-product-list__pager-border > * {
    width: 24px;
    padding: 3px 0;
    text-align: center;
  }
  .p-product-list__pager .p-product-list__pager-left {
    position: relative;
    overflow: hidden;
  }
}

.p-series-lineup__footer {
  margin-top: 10px;
  font-family: "Oxygen", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #7B7C7A;
}
.p-series-lineup__footer .-num::before {
  counter-increment: number 1;
  content: "0" counter(number);
}

.p-collection {
  margin-top: 50px;
  padding-top: 90px;
}
@media screen and (max-width: 920px) {
  .p-collection {
    margin-top: 0;
    padding-top: 60px;
  }
}

.p-collection-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 920px) {
  .p-collection-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

.p-collection-footer {
  display: none;
}
@media screen and (max-width: 920px) {
  .p-collection-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }
}

.p-column {
  padding-top: 90px;
}
@media screen and (max-width: 920px) {
  .p-column {
    margin-top: 30px;
    padding-top: 60px;
  }
}

.p-column-list__wrap {
  display: flex;
  border-left: 1px solid #BFC1BD;
}

.p-column-list__item {
  height: auto;
  padding: min(3vw, 40px);
  border: 1px solid #BFC1BD;
  border-left: none;
}

.p-column-list.swiper,
.p-column-list .swiper-wrapper {
  overflow: visible;
}

.p-column-list__controller {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 50px;
  width: 100%;
  max-width: 700px;
  margin: 100px auto 0;
}
.p-column-list__controller .c-arrow-prev,
.p-column-list__controller .c-arrow-next {
  position: relative;
  top: inherit;
  bottom: inherit;
  left: inherit;
  right: inherit;
}
.p-column-list__controller .swiper-scrollbar {
  position: relative;
  width: 100%;
  left: inherit;
  bottom: inherit;
}
.p-column-list__controller .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #5D95D4;
}
@media screen and (max-width: 920px) {
  .p-column-list__controller {
    gap: 24px;
    margin-top: 70px;
  }
}

.p-fixed-campaign {
  z-index: 10;
  position: fixed;
  bottom: 35px;
  left: 35px;
  width: 264px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .p-fixed-campaign {
    width: 48vw;
    max-width: 264px;
    left: 20px;
    bottom: 20px;
  }
}
.p-fixed-campaign a {
  display: block;
}
.p-fixed-campaign a img {
  transition: opacity 0.45s ease-out;
}
.p-fixed-campaign a:hover img {
  opacity: 0.85;
}

.p-fixed-campaign__close {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background: rgba(164, 170, 178, 0.6);
  border-radius: 50%;
}
.p-fixed-campaign__close::before, .p-fixed-campaign__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1px;
  height: 16px;
  background: #fff;
}
.p-fixed-campaign__close::before {
  rotate: 38deg;
}
.p-fixed-campaign__close::after {
  rotate: -38deg;
}
@media screen and (max-width: 920px) {
  .p-fixed-campaign__close {
    width: 22px;
    height: 22px;
  }
  .p-fixed-campaign__close::before, .p-fixed-campaign__close::after {
    height: 50%;
  }
}

.p-fixed-campaign__text {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
}
.p-fixed-campaign__text::after {
  content: "";
  display: block;
  rotate: 45deg;
  width: 10px;
  height: 10px;
  border-right: 1px solid #222222;
  border-top: 1px solid #222222;
}
@media screen and (max-width: 920px) {
  .p-fixed-campaign__text {
    font-size: min(2.8vw, 1.5rem);
    min-height: 34px;
  }
  .p-fixed-campaign__text::after {
    width: 8px;
    height: 8px;
  }
}

.p-fixed-shop {
  z-index: 10;
  position: fixed;
  right: 35px;
  bottom: 35px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.p-fixed-shop a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 50%;
  background: #5D95D4;
  color: #fff;
  transition: filter 0.65s ease-out;
}
.p-fixed-shop a:hover {
  filter: brightness(1.18);
}
@media screen and (max-width: 920px) {
  .p-fixed-shop {
    width: 64px;
    height: 64px;
    right: 20px;
    bottom: 20px;
  }
}

.p-fixed-shop__icon {
  width: 25px;
  margin: 0 auto;
  translate: -12% 0;
}
@media screen and (max-width: 920px) {
  .p-fixed-shop__icon {
    width: 18px;
  }
}

.p-fixed-shop__text {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0.08em;
  font-family: "Oxygen", sans-serif;
}
@media screen and (max-width: 920px) {
  .p-fixed-shop__text {
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.1;
  }
}

.s-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 20px 50px;
  z-index: 999;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease-out;
  transition-property: background-color border-color;
}
@media screen and (max-width: 920px) {
  .s-header {
    height: 72px;
    padding: 10px 30px;
  }
}

.is-mainvisual .s-header {
  background-color: transparent;
}

.is-introduction .s-header,
.is-collection .s-header,
.is-column .s-header {
  background-color: #FAFAFA;
  border-color: #BFC1BD;
}

.is-series .s-header {
  background-color: #E7F0F3;
  border-color: #BFC1BD;
}
.is-series .s-header .s-header-menu-box {
  background-color: #E7F0F3;
}

.s-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.s-header-logo {
  width: 154px;
}
@media screen and (max-width: 920px) {
  .s-header-logo {
    width: 130px;
  }
}

.s-header-menu {
  position: relative;
}

.s-header-menu-btn {
  z-index: 2;
  position: relative;
  display: block;
  width: 52px;
  height: 28px;
}
.s-header-menu-btn::before, .s-header-menu-btn::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 1px;
  background: #222222;
  transform-origin: top center;
  transition: 0.35s ease;
}
.s-header-menu-btn::before {
  top: 8px;
}
.s-header-menu-btn::after {
  bottom: 8px;
}
.s-header-menu-btn:hover::before {
  top: 2px;
}
.s-header-menu-btn:hover::after {
  bottom: 2px;
}
@media screen and (max-width: 920px) {
  .s-header-menu-btn {
    width: 38px;
    height: 22px;
  }
}

.is-active .s-header-menu-btn::before, .is-active .s-header-menu-btn::after {
  transition: 0.3s ease-out;
  translate: -50% -50%;
}
.is-active .s-header-menu-btn::before {
  top: 50%;
  rotate: -30deg;
}
.is-active .s-header-menu-btn::after {
  bottom: 50%;
  rotate: 30deg;
}

.s-header-menu-box {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 226px;
  background-color: #FAFAFA;
  border: 1px solid #BFC1BD;
  transition: background-color 0.3s ease-out;
}

.s-header-menu-box__head {
  position: relative;
  height: 80px;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "Oxygen", sans-serif;
}
.s-header-menu-box__head span {
  position: absolute;
  display: block;
}
.s-header-menu-box__head .-title {
  top: 6px;
  left: 6px;
}
.s-header-menu-box__head .-year {
  top: 22px;
  left: 6px;
  writing-mode: vertical-rl;
}

.s-header-menu-box__list > li:not(:first-child) {
  border-top: 1px solid #BFC1BD;
}

.s-header-menu-box__link {
  display: grid;
  place-content: center;
  width: 100%;
  height: 80px;
  line-height: 1;
  text-align: center;
  transition: background-color 0.55s ease-out;
}
.s-header-menu-box__link .-en {
  display: block;
  font-family: "Oxygen", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.s-header-menu-box__link .-jp {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
}
.s-header-menu-box__link:hover {
  background-color: rgba(93, 149, 212, 0.2);
}

.s-footer {
  display: grid;
  align-items: center;
  place-content: center;
  margin-top: 160px;
  height: 240px;
  background: #E7F0F3;
}
@media screen and (max-width: 920px) {
  .s-footer {
    height: 140px;
  }
}

.s-footer-logo {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 920px) {
  .s-footer-logo {
    width: 163px;
  }
}

.u-en {
  font-family: "Oxygen", sans-serif;
}

@media screen and (min-width: 920px) {
  .u-sp {
    display: none;
  }
}

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