@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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
Button
========================================================================== */
.layering__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 32px 0 0;
}
@media screen and (max-width: 375px) {
  .layering__buttons {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .layering__buttons .btn {
    font-size: 1.625rem;
    padding: 12.5px 25px;
    border-radius: 5px;
  }
}

.btn {
  display: block;
  border-radius: 4px;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.3rem;
}
.btn.is-highlight {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff;
}
.btn.is-highlight:hover {
  background-color: #004ea2;
  border: 1px solid #004ea2;
  color: #fff;
  transform: scale(1.05);
}

.btn-brandtop {
  margin-top: 60px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1e1e1e;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  background: #fff;
}
.btn-brandtop span {
  font-weight: bold;
}
.btn-brandtop:hover {
  background: #444;
  color: #fff;
}

.btn-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100000;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}
.btn-pagetop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

/* ------------------------------------------
  image-slider ページネーション（プログレスバー）
------------------------------------------ */
.itemlist__swiper,
.image-slider__swiper {
  padding-bottom: 32px;
  padding-left: 120px;
}
.itemlist__swiper::after,
.image-slider__swiper::after {
  content: "SCROLL";
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #6e6e6e;
}
.itemlist__swiper .swiper-pagination-progressbar,
.image-slider__swiper .swiper-pagination-progressbar {
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
}
.itemlist__swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.image-slider__swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #0075E2;
}

/* ==========================================================================
  Scroll Animation
  ========================================================================== */
.anim-reveal {
  opacity: 0;
  transition: opacity 0.85s ease 0.1s;
}

.anim-reveal.is-show {
  opacity: 1;
}

.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.3s 0.1s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
  filter: blur(10px);
}

.anim-fadeinUp.is-show {
  animation: fadeInUp 0.9s 0.2s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  animation: fadeInUp 0.3s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  animation: fadeInUp 0.3s 0.4s both ease-out;
}

.anim-fadeinUp.anim-delay4.is-show {
  animation: fadeInUp 0.3s 0.5s both ease-out;
}

.anim-fadeinUp.anim-delay5.is-show {
  animation: fadeInUp 0.3s 0.6s both ease-out;
}

