@charset "UTF-8";
/*
Gridの定義
-
この変数は_frame.scssやその他すべてのscssファイルでも使用
*/
/*
    例：
    @media screen and (min-width: g.$window-max-width) {
      width: calc(g.column(12, pc, g.$window-margin-right-pc));
    }
*/
/*
Column計算の関数
-
上記のGridの定義をもとにカラムの幅を割り出す関数
-
第一引数：カラム数
第二引数：デバイス（pc/sp）
第三引数：追加の数値指定（デフォルト値:0／任意）
-
ex.
width: g.column(2, sp); // SPの2カラム分の幅
width: g.column(8, pc); // PCの8カラム分の幅
width: g.column(8, pc, 6rem); // PCの8カラム分の幅 + 6rem
width: g.column(8, pc, -6rem); // PCの8カラム分の幅 - 6rem
width: g.column(8, pc, $column-margin-right-pc); // PCの8カラム分の幅 + ウインドウ右端からのマージン
*/
.layoutGrid {
  display: grid;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  gap: 2.4rem;
  grid-template-columns: repeat(24, 1fr);
  width: calc(100vw - 2.4rem - 2.4rem - 0px);
  max-width: calc(1680px - 2.4rem - 2.4rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid {
    gap: 1.2rem;
    grid-template-columns: repeat(12, 1fr);
    width: calc(100vw - 1.6rem - 1.6rem);
    max-width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.layoutGrid__item {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-width: 0 1px;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid__item {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
  }
  .layoutGrid__item:nth-child(n+13) {
    display: none;
  }
}

.fix-paren .inner-text {
  position: relative;
  top: 0.04em; /* 必要に応じてこの値を調整してください */
  margin: 0 0.05em;
}

[data-mk] {
  --k: 0em;
  margin-left: var(--k, 0) !important;
}

.char-punc {
  padding-right: 0.15em;
}

.char-punc--end {
  padding-right: 0;
  margin-right: -0.2em;
}

html:lang(ja) .js-justify {
  line-break: strict;
  text-align: justify;
}

@keyframes iconArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(50%);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*

2色のボーダー

＜使用例＞
  @include g.border(); // デフォルトの引数で使用
  @include g.border($direction:verticle, $gap:1px); // 縦向きで、gapを1pxに
  @include g.border($color-width:60%); // 幅を60%に
  @include g.border($fourth-color: g.$text-nega); // 4つの色だけカスタム引数で使用
  @include g.border(to bottom, #ff5722, #333, 80%); // カスタム引数で使用
*/
/*

点線のパーテーション

※色+透明が等間隔で並んだ矩形の点線。等間隔でないものは手で。
＜使用例＞
  @include g.dots(); // デフォルトの引数で使用
  @include g.dots($direction:verticle); // 縦向きに
  @include g.dots($count:3); // ドットを3つに
  @include g.dots($count:fit); // 幅いっぱいにドットを並べる
  @include g.dots($direction:verticle, $color:g.$text-nega-gray, $color-width: .3rem, $count:2, $gap: 2); //コピペ用
*/
/*

icons

*/
/*

button

*/
/*

parallax

*/
.parallax-container,
.spotParallax-container {
  height: auto;
  overflow: hidden;
}
.parallax-container .parallax-image,
.parallax-container .spotParallax-image,
.spotParallax-container .parallax-image,
.spotParallax-container .spotParallax-image {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
}

/*

wordbreak

*/
.wb {
  display: inline-block;
}

.wb-pc {
  display: inline-block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wb-pc {
    display: none;
  }
}

.wb-sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wb-sp {
    display: inline-block;
  }
}

/*
Swiper navigation
*/
body.no-scroll {
  overflow: hidden;
}

#bl_loading {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1), pointer-events 3s cubic-bezier(0.36, 0, 0, 1);
  z-index: 99999;
}
#bl_loading #bl_loadingPercentOverlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: white;
  transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1);
  transform: translateY(100%);
  z-index: 1;
}
#bl_loading #bl_loadingPercentWrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  color: #111111;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #aaaaad;
  gap: 8.2rem 0;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#bl_loading #bl_loadingPercentWrap b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  #bl_loading #bl_loadingPercentWrap {
    gap: 4.1rem 0;
  }
}
#bl_loading #bl_loadingPercentWrap #bl_loadingLogo {
  width: 21.4rem;
  padding-left: 0.85rem;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingLogo svg {
  width: 100%;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet {
  position: relative;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet #bl_loadingPercentNumber {
  position: absolute;
  inset: 0 1em 0 auto;
  margin: auto;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet #bl_loadingPercentMark {
  padding-left: 2em;
}
#bl_loading.active {
  display: block;
}
#bl_loading.active #bl_loadingPercentWrap #bl_loadingLogo,
#bl_loading.active #bl_loadingPercentWrap #bl_loadingPercenet {
  opacity: 1;
  visibility: visible;
}
#bl_loading.open #bl_loadingPercentOverlay {
  transform: translateY(0);
}
#bl_loading.hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

