@charset "utf-8";
/*********************************
絶対領域 1/4 真希波・マリ・イラストリアス
2026.08.19 - STYLE - MARI
*********************************/
/* =========================================
   HEADER
========================================= */
.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--c-blk);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--container));
  height: 100%;
  margin-inline: auto;
}
/* Logo
----------------------------------------- */
.site-header__logo {
  position: relative;
  z-index: 2;
  display: block;
  flex-shrink: 0;
}
.site-header__logo img {
  display: block;
  width: 150px;
}
/* =========================================
   MENU TOGGLE
========================================= */
.menu-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
}
.menu-toggle__line {
  display: block;
  width: 32px;
  height: 2px;
  margin-inline: auto;
  background: var(--c-wht);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}
/* OPEN */
.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* =========================================
   GLOBAL MENU
========================================= */
.global-menu {
  position: fixed;
  z-index: var(--z-drawer);
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-h));
  background: var(--c-blk);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.global-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.global-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 40px, var(--container));
  height: 100%;
  margin-inline: auto;
}
.global-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.global-menu__link {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  color: var(--c-wht);
  font-family: var(--font-en);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;

  transition: opacity 0.25s ease;
}
.global-menu__link:hover {
  color: var(--c-wht);
  opacity: 0.6;
}
/* =========================================
   MENU OPEN
========================================= */
body.is-menu-open {
  overflow: hidden;
}
/* =========================================
   SP
========================================= */
@media (max-width: 767px) {
  .site-header__inner {
    width: calc(100% - 32px);
  }
  .site-header__logo img {
    max-height: 40px;
    width: 110px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .menu-toggle__line {
    width: 28px;
  }
  .global-menu__inner {
    width: calc(100% - 32px);
  }
  .global-menu__list {
    gap: 24px;
  }
  .global-menu__link {
    font-size: 1.5rem;
  }
}
/* =========================================
   Common Section
========================================= */
.section {
  position: relative;
}
.section__inner {
  width: min(
    var(--container),
    calc(100% - (var(--sp-unit) * 2))
  );
  margin-inline: auto;
}
/* =========================================
   MAIN CONTENTS
========================================= */
main {
  padding-top: var(--header-h);
}
/* Hero
----------------------------------------- */
.hero__inner {
  position: relative;
  background:
    #fff
    url(/brand/absolutezone/assets/image/azn_mari/hero-bg.avif)
    50% 0
    no-repeat;
  line-height: 0;
  text-align: center;
}
.hero__image {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin-inline: auto;
}
/* テキスト領域 */
.hero__content {
  position: absolute;
  top: 75%;
  left: 50%;
  width: min(
    var(--container),
    calc(100% - (var(--sp-unit) * 2))
  );
  transform: translate(-50%, -50%);
  text-align: left;
  pointer-events: none;
  container-type: inline-size;
}
.hero__content-inner {
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
.hero__series-logo {
  width: 20cqi;
  filter: drop-shadow(1px 1px 4px #3b1b2a) drop-shadow(1px 1px 4px #3b1b2a);
}
.hero__series-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-mn);
  font-size: 6cqi;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
  filter: drop-shadow(1px 1px 4px #3b1b2a)drop-shadow(1px 1px 4px #3b1b2a)drop-shadow(1px 1px 8px #3b1b2a);
}
@media (max-width: 767px) {
	.hero__title {
		font-size: 7cqi;
	}
}
/* Usp / Story
----------------------------------------- */
.section-about {
  background-color: var(--c-blk);
  color: var(--c-wht);
}
.about__content {
  width: min(920px, 100%);
  margin-inline: auto;
  padding-block: 96px;
  container-type: inline-size;
}
.about__title {
  margin: 0 0 32px;
  font-family: var(--font-mn);
  font-size: calc(var(--fs-base) * 3);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.about__title span {
  color: #bb2429;
}
.about__text {
  margin: 0;
  font-family: var(--font-mn);
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .about__content {
    width: 100%;
    padding-block: 64px;
  }
  .about__title {
    margin-bottom: 24px;
    font-size: 6.5cqi;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }
  .about__text {
    font-size: var(--fs-base);
    letter-spacing: 0.04em;
  }
}
/* =========================================
   Product
========================================= */
.section.section-product:before {
	content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
	background-image: url(/brand/absolutezone/assets/image/azn_mari/bg_all_cmn.avif);
  background-size: cover;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center top;
}
.section-product {
  overflow: hidden;
  background:
    linear-gradient(
      to top,
      #160000 0%,
      rgba(22, 0, 0, 0.8) 35%,
      rgba(22, 0, 0, 0) 100%
    );
}
.product-visual {
  position: relative;
  width: 100%;
  padding-block-end: var(--sp-unit);
}
.product-visual img {
  display: block;
  width: calc(100% * (1600 / 1080));
  max-width: none;
  margin-inline: calc((100% - (100% * (1600 / 1080))) / 2);
  height: auto;
}
/* Spec
----------------------------------------- */
.base-conts {
  width: min(100%, 800px);
	margin: 0 auto;
	color: var(--c-wht);
	padding-block-end: calc(var(--sp-unit) * 3);
}
.spec-container {
  margin: 0 auto;
}
.spec {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0.5em;
}
/* spec - item name */
.spec-name {
  padding: 0.5em 0;
}
.spec-name__title {
  padding: 0 0.5em;
  font-size: calc(var(--fs-base) * 1.4);
  font-weight: bold;
  line-height: 1.3;
}
.spec-name__title small {
	font-size: 75%;
}
.spec-name__logo {
  width: calc(var(--fs) * 10);
  margin: 0 0 0 auto;
}
.spec-name__logo + .spec-name__logo {
  margin-left: calc(var(--rs) * 1);
}
.spec-name__logo:last-child {
  margin-right: 0.5em;
}
/* spec - heading */
.spec-th {
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}
.spec-th-label {
  padding: 4px 1em 0;
  background: #595657;
  border-radius: 100vh;
  color: #fff;
  font-size: calc(var(--fs-xs) * 0.9);
  display: block;
}
/* spec - data */
.spec-td {
  padding: 0 1em;
}
.spec-details {
  position: relative;
}
.spec-detail-list {
  margin-right: 1.5em;
}
.spec-detail-list + .spec-detail-list {
  margin-top: 0.2em;
}
.spec-td-notices {
  padding: 0.5em;
}
/* spec - price */
.spec-th.spec-price {
  vertical-align: middle;
}
.spec-td.spec-price {
  font-size: 125%;
  font-weight: bold;
}
.price-hontai {
  margin-left: 0.5em;
  display: none;
}
/* spec - info */
.spec-info {
  padding: 0.8em 1em;
  margin-top: 0.5em;
  background: var(--c-bg-container);
}
.spec-info:empty {
  display: none;
}
.item-spec-info__date {
  font-weight:bold;
  display: block;
}
/* spec - event */
.spec-event {
  padding: 1em;
  background: var(--c-bg-container);
  text-align: center;
}
.spec-info + .spec-event {
  padding-top: 0;
}
.spec-event__bnr {
}
.spec-event__title {
  padding: 0.2em 1em;
  margin-top: -1px;
  background: var(--c-gry-dark);
  color: var(--c-wht);
  font-size: calc(var(--fs) * 1.4);
}
/* spec - note */
.item-spec-note {
  margin-top: 1em;
  color: var(--c-gray);
  font-size: calc(var(--fs-xs) * 0.9);
  line-height: 1.3;
  text-align: left;
}
.item-spec__note-list,
.item-spec-note__list {
  padding: 0.2em 0 0.2em 1em;
  margin-right: 1em;
  display: inline-block;
  text-indent: -1em;
}
@media (max-width: 767px) {
	.spec-name__title {
    font-size: calc(var(--fs-base) * 1.2);
	}
	.spec-th,.spec-td {
		display: block;
	}
	.spec-th-label {
		width: 10em;
	}
}
/* =========================================
   Pre-order
========================================= */
.section-information {
  padding-block: 80px;
  /* background-color: var(--c-wht); */
  color: var(--c-txt);
}
.preorder {
  margin-inline: auto;
  background: rgb(255 255 255 / 65%);
  padding: calc(var(--sp-unit) * 3) var(--sp-unit);
}
.preorder__header {
  margin-bottom: 48px;
  text-align: center;
}
.preorder__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.preorder__title {
  font-family: var(--font-mn);
  color: var(--c-point);
  font-size: calc(var(--fs-base) * 2.6);
  font-weight: 500;
  line-height: 1.5;
}
.preorder__schedule {
  margin-bottom: 56px;
}
.preorder__block + .preorder__block {
  margin-top: 40px;
}
.preorder__heading {
  font-size: calc(var(--fs-base) * 1.2);
  font-weight: 700;
  line-height: 1.5;
  background: var(--c-point);
  color: var(--c-wht);
  padding: 5px var(--fs-base) 0;
}
.preorder__details {
  margin: 0;
}
.preorder__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0 0 var(--fs-base);
}
.preorder__row dt {
  font-weight: 700;
}
.preorder__row dd {

}
.preorder__text {
  margin: 16px 0 0;
  line-height: 1.8;
}
.preorder__delivery {
  margin: 30px 0 0 var(--fs-base);
  font-size: calc(var(
  --fs-base) * 1.3);
  line-height: 1.7;
  color: var(
  --c-point);
}
.preorder__notes,
.preorder__payment {
  margin-top: 56px;
}
.preorder__subheading {
  font-size: calc(var(--fs-base) * 1.2);
  font-weight: 700;
  background: #5d5d5d;
  padding: 5px var(--fs-base) 0;
  color: var(--c-wht);
}
.preorder__note-list {
  margin: 1rem 0 0;
  padding-left: 1.4em;
  list-style: disc;
}
.preorder__note-list li {
  line-height: 1.4;
}
.preorder__note-list li + li {
  margin-top: 8px;
}
.preorder__payment small {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .section-information {
    padding-block: 56px;
  }
  .preorder__header {
    margin-bottom: 36px;
  }
  .preorder__title {
    font-size: 1.6rem;
  }
  .preorder__heading,
  .preorder__subheading {
    font-size: calc(var(--fs-base) * 1.1);
  }
  .preorder__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .preorder__schedule {
    margin-bottom: 40px;
  }
  .preorder__notes,
  .preorder__payment {
    margin-top: 40px;
  }
}
/* =========================================
   Gallery
========================================= */
.section.section-gallery {
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.8) 100%);
}
.section-gallery {
  padding-block: 80px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.gallery__item {
  min-width: 0;
}
.gallery__link {
  display: block;
  overflow: hidden;
}
.gallery__link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.gallery__link:hover img {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .section-gallery {
    padding-block: 56px;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================================
   Logo / Copywrite.
========================================= */
.section-brand {
  background-color: var(--c-blk);
  color: var(--c-wht);
	padding-block-end: 80px;
}
.brand__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: 48px;
}
.brand__item {
  text-align: center;
}
.brand__logo {
  display: block;
  width: 180px;
}
.brand__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.brand__copyright {
  margin: 0;
  font-size: calc(var(--fs-base) * 0.8);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .section-brand {
    padding-block-end: 56px;
  }
}