.anim-fadeinUp.anim-delay6.is-show {
  animation: fadeInUp 0.3s 0.7s both ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  animation: slideOutL 1.5s 0.1s both ease-out;
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  animation: slideOutR 1.5s 0.1s both ease-out;
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #1e1e1e;
  font-size: 1.6em;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #1e1e1e;
  color: #fff;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

sup {
  font-size: 60%;
  vertical-align: super;
}

sub {
  font-size: 60%;
  vertical-align: sub;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

.l-inner p {
  line-height: 1.6;
}

.notes {
  margin-top: 8px;
  font-size: 84%;
}

.modaal-noscroll {
  padding-right: 15px;
}

.modaal-inner-wrapper {
  padding: 80px 15px !important;
}

@media screen and (min-width: 769px) {
  .modaal-image .modaal-container {
    max-width: 640px;
  }
  .modaal-content-container {
    padding: 5%;
  }
}
@media screen and (max-width: 768px) {
  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
.modaal-wrapper.modaal-image.js-image-modaal .modaal-container {
  position: relative;
  overflow: visible;
}
.modaal-wrapper.modaal-image.js-image-modaal .modaal-close {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: -40px;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.modaal-wrapper.modaal-image.js-image-modaal .modaal-close::before, .modaal-wrapper.modaal-image.js-image-modaal .modaal-close::after {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
  width: 1px;
  height: 22px;
  background: #fff;
  border-radius: 0;
}

body {
  background: #fff;
}

.l-wrapper {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow-x: hidden;
}

.l-main {
  width: 100%;
  right: auto;
  margin: 0 auto;
}

.l-inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .l-inner {
    max-width: 960px;
  }
}
.l-sec {
  padding: 64px 0;
}

.l-sec.layering__section {
  padding: 0 0 96px;
}

html,
body {
  overflow-x: clip;
}

.header {
  position: fixed;
  z-index: 100002;
  width: 100%;
  height: 50px;
}
.header .header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 15px;
}
.header .header__logo {
  width: 160px;
  height: 20px;
  object-fit: cover;
  z-index: 9999;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}
.header .header__logo img {
  width: 100%;
  height: auto;
}
.header .header__menu {
  position: relative;
  display: block;
  width: 40px;
  height: 35px;
  padding: 5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100003;
}
.header .header__menu span {
  display: block;
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px;
  transform-origin: center;
  transition: transform 220ms ease, top 220ms ease, opacity 160ms ease;
}
.header .header__menu span:nth-child(1) {
  top: 10px;
}
.header .header__menu span:nth-child(2) {
  top: 17px;
}
.header .header__menu span:nth-child(3) {
  top: 25px;
}
.header .header__menu.is-open span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.header .header__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.header .header__menu.is-open span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: 100%;
  max-width: none;
  padding: 72px 18px 24px;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  z-index: 100001;
  transform: translateX(102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.nav-drawer.is-open {
  transform: translateX(0);
}
.nav-drawer .nav-drawer__heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.nav-drawer .nav-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer .nav-drawer__link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 10px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}
.nav-drawer .nav-drawer__link:active {
  background: rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .nav-drawer {
    max-width: 400px;
  }
}

.nav-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.nav-drawer__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.footer {
  background: #222;
  background: #004ea2;
  color: #fff;
  padding: 30px 2.5%;
}
@media (min-width: 768px) {
  .footer .footer__inner {
    max-width: 960px;
    margin: 0 auto;
  }
}
.footer .footer__btn {
  text-align: center;
  padding: 0 0 30px;
}
.footer .footer__copy {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  margin: auto auto 0;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 60svh;
  min-height: 750px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero .hero-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.hero .hero__title {
  position: absolute;
  top: 12%;
  left: 0;
  font-weight: bold;
  color: #1e1e1e;
}
@media (min-width: 768px) {
  .hero .hero__title {
    transform: scale(1.5);
    transform-origin: left top;
  }
}
.hero .hero__title .hero__title-line {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  font-size: 2.2rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.hero .hero__title .hero__title-line-02 {
  margin-top: -1px;
}
.hero .hero__title .hero__title-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #1f6fb8 0%, #5aa7ff 55%, #bfe6ff 100%);
  transform: translateX(-110%);
  animation: heroTitleBgIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .hero__title .hero__title-line::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  transform: translateX(-110%);
  animation: heroTitleBgIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 200ms;
}
.hero .hero__title .hero__title-text {
  position: relative;
  display: inline-block;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTitleTextIn 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 820ms;
  font-weight: bold;
}
.hero .hero__title .hero__title-line-02::before {
  animation-delay: 200ms;
}
.hero .hero__title .hero__title-line-02::after {
  animation-delay: 400ms;
}
.hero .hero__title .hero__title-line-02 .hero__title-text {
  animation-delay: 1020ms;
}
.hero .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .hero__bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(closest-side at 20% 30%, rgba(255, 220, 140, 0.75), rgba(255, 220, 140, 0) 60%), radial-gradient(closest-side at 70% 40%, rgba(255, 120, 90, 0.55), rgba(255, 120, 90, 0) 65%), linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 240, 200, 0.55) 35%, rgba(255, 160, 120, 0.35) 55%, rgba(255, 255, 255, 0) 80%);
  filter: blur(10px) saturate(1.3);
  transform: translateX(-15%) rotate(-4deg);
  mix-blend-mode: plus-lighter;
}
.hero .hero__bg.is-leak::after {
  animation: heroLightLeak 650ms ease-out both;
}
.hero .hero__bg .hero__bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--hero-fade, 0.5s) ease;
  transform: scale(1.2);
  transition-property: opacity, transform;
  transition-duration: var(--hero-fade, 0.5s), var(--hero-zoom, 2.95s);
  transition-timing-function: ease, ease-out;
}
.hero .hero__bg .hero__bg-slide.is-active {
  opacity: 1;
}
.hero .hero__bg .hero__bg-slide.is-active.is-zoom-out {
  transform: scale(1);
}