html > body > header,
html > body > main,
html > body > footer {
  opacity: 0;
}
html.fade-in > body {
  opacity: 1;
}
html.fade-in > body > header,
html.fade-in > body > main,
html.fade-in > body > footer {
  opacity: 1;
}
html.fade-out-transition {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-out-transition > body {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-out-transition > body > header,
html.fade-out-transition > body > main,
html.fade-out-transition > body > footer {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition > body {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition > body > header,
html.fade-in-transition > body > main,
html.fade-in-transition > body > footer {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}

html:not(.is-2023) {
  /**************************\
     Demo Animation Style
   \**************************/
}
html:not(.is-2023) .micromodal {
  position: relative;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
html:not(.is-2023) .micromodal.is-open {
  pointer-events: all;
  visibility: visible;
}
html:not(.is-2023) .micromodal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=false] .modal__container {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=true] .modal__container {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal .modal__container,
html:not(.is-2023) .micromodal .modal__overlay {
  will-change: transform;
}
html:not(.is-2023) .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(204, 204, 208, 0.9019607843);
  display: flex;
  justify-content: center;
  align-items: center;
}
html:not(.is-2023) .modal__container {
  background-color: #fff;
  padding: 4.3rem 3.2rem;
  max-width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 24 + 2.4rem * (24 - 1) + 0px);
  max-height: 90%;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__container {
    max-width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 12 + 1.2rem * (12 - 1) + 0px);
    padding: 2.4rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    width: calc(100% - 3.2rem);
    height: calc(100% - 3.2rem);
    max-height: none;
  }
}
html:not(.is-2023) .modal__close {
  position: absolute;
  width: 10rem;
  height: 2.6rem;
  top: 0;
  right: 0;
  background: transparent;
  border: 0;
  padding: 2rem 1.98rem;
  box-sizing: content-box;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__close {
    width: 5rem;
    height: 1.5rem;
    padding: 1.6rem;
    padding: 1.6rem 1.6rem;
  }
}
html:not(.is-2023) .modal__close:before {
  content: "";
  width: 9.9rem;
  height: 2.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="101" height="28" viewBox="0 0 101 28" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="1.12941" y1="0.517037" x2="100.309" y2="27.0922" stroke="%23111111"/><line y1="-0.5" x2="102.679" y2="-0.5" transform="matrix(-0.965926 0.258819 0.258819 0.965926 100.182 1)" stroke="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__close:before {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0);
    background-image: url('data:image/svg+xml;utf8, <svg width="47" height="14" viewBox="0 0 47 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M46.3644 13.3892L-2.99811e-05 0.965926L0.258789 0L46.6232 12.4233L46.3644 13.3892Z" fill="%23111111"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.258638 13.3892L46.6231 0.965926L46.3643 0L-0.000181198 12.4233L0.258638 13.3892Z" fill="%23111111"/></svg>');
    width: 5rem;
    height: 1.5rem;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  to {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* root
================================================ */
:root {
  --pc-content-width: 106rem;
  /*font-family*/
  --libre: "Libre Baskerville", serif;
  /*width*/
  --desktop: 100vw / 1300;
  --phone: 100vw / 750;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* reset
================================================ */
html.fac-header-mini #container_ {
  padding-top: 0;
}

#main_ {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

#main_ a {
  text-decoration: none;
}

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

.l-header__logo {
  display: none;
}

@media screen and (max-width: 599px) {
  html body[class] #container_ {
    padding-top: 0;
  }
  #main_ {
    padding: 0;
  }
}
/* common
================================================ */
.c-contents,
.c-container {
  width: 100%;
  position: relative;
}

.c-anim__textWrap {
  display: block;
  line-height: 1.4;
}

.c-anim__textLine {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-beautiful2024-main);
  line-height: 1;
  padding: 0 0 1.8rem;
  font-family: var(--font-family_serif);
}

.c-anim__textLine::after {
  background-color: var(--color-beautiful2024-main);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-anim__textWrap:first-child .c-anim__textLine {
  transition: transform 0.8s 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 0.8s, -webkit-transform 0.8s 0.8s;
}

.c-anim__textWrap:nth-child(2) .c-anim__textLine {
  transition: transform 0.8s 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 1s, -webkit-transform 0.8s 1s;
}

.c-anim__textWrap:nth-child(3) .c-anim__textLine {
  transition: transform 0.8s 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 1.2s, -webkit-transform 0.8s 1.2s;
}

.c-anim__textWrap:first-child .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.2s;
  transition: width 0.8s 1.2s;
}

.c-anim__textWrap:nth-child(2) .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.4s;
  transition: width 0.8s 1.4s;
}

.c-anim__textWrap:nth-child(3) .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.6s;
  transition: width 0.8s 1.6s;
}

.js-iv-show.is-show .c-anim__textLine {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.js-iv-show.is-show .c-anim__textLine::after {
  width: 0%;
}

.p-beautiful2024 {
  color: var(--color-beautiful2024-txt);
}

@media screen and (max-width: 769px) {
  .c-anim__textWrap {
    line-height: 1.6;
  }
  .p-beautiful2024 {
    overflow: hidden;
  }
}
/* utility
================================================ */
.u-noText {
  display: none;
}

.u-ffs-palt {
  font-feature-settings: "palt";
}

main.p-be26 {
  --text-accent: #c7de8e;
  --text-accent-P: #f4e981;
  --text-accent-PP: #c7de8e;
  --text-accent-PPP: #239360;
  --text-accent-PPPP: #fabe00;
  --text-base: #111;
  --text-base-gray: rgba(17, 17, 17, 0.3);
  --text-base-gray-P: rgba(17, 17, 17, 0.5);
  --text-nega: #fff;
  --bg-gray: #e6e6eb;
  --bg-paper: #f4f3f0;
  --border-base: rgba(17, 17, 17, 0.1);
  --bg-main: #f3fae2;
  --bg-multiply: #fff100;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main.p-be26 {
    padding-top: 5.6rem;
    padding-bottom: 8rem;
  }
}

