@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@400;500&display=swap";
@import "../vendor/kiso.css" layer(reset);
@import "../vendor/slick.css" layer(slick);
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
@layer reset, slick, base, layout, util;
@layer reset {
  *,
  *::before,
  *::after {
    margin: unset;
    padding: unset;
  }
  * {
    min-width: 0;
    min-height: 0;
  }
  :root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  a {
    touch-action: manipulation;
  }
  dialog {
    position: fixed;
    inset: 0;
    color: unset;
    width: unset;
    height: unset;
  }
}
@layer slick {
  .slick-slider {
    line-height: 0;
  }
}
@layer base {
  :root {
    --design-width: 1440px;
    --design-height: 780px;
    --center-width: 390px;
    --side-width: calc((var(--design-width) - var(--center-width))/ 2);
    --header-height: 60px;
    --content-padding: 30px;
    --side-padding: 30px;
    --holic-blue: #2D3273;
    --holic-brown: #625B4A;
    --holic-gold: #E6AF25;
    --bg: var(--holic-blue);
    --fg: #fff;
    --mincho-font-family: "Zen Old Mincho", serif;
    --kakugo-font-family: "Zen Kaku Gothic New", sans-serif;
    --noto-sans-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
    --transition-duration: 0.4s;
  }
  @media (prefers-reduced-motion: reduce) {
    :root {
      --transition-duration: 0s;
    }
  }
  @media (width > 1440px) {
    :root {
      --design-width: 1920px;
    }
  }
  html {
    background-color: var(--bg);
  }
  body {
    font-family: var(--noto-sans-font-family);
    color: var(--fg);
  }
  :root {
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
  }
  @media (prefers-reduced-motion: reduce) {
    :root {
      scroll-behavior: auto;
    }
  }
  :root:has(dialog[open], :modal) {
    overflow: hidden;
  }
}
@layer layout {
  .layout {
    min-height: 100svh;
  }
  .layout::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;
    background-image: url("../images/pc_bg.svg");
    background-size: var(--design-width);
  }
  .layout .side {
    display: none;
  }
  @media (width > 768px) {
    .layout {
      display: grid;
      grid-template-columns: 1fr var(--center-width) 1fr;
    }
    .layout .side {
      display: revert;
    }
  }
  .side__inner {
    position: sticky;
    top: 0;
    width: min(100%, var(--side-width));
    height: min(100svh, var(--design-height));
    overflow: clip;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: var(--side-padding);
  }
  .side--left .side__inner {
    justify-self: end;
  }
  .side--right .side__inner {
    justify-self: start;
  }
}
.pc-logo {
  max-width: 434px;
  aspect-ratio: 434/335;
}
.pc-logo img {
  display: block;
  object-fit: contain;
}