@keyframes heroLightLeak {
  0% {
    opacity: 0;
    transform: translateX(-18%) rotate(-6deg);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(18%) rotate(2deg);
  }
}
@keyframes heroTitleBgIn {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes heroTitleTextIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInR {
  0% {
    transform: translate(10vw, 0) scale(var(--anim-scale, 1));
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(var(--anim-scale, 1));
  }
}
@keyframes anchorlinkInnerBeforeIn {
  0% {
    transform: translateX(110%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero__title .hero__title-line::before,
  .hero .hero__title .hero__title-line::after,
  .hero .hero__title .hero__title-text {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.intro {
  padding: 64px 0 0;
}
@media (min-width: 768px) {
  .intro {
    max-width: 960px;
    margin: 0 auto;
  }
}
.intro .intro__lead {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 64px;
  text-align: justify;
}

.anchorlink__wrapper {
  background: url(/assets/img/layering/top/seiryo/bg-grad.jpg) no-repeat center center/cover;
  padding: 96px 0;
  position: relative;
}
@media (min-width: 768px) {
  .anchorlink__wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
}

.anchorlink {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(/assets/img/layering/top/seiryo/anc-bg-back.webp) no-repeat center center/cover;
}
.anchorlink::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.anchorlink::before {
  z-index: 1;
  background: url(/assets/img/layering/top/seiryo/anc-bg-front.webp) no-repeat center center/cover;
  pointer-events: none;
}
.anchorlink .anchorlink__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px 0;
}
@media screen and (min-width: 769px) {
  .anchorlink .anchorlink__inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }
}
.anchorlink .anchorlink__inner.anim-slidein-r {
  opacity: 1;
}
.anchorlink .anchorlink__inner.anim-slidein-r::before {
  opacity: 0;
  left: 0;
  right: 0;
  transform: translateX(110%);
  will-change: transform, opacity;
}
@media screen and (min-width: 769px) {
  .anchorlink .anchorlink__inner.anim-slidein-r::before {
    width: 112%;
    left: -6%;
  }
}
.anchorlink .anchorlink__inner.anim-slidein-r.is-show::before {
  animation: anchorlinkInnerBeforeIn 0.8s 0.2s both ease-out;
}
.anchorlink .anchorlink__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}
.anchorlink .anchorlink__title {
  position: relative;
  width: 62%;
}
@media screen and (max-width: 375px) {
  .anchorlink .anchorlink__title {
    width: 68%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .anchorlink .anchorlink__title {
    width: 52%;
  }
}
@media screen and (min-width: 769px) {
  .anchorlink .anchorlink__title {
    width: 50%;
  }
}
.anchorlink .anchorlink__title {
  margin: auto 0 auto auto;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 32px;
  z-index: 3;
}
.anchorlink .anchorlink__title.anim-slidein-r {
  opacity: 0;
}
.anchorlink .anchorlink__title.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}
.anchorlink .anchorlink__title.anim-slidein-r::before {
  opacity: 0;
  transform: translate(10vw, 0);
  will-change: transform, opacity;
}
.anchorlink .anchorlink__title.anim-slidein-r.is-show::before {
  animation: slideInR 0.8s 0.2s both ease-out;
}
.anchorlink .anchorlink__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1e1e1e;
  left: 0;
  bottom: -8px;
}
.anchorlink .anchorlink__list {
  position: relative;
  width: 66%;
}
@media screen and (max-width: 375px) {
  .anchorlink .anchorlink__list {
    width: 72%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .anchorlink .anchorlink__list {
    width: 56%;
  }
}
@media screen and (min-width: 769px) {
  .anchorlink .anchorlink__list {
    width: 53%;
  }
}
.anchorlink .anchorlink__list {
  margin: auto 0 auto auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-left: 1.5em;
  z-index: 4;
}
.anchorlink .anchorlink__list li.anim-slidein-r {
  opacity: 0;
  --stagger: 0s;
}
.anchorlink .anchorlink__list li.anim-slidein-r.is-show {
  animation: slideInR 0.8s both ease-out;
  animation-delay: calc(1s + var(--stagger));
}
.anchorlink .anchorlink__list li a {
  text-align: left;
  display: block;
  text-decoration: none;
  color: #1e1e1e;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.5em;
  position: relative;
}
.anchorlink .anchorlink__list li a:hover {
  color: #004ea2;
}
.anchorlink .anchorlink__list li a::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 0.4em;
  width: 0;
  height: 0;
  border-left: 0.35em solid transparent;
  border-right: 0.35em solid transparent;
  border-top: 0.45em solid currentColor;
}

.layering__section .layering__header {
  position: relative;
}
@media (min-width: 768px) {
  .layering__section .layering__header {
    max-width: 960px;
    margin: 0 auto;
  }
}
.layering__section .layering__header .layering__photo {
  position: relative;
  overflow: hidden;
}
.layering__section .layering__header .layering__photo img {
  transform: scale(1.1);
  filter: blur(14px);
  will-change: transform, filter;
  isolation: isolate;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, filter 1.3s ease-out 0.15s;
}
.layering__section .layering__header .layering__photo.is-show img {
  transform: scale(1);
  filter: blur(0px);
}
.layering__section .layering__header .layering__photo::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: radial-gradient(ellipse 70% 65% at 42% 50%, rgb(255, 248, 220) 0%, rgba(255, 255, 255, 0.85) 22%, rgba(255, 255, 255, 0) 62%), linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(255, 230, 160, 0.8) 42%, rgba(255, 170, 80, 0.38) 62%, rgba(255, 255, 255, 0) 80%);
  opacity: 0;
  transform: translateX(-15%);
  filter: none;
}
.layering__section .layering__header .layering__photo.is-show::after {
  animation: layeringLightLeak 950ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.layering__section .layering__header .layering__title {
  position: absolute;
  top: 56px;
}
.layering__section .layering__header .layering__title span {
  display: inline-block;
  background: #fff;
  padding: 10px 10px;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .layering__section .layering__header .layering__title span {
    font-size: 2.8rem;
    padding: 10px 10px 12px;
    line-height: 1;
  }
}
.layering__section .layering__header .layering__title.ttl-right {
  right: 0;
  left: auto;
}
@media (min-width: 768px) {
  .layering__section .layering__header .layering__title.ttl-right {
    transform-origin: right top;
  }
}
.layering__section .layering__header .layering__title.ttl-left {
  left: 0;
  right: auto;
}
.layering__section .layering__header .layering__title.ttl-black span {
  background-color: #1e1e1e;
  color: #fff;
}
.layering__section .layering__header .layering__title.ttl-white span {
  background-color: #fff;
  color: #1e1e1e;
}
.layering__section .layering__header .layering__text {
  position: absolute;
  bottom: 32px;
  max-width: 60%;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  line-height: 1.6;
  text-align: justify;
}
.layering__section .layering__header .layering__text.txt-right {
  right: 0;
  left: auto;
}
.layering__section .layering__header .layering__text.txt-left {
  left: 0;
  right: auto;
}
.layering__section .layering__header .layering__text.txt-center {
  left: 50%;
  transform: translateX(-50%);
}
.layering__section .layering__content {
  padding: 32px 0 0;
  position: relative;
}
.layering__section .layering__content .layering__notes {
  font-size: 1.3rem;
  text-align: justify;
  margin-bottom: 32px;
}
.layering__section .layering__image {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
  min-height: 420px;
  padding: 15% 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .layering__section .layering__image {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.layering__section .layering__image .layering__image-item {
  position: relative;
  width: 50%;
  height: 320px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .layering__section .layering__image .layering__image-item {
    height: auto;
    aspect-ratio: 1/1.44;
  }
}
.layering__section .layering__image .layering__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layering__section .layering__image .layering__image-item:nth-child(1) {
  top: 0;
  left: 0;
}
.layering__section .layering__image .layering__image-item:nth-child(2) {
  top: 0;
  right: 0;
}
.layering__section .layering__image .layering__image-item.shift-bottom {
  transform: translateY(15%);
}
.layering__section .layering__image .layering__image-item.shift-top {
  transform: translateY(-15%);
}
.layering__section .layering__image h4 {
  position: absolute;
  width: 50%;
  bottom: 5.5%;
  font-size: 2.2rem;
  font-weight: bold;
  z-index: 2;
}
.layering__section .layering__image h4 img {
  width: auto;
  height: 100%;
}
.layering__section .layering__image h4.pos-right {
  text-align: left;
  right: auto;
  left: 55%;
}
.layering__section .layering__image h4.pos-left {
  text-align: right;
  left: auto;
  right: 55%;
}
.layering__section .layering__image h4.line1 {
  height: 42px;
  bottom: 10%;
}
@media screen and (min-width: 769px) {
  .layering__section .layering__image h4.line1 {
    height: 63px;
    bottom: 12.5%;
  }
}
.layering__section .layering__image h4.line2 {
  height: 72px;
  bottom: 7.5%;
}
@media screen and (min-width: 769px) {
  .layering__section .layering__image h4.line2 {
    height: 108px;
  }
}
@media screen and (min-width: 769px) {
  .layering__section .layering__description {
    max-width: 80%;
    margin: 0 auto;
  }
}
.layering__section .layering__description p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
}
.layering__section .layering__description p small {
  font-size: 1.3rem;
}

.review {
  position: relative;
  background: url(/assets/img/layering/top/seiryo/bg-grad.svg) no-repeat center center/cover;
  color: #fff;
  margin-top: 240px;
  padding-top: 80px;
}
@media screen and (min-width: 769px) {
  .review {
    margin-top: 320px;
    padding-top: 0;
    background: url(/assets/img/layering/top/seiryo/bg-grad.svg) no-repeat center center/-100% -150%;
  }
}
.review .review__inner {
  padding: 32px 5%;
}
@media screen and (min-width: 769px) {
  .review .review__inner {
    max-width: 960px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.review .review__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.4;
}
.review .review__text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.review .review__image-half {
  position: absolute;
  width: 45%;
  height: 320px;
  object-fit: cover;
}
.review .review__image-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review .review__image-half.image-01 {
  top: -240px;
  left: 12.5%;
}
.review .review__image-half.image-02 {
  top: -160px;
  right: 2.5%;
}
@media screen and (min-width: 769px) {
  .review .review__image-half {
    width: 25%;
  }
  .review .review__image-half.image-01 {
    top: -240px;
    left: auto;
    right: 25%;
  }
  .review .review__image-half.image-02 {
    top: -160px;
    right: 2.5%;
  }
}
.review .review__image-full {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.review .review__image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .review .review__image-full {
    width: 100%;
    height: 450px;
  }
}

@keyframes layeringLightLeak {
  0% {
    opacity: 1;
    transform: translateX(-15%);
  }
  25% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateX(18%);
  }
}
.itemlist {
  margin-top: 64px;
  background: #fff;
  padding-top: 32px;
}
.itemlist h3.sec-ttl {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1e1e1e;
}
.itemlist .itemlist__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.itemlist .itemlist__swiper .swiper-slide a {
  text-decoration: none;
}
.itemlist .itemlist__swiper .swiper-slide h6 {
  margin-top: 8px;
  color: #1e1e1e;
  line-height: 1.4;
  font-size: 1.4rem;
}
.itemlist .itemlist__inner {
  width: 100%;
}

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