.p-be26__fv {
  position: relative;
}
.p-be26__fv::before {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 15 + 2.4rem * (15 - 1) + 4.8rem);
  height: 100%;
  background: var(--bg-main);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv::before {
    width: 18.7rem;
  }
}
.p-be26__fv::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
.p-be26__fv::before, .p-be26__fv::after {
  top: -7rem;
  height: calc(100% + 7rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv::before, .p-be26__fv::after {
    top: 0;
    height: 100%;
  }
}

.p-be26__fv__inner {
  position: relative;
}

.p-be26__fv__txt-label {
  position: absolute;
  top: 0;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-label {
    left: auto;
    top: auto;
    position: relative;
  }
}

.p-be26__fv__txt-label-deco {
  width: 21.2rem;
  height: 1rem;
  background: linear-gradient(to right, var(--text-accent-P) 0%, var(--text-accent-P) 11.5rem, var(--text-accent-PP) 11.5rem, var(--text-accent-PP) 16.241rem, var(--text-accent-PPP) 16.241rem, var(--text-accent-PPP) 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-label-deco {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 4 + 1.2rem * (4 - 1) + 1.6rem);
    height: 0.6rem;
    background: linear-gradient(to right, var(--text-accent-P) 0%, var(--text-accent-P) calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 2 + 1.2rem * (2 - 1) + 1.6rem), var(--text-accent-PP) calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 2 + 1.2rem * (2 - 1) + 1.6rem), var(--text-accent-PP) calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 3 + 1.2rem * (3 - 1) + 1.6rem), var(--text-accent-PPP) calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 3 + 1.2rem * (3 - 1) + 1.6rem), var(--text-accent-PPP) 100%);
  }
}

.p-be26__fv__txt-label-txt {
  display: block;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 4.2rem;
  font-size: 1.4rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
}
.p-be26__fv__txt-label-txt b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-label-txt {
    margin-top: 3rem;
    padding-left: 1.6rem;
    letter-spacing: 0.04em;
  }
}

.p-be26__fv__img-container {
  display: block;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 17 + 2.4rem * (17 - 1) + 4.8rem);
  margin-left: auto;
  margin-right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__img-container {
    width: 100%;
    margin-top: 6rem;
  }
}

.p-be26__fv__txt-container {
  position: absolute;
  bottom: 0;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-container {
    position: relative;
    bottom: auto;
    left: auto;
    padding-left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
    margin-top: 4rem;
  }
}

.p-be26__fv__txt-ttl-wrap {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-be26__fv__txt-ttl-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-be26__fv__txt-ttl {
  font-family: Jost, sans-serif;
  font-weight: 400;
  display: block;
  font-size: 6.6rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-ttl {
    font-size: 3.6rem;
    line-height: 1.15;
  }
}

.p-be26__fv__txt-copy {
  display: block;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 2.8rem;
  font-size: 2.4rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
.p-be26__fv__txt-copy b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-copy {
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin-top: 1.45rem;
  }
}

.p-be26__fv__txt-scroll {
  margin-top: 13.2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-scroll {
    margin-top: 3.4rem;
  }
}
.p-be26__fv__txt-scroll .line {
  width: 0.1rem;
  height: 10rem;
  background: var(--text-accent-PPP);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__txt-scroll .line {
    height: 6.2rem;
  }
}
.p-be26__fv__txt-scroll .point {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(-50% + 0.1rem));
  margin: auto;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--text-accent-PPP);
  animation: scroll 4s infinite ease-in-out;
}
@keyframes scroll {
  0% {
    transform: translate(calc(-50% + 0.1rem), 0);
    opacity: 0;
  }
  56% {
    transform: translate(calc(-50% + 0.1rem), 0);
    opacity: 1;
  }
  70% {
    transform: translate(calc(-50% + 0.1rem), 8rem);
    opacity: 0;
  }
  100% {
    transform: translate(calc(-50% + 0.1rem), 8rem);
    opacity: 0;
  }
}

.p-be26__fv__nav {
  position: relative;
  border-bottom: 1px solid var(--bg-gray);
  padding-bottom: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.p-be26__fv__nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 175%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__fv__nav-links b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links {
    border-top: 1px solid var(--bg-gray);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link {
    width: 100%;
    color: var(--text-base);
  }
}
.p-be26__fv__nav-links-link a {
  display: flex;
  align-items: center;
  color: rgba(17, 17, 17, 0.5019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  padding: 0.29em 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    line-height: 1.1;
    padding: 1.6rem 0.8rem 1.6rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
    transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
    width: 100%;
    font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: bold;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
    width: 100%;
    color: var(--text-base);
    font-weight: 300 !important;
    font-size: 1rem !important;
    letter-spacing: 0.03em;
    padding: 1.25rem 0.8rem 1.25rem 0 !important;
  }
  .p-be26__fv__nav-links-link a b {
    font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: bold;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: auto;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0);
    background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
    rotate: 90deg;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a .text-wrap {
    display: flex;
    flex-direction: column;
    height: 1em;
    overflow: hidden;
  }
  .p-be26__fv__nav-links-link a .text-wrap .line {
    transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
    transform: translateY(0);
  }
}
.p-be26__fv__nav-links-link a .arrow {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a .arrow {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0);
    background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23AFB4A3"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23AFB4A3"/></svg>');
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-be26__fv__nav-links-link a .num {
  padding-right: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__nav-links-link a .num {
    color: var(--text-base);
    font-weight: 400;
    font-size: 1rem;
    padding-right: 1.25rem;
  }
}
.p-be26__fv__nav-links-link a:hover {
  color: #111111;
  transition: color 0.1s cubic-bezier(0.36, 0, 0, 1);
}

.p-be26__fv__intro {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.3rem;
}
.p-be26__fv__intro::before {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 15 + 2.4rem * (15 - 1) + 4.8rem);
  height: 100%;
  background: var(--bg-main);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro::before {
    width: 18.7rem;
  }
}
.p-be26__fv__intro::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro {
    padding-top: 11.8rem;
    padding-bottom: 10rem;
  }
}