.side--right::after {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -5;
  width: 630px;
  height: 375px;
  background-image: url("../images/side-right_decoration.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.side-nav {
  z-index: 10;
  width: min(100%, 260px);
  min-height: 258px;
  background-color: #454A8D;
  padding: 38px 18px 30px;
  border-image-source: url("../images/frame.svg");
  border-image-slice: 11.0294117647% 10.9489051095%;
  border-image-outset: 7px;
  border-image-width: 28px;
}
.side-nav > ol {
  display: grid;
  justify-content: center;
  row-gap: 1px;
}
.side-nav ._text {
  display: grid;
  grid-template: "before link after"/12px 1fr 12px;
  align-items: end;
  column-gap: 1px;
  text-align: center;
  text-wrap-style: balance;
  font-family: var(--mincho-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.side-nav ._text::before, .side-nav ._text::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
  background-image: url("../images/cross-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  translate: 0 50%;
  transition-property: opacity;
  transition-duration: calc(var(--transition-duration) / 2);
  transition-timing-function: ease-out;
  transition-behavior: normal;
}
@starting-style {
  .side-nav ._text:has(:hover)::before, .side-nav ._text:has(:hover)::after {
    opacity: 0;
  }
}
.side-nav ._text:not(:has(:hover))::before, .side-nav ._text:not(:has(:hover))::after {
  opacity: 0;
}
.side-nav ._link {
  grid-area: link;
  display: block;
  padding-block: calc((2em - 1lh) / 2);
  position: relative;
}
.side-nav ._link::after {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  height: 1px;
  background-color: #fff;
  transform-origin: right;
  scale: 0 1;
  transition-property: scale;
  transition-timing-function: ease-out;
  transition-duration: calc(var(--transition-duration) / 2);
  transition-behavior: allow-discrete;
}
.side-nav ._link:hover::after {
  transform-origin: left;
  scale: revert;
}

.center {
  background: var(--bg);
  container-type: inline-size;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgb(from #fff r g b/0.6);
  box-shadow: 0 2px 4px 0 rgba(92, 27, 76, 0.2);
  backdrop-filter: blur(5px);
}

.header__inner {
  height: inherit;
  display: grid;
  grid-template-columns: 55fr [logo-start] auto [logo-end] minmax(9px, 26fr) [btn-start] 42fr [btn-end];
  align-items: center;
  padding: 9px;
}

.header-logo {
  grid-area: logo;
  aspect-ratio: 249/43;
  width: min(100%, 249px);
  max-height: 43px;
}
.header-logo__link {
  display: block;
}

.menu-open-btn {
  grid-area: btn;
  justify-self: end;
  display: block;
  aspect-ratio: 1;
  width: 42px;
  height: 42px;
  border-width: 0;
  border-radius: 3px;
  background-color: rgb(from #fff r g b/0.8);
  backdrop-filter: blur(5px);
  background-image: url("../images/menu-open-icon.svg");
  background-size: 100% 100%;
}

.menu-close-btn {
  display: block;
  aspect-ratio: 1;
  width: 34px;
  height: 34px;
  border-width: 0;
  background-color: #1D1D1D;
  backdrop-filter: blur(2.5px);
  background-image: url("../images/menu-close-icon.svg");
  background-size: 100% 100%;
}

.modal-menu {
  margin-block: 20px;
  margin-inline: auto;
  width: 89.7435897436%;
  max-width: 350px;
  max-height: 100svh;
  overflow: visible;
  display: var(--_display-grid, none);
  align-content: start;
  row-gap: 6px;
  background-color: unset;
}
.modal-menu::backdrop {
  background-color: rgb(from var(--holic-blue) r g b/0.8);
  backdrop-filter: blur(7.5px);
}
.modal-menu {
  transition-duration: var(--transition-duration);
  transition-property: display, overlay, opacity;
  transition-timing-function: ease-out;
  transition-behavior: allow-discrete;
}
.modal-menu::backdrop {
  transition: inherit;
  transition-property: opacity;
}
.modal-menu[open], .modal-menu:modal {
  --_display-grid: grid;
}
@starting-style {
  .modal-menu[open], .modal-menu[open]::backdrop, .modal-menu:modal, .modal-menu:modal::backdrop {
    opacity: 0;
  }
}
.modal-menu:not([open], :modal) {
  --_display-grid: none;
}
.modal-menu:not([open], :modal), .modal-menu:not([open], :modal)::backdrop {
  opacity: 0;
}
.modal-menu .menu-close-btn {
  justify-self: end;
}
.modal-menu__inner {
  display: grid;
  margin: 8px;
  border-image-source: url("../images/frame.svg");
  border-image-slice: 11.0294117647% 10.9489051095%;
  border-image-outset: 8px;
  border-image-width: 35px;
}
.modal-menu__body, .modal-menu__footer {
  padding-inline: 17px;
}
.modal-menu__body {
  padding-top: 34px;
  max-height: 100%;
  overflow-y: auto;
}
.modal-menu__logo {
  margin-bottom: 30px;
  margin-inline: auto;
  width: min(100%, 248px);
  max-height: 190px;
  aspect-ratio: 248/190;
}
.modal-menu__logo img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal-menu__nav {
  margin-bottom: 40px;
}
.modal-menu__nav > ol {
  display: grid;
  justify-content: center;
  row-gap: 6px;
}
.modal-menu__nav ._text {
  text-align: center;
  font-family: var(--mincho-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
.modal-menu__footer {
  padding-bottom: 31px;
}
.modal-menu__footer .copyright {
  padding-top: 10px;
  border-top: 1px solid var(--fg);
  text-align: center;
  font-family: var(--kakugo-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.modal-menu__footer .copyright small {
  font-size: inherit;
}

.content {
  padding-inline: var(--content-padding);
  overflow-x: clip;
}

.fv {
  padding-top: 60px;
  padding-bottom: 47px;
  display: grid;
  justify-items: center;
  row-gap: 58px;
  position: relative;
}
.fv > * {
  z-index: 10;
}
.fv::before, .fv::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.fv::before {
  top: 95px;
  width: 106.7272727273%;
  max-width: 352.2px;
  max-height: 207.8px;
  aspect-ratio: 705/416;
  background-image: url("../images/fv_decoration-diamonds.png");
}
.fv::after {
  top: 125px;
  right: calc(-1 * var(--content-padding));
  width: 70px;
  height: 325px;
  aspect-ratio: 70/325;
  background-image: url("../images/fv_decoration-ellipses.png");
}
.fv__title-logo {
  width: min(100%, 330px);
  aspect-ratio: 434/335;
}
.fv__title-logo img {
  display: block;
  object-fit: contain;
}
.fv__visual {
  width: min(100%, 330px);
  aspect-ratio: 331/229;
}
.fv__visual img {
  display: block;
  object-fit: contain;
}

.intro {
  padding-top: 44px;
  padding-bottom: 107px;
  position: relative;
}
.intro::before, .intro::after,
.intro ._wrapper::before {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.intro::before {
  top: -63px;
  left: calc(-1 * var(--content-padding));
  width: 149px;
  height: 205.5px;
  aspect-ratio: 298/411;
  background-image: url("../images/intro_cloud-1.png");
}
.intro::after {
  top: 163px;
  right: calc(-1 * var(--content-padding));
  width: 103.5px;
  height: 96px;
  aspect-ratio: 207/192;
  background-image: url("../images/intro_cloud-2.png");
}
.intro ._wrapper {
  z-index: 10;
  display: grid;
  row-gap: 16px;
}
.intro ._wrapper::before {
  bottom: 0px;
  left: calc(-1 * var(--content-padding));
  width: 165px;
  height: 174px;
  aspect-ratio: 330/348;
  background-image: url("../images/intro_cloud-3.png");
}
.intro .p {
  z-index: inherit;
  text-align: center;
  font-family: var(--mincho-font-family);
  font-size: 18px;
  line-height: 1.8;
}

.section__title {
  padding-block: 30px;
  display: grid;
  justify-content: center;
}
.section__title h2 {
  padding: 12px 30px;
  width: fit-content;
  border: 1px solid #D9D9D9;
  text-align: center;
  font-family: var(--mincho-font-family);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  position: relative;
}
.section__title h2::before, .section__title h2::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.section__title h2::before {
  top: calc(var(--butterfly-1-top, -30px) - 1px);
  left: calc(var(--butterfly-1-left, -56.5px) - 1px);
  width: 85px;
  height: 72px;
  aspect-ratio: 170/144;
  background-image: url("../images/title_butterfly-1.png");
}
.section__title h2::after {
  bottom: calc(var(--butterfly-2-bottom, -18px) - 1px);
  right: calc(var(--butterfly-2-right, -13px) - 1px);
  width: 36px;
  height: 38px;
  aspect-ratio: 36/38;
  background-image: url("../images/title_butterfly-2.png");
}

.info.section {
  scroll-margin-top: 30px;
  padding-bottom: 70px;
  display: grid;
  row-gap: 20px;
}

.info-list {
  margin-bottom: 30px;
}

.info-list-item {
  display: grid;
  grid-template: "date  date " "title arrow"/1fr 40px;
  row-gap: 4px;
  font-family: var(--noto-sans-font-family);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fg);
  /* 外部リンクは矢印あり、リンクなしテキストのみは矢印なし */
}
.info-list-item:not(:last-child) {
  margin-bottom: 14px;
}
.info-list-item ._date {
  grid-area: date;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.info-list-item ._title {
  grid-area: title;
  font-size: 16px;
  line-height: 1.5;
}
.info-list-item {
  position: relative;
}
.info-list-item ._link::before {
  content: "";
  position: absolute;
  inset: 0;
}
.info-list-item::after {
  grid-area: arrow;
  background-image: url("../images/arrow-icon.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px 10px;
}
.info-list-item:has(:any-link)::after {
  content: "";
}

.info-x-btn {
  justify-self: center;
  display: inline-grid;
  place-content: center;
  min-width: 264px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 40px;
  background: linear-gradient(to right, #E6AF25, #FAF1C2);
  color: var(--holic-blue);
  font-family: var(--kakugo-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.goods.section {
  --butterfly-1-left: -55.5px;
  padding-top: 30px;
  background-image: url("../images/bg_line-1.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-inline: calc(-1 * var(--content-padding));
  padding-inline: var(--content-padding);
}
.goods.section .section__title {
  margin-bottom: 40px;
}

.goods-items.sub-section {
  margin-bottom: 54px;
}

.goods-items .item__details {
  margin-bottom: 48px;
  display: grid;
  justify-items: center;
  row-gap: 30px;
}
.goods-items .item__name {
  display: grid;
  row-gap: 6px;
  font-family: var(--mincho-font-family);
}
.goods-items .item__name p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.64px;
}
.goods-items .item__name h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.7;
}
.goods-items .item__img {
  display: grid;
  grid-template: "label " 8px "slider" 400px "note  " 22px;
  width: min(100%, 330px);
  padding-inline: 8px;
}
.goods-items .item__img ._slider {
  grid-area: slider;
  justify-self: center;
  width: 100%;
  margin-inline: 0;
}
@supports (width: 100cqi) {
  .goods-items .item__img ._slider {
    width: 100cqi;
    margin-inline: calc(50% - 50cqi);
  }
}
@media (width <= 768px) {
  .goods-items .item__img ._slider {
    width: 100%;
    margin-inline: 0;
  }
}
.goods-items .item__img-slider {
  --_slide-margin-x: 8px;
}
.goods-items .item__img-slider:has(> * > img) {
  --_slide-margin-x: auto;
}
.goods-items .item__img-slide {
  margin-inline: var(--_slide-margin-x);
  max-width: 314px;
  max-height: 400px;
  aspect-ratio: 314/400;
}
.goods-items .item__img-slide img {
  display: block;
  object-fit: contain;
}
.goods-items .item__img ._label {
  grid-area: label;
  justify-self: end;
  z-index: 5;
  margin-right: 10px;
  padding: 6px;
  width: 30px;
  height: 86px;
  background-color: var(--holic-gold);
  color: var(--holic-blue);
  writing-mode: vertical-rl;
  font-family: var(--mincho-font-family);
  font-size: 18px;
  line-height: 1;
}
.goods-items .item__img ._note {
  grid-area: note;
  text-align: right;
  font-family: var(--mincho-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}
.goods-items .item__desc {
  font-family: var(--mincho-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.goods-items .item__spec ._wrapper {
  margin-bottom: 20px;
  display: grid;
  row-gap: 8px;
}
.goods-items .item__spec ._label {
  width: fit-content;
  border-style: solid;
  border-width: 6px;
  border-image-source: url("../images/label_bg.svg");
  border-image-slice: 18.75% 5.2631578947% fill;
  padding-inline: 9px;
  color: var(--holic-gold);
  font-family: var(--mincho-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.goods-items .item__spec ._maker {
  width: 198px;
  height: 36px;
  aspect-ratio: 11/2;
  object-fit: contain;
}
.goods-items .item__spec ._name {
  font-family: var(--kakugo-font-family);
  font-weight: 500;
  line-height: 1.8;
}
.goods-items .item__spec ._name p {
  font-size: 16px;
}
.goods-items .item__spec ._name h4 {
  font-size: 20px;
  font-weight: inherit;
}
.goods-items .item__spec ._price {
  font-family: var(--kakugo-font-family);
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}
.goods-items .item__spec ._price .yen {
  font-size: 20px;
}
.goods-items .item__spec ._price .tax {
  font-size: 14px;
  display: inline-block;
  text-spacing-trim: normal;
  translate: -4px;
}
.goods-items .item__btn {
  margin-bottom: 15px;
  display: grid;
  align-content: center;
  min-height: 70px;
  padding: 11px;
  background-image: linear-gradient(to right, #E6AF25, #FAF1C2);
  color: var(--holic-blue);
  text-align: center;
  font-family: var(--kakugo-font-family);
  font-weight: 700;
  line-height: normal;
}
.goods-items .item__btn:not(:any-link) {
  background: #EBEBEB;
}
.goods-items .item__btn ._text {
  font-size: 20px;
}
.goods-items .item__btn ._text .small {
  font-size: 14px;
}
.goods-items .item__btn ._subtext {
  margin-top: -1px;
  font-size: 14px;
}
.goods-items .item__notes {
  list-style-type: "・";
  padding-left: 1em;
  font-family: var(--kakugo-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.goods-makers .maker {
  padding-bottom: 70px;
  display: grid;
  justify-items: center;
  row-gap: 24px;
}
.goods-makers .maker__name {
  width: 253px;
  height: 46px;
  aspect-ratio: 11/2;
}
.goods-makers .maker__name img {
  display: block;
  object-fit: contain;
}
.goods-makers .maker__img {
  width: min(100%, 300px);
  max-height: 200px;
  aspect-ratio: 3/2;
}
.goods-makers .maker__desc {
  font-family: var(--kakugo-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-indent: 1em;
}
.goods-makers .maker__desc .no-autospace {
  text-autospace: no-autospace;
}
.goods-makers .maker__desc .period {
  display: inline-block;
  text-indent: 0px;
  width: 0px;
}
.goods-makers .maker__sns {
  display: grid;
  grid-template-columns: 46px 44px;
  align-items: center;
  column-gap: 30px;
}
.goods-makers .maker__sns-link {
  display: grid;
  aspect-ratio: 1;
}
.goods-makers .maker__sns-link.instagram {
  --_icon-img: url("../images/instagram-icon.png");
}
.goods-makers .maker__sns-link.x-twitter {
  --_icon-img: url("../images/x-twitter-icon.png");
}
.goods-makers .maker__sns-link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: var(--_icon-img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.xxxHOLiC.section {
  --butterfly-1-left: -44.5px;
  --butterfly-2-right: -17px;
  padding-top: 30px;
  padding-bottom: 70px;
  background-image: url("../images/bg_line-2.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-inline: calc(-1 * var(--content-padding));
  padding-inline: var(--content-padding);
  display: grid;
  justify-items: center;
  row-gap: 30px;
}
.xxxHOLiC__visual {
  width: min(100%, 300px);
  max-height: 371px;
  aspect-ratio: 300/371;
}
.xxxHOLiC__visual img {
  display: block;
  object-fit: contain;
}
.xxxHOLiC__logo {
  width: 216px;
  height: 142px;
  aspect-ratio: 216/142;
}
.xxxHOLiC__logo img {
  display: block;
  object-fit: contain;
}
.xxxHOLiC__desc {
  font-family: var(--mincho-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.link.section {
  --butterfly-1-left: -51px;
  --butterfly-2-right: -16px;
  padding-bottom: 70px;
}
.link.section .section__title {
  margin-bottom: 30px;
}
.link-list {
  display: grid;
  grid-auto-rows: 70px;
  row-gap: 14px;
}
.link-list-item {
  display: grid;
}
.link .link__btn {
  padding: 12px 36px;
  display: grid;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #E6AF25, #FAF1C2);
  color: var(--holic-blue);
  text-align: center;
  font-family: var(--kakugo-font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.footer {
  padding-top: 10px;
  padding-bottom: 20px;
  border-top: 1px solid var(--fg);
}
.footer .copyright {
  text-align: center;
  font-family: var(--kakugo-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.footer .copyright small {
  font-size: inherit;
}

@layer util {
  .visually-hidden {
    position: absolute !important;
    inset: 0 !important;
    contain: strict !important;
    visibility: initial !important;
    width: 4px !important;
    height: 4px !important;
    margin: unset !important;
    padding: unset !important;
    border: unset !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
/* --- In-view animation --- */
@media (prefers-reduced-motion: no-preference) and (scripting: enabled) {
  [data-inview] {
    transition-timing-function: ease;
    transition-property: opacity, translate;
  }
  [data-inview]:not([data-inviewed=true]) {
    opacity: 0;
    translate: 0 10px;
  }
  [data-inview][data-inviewed=true]:not(:focus-within) {
    transition-duration: var(--transition-duration);
  }
}

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