.p-be26__fv__intro-inner {
  padding-right: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 2.4rem);
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 3.2rem);
  text-align: right;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-inner {
    padding-right: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
    padding-left: 0;
    flex-direction: column-reverse;
    gap: 9.2rem;
  }
}

.p-be26__fv__intro-left {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 6 + 2.4rem * (6 - 1) + 2.4rem);
  position: sticky;
  top: 8rem;
  left: 0;
  height: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-left {
    position: relative;
    top: auto;
    left: auto;
    flex-basis: auto;
  }
}

.p-be26__fv__intro-infoBnr {
  display: flex;
  background: #fffdef;
  gap: 1.6rem;
  padding: 1.4rem 0 1rem;
  margin-top: 0.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr {
    gap: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    width: calc(100% + 1.2rem + 1.6rem);
    margin-left: -1.6rem;
    padding: 1rem 1.2rem 1rem 1.6rem;
    margin-top: 1.4rem;
  }
}

.p-be26__fv__intro-infoBnr-img {
  flex-basis: 33.33%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr-img {
    flex-basis: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 4 + 1.2rem * (4 - 1) + 1.2rem);
  }
}

.p-be26__fv__intro-infoBnr-txtContainer {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.p-be26__fv__intro-infoBnr-label {
  display: block;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--text-base-gray);
}
.p-be26__fv__intro-infoBnr-label b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}

.p-be26__fv__intro-infoBnr-txt {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr-txt {
    width: 110%;
  }
}

.p-be26__fv__intro-infoBnr-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 100%;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
  margin-top: auto;
  font-size: 1.1rem !important;
  padding: 1.5rem 0.8rem 1.5rem 0;
}
.p-be26__fv__intro-infoBnr-link b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-be26__fv__intro-infoBnr-link .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
  rotate: 90deg;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr-link .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
.p-be26__fv__intro-infoBnr-link .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__fv__intro-infoBnr-link .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-be26__fv__intro-infoBnr-link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-102%);
}
.p-be26__fv__intro-infoBnr-link:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-infoBnr-link .arrow {
    width: 1rem;
    height: 1rem;
  }
}

.p-be26__fv__intro-right {
  flex: 1;
  padding-top: 9.3rem;
  padding-bottom: 9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-right {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-be26__fv__intro-ttl {
  display: block;
  font-size: 1.4rem;
  color: var(--text-accent-PPP);
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.04em;
  line-height: 1;
}
.p-be26__fv__intro-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-ttl {
    font-size: 1.1rem;
  }
}

.p-be26__fv__intro-txt {
  margin-top: 6rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__fv__intro-txt {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-top: 4.9rem;
  }
}

.p-be26__fv__intro-txt-punc {
  display: inline-block;
  margin-right: -0.6em;
}

.p-be26__limited {
  position: relative;
  padding-bottom: 5rem;
}
.p-be26__limited::before {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 15 + 2.4rem * (15 - 1) + 4.8rem);
  height: 100%;
  background: var(--bg-main);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited::before {
    width: 18.7rem;
  }
}
.p-be26__limited::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited {
    padding-bottom: 0;
  }
}

.p-be26__limited__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__inner {
    flex-direction: column;
    padding-left: 1.6rem;
    padding-bottom: 24rem;
  }
}

.p-be26__limited__img-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 12 + 2.4rem * (12 - 1) + 3.6rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__img-container {
    flex-basis: auto;
    width: 100%;
  }
}

.p-be26__limited__body {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 10 + 2.4rem * (10 - 1) + 4.8rem);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body {
    flex-basis: auto;
  }
}

.p-be26__limited__body-txtWrap {
  padding-top: 13.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-txtWrap {
    padding-top: 8.1rem;
  }
}

.p-be26__limited__body-label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__limited__body-label b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-label {
    font-size: 1.1rem;
  }
}

.p-be26__limited__body-ttl {
  margin-top: 6rem;
  font-size: 3.4rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__limited__body-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-ttl {
    font-size: 2.4rem;
    margin-top: 2.9rem;
  }
}

.p-be26__limited__body-copy {
  display: block;
  width: 22rem;
  margin-top: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-copy {
    width: 17.7rem;
    margin-top: 1.6rem;
  }
}

.p-be26__limited__body-txt {
  font-size: 1.5rem;
  line-height: 1.85;
  margin-top: 4rem;
  letter-spacing: 0.06em;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__limited__body-txt b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-txt {
    font-size: 1.4rem;
    margin-top: 3.8rem;
  }
}

.p-be26__limited__body-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 100%;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
  color: var(--text-accent-PPP);
  margin-top: 6rem;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 4.8rem);
}
.p-be26__limited__body-link b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-be26__limited__body-link .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-link .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
.p-be26__limited__body-link .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__limited__body-link .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-be26__limited__body-link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-102%);
}
.p-be26__limited__body-link:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-link {
    margin-top: 4rem;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 1.2rem);
  }
}
.p-be26__limited__body-link .arrow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23239360"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23239360"/></svg>');
}

.p-be26__limited__body-present {
  margin-top: 10rem;
  padding: 1.9rem 2.4rem 1.9rem;
  background: #fff;
  color: var(--text-accent-PPP);
  position: relative;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 8 + 2.4rem * (8 - 1) + 2.4rem);
  border-radius: 0.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-present {
    margin-top: 4rem;
    padding: 1.7rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 3 + 1.2rem * (3 - 1) + 1.2rem) 1.4rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    background: transparent;
    border: 1px solid rgba(17, 17, 17, 0.1019607843);
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 1.2rem);
    border-radius: 0.5rem;
  }
}

.p-be26__limited__body-present-ttl {
  font-size: 1.2rem;
  line-height: 1.55;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.06em;
}
.p-be26__limited__body-present-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-present-ttl {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-be26__limited__body-present-txt {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-present-txt {
    font-size: 1.2rem;
    margin-top: 0.8rem;
    text-align: justify;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

.p-be26__limited__body-present-txt-em {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
}
.p-be26__limited__body-present-txt-em b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-present-txt-em {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
}

.p-be26__limited__body-present-img {
  display: block;
  position: absolute;
  top: 4rem;
  right: 2.1rem;
  width: 7.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__body-present-img {
    top: 4.8rem;
    right: 1.2rem;
    width: 6.7rem;
  }
}

html.is-2025 .p-be26__limited__body-note {
  position: absolute;
  display: block;
  color: var(--text-accent-PPP);
  font-size: 1.2rem;
  line-height: 1.85;
  transform: translateY(100%);
  bottom: -7.2rem;
  right: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 4.8rem);
  width: max-content;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html.is-2025 .p-be26__limited__body-note {
    font-size: 1rem;
    position: relative;
    bottom: auto;
    right: auto;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 11 + 1.2rem * (11 - 1) + 0px);
    transform: translateY(0);
    margin-top: 2.3rem;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }
}

.p-be26__limited__subImg-container {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 2.4rem);
  width: 17.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__limited__subImg-container {
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 8 + 1.2rem * (8 - 1) + 2.8rem);
    flex-direction: row-reverse;
    gap: 0.8rem;
  }
}

.p-be26__happyWoman {
  padding-top: 14.4rem;
  position: relative;
}
.p-be26__happyWoman::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman {
    padding-top: 8rem;
  }
  .p-be26__happyWoman::after {
    display: none;
  }
}

.p-be26__happyWoman__link {
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
  height: 100%;
  margin: 0 auto;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 16 + 2.4rem * (16 - 1) + 0px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--text-accent-PPPP);
  border-bottom: 1px solid var(--text-accent-PPPP);
}
.p-be26__happyWoman__link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__happyWoman__link:hover .arrow {
  animation: iconArrowExternal 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__link {
    flex-direction: column;
    gap: 1.6rem;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 2.4rem);
    justify-content: center;
  }
}

.p-be26__happyWoman__head {
  background: var(--text-accent-PPPP);
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 0px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 2.4rem;
  padding: 3.5rem 0 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head {
    width: 100%;
    gap: 3.3rem;
    padding: 4rem 0 2rem;
  }
}

.p-be26__happyWoman__head-img {
  width: 67.5%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head-img {
    width: 19.1rem;
  }
}

.p-be26__happyWoman__head-more {
  position: relative;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #111111;
  font-size: 1.2rem;
  line-height: 110%; /* 13.2px */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  pointer-events: none;
  background: #fff;
  border-radius: 10rem;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.p-be26__happyWoman__head-more b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head-more {
    font-size: 1rem;
    line-height: 110%; /* 11px */
  }
}
.p-be26__happyWoman__head-more .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__happyWoman__head-more .text-wrap .line {
  transition: transform 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-be26__happyWoman__head-more .arrow {
  width: 1.1rem;
  height: 1em;
  margin-top: 0.1rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head-more .arrow {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.p-be26__happyWoman__head-more:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  inset: auto 0 -0.25rem 0;
  background: #111111;
  opacity: 0.7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head-more:after {
    inset: auto 0 -0.3rem 0;
  }
}
.p-be26__happyWoman__head-more:hover .text-wrap .line {
  transition: transform 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__happyWoman__head-more:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__head-more {
    padding: 0.4rem 1.23rem;
  }
}
.p-be26__happyWoman__head-more::after {
  display: none;
}
.p-be26__happyWoman__head-more .arrow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}

.p-be26__happyWoman__body {
  text-align: center;
  color: var(--text-accent-PPPP);
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__body {
    padding-bottom: 1.5rem;
  }
}

.p-be26__happyWoman__body-inner {
  width: max-content;
}

.p-be26__happyWoman__body-ttl {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__happyWoman__body-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__body-ttl {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.p-be26__happyWoman__body-txt {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__happyWoman__body-txt {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-top: 0.7rem;
  }
}

.p-be26__special {
  position: relative;
  padding-top: 10.6rem;
  padding-bottom: 12rem;
}
.p-be26__special::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special {
    padding-top: 11rem;
    padding-bottom: 10rem;
  }
  .p-be26__special::after {
    display: none;
  }
}

.p-be26__special__head {
  text-align: center;
}

.p-be26__special__head-ttl {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__head-ttl {
    font-size: 2rem;
  }
}

.p-be26__special__head-txt {
  font-size: 1.5rem;
  line-height: 1.85;
  margin-top: 2.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__head-txt {
    font-size: 1.4rem;
    margin-top: 1.3rem;
  }
}

.p-be26__special__bnrList {
  margin-top: 7.4rem;
  padding: 0 calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnrList {
    margin-top: 7.7rem;
    padding: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.1019607843);
  }
}

.p-be26__special__bnr--fragranceColumn {
  --color-bg: #f3fae2;
}
.p-be26__special__bnr--hairCondition {
  --color-bg: #dfefe5;
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-link {
  padding-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-link {
    padding-bottom: 0;
    padding-top: 7rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-num {
    top: 3.3rem;
  }
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg-container {
  padding: 3rem 0 4.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg-container {
    padding: 0;
  }
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg {
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg {
    margin: 0 0 0 calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 7 + 1.2rem * (7 - 1) + 1.2rem);
  }
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg-txt {
  display: block;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 1.1rem);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-mainImg-txt {
    width: 13.794rem;
  }
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-txt-container {
  margin-top: 4.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-txt-container {
    margin-top: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-txt-bottoms {
    margin-top: -0.7rem;
  }
}
.p-be26__special__bnr--hairCondition .p-be26__special__bnr-txt-bottoms-head-img-wrap {
  margin-left: 4.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr--hairCondition .p-be26__special__bnr-txt-bottoms-head-img-wrap {
    margin-left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
  }
}

.p-be26__special__bnr-link {
  border-top: 1px solid rgba(17, 17, 17, 0.1019607843);
  padding: 5.5rem 0 5rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
  display: flex;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
  position: relative;
}
.p-be26__special__bnr-link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-102%);
}
.p-be26__special__bnr-link:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.p-be26__special__bnr-link:hover .p-be26__special__bnr-mainImg img {
  transform: scale(1.05);
}
.p-be26__special__bnr-link:hover .p-be26__special__bnr-txt-bottoms-head-img img {
  transform: scale(1.05);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-link {
    padding: 5rem 0 0 0;
    flex-direction: column;
    border-top: none;
    gap: 2.55rem;
  }
}
.p-be26__special__bnr-link::before {
  content: "";
  background: var(--color-bg);
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 2.4rem);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-link::before {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 4 + 1.2rem * (4 - 1) + 0px);
  }
}

.p-be26__special__bnr-num {
  font-size: 1.2rem;
  position: absolute;
  top: 5rem;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
  letter-spacing: 0.03em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-num {
    font-size: 1rem;
    top: 1.3rem;
    left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
  }
}

.p-be26__special__bnr-num-inner {
  transform: translateY(0.1em);
  display: inline-block;
  padding: 0 0.3em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-num-inner {
    padding: 0 0.2em;
  }
}

.p-be26__special__bnr-mainImg-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 6 + 2.4rem * (6 - 1) + 2.4rem);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-mainImg-container {
    flex-basis: auto;
    width: 100%;
  }
}

.p-be26__special__bnr-mainImg {
  display: block;
  overflow: hidden;
}
.p-be26__special__bnr-mainImg img {
  transition: all 0.6s cubic-bezier(0.36, 0, 0, 1);
}

.p-be26__special__bnr-txt-container {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-container {
    z-index: 1;
    padding-left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
  }
}

.p-be26__special__bnr-txt-label {
  display: block;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: -0.2em;
  letter-spacing: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-label {
    font-size: 1.1rem;
    margin-top: 0;
  }
}

.p-be26__special__bnr-txt-ttl {
  display: block;
  font-size: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-top: 1.8rem;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__special__bnr-txt-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-ttl {
    font-size: 1.8rem;
    line-height: 1.65;
    margin-top: 0.7rem;
  }
}

.p-be26__special__bnr-txt-name {
  margin-top: 1.7rem;
  font-size: 1.3rem;
  line-height: 1.85;
  margin-left: 0.4em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-name {
    font-size: 1.2rem;
    margin-top: 2.4rem;
    margin-left: 0;
  }
}

.p-be26__special__bnr-txt-name-job {
  font-size: 1.1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-name-job {
    font-size: 0.9rem;
  }
}

.p-be26__special__bnr-txt-bottoms {
  margin-top: 4.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms {
    margin-top: 1.7rem;
    gap: 3rem;
    flex-direction: column;
  }
}

.p-be26__special__bnr-txt-bottoms-head {
  position: relative;
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 4.8rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head {
    flex-basis: auto;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 5 + 1.2rem * (5 - 1) + 0px);
  }
}

.p-be26__special__bnr-txt-bottoms-head-img-wrap {
  position: relative;
}

.p-be26__special__bnr-txt-bottoms-head-img {
  display: block;
  overflow: hidden;
}
.p-be26__special__bnr-txt-bottoms-head-img img {
  transition: all 0.6s cubic-bezier(0.36, 0, 0, 1);
}

.p-be26__special__bnr-txt-bottoms-head-desc {
  position: absolute;
  left: calc(-1 * ((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px));
  bottom: -0.5rem;
  transform: translateX(-100%);
  width: max-content;
  text-align: right;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head-desc {
    left: -1.2rem;
    bottom: -0.35rem;
  }
}
.p-be26__special__bnr-txt-bottoms-head-desc::before {
  content: "";
  background: #d9d9d9;
  width: 1.8rem;
  height: 1px;
  position: absolute;
  top: -2.1rem;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head-desc::before {
    width: 1.2172rem;
    top: -1.9rem;
  }
}

.p-be26__special__bnr-txt-bottoms-head-desc-ttl {
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 1.1rem;
  line-height: 1.5;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head-desc-ttl {
    font-size: 0.83rem;
  }
}

.p-be26__special__bnr-txt-bottoms-head-desc-copy {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head-desc-copy {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 1rem;
    letter-spacing: 0;
  }
}

.p-be26__special__bnr-txt-bottoms-head-desc-post {
  margin-top: 0.15rem;
  line-height: 1.8;
  font-size: 1.1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-head-desc-post {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

.p-be26__special__bnr-txt-bottoms-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 100%;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 0px);
  height: max-content;
}
.p-be26__special__bnr-txt-bottoms-link b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-be26__special__bnr-txt-bottoms-link .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-link .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
.p-be26__special__bnr-txt-bottoms-link .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__special__bnr-txt-bottoms-link .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__special__bnr-txt-bottoms-link {
    flex-basis: auto;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 7 + 1.2rem * (7 - 1) + 1.2rem);
  }
}

.p-be26__information {
  background: #fffbdf;
  position: relative;
  padding: 10rem 0 12rem;
}
.p-be26__information::after {
  content: "";
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  mix-blend-mode: multiply;
  height: 100%;
  background: var(--bg-multiply);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information::after {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information {
    padding: 3.9rem 0 5.5rem;
  }
  .p-be26__information::after {
    display: none;
  }
}

.p-be26__information__head {
  position: relative;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 20 + 2.4rem * (20 - 1) + 0px);
  margin: 0 auto;
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 5 + 2.4rem * (5 - 1) + 2.4rem);
  display: flex;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head {
    flex-direction: column;
    width: 100%;
    padding: 0 1.6rem 0 1.6rem;
    gap: 0;
  }
}

.p-be26__information__head-txt-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 7 + 2.4rem * (7 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-txt-container {
    flex-basis: auto;
  }
}

.p-be26__information__head-img-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 4.8rem);
  margin-top: 5.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-img-container {
    flex-basis: auto;
    margin: 3.994rem auto 0;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 6 + 1.2rem * (6 - 1) + 0px);
  }
}

.p-be26__information__head-label {
  position: absolute;
  top: -0.7rem;
  left: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-label {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1rem;
  }
}

.p-be26__information__head-txts {
  margin-top: -1.25rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-txts {
    margin-top: 4.8rem;
  }
}

.p-be26__information__head-ttl {
  font-size: 2.4rem;
  line-height: 1.65;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ttl {
    font-size: 1.8rem;
  }
}

.p-be26__information__head-txt {
  font-size: 1.5rem;
  line-height: 1.85;
  margin-top: 1.9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-txt {
    text-align: justify;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 1.7rem;
    padding-right: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
  }
}

.p-be26__information__head-ig {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 7 + 2.4rem * (7 - 1) + 2.4rem);
  gap: 2.4rem;
  background: #fff;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: flex-end;
  height: max-content;
  margin-top: 4rem;
}
.p-be26__information__head-ig:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__information__head-ig:hover .arrow {
  animation: iconArrowExternal 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig {
    flex-basis: auto;
    width: 100%;
    padding: 1.5rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px) 1.4rem;
    gap: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    margin-top: 3.2rem;
  }
}

.p-be26__information__head-ig-thumb {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 0px);
  border: 1px solid rgba(17, 17, 17, 0.1019607843);
  height: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 0px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-thumb {
    flex-basis: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 2 + 1.2rem * (2 - 1) + 2.4rem);
    height: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 2 + 1.2rem * (2 - 1) + 2.4rem);
  }
}
.p-be26__information__head-ig-thumb svg {
  width: 65.3%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-thumb svg {
    width: 75%;
  }
}

.p-be26__information__head-ig-txts {
  flex: 1;
}

.p-be26__information__head-ig-name {
  font-size: 1.5rem;
  display: block;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.03em;
  margin-bottom: 1.3rem;
}
.p-be26__information__head-ig-name b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-name {
    font-size: 1.3rem;
    margin-bottom: -0.2rem;
  }
}

.p-be26__information__head-ig-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 100%;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
}
.p-be26__information__head-ig-btn b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-btn {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-be26__information__head-ig-btn .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-btn .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
.p-be26__information__head-ig-btn .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__information__head-ig-btn .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__head-ig-btn {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.p-be26__information__head-ig-btn .text-wrap {
  height: 1.1em;
}

.p-be26__information__campaign {
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 20 + 2.4rem * (20 - 1) + 0px);
  margin: 0 auto 0;
  background: #fff;
  position: relative;
  padding: 5rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem) 4.9rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign {
    width: calc(100% - ((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem));
    margin: 0 auto 0;
    padding: 3.4rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 4.064rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
    margin-left: auto;
    margin-right: 0;
  }
}

.p-be26__information__campaign-label {
  position: absolute;
  top: 4.2rem;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-label {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1rem;
  }
}

.p-be26__information__campaign-list {
  display: flex;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-list {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 5.862rem;
  }
}

.p-be26__information__campaign-item {
  flex: 1;
  position: relative;
  border-top: 1px solid rgba(17, 17, 17, 0.1019607843);
  padding-top: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item {
    padding-top: 1.7rem;
  }
}

.p-be26__information__campaign-item-img {
  position: absolute;
  width: 11rem;
  top: -4.6rem;
  right: -2.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item-img {
    top: -3.6rem;
    right: -1.4rem;
    width: 8.3rem;
  }
}

.p-be26__information__campaign-item-term {
  font-size: 1.5rem;
  line-height: 1.85;
  text-underline-offset: 0.1em;
  text-decoration: underline;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  letter-spacing: 0.01em;
}
.p-be26__information__campaign-item-term b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item-term {
    font-size: 1.3rem;
  }
}

.p-be26__information__campaign-item-ttl {
  display: block;
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 2.8rem;
  letter-spacing: -0.01em;
}
.p-be26__information__campaign-item-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item-ttl {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 1.6rem;
  }
}

.p-be26__information__campaign-item-txt {
  font-size: 1.5rem;
  line-height: 1.85;
  margin-top: 0.6rem;
  text-align: justify;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item-txt {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 0.9rem;
    letter-spacing: 0;
  }
}

.p-be26__information__campaign-item-txt-em {
  position: relative;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 60%, #ffed00 60%, #ffed00 90%, transparent 90%);
}

.p-be26__information__campaign-item-link {
  display: block;
  margin-top: 3.3rem;
  color: #fff;
  background: #000;
  font-size: 1.3rem;
  padding: 1.2rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}
.p-be26__information__campaign-item-link b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__information__campaign-item-link {
    margin-top: 3.4rem;
    padding: 1.15rem 2.8rem;
    font-size: 1.1rem;
  }
}
.p-be26__information__campaign-item-link.is-disabled {
  pointer-events: none;
  background: #aaaaad;
}

html.is-2025 .p-be26__information__bottomNote {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html.is-2025 .p-be26__information__bottomNote {
    display: block;
    font-size: 1rem;
    line-height: 1.65;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 2.4rem);
    margin: 2.7rem auto 0;
  }
}

.p-be26__pickup {
  margin-top: 8.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup {
    margin-top: 8rem;
  }
}

.p-be26__pickup__inner {
  padding: 0 calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__inner {
    padding: 0;
  }
}

.p-be26__pickup__ttl {
  display: block;
  font-size: 1.6rem;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.08em;
  margin-left: 0.2em;
}
.p-be26__pickup__ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__ttl {
    display: none;
  }
}

.p-be26__pickup__report {
  margin-top: 2.9rem;
  padding: 4rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
  display: flex;
  background: var(--bg-paper);
  align-items: center;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report {
    margin-top: 0;
    padding: 4.3rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 9.9rem;
    flex-direction: column;
  }
}

.p-be26__pickup__report-head {
  flex: 1;
}

.p-be26__pickup__report-head-label {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.06em;
  margin-top: -0.4rem;
}
.p-be26__pickup__report-head-label b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
.p-be26__pickup__report-head-ttl {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 3.7rem;
  display: block;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__pickup__report-head-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-head-ttl {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 3.25rem;
    text-align: center;
  }
}

.p-be26__pickup__report-head-txt {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 2.5rem;
  text-align: justify;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-head-txt {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 2.1rem;
    width: 100%;
  }
}

.p-be26__pickup__report-head-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 100%;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 2.4rem);
  margin-top: 2rem;
}
.p-be26__pickup__report-head-link b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-head-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 1.6rem 0.8rem 1.6rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-be26__pickup__report-head-link .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-head-link .arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0;
  }
}
.p-be26__pickup__report-head-link .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__pickup__report-head-link .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-be26__pickup__report-head-link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__pickup__report-head-link:hover .arrow {
  animation: iconArrowExternal 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-head-link {
    width: 15.3rem;
    margin-top: 0;
    position: absolute;
    bottom: 3.4rem;
    right: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
  }
}

.p-be26__pickup__report-mov {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 9 + 2.4rem * (9 - 1) + 2.4rem);
  aspect-ratio: 531/299;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__report-mov {
    flex-basis: auto;
    aspect-ratio: 283/159;
    margin-top: 3.6rem;
  }
}
.p-be26__pickup__report-mov iframe {
  width: 100%;
  height: 100%;
}

.p-be26__pickup__other {
  margin-top: 8rem;
  display: flex;
  gap: 5.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other {
    margin-top: 8rem;
    gap: 0;
    flex-direction: column;
  }
}

.p-be26__pickup__other-item {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item + .p-be26__pickup__other-item .p-be26__pickup__other-item-link {
    border-top: none;
  }
}

.p-be26__pickup__other-item-link {
  display: block;
  padding: 1.5rem 0 1.8rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1019607843);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
}
.p-be26__pickup__other-item-link:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__pickup__other-item-link:hover .arrow {
  animation: iconArrowExternal 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.p-be26__pickup__other-item-link:hover .p-be26__pickup__other-item-img img {
  transform: scale(1.05);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-link {
    padding: 3.7rem 0 2rem;
  }
}

.p-be26__pickup__other-item-label {
  font-size: 1.1rem;
  line-height: 1.5;
  display: block;
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-label {
    font-size: 1rem;
  }
}

.p-be26__pickup__other-item-body {
  display: flex;
  gap: 2.4rem;
  margin-top: 3.3rem;
  align-items: flex-end;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-body {
    margin-top: 3.5rem;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

.p-be26__pickup__other-item-img {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 0px);
  display: block;
  overflow: hidden;
}
.p-be26__pickup__other-item-img img {
  transition: all 0.6s cubic-bezier(0.36, 0, 0, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-img {
    flex-basis: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 5 + 1.2rem * (5 - 1) + 1.2rem);
  }
}

.p-be26__pickup__other-item-txts {
  flex: 1;
}

.p-be26__pickup__other-item-ttl {
  font-size: 1.5rem;
  display: block;
  line-height: 2;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-be26__pickup__other-item-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-ttl {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: -0.4rem;
  }
}

.p-be26__pickup__other-item-txt {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-top: 0.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-txt {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-top: 0.6rem;
    text-align: justify;
  }
}

.p-be26__pickup__other-item-btn-wrap {
  text-align: right;
}

.p-be26__pickup__other-item-btn {
  position: relative;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #111111;
  font-size: 1.2rem;
  line-height: 110%; /* 13.2px */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  pointer-events: none;
  letter-spacing: 0.04em;
  margin-top: 2.6rem;
}
.p-be26__pickup__other-item-btn b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-btn {
    font-size: 1rem;
    line-height: 110%; /* 11px */
  }
}
.p-be26__pickup__other-item-btn .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-be26__pickup__other-item-btn .text-wrap .line {
  transition: transform 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-be26__pickup__other-item-btn .arrow {
  width: 1.1rem;
  height: 1em;
  margin-top: 0.1rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-btn .arrow {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.p-be26__pickup__other-item-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  inset: auto 0 -0.25rem 0;
  background: #111111;
  opacity: 0.7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-btn:after {
    inset: auto 0 -0.3rem 0;
  }
}
.p-be26__pickup__other-item-btn:hover .text-wrap .line {
  transition: transform 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-be26__pickup__other-item-btn:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-be26__pickup__other-item-btn {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    font-size: 1.2rem;
  }
}
.p-be26__pickup__other-item-btn .arrow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}

.iv01 {
  opacity: 0;
  transform: translateY(2rem);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s linear;
}

.iv01_show {
  opacity: 1;
  transform: translateY(0);
}

.iv02 {
  opacity: 0;
  transition: opacity 0.5s linear;
}

.iv02_show {
  opacity: 1;
}

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