@charset "UTF-8";
/*
Theme Name: theme name
Description: description
Author:yashibous
Author URI: https://yashibous.com
*/
/* 
 * Foundation
 * --------------------------
 */
/* 
 * Layout
 * --------------------------
 */
/*
 * header.scss
 */
/*
 * Commoon.scss
 */
/*
 * text-setting.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@300&display=swap");
/*
 * base.scss
 */
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--layout-header-height);
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-weight: 500;
}

img {
  display: block;
  object-fit: contain;
  object-position: top left;
}

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

/*
 * responsive.scss
 */
.sp-first {
  width: 300px;
}
@media screen and (min-width: 966px) {
  .sp-first {
    width: 1200px;
  }
}

.sp-first-tab {
  width: 300px;
}
@media screen and (min-width: 966px) and (max-width: 1366px) {
  .sp-first-tab {
    width: 800px;
  }
}
@media screen and (min-width: 966px) {
  .sp-first-tab {
    width: 1200px;
  }
}

.pc-first {
  width: 1200px;
}
@media screen and (max-width: 965px) {
  .pc-first {
    width: 300px;
  }
}

.pc-fitst-tab {
  width: 1200px;
}
@media screen and (max-width: 965px) {
  .pc-fitst-tab {
    width: 300px;
  }
}
@media screen and (min-width: 966px) and (max-width: 1366px) {
  .pc-fitst-tab {
    width: 800px;
  }
}

/*
 * function.scss
 */
/*
 * variables.scss
 */
:root {
  /*
   * ブレイクポイント
   */
  --breakpoint-tablet: 966px;
  --breakpoint-pc: 966px;
  --fluid-max: 1366;
  --fluid-min: 966;
  /*
   * レイアウト
   */
  --layout-width-max: 100%;
  --layout-content-width-wide: var(--layout-width-max);
  --layout-content-width: 375px;
  --layout-content-width-narrow: 100%;
  --layout-header-height: 50px;
}
@media screen and (min-width: 966px) {
  :root {
    --layout-width-max: 1920px;
    --layout-content-width-wide: 1280px;
    --layout-content-width: 966px;
    --layout-content-width-narrow: 750px;
    --layout-header-height: 70px;
  }
}
:root {
  /*
   * 余白
   */
  /* スペースプリセット */
  --space-preset-xs: clamp(10px, calc(12px + ((12 - 10) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 12px);
  --space-preset-s: clamp(16px, calc(18px + ((18 - 16) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 18px);
  --space-preset-m: clamp(20px, calc(30px + ((30 - 20) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 30px);
  --space-preset-l: clamp(30px, calc(50px + ((50 - 30) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 50px);
  --space-preset-xl: clamp(40px, calc(70px + ((70 - 40) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 70px);
  --space-preset-xxl: clamp(60px, calc(100px + ((100 - 60) / (var(--fluid-max) - var(--fluid-min))) * (100vw - var(--fluid-min) * 1px)), 100px);
  --space-block-gap: 2.5em;
  /* 基本のpadding */
  --content-padding-block: 70px;
  --content-padding-inline: var(--space-preset-m);
  /*
   * タイポグラフィ
   */
  --font-size-s: 16px;
  --font-size-m: 18px;
  --font-size-l: 26px;
  --font-size-l-sub: 28px;
  --font-size-xl: 34px;
  --font-size-xl-sub: 32px;
  --font-size-xxl: 60px;
  --font-size-xxl-sub: 55px;
  --font-size-xxxl: 130px;
  /*
   * カラーパレット
   */
  /* カラープリセット */
  --color-base: #ffffff;
  --color-contrast: #2a1605;
  --color-primary: #e54375;
  --color-secondary: #eb6850;
  --color-tertiary: #ed7f56;
  --color-gray: #cccccc;
  --color-dark-gray: #777777;
  --color-light-gray: #f5f5f5;
  --color-grad-primary: linear-gradient(to right, #9b2067, #cf235f 35%, #ea7559 75%, #fcbe2d);
  --color-grad-button: linear-gradient(to top, #ca1f60, #e93278);
  --color-grad-gold: linear-gradient(to right, #ab7319, #e6ba5c, #ab7319);
  --color-grad-gold2: linear-gradient(to top, #784a02, #b78930 77%);
  --color-grad-gold3: linear-gradient(to bottom, #e6ba5c, #ab7319, #e6ba5c);
  /* テキスト */
  --color-title-en: #fc93a6;
  --color-text: var(--color-contrast);
  --color-text-shadow: var(--color-gray);
  --color-hover: var(--color-secondary);
  /* 背景 */
  --color-bg-primary: var(--color-base);
  --color-bg-secondary: var(--color-gray);
  --color-bg-tertiary: var(--color-light-gray);
  --color-bg-header: var(--color-primary);
  --color-bg-footer: #fff9fc;
  --color-bg-fixed: var(--color-primary);
  --color-bg-cta: var(--color-primary);
  /*
   * z-index
   */
  --z-index-base: 100;
  --z-index-header: 1000;
  --z-index-fixed: 2000;
  --z-index-to-top: 3000;
  --z-index-overlay: 4000;
}

/*
 * function.scss
 */
.l-header {
  --m-padding-block: var(--space-preset-xs);
  --m-padding-inline: var(--content-padding-inline);
  --m-height: var(--layout-header-height);
  --m-width: var(--layout-width-max);
  height: var(--m-height);
  background-color: var(--color-bg-header);
}
.l-header[data-type*=fixed] {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--m-width);
  height: 100%;
  padding-block: var(--m-padding-block);
  padding-inline: var(--m-padding-inline);
  margin-inline: auto;
}

/*
 * footer.scss
 */
.l-footer {
  --m-padding-block: 32px;
  --m-padding-inline: var(--content-padding-inline);
  --m-font-size: 16px;
  --m-copyright-font-size: 16px;
  --m-color: #8f6678;
  width: 100%;
  background-color: var(--color-bg-footer);
  padding-block: var(--m-padding-block);
}

.l-footer__inner {
  display: grid;
  place-items: center;
  gap: 30px;
  width: fit-content;
  margin-inline: auto;
}

.l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--m-font-size);
  color: var(--m-color);
  text-align: center;
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--m-copyright-font-size);
  color: var(--m-color);
}

/*
 * mainvisual.scss
 */
.l-mainvisual {
  --mainvisual-height: auto;
  width: 100%;
  margin-inline: auto;
}
.l-mainvisual[data-type*=fullscreen] {
  --mainvisual-height: calc(100vh - var(--layout-header-height));
}
.l-mainvisual__image {
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.l-mainvisual__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.l-mainvisual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
 * section.scss
 */
.l-section {
  --m-contents-width: var(--layout-content-width);
  --m-padding-block: var(--content-padding-block);
  --m-padding-inline: var(--content-padding-inline);
  --m-content-gap: var(--space-block-gap);
  max-width: var(--layout-width-max);
  margin-inline: auto;
}
.l-section[data-type*=wide] {
  --m-contents-width: var(--layout-content-width-wide);
}
.l-section[data-type*=narrow] {
  --m-contents-width: var(--layout-content-width-narrow);
}
.l-section[data-type*=full] {
  --m-contents-width: 100%;
  --m-padding-inline: 0;
}

.l-section__inner {
  max-width: var(--m-contents-width);
  margin-inline: auto;
  padding-inline: var(--m-padding-inline);
}

.l-section__contents {
  padding-block: var(--m-padding-block);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--m-content-gap);
  width: 100%;
}
.l-section__contents[data-type=auto] {
  width: fit-content;
}

@media screen and (max-width: 965px) {
  .l-section {
    --m-padding-inline: 20px;
  }
  .l-section__contents {
    padding-block: 20px 50px;
    gap: 25px;
  }
}
/* 
 * Component
 * --------------------------
 */
/*
 * faq.scss
 */
.c-faq {
  --m-q-icon: "Q.";
  --m-a-icon: "A.";
  --m-q-font-size: var(--font-size-m);
  --m-a-font-size: var(--font-size-m);
  --m-q-color: var(--color-text);
  --m-a-color: var(--color-text);
  --m-q-bg-color: var(--color-gray);
  --m-a-bg-color: var(--color-light-gray);
}

.c-faq > * {
  background-color: var(--faq-bg-color);
  padding-block: 1em;
  padding-inline: 3em 2em;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--faq-font-size);
  line-height: 1.4;
  color: var(--faq-color);
}
.c-faq > *::before {
  content: var(--faq-icon);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1em;
  position: absolute;
  top: 1em;
  left: 1em;
}
.c-faq > *:first-child {
  --faq-font-size: var(--m-q-font-size);
  --faq-color: var(--m-q-color);
  --faq-bg-color: var(--m-q-bg-color);
  --faq-icon: var(--m-q-icon);
}
.c-faq > *:last-child {
  --faq-font-size: var(--m-a-font-size);
  --faq-color: var(--m-a-color);
  --faq-bg-color: var(--m-a-bg-color);
  --faq-icon: var(--m-a-icon);
  font-weight: 500;
}

/*
 * c-slider.scss
 */
.c-slider {
  --m-bullet-color: #e5e5e5;
  --m-bullet-color-active: #e54375;
  --m-bullet-size: 20px;
  --m-icon-arrow: url("../image/slider-arrow.png");
  --m-arrow-width: 35px;
  --m-arrow-height: 45px;
  --m-fade-duration: 0.8s;
  --m-content-gap: 2em;
  width: 100%;
  max-width: 836px;
  margin-inline: auto;
  overflow: visible;
}
.c-slider .swiper-button-next,
.c-slider .swiper-button-prev {
  --swiper-navigation-sides-offset: -60px;
  width: var(--m-arrow-width);
  height: var(--m-arrow-height);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
}
.c-slider .swiper-button-next:hover,
.c-slider .swiper-button-prev:hover {
  transform: translateY(-2px) scale(1.01);
}
.c-slider .swiper-button-next::after,
.c-slider .swiper-button-prev::after {
  content: "";
  width: var(--m-arrow-width);
  height: var(--m-arrow-height);
  background-image: var(--m-icon-arrow);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px color-mix(in srgb, #8a8a8a 40%, transparent));
}
.c-slider .swiper-button-next:hover::after,
.c-slider .swiper-button-prev:hover::after {
  filter: drop-shadow(0 8px 24px color-mix(in srgb, #8a8a8a 40%, transparent));
}
.c-slider .swiper-button-prev::after {
  transform: scaleX(-1);
}
.c-slider .swiper-pagination {
  --swiper-pagination-color: var(--m-bullet-color-active);
  --swiper-pagination-bullet-inactive-color: var(--m-bullet-color);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: var(--m-bullet-size);
  --swiper-pagination-bullet-horizontal-gap: 0.6em;
  position: relative;
  margin-top: var(--space-preset-s);
}
.c-slider .swiper-pagination-bullet {
  width: var(--m-bullet-size);
  height: var(--m-bullet-size);
  background-color: var(--m-bullet-color);
  opacity: 1;
  transition: background-color 0.3s ease;
  --swiper-pagination-bullet-horizontal-gap: 15px;
}
.c-slider .swiper-pagination-bullet-active {
  background-color: var(--m-bullet-color-active);
}

@media screen and (max-width: 965px) {
  .c-slider {
    --m-bullet-size: 8px;
  }
  .c-slider .swiper-pagination-bullet {
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
}
.c-slider__item {
  padding-block: 20px;
}

@media screen and (max-width: 965px) {
  .c-slider__item {
    padding-block: 0;
  }
}
.c-slider.swiper-fade .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.c-slider.swiper-fade .swiper-slide-active .c-image img {
  animation: c-slider-fade-in var(--m-fade-duration) ease-out forwards;
}

@keyframes c-slider-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
 * table.scss
 */
.c-table {
  --m-head-font-size: 18px;
  --m-head-color: var(--color-text);
  --m-head-bg-color: #f6f4f4;
  --m-data-font-size: 18px;
  --m-data-color: var(--color-text);
  --m-data-bg-color: #ffffff;
  --m-border-color: #e6e5e5;
  width: 100%;
}

.c-table__data {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--m-data-font-size);
  color: var(--m-data-color);
  background-color: var(--m-data-bg-color);
  padding: 1em 1.5em;
}

.c-table__head {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--m-head-font-size);
  color: var(--m-head-color);
  background-color: var(--m-head-bg-color);
  padding: 1em 1.5em;
}

.c-table[data-type=border] .c-table__data {
  border: 1px solid var(--m-border-color);
}
.c-table[data-type=border] .c-table__head {
  border: 1px solid var(--m-border-color);
}

/*
 * parts.scss
 */
/*
* button
*/
.c {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  position: relative;
  width: 100%;
  height: 54px;
}
.c::after {
  position: absolute;
  content: "";
  background-image: url(../image/button-icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 6px;
  top: calc(50% - 2px);
  right: 15px;
}

/*
* tag
*/
.tag {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.84px;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  gap: 10px;
  background-color: var(--color-accent-main);
  border-radius: 5px;
  width: fit-content;
}
.tag::before {
  content: "";
  background-image: url(../image/tag-xmark.svg);
  background-size: 100% 100%;
  width: 10px;
  height: 10px;
}
.tag--small {
  font-size: 12px;
  letter-spacing: 0.84px;
}

/*
* accordion
*/
/* アコーディオン全体の設定 */
.accordion {
  --m-color: var(--color-contrast);
  --m-size: 1em;
  --m-transition: 0.3s ease;
  position: relative;
}
.accordion::before, .accordion::after {
  content: "";
  position: absolute;
  top: calc(var(--m-size) * 2);
  right: var(--m-size);
  width: var(--m-size);
  height: 2px;
  background-color: var(--m-color);
  transition: transform var(--m-transition);
  transform-origin: center;
  z-index: 1;
  transform: rotate(0deg);
}
.accordion:not(.open):after {
  transform: rotate(90deg);
}
.accordion > :first-child {
  cursor: pointer;
}
.accordion > :last-child {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding-block 400ms ease;
  padding-block: 0;
  margin: 0;
}
.accordion.open > :last-child {
  max-height: 50vh;
  padding-block: 0 var(--m-padding-unit, 20px);
}

/*
*
* sorting
*/
.sorting {
  position: relative;
  width: 114px;
}
.sorting.dashboard-info__top-right {
  width: 100px;
}
.sorting.dashboard-info__top-right .sorting__select {
  padding: 7px 10px 7px 30px;
}
.sorting::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../image/parts__icon--sorting.svg);
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  top: 7px;
  left: 10px;
}
.sorting__select {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 5px;
  width: 100%;
  height: 29px;
  padding: 7px 10px 7px 30px;
  color: var(--color-accent-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.91px;
  text-align: left;
  border-radius: 43px;
  background: var(--color-gray1);
  cursor: pointer;
}

/*
* icons
*/
.icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0;
}

.icon::before {
  display: inline-block;
  content: "";
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.icon--visible::before {
  background-image: url(../image/parts__icon--invisible.svg);
  width: 1em;
  height: 1em;
}
.icon--visible.active::before {
  background-image: url(../image/parts__icon--visible.svg);
}
.icon--open-in-new {
  position: relative;
  display: inline;
}
.icon--open-in-new::before {
  content: none;
}
.icon--open-in-new::after {
  content: none;
  display: inline-block;
  margin-left: 5px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/parts__icon--open-in-new.svg);
  width: 1em;
  height: 1em;
  position: relative;
  top: 2px;
}
.icon--open-in-new:hover::after {
  content: "";
}

/*
* textlink
*/
.textlink {
  color: var(--color-accent-main);
  transition: color 0.3s ease-out;
}
.textlink:hover {
  color: var(--color-black);
}

/*
* form-icon
*/
.form-icon {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.form-icon::after {
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  border-radius: 11px;
  background-color: var(--color-accent-sub);
  content: "任意";
  color: var(--color-white);
  text-align: justify;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  line-height: 1;
}
.form-icon--required::after {
  content: "必須";
  background-color: #f24e1e;
}

/*
* fuchi
*/
.fuchi {
  display: inline-block;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  font-family: "Noto Sans JP";
  /* 設定値サンプル */
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 0.3em;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.4));
}

.fuchi svg {
  width: 100%;
  height: auto;
}

.fuchi text {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  fill: inherit;
  stroke: none;
  text-anchor: start;
  dominant-baseline: alphabetic;
  filter: inherit;
}

.fuchi text.bg {
  stroke: inherit;
  stroke-width: inherit;
  paint-order: stroke;
  stroke-linejoin: round;
}

.parts__text.fuchi {
  fill: #fff;
  stroke: blue;
  width: 240px;
  filter: none;
}

/*
 * c-title.scss
 */
.c-title {
  --m-font-size: var(--font-size-l);
  --m-color: var(--color-title);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--m-font-size);
  color: var(--m-color);
  text-align: center;
}

.c-title__en {
  font-family: "minion-3", serif;
  font-weight: 400;
  font-size: var(--font-size-xxxl);
  line-height: 1;
  color: var(--color-title-en);
  opacity: 0.2;
}

@media screen and (max-width: 965px) {
  .c-title__en {
    font-size: 75px;
  }
}
.c-title__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-xxl);
  line-height: 1.3;
  color: var(--color-primary);
  font-feature-settings: "palt";
  margin-top: -1.5em;
  letter-spacing: 0.04em;
}
.c-title__ja span.sub2 {
  letter-spacing: -0.15em;
}

@media screen and (max-width: 965px) {
  .c-title__ja {
    font-size: 36px;
  }
}
/*
 * c-title.scss
 */
.c-text {
  --m-font-size: var(--font-size-m);
  --m-color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--m-font-size);
  line-height: 1.8;
  color: var(--m-color);
  text-align: left;
}

@media screen and (max-width: 965px) {
  .c-text {
    font-size: 14px;
  }
}
/*
 * c-title.scss
 */
.c-image {
  max-width: var(--m-width);
  height: auto;
}
.c-image img {
  width: 100%;
  height: auto;
}

/*
 * stack.scss
 */
.c-stack {
  --m-content-gap: var(--space-block-gap);
  display: block grid;
  width: 100%;
  row-gap: var(--m-content-gap);
}
.c-stack[data-type*=faq] {
  --m-content-gap: var(--space-preset-m);
}

/*
 * c-button.scss
 */
.c-button {
  --m-font-size: var(--font-size-l);
  --m-color: var(--color-base);
  --m-bg-color: var(--color-primary);
  display: block flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-image: var(--color-grad-button);
  width: 400px;
  border-radius: 100px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
  box-shadow: 0 4px 12px color-mix(in srgb, #8a8a8a 40%, transparent);
}
.c-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px color-mix(in srgb, #8a8a8a 40%, transparent);
}

@media screen and (max-width: 965px) {
  .c-button {
    width: 95%;
  }
}
.c-button__text {
  font-weight: 700;
  font-size: var(--m-font-size);
  line-height: 1.5;
  color: var(--m-color);
  text-align: center;
  padding-block: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 965px) {
  .c-button__text {
    font-size: 20px;
    padding-block: 0.6em;
  }
}
.c-button__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../image/c-button-icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 965px) {
  .c-button__icon {
    width: 18px;
    height: 18px;
  }
}
/* 
 * Pages
 * --------------------------
 */
/*
 * p-index.scss
 */
@media screen and (max-width: 965px) {
  main {
    overflow-x: hidden;
  }
}
.p-sec01 {
  background-image: url(../image/p-sec01-bg.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.p-sec01__text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-l);
  line-height: 1.8;
  color: var(--color-primary);
  text-align: center;
}
.p-sec01__text1 span.sub1 {
  color: var(--color-tertiary);
}

@media screen and (max-width: 965px) {
  .p-sec01__text1 {
    line-height: 1.4;
    font-size: 22px;
  }
}
.tegaki-message {
  display: inline-block;
  background-color: var(--color-base);
  border: 2px solid var(--color-primary);
  margin-block: 0.4em;
  margin-inline: 10px;
  padding-inline: 10px;
  height: 43px;
}
.tegaki-message img {
  display: inline;
  vertical-align: top;
}

@media screen and (max-width: 965px) {
  .tegaki-message {
    padding-inline: 0;
    margin-block: 0.4em;
  }
  .tegaki-message img {
    scale: 0.9;
  }
}
.p-sec01__text2 {
  text-align: center;
}

@media screen and (max-width: 965px) {
  .p-sec01__text2 {
    margin-inline: -0.6em;
  }
}
.p-sec01__text3 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 1.8;
  color: var(--color-primary);
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
}
.p-sec01__text3 span.sub1 {
  font-size: 0.9em;
}
.p-sec01__text3 span.sub2 {
  letter-spacing: -0.3em;
}

@media screen and (max-width: 965px) {
  .p-sec01__text3 {
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.08em;
  }
}
.p-sec01__text5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-l);
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
}
.p-sec01__text5 strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (max-width: 965px) {
  .p-sec01__text5 {
    font-size: 18px;
    line-height: 1.6;
  }
}
.p-sec01__text6 {
  text-align: center;
}

@media screen and (max-width: 965px) {
  .p-sec01__text6 {
    font-feature-settings: "palt";
  }
}
.p-sec01__block1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-sec01__block2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* p-sec03 */
.p-sec03 .l-section__inner {
  padding-inline: 50px;
}

@media screen and (max-width: 965px) {
  .p-sec03 .l-section__inner {
    padding-inline: 20px;
  }
}
.p-sec03__item {
  --m-body-bg: #fceef5;
  --m-accent: var(--color-primary);
  --m-name-en-color: var(--color-primary);
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 80px;
}
.p-sec03__item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-sec03__item:nth-child(even) .p-sec03__image {
  margin-inline: -90px 0;
}
.p-sec03__item:nth-child(even) .p-sec03__instagram {
  right: auto;
  left: -40px;
}
.p-sec03__item:nth-child(even) .p-sec03__body {
  padding-inline: 40px;
}
.p-sec03__item:nth-child(even) .p-sec03__name-en {
  text-align: left;
}
.p-sec03__item:nth-child(even) .p-sec03__title {
  justify-content: flex-start;
}
.p-sec03__item:nth-child(even) .p-sec03__title:before {
  right: auto;
  left: -20px;
}
.p-sec03__item:nth-child(even) .p-sec03__text {
  text-align: left;
}

@media screen and (max-width: 965px) {
  .p-sec03__item {
    margin-top: 80px;
  }
  .p-sec03__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .p-sec03__item:nth-child(even) .p-sec03__image {
    margin-inline: 0;
    left: unset;
    right: 0;
  }
  .p-sec03__item:nth-child(even) .p-sec03__instagram {
    right: -15px;
    left: unset;
  }
  .p-sec03__item:nth-child(even) .p-sec03__body {
    padding-inline: 20px;
  }
  .p-sec03__item:nth-child(even) .p-sec03__name-en {
    text-align: left;
  }
  .p-sec03__item:nth-child(even) .p-sec03__title {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .p-sec03__item:nth-child(even) .p-sec03__title:before {
    right: auto;
    left: 0;
  }
  .p-sec03__item:nth-child(even) .p-sec03__text {
    text-align: left;
  }
}
.p-sec03__instagram {
  position: absolute;
  right: -40px;
  bottom: -30px;
  z-index: 2;
  display: block;
  width: 92px;
  aspect-ratio: 1;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-sec03__instagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-sec03__instagram:hover {
  transform: translateY(-2px) scale(1.04);
}

@media screen and (max-width: 965px) {
  .p-sec03__instagram {
    bottom: -15px;
    right: -15px;
  }
}
.p-sec03__image {
  flex-shrink: 0;
  width: 180px;
  margin-inline: 0 -90px;
  position: relative;
  z-index: 1;
  translate: 0 -30px;
  filter: drop-shadow(2px 2px 1px rgba(138, 138, 138, 0.16));
}
.p-sec03__image .c-image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 965px) {
  .p-sec03__image {
    width: 128px;
    position: absolute;
    top: -15px;
    left: 0;
  }
}
.p-sec03__badge {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-l);
  line-height: 1.2;
  color: var(--color-base);
  position: absolute;
  top: 10px;
  left: 90px;
  z-index: -1;
  padding-block: 0.15em 0.2em;
  padding-inline: 3.5em 0.75em;
  background-image: linear-gradient(to right, var(--color-secondary), #f9a180);
  white-space: nowrap;
}

@media screen and (max-width: 965px) {
  .p-sec03__badge {
    font-size: 14px;
    padding-inline: 0.5em;
    left: unset;
    right: -200px;
    top: 20px;
  }
}
.p-sec03__body {
  flex: 1;
  min-width: 0;
  position: relative;
  background-color: var(--m-body-bg);
  border-radius: 0 50px 0 50px;
  padding-block: 0;
  padding-inline: 40px;
  filter: drop-shadow(2px 2px 1px rgba(138, 138, 138, 0.16));
}
.p-sec03__body > * {
  translate: 0 -20px;
}

@media screen and (max-width: 965px) {
  .p-sec03__body {
    padding-inline: 20px;
    padding-block: 0 20px;
  }
  .p-sec03__body > * {
    translate: 0 0;
  }
}
.p-sec03__name-en {
  font-family: "minion-3", serif;
  font-weight: 500;
  font-size: 55px;
  line-height: 1;
  color: var(--m-name-en-color);
  font-style: italic;
  opacity: 0.5;
  pointer-events: none;
  white-space: nowrap;
  text-align: right;
}

@media screen and (max-width: 965px) {
  .p-sec03__name-en {
    font-size: 22px;
    line-height: 1.4;
  }
}
.p-sec03__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0.3em 0.8em;
  padding-bottom: 0.6em;
  margin-bottom: 0.8em;
}
.p-sec03__title:before {
  content: "";
  border-bottom: 1px solid var(--m-accent);
  width: 540px;
  position: absolute;
  bottom: 0;
  right: -20px;
}

@media screen and (max-width: 965px) {
  .p-sec03__title {
    flex-direction: column;
    align-items: flex-end;
  }
  .p-sec03__title:before {
    width: 80%;
    right: 0;
  }
}
.p-sec03__role {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-m);
  line-height: 1.5;
  color: var(--m-accent);
}

@media screen and (max-width: 965px) {
  .p-sec03__role {
    font-size: 15px;
    line-height: 1.2;
  }
}
.p-sec03__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-l);
  line-height: 1.3;
  color: var(--m-accent);
  font-feature-settings: "palt";
}

@media screen and (max-width: 965px) {
  .p-sec03__name {
    font-size: 22px;
    line-height: 1.2;
  }
}
.p-sec03__text {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-s);
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 965px) {
  .p-sec03__text {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding-inline: 0;
    font-feature-settings: "palt";
  }
}
.p-sec03__item--host {
  --m-body-bg: #faf7de;
  --m-accent: var(--color-secondary);
  --m-name-en-color: #ed735d;
}
.p-sec03__item--host .p-sec03__body {
  padding-inline: 30px;
}
.p-sec03__item--host .p-sec03__role {
  font-size: 14px;
  line-height: 1.2;
}
.p-sec03__item--host .p-sec03__image {
  translate: 0 -40px;
}
.p-sec03__item--host .p-sec03__instagram {
  bottom: -10px;
  right: -50px;
}

@media screen and (max-width: 965px) {
  .p-sec03__item--host .p-sec03__body {
    padding-inline: 20px 15px;
  }
  .p-sec03__item--host .p-sec03__image {
    translate: -10px -30px;
  }
  .p-sec03__item--host .p-sec03__instagram {
    bottom: -15px;
    right: -15px;
  }
}
/* p-sec04 */
.p-sec04 .l-section__contents {
  --m-content-gap: 60px;
}
.p-sec04 .l-section__inner {
  padding-inline: 0;
}

@media screen and (max-width: 965px) {
  .p-sec04 .l-section__inner {
    padding-inline: 10px;
  }
}
.p-sec04__contents {
  --m-time-width: 80px;
  --m-line-gap: 70px;
  --m-line-left: calc(var(--m-time-width) + var(--m-line-gap) / 2 + 32px);
  --m-body-left: calc(var(--m-time-width) + var(--m-line-gap) + 44px);
  background-image: url(../image/p-sec04__contents-bg.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 40px 0 40px;
  filter: drop-shadow(3px 3px 0px rgba(138, 138, 138, 0.25));
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-block: 20px;
  padding-inline: 32px;
}
.p-sec04__contents::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: var(--m-line-left);
  width: 2px;
  background-color: var(--color-primary);
}

@media screen and (max-width: 965px) {
  .p-sec04__contents {
    --m-time-width: 40px;
    --m-line-gap: 30px;
    --m-line-left: calc(var(--m-time-width) + var(--m-line-gap) / 2 + 10px);
    --m-body-left: 0;
    padding-inline: 10px;
  }
  .p-sec04__contents::before {
    width: 1px;
  }
}
.p-sec04__item {
  position: relative;
}

.p-sec04__head {
  display: grid;
  grid-template-columns: var(--m-time-width) 1fr;
  column-gap: var(--m-line-gap);
  align-items: baseline;
}

.p-sec04__time,
.p-sec04__booth-title {
  font-family: "minion-3", serif;
  font-weight: 500;
  font-size: var(--font-size-xl-sub);
  line-height: 1.3;
  color: var(--color-primary);
}

@media screen and (max-width: 965px) {
  .p-sec04__time,
  .p-sec04__booth-title {
    font-size: 16px;
  }
}
.p-sec04__time {
  text-align: right;
}

.p-sec04__label,
.p-sec04__booth-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-l-sub);
  line-height: 1.3;
  color: var(--color-primary);
}

@media screen and (max-width: 965px) {
  .p-sec04__label,
  .p-sec04__booth-title {
    font-size: 14px;
  }
}
.p-sec04__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  margin-left: var(--m-body-left);
  margin-top: 25px;
}

@media screen and (max-width: 965px) {
  .p-sec04__body {
    margin-top: 10px;
  }
}
.p-sec04__card {
  width: 100%;
  min-height: 100px;
  background-color: var(--color-base);
  border-radius: 14px;
  box-shadow: 0 3px 8px color-mix(in srgb, #8a8a8a 25%, transparent);
}

@media screen and (max-width: 965px) {
  .p-sec04__card {
    min-height: 50px;
    box-shadow: none;
  }
}
.p-sec04__card--booth {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-inline: 80px 0;
}

@media screen and (max-width: 965px) {
  .p-sec04__card--booth {
    padding-inline: 40px 0;
    gap: 10px;
  }
}
.p-sec04__booth-title {
  flex-shrink: 0;
}

.p-sec04__images {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.p-sec04__images li {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 8px color-mix(in srgb, #8a8a8a 20%, transparent);
}
.p-sec04__images li:nth-child(1) {
  translate: 0 -40px;
}
.p-sec04__images li:nth-child(2) {
  translate: 0 -15px;
}
.p-sec04__images li:nth-child(3) {
  translate: 0 -5px;
}
.p-sec04__images li:nth-child(4) {
  translate: 0 -25px;
}
.p-sec04__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 965px) {
  .p-sec04__images {
    gap: 5px;
  }
  .p-sec04__images li {
    width: 50px;
  }
  .p-sec04__images li:nth-child(1) {
    translate: 0 -20px;
  }
  .p-sec04__images li:nth-child(2) {
    translate: 0 -7px;
  }
  .p-sec04__images li:nth-child(3) {
    translate: 0 -3px;
  }
  .p-sec04__images li:nth-child(4) {
    translate: 0 -12px;
  }
}
.p-sec04__card--session {
  position: relative;
  padding-block: 10px 20px;
  padding-inline: 80px 0;
}

@media screen and (max-width: 965px) {
  .p-sec04__card--session {
    padding-block: 10px;
    padding-inline: 50px 0;
  }
}
.p-sec04__speaker-image {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 110px;
  aspect-ratio: 1;
  translate: 0 -50%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 8px color-mix(in srgb, #8a8a8a 20%, transparent);
}
.p-sec04__speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 965px) {
  .p-sec04__speaker-image {
    width: 56px;
    left: -10px;
  }
}
.p-sec04__session-text {
  position: relative;
  z-index: 1;
}

.p-sec04__speaker-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-l-sub);
  line-height: 1.3;
  color: var(--color-text);
  display: inline-block;
  margin-bottom: 0.2em;
}

@media screen and (max-width: 965px) {
  .p-sec04__speaker-name {
    font-size: 14px;
    display: block;
    color: var(--p-sec04__session-title-color);
  }
}
.p-sec04__session-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl-sub);
  line-height: 1.25;
  color: var(--p-sec04__session-title-color);
}

@media screen and (max-width: 965px) {
  .p-sec04__session-title {
    font-size: 14px;
    color: var(--color-base);
    background-image: linear-gradient(to right, var(--p-sec04__session-title-color) 50%, color-mix(in srgb, var(--p-sec04__session-title-color) 80%, #fff));
    display: inline;
  }
}
.p-sec04__card--ogata {
  --p-sec04__session-title-color: #b090e2;
}

.p-sec04__card--lily {
  --p-sec04__session-title-color: #3892fd;
}

.p-sec04__card--suenaga {
  --p-sec04__session-title-color: #c58004;
}

.p-sec04__card--noguchi {
  --p-sec04__session-title-color: #ea6d92;
}

.p-sec04__card--itonaoki {
  --p-sec04__session-title-color: #81b40a;
}

.p-sec04__card--special {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-block: 25px 20px;
  padding-inline: 40px;
}

@media screen and (max-width: 965px) {
  .p-sec04__card--special {
    padding-block: 10px;
    padding-inline: 20px;
    gap: 10px;
  }
}
.p-sec04__speaker-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.p-sec04__speaker-list li {
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 8px color-mix(in srgb, #8a8a8a 20%, transparent);
}
.p-sec04__speaker-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 965px) {
  .p-sec04__speaker-list {
    gap: 10px;
  }
  .p-sec04__speaker-list li {
    width: 56px;
  }
  .p-sec04__speaker-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-sec04__special-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-xl-sub);
  line-height: 1.3;
  color: var(--color-primary);
  text-align: center;
}

@media screen and (max-width: 965px) {
  .p-sec04__special-text {
    font-size: 14px;
  }
}
/* p-sec06 */
.p-sec06 .l-section__inner {
  padding-inline: 0;
}
.p-sec06 .l-section__contents {
  --m-content-gap: 50px;
}

@media screen and (max-width: 965px) {
  .p-sec06__contents {
    padding-inline: 20px;
  }
}
.p-sec06__image1 {
  width: 100%;
  max-width: 773px;
  margin-inline: auto;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  box-shadow: 3px 3px 3px color-mix(in srgb, #8a8a8a 20%, transparent);
}

@media screen and (max-width: 965px) {
  .p-sec06__image1 {
    max-width: 100%;
  }
  .p-sec06__image1 img {
    width: 100%;
  }
}
.p-sec06__text {
  text-align: center;
  margin-top: 50px;
}
.p-sec06__text .sub1 {
  color: var(--color-primary);
}

@media screen and (max-width: 965px) {
  .p-sec06__text {
    margin-top: 25px;
  }
}
.p-sec06__image2 {
  margin-top: 40px;
}
.p-sec06__image2 img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* p-sec07 */
.p-sec07 {
  background-image: url(../image/p-sec07-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-sec07 .l-section__contents {
  --m-padding-block: 80px 55px;
  --m-content-gap: 70px;
}
.p-sec07#tokuten-vip {
  background-image: url(../image/p-sec07-bg2.webp);
}

@media screen and (max-width: 965px) {
  .p-sec07 .l-section__contents {
    padding-block: 40px;
  }
}
.p-sec07__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-xxl);
  line-height: 1.2;
  color: var(--color-primary);
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99));
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.p-sec07__title::before, .p-sec07__title::after {
  content: "";
  background-image: url(../image/p-sec07__title-after.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -12px;
  width: 66px;
  height: auto;
  aspect-ratio: 66/125;
}
.p-sec07__title::before {
  left: -45px;
  scale: -1 1;
}
.p-sec07__title::after {
  right: -45px;
}

@media screen and (max-width: 965px) {
  .p-sec07__title {
    font-size: 30px;
  }
  .p-sec07__title::before, .p-sec07__title::after {
    top: -5px;
    width: 35px;
  }
  .p-sec07__title::before {
    left: -30px;
  }
  .p-sec07__title::after {
    right: -30px;
  }
}
.p-sec07__image-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 965px) {
  .p-sec07__image-list {
    margin-top: 20px;
    gap: 10px;
  }
}
.p-sec07__image-item {
  width: 170px;
  flex: 0 1 170px;
}
.p-sec07__image-item img {
  width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(138, 138, 138, 0.16));
}

@media screen and (max-width: 965px) {
  .p-sec07__image-item {
    width: 60px;
    flex: 0 1 60px;
  }
  .p-sec07__image-item img {
    filter: drop-shadow(2px 3px 0px rgba(138, 138, 138, 0.16));
  }
}
.p-sec07__text1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.3;
  color: var(--color-base);
  text-align: center;
  font-style: italic;
  background-image: linear-gradient(to right, rgba(171, 115, 25, 0.8), rgba(230, 186, 92, 0.8), rgba(171, 115, 25, 0.8));
  width: fit-content;
  padding-inline: 1.3em;
  padding-block: 0.15em;
  margin-inline: auto;
  margin-top: 36px;
  border-radius: 0 10px 0 10px;
  filter: drop-shadow(2px 2px 6px rgba(138, 138, 138, 0.16));
}
.p-sec07__text1 .sub1 {
  font-size: 38px;
}

@media screen and (max-width: 965px) {
  .p-sec07__text1 {
    font-size: 20px;
    padding-block: 0.3em;
    margin-top: 15px;
  }
  .p-sec07__text1 .sub1 {
    font-size: 18px;
  }
}
.p-sec07__text2 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-xl-sub);
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  margin-top: 16px;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99));
}

@media screen and (max-width: 965px) {
  .p-sec07__text2 {
    font-size: 15px;
    margin-top: 15px;
  }
}
.p-sec07__text3 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "palt";
  margin-inline: -0.6em;
}
.p-sec07__text3 .sub1 {
  font-size: 38px;
}

@media screen and (max-width: 965px) {
  .p-sec07__text3 {
    font-size: 22px;
    margin-top: 10px;
  }
  .p-sec07__text3 .sub1 {
    font-size: 20px;
  }
}
.p-sec07__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 965px) {
  .p-sec07__list {
    gap: 15px;
    margin-top: 25px;
  }
}
.p-sec07__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.p-sec07__item .p-sec07__text1 {
  margin-top: 0;
  padding-inline: 0.5em;
}
.p-sec07__item .p-sec07__text3 {
  transform: skewX(-8deg);
  text-align: left;
  margin-inline: 0;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99));
}
.p-sec07__item:nth-child(4) {
  align-self: flex-start;
}
.p-sec07__item:nth-child(4) .p-sec07__text3 {
  padding-top: 0.1em;
  line-height: 1.4;
}

@media screen and (max-width: 965px) {
  .p-sec07__item {
    gap: 10px;
  }
  .p-sec07__item .p-sec07__text3 {
    margin-top: 0;
  }
}
/* p-sec08 */
.p-sec08__contents {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 965px) {
  .p-sec08__contents {
    width: 100%;
  }
}
.p-sec08__block1 {
  background-image: url(../image/p-sec08__block1-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 40px 0 40px;
  position: relative;
  display: flex;
  gap: 20px;
  width: 100%;
  padding-block: 30px;
  padding-inline: 30px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block1 {
    padding-block: 25px;
    padding-inline: 15px;
    flex-direction: column;
  }
}
.p-sec08__card {
  --p-sec08-card-color: #b27c23;
  --p-sec08-card-gradient: var(--color-grad-gold);
  --p-sec08-card-border: #c28d35;
  background-color: var(--color-base);
  border: 3px solid var(--p-sec08-card-border);
  border-radius: 0 40px 0 40px;
  filter: drop-shadow(3px 3px 3px color-mix(in srgb, #8a8a8a 20%, transparent));
  padding-bottom: 20px;
  transform-origin: center bottom;
}
.p-sec08__card:hover {
  animation: p-sec08-card-swing 0.4s ease-in-out;
}

@media screen and (max-width: 965px) {
  .p-sec08__card {
    border-width: 1px;
  }
}
.p-sec08__card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

@keyframes p-sec08-card-swing {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: 1deg;
  }
  50% {
    rotate: -1deg;
  }
  75% {
    rotate: 0.5deg;
  }
  100% {
    rotate: 0deg;
  }
}
.p-sec08__card-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-xl-sub);
  line-height: 1.7;
  color: var(--color-base);
  text-align: center;
  font-feature-settings: "palt";
  padding-inline: 0.4em;
  padding-block: 0.1em;
  background-image: var(--p-sec08-card-gradient);
  border-radius: 0 37px 0 0;
  width: 100%;
}
.p-sec08__card-title .sub1 {
  font-size: 30px;
}

@media screen and (max-width: 965px) {
  .p-sec08__card-title {
    font-size: 28px;
  }
  .p-sec08__card-title .sub1 {
    font-size: 26px;
  }
}
.p-sec08__card-text1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-l-sub);
  line-height: 1.3;
  color: #b27c23;
  text-align: center;
  font-feature-settings: "palt";
  width: fit-content;
  margin-inline: auto;
  padding-inline: 0.2em;
  background-image: linear-gradient(to bottom, transparent 80%, rgba(178, 124, 35, 0.1960784314) 80%);
  margin-bottom: 20px;
}
.p-sec08__card-text1 .sub1 {
  font-size: 50px;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 965px) {
  .p-sec08__card-text1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .p-sec08__card-text1 .sub1 {
    font-size: 43px;
  }
}
.p-sec08__card-price {
  font-family: "minion-3", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.3;
  color: var(--p-sec08-card-color);
  text-align: center;
  margin-top: 10px;
}
.p-sec08__card-price .sub1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--p-sec08-card-color);
}
.p-sec08__card-price .sub2 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--p-sec08-card-color);
}

@media screen and (max-width: 965px) {
  .p-sec08__card-price {
    font-size: 43px;
    margin-top: 10px;
  }
  .p-sec08__card-price .sub1 {
    font-size: 24px;
  }
}
.p-sec08__card-text2 {
  font-family: "minion-3", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  color: var(--color-base);
  text-align: center;
  margin-top: 6px;
}

@media screen and (max-width: 965px) {
  .p-sec08__card-text2 {
    font-size: 38px;
  }
}
.p-sec08__card-text3 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: var(--p-sec08-card-color);
  width: fit-content;
  min-height: 150px;
  margin-inline: auto;
  margin-top: 10px;
  font-feature-settings: "palt";
}
.p-sec08__card-text3 .sub1 {
  display: inline-block;
  width: 0.5em;
}

@media screen and (max-width: 965px) {
  .p-sec08__card-text3 {
    font-size: 14px;
    min-height: 3lh;
  }
}
.p-sec08__card-text4 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.9;
  color: var(--p-sec08-card-color);
  width: fit-content;
  min-height: 150px;
  margin-inline: auto;
  margin-top: 30px;
  font-feature-settings: "palt";
}

@media screen and (max-width: 965px) {
  .p-sec08__card-text4 {
    font-size: 21px;
    min-height: 3lh;
    margin-top: 20px;
  }
}
.p-sec08__card-button {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-base);
  text-align: center;
  width: fit-content;
  min-width: 200px;
  margin-inline: auto;
  display: block;
  margin-top: 20px;
  padding-block: 0.4em;
  padding-inline: 0.4em;
  background-image: var(--p-sec08-card-gradient);
  border-radius: 100px;
  filter: drop-shadow(0 0 2px color-mix(in srgb, #8a8a8a 40%, transparent));
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
}
.p-sec08__card-button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: drop-shadow(0 4px 12px color-mix(in srgb, #8a8a8a 40%, transparent));
}
.p-sec08__card-button .sub1 {
  font-size: 18px;
}

.p-sec08__card-link:hover .p-sec08__card-button {
  transform: translateY(-2px) scale(1.01);
  filter: drop-shadow(0 4px 12px color-mix(in srgb, #8a8a8a 40%, transparent));
}

@media screen and (max-width: 965px) {
  .p-sec08__card-button {
    font-size: 16px;
    padding-block: 0.5em;
    margin-top: 10px;
  }
  .p-sec08__card-button .sub1 {
    font-size: 15px;
  }
}
.p-sec08__block1-speakers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.p-sec08__block1-speakers img {
  width: 94px;
  height: auto;
  aspect-ratio: 1/1;
  filter: drop-shadow(3px 3px 3px color-mix(in srgb, #8a8a8a 20%, transparent));
}

@media screen and (max-width: 965px) {
  .p-sec08__block1-speakers img {
    width: 56px;
  }
}
.p-sec08__block1-text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: var(--font-size-l);
  line-height: 1.9;
  color: var(--color-text);
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.99));
}

@media screen and (max-width: 965px) {
  .p-sec08__block1-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.p-sec08__block2 {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  max-width: 810px;
  margin-inline: auto;
  margin-top: 100px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block2 {
    margin-top: 80px;
    gap: 20px;
  }
}
.p-sec08__block2-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  position: relative;
}
.p-sec08__block2-row .p-sec08__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 365px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block2-row {
    gap: 20px;
    flex-direction: column;
    padding-inline: 10px;
  }
  .p-sec08__block2-row .p-sec08__card {
    min-height: 0;
  }
}
.p-sec08__block2-row--primary .p-sec08__card {
  flex: 0 1 240px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block2-row--primary .p-sec08__card {
    flex: 0 1 auto;
  }
}
.p-sec08__block2-row--secondary .p-sec08__card-text3 {
  min-height: 95px;
}
.p-sec08__block2-row--secondary .p-sec08__card {
  flex: 0 1 350px;
  min-height: 305px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block2-row--secondary {
    background-color: #fcf5e9;
    border-radius: 0 40px 0 40px;
    padding-block: 20px;
  }
  .p-sec08__block2-row--secondary .p-sec08__card {
    flex: 0 1 auto;
    min-height: 0;
  }
}
.p-sec08__card--vvvip .p-sec08__card-button {
  min-width: 200px;
  max-width: unset;
}

.p-sec08__card--vip {
  --p-sec08-card-color: #ef6f9d;
  --p-sec08-card-gradient: linear-gradient(to bottom, #ff9bc0, #ee6f9d);
  --p-sec08-card-border: #ef6f9d;
  position: relative;
}

.p-sec08__card-icon {
  position: absolute;
  top: -1lh;
  left: 10px;
  margin: auto;
  width: fit-content;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #ef6f9d;
}
.p-sec08__card-icon::before, .p-sec08__card-icon::after {
  content: "|";
  display: inline-block;
  width: 0.5em;
  text-align: center;
  margin-inline: 0.4em;
}
.p-sec08__card-icon::before {
  rotate: -45deg;
}
.p-sec08__card-icon::after {
  rotate: 45deg;
}

@media screen and (max-width: 965px) {
  .p-sec08__card-icon {
    left: 0;
    right: 0;
  }
}
.p-sec08__card--s,
.p-sec08__card--pair {
  --p-sec08-card-color: #f28b73;
  --p-sec08-card-gradient: linear-gradient(to bottom, #ffb49b, #f28b73);
  --p-sec08-card-border: #f28b73;
}

.p-sec08__card--a,
.p-sec08__card--group {
  --p-sec08-card-color: #d7aa24;
  --p-sec08-card-gradient: linear-gradient(to bottom, #f4df80, #d7aa24);
  --p-sec08-card-border: #d7aa24;
}

.p-sec08__block3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

.p-sec08__block3-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-sec08__block3-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-s);
  line-height: 1.5;
  color: var(--color-primary);
  text-align: center;
  border-bottom: 1px solid var(--color-primary);
}

@media screen and (max-width: 965px) {
  .p-sec08__block3-note {
    font-size: 14px;
  }
}
.p-sec08__block3-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-s);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
}

@media screen and (max-width: 965px) {
  .p-sec08__block3-text {
    font-size: 14px;
  }
}
.p-sec08__block3-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-l-sub);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  margin-top: 50px;
}

.p-sec08__flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  margin-top: 25px;
}

@media screen and (max-width: 965px) {
  .p-sec08__flow {
    flex-direction: column;
    gap: 20px;
    padding-inline: 20px;
  }
}
.p-sec08__flow-item {
  --p-sec08-flow-label-bg: linear-gradient(to right, #ffd1de, #f98bb1);
  --p-sec08-flow-icon-bg: #f8a5bf;
  --p-sec08-flow-body-bg: #fde6ef;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 220px;
}

@media screen and (max-width: 965px) {
  .p-sec08__flow-item {
    width: 100%;
    flex: 0 1 auto;
  }
}
.p-sec08__flow-item--step1 {
  --p-sec08-flow-label-bg: linear-gradient(to right, #fbd2de, #fbd2de);
  --p-sec08-flow-icon-bg: #fbd2de;
  --p-sec08-flow-body-bg: #ffeef3;
}

.p-sec08__flow-item--step2 {
  --p-sec08-flow-label-bg: linear-gradient(to right, #fcb3c9, #fcb3c9);
  --p-sec08-flow-icon-bg: #fcb3c9;
  --p-sec08-flow-body-bg: #ffe8ef;
}

.p-sec08__flow-item--step3 {
  --p-sec08-flow-label-bg: linear-gradient(to right, #fd9bb8, #fd9bb8);
  --p-sec08-flow-icon-bg: #fd9bb8;
  --p-sec08-flow-body-bg: #ffd7e3;
}

.p-sec08__flow-label {
  font-family: "minion-3", serif;
  font-weight: 800;
  font-size: var(--font-size-l-sub);
  line-height: 1;
  color: var(--color-base);
  font-style: italic;
  text-align: center;
  width: 150px;
  padding-block: 0.04em 0.08em;
  background-image: var(--p-sec08-flow-label-bg);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  text-shadow: 0 0 12px rgba(229, 67, 117, 0.6274509804), 0 0 6px #f7becf, 0 0 6px #f7becf;
}
.p-sec08__flow-label .sub1 {
  font-size: 1.25em;
}

@media screen and (max-width: 965px) {
  .p-sec08__flow-label {
    font-size: 20px;
    padding-block: 0.2em;
    width: 110px;
  }
}
.p-sec08__flow-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 210px;
  margin-top: -70px;
  padding-block: 80px 24px;
  padding-inline: 10px 30px;
  background-color: var(--p-sec08-flow-body-bg);
  clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
  translate: 15px 0;
}

@media screen and (max-width: 965px) {
  .p-sec08__flow-body {
    height: auto;
    margin-top: -95px;
    padding-block: 95px 30px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
    translate: 0 0;
    position: relative;
    z-index: -1;
    padding-inline: 0;
  }
}
.p-sec08__flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 134px;
  aspect-ratio: 1;
  z-index: 1;
  margin-top: 20px;
  border-radius: 50%;
  background-color: var(--p-sec08-flow-icon-bg);
  color: var(--color-base);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-sec08__flow-icon.p-sec08__flow-icon--device {
  background-image: url(../image/p-sec08__flow-icon-image1.png);
}
.p-sec08__flow-icon.p-sec08__flow-icon--line {
  background-image: url(../image/p-sec08__flow-icon-image2.png);
}
.p-sec08__flow-icon.p-sec08__flow-icon--send {
  background-image: url(../image/p-sec08__flow-icon-image3.png);
}

@media screen and (max-width: 965px) {
  .p-sec08__flow-icon {
    width: 75px;
    margin-top: 10px;
  }
}
.p-sec08__flow-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-s);
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
}

@media screen and (max-width: 965px) {
  .p-sec08__flow-text {
    font-size: 14px;
  }
}
.p-sec08__block3-button {
  width: 405px;
  margin-top: 40px;
}

@media screen and (max-width: 965px) {
  .p-sec08__block3-button {
    width: 100%;
  }
}
/* p-sec09 */
.p-sec09 .l-section__contents {
  --m-content-gap: 50px;
}

.p-sec09__contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.p-sec09__map {
  width: 100%;
  max-width: 770px;
  margin-inline: auto;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
}
.p-sec09__map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 770/293;
}

@media screen and (max-width: 965px) {
  .p-sec09__map {
    max-width: 100%;
  }
  .p-sec09__map iframe {
    aspect-ratio: 336/228;
  }
}
.p-sec09__block1 {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

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

.p-sec09__venue-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl);
  line-height: 1.5;
  color: var(--color-text);
}

@media screen and (max-width: 965px) {
  .p-sec09__venue-name {
    font-size: 22px;
  }
}
.p-sec09__venue-address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-m);
  line-height: 1.6;
  color: var(--color-text);
  margin-top: 0.5em;
}
.p-sec09__venue-address a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 965px) {
  .p-sec09__venue-address {
    font-size: 14px;
  }
}
.p-sec09__access {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-sec09__access-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 965px) {
  .p-sec09__access-title {
    font-size: 22px;
  }
}
.p-sec09__access-card {
  background-color: color-mix(in srgb, #f39bb5 10%, transparent);
  border-radius: 0 40px 0 40px;
  padding-block: 28px;
  padding-inline: 40px;
  max-width: 770px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 965px) {
  .p-sec09__access-card {
    padding-block: 20px;
    padding-inline: 10px 0;
  }
}
.p-sec09__access-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-l);
  line-height: 1.5;
  color: #f07da0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 18px;
}

@media screen and (max-width: 965px) {
  .p-sec09__access-card-title {
    font-size: 20px;
  }
}
.p-sec09__access-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  background-image: url(../image/p-sec09-access-icon-train.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  translate: 0 3px;
}

.p-sec09__access-card--car .p-sec09__access-icon {
  width: 32px;
  height: 25px;
  background-image: url(../image/p-sec09-access-icon-car.png);
}

.p-sec09__access-list,
.p-sec09__access-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-m);
  line-height: 1.8;
  color: var(--color-text);
}

@media screen and (max-width: 965px) {
  .p-sec09__access-list,
  .p-sec09__access-text {
    font-size: 14px;
  }
}
.p-sec09__access-list {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.p-sec09__access-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-sec09__access-list li::before {
  content: "・";
}

.p-sec09__access-list a {
  color: inherit;
  text-decoration: none;
}

/* p-sec10 */
.p-sec10 {
  background-color: #fff8fb;
}
.p-sec10 .c-stack[data-type*=faq] {
  gap: 28px;
  width: 100%;
  max-width: 770px;
  margin-inline: auto;
}
.p-sec10 .c-faq {
  --m-q-font-size: 24px;
  --m-a-font-size: 24px;
  --m-q-color: var(--color-primary);
  --m-a-color: var(--color-text);
  --m-q-bg-color: var(--color-base);
  --m-a-bg-color: var(--color-base);
  --m-q-icon: "";
  --m-a-icon: "";
  background-color: var(--color-base);
  box-shadow: 0 3px 12px color-mix(in srgb, #8a8a8a 16%, transparent);
}
.p-sec10 .c-faq > * {
  padding-inline: 48px;
  background-color: transparent;
}
.p-sec10 .c-faq > *::before {
  content: none;
}
.p-sec10 .c-faq > :first-child {
  padding-block: 20px;
}
.p-sec10 .accordion {
  --m-color: var(--color-primary);
  --m-size: 18px;
}
.p-sec10 .accordion::before, .p-sec10 .accordion::after {
  top: 32px;
  right: 24px;
  height: 3px;
}

@media screen and (max-width: 965px) {
  .p-sec10 .c-stack[data-type*=faq] {
    gap: 20px;
  }
  .p-sec10 .c-faq {
    --m-q-font-size: 14px;
    --m-a-font-size: 14px;
  }
  .p-sec10 .c-faq > * {
    padding-inline: 20px 45px;
  }
  .p-sec10 .accordion {
    --m-color: var(--color-primary);
    --m-size: 18px;
  }
  .p-sec10 .accordion::before, .p-sec10 .accordion::after {
    top: 28px;
    right: 24px;
    height: 2px;
  }
}
/* 
 * Utility
 * --------------------------
 */
/*
 * animation.scss
 */
/* modaal */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-inner-wrapper {
  padding: 30px 0;
}

.modaal-container {
  width: 90%;
  max-width: 480px;
  border-radius: 30px;
}

.modaal-content-container {
  padding: 30px;
}

/* 下からふわっと */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/* キラッと */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -180px;
  background: rgba(255, 255, 255, 0.5333333333);
  width: 30px;
  height: 100%;
  animation: shineanime 3s ease-in-out infinite;
  z-index: 30;
}

@keyframes shineanime {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
}
.reflection {
  position: relative;
  overflow: hidden;
}

.reflection::after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 5s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  41% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(200) rotate(45deg);
    opacity: 0;
  }
  51% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
}
/*
 * util.scss
 */
@media screen and (min-width: 966px) {
  .sp {
    display: none;
  }
}

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

.box-shadow {
  box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.box-bg-grad {
  background-image: linear-gradient(30deg, var(--color-accent-main), var(--color-white) 30%, var(--color-white) 70%, var(--color-accent-main));
}

.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-grad-primary {
  background-image: var(--color-grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-grad-gold {
  background-image: var(--color-grad-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-grad-gold2 {
  background-image: var(--color-grad-gold2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-grad-gold3 {
  background-image: var(--color-grad-gold3);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-accent {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-accent-main);
}

.text-color--black {
  color: var(--color-black);
}
.text-color--green {
  color: var(--color-green);
}
.text-color--pink {
  color: var(--color-pink);
}
.text-color--orange {
  color: var(--color-orange);
}
.text-color--yellow {
  color: var(--color-yellow);
}

.text-deco-marker {
  background: linear-gradient(transparent 85%, var(--color-marker) 85%, var(--color-marker) 100%, transparent 100%);
}

.text-deco-marker2 {
  background: linear-gradient(transparent 85%, var(--color-marker) 2 85%, var(--color-marker) 2 100%, transparent 100%);
}

.text-deco-dash--accent, .text-deco-dash {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-dash--accent {
  text-decoration-color: var(--color-accent-main);
}

.text-deco-regular {
  font-weight: 400;
}

.text-deco-medium {
  font-weight: 500;
}

.text-deco-bold {
  font-weight: 700;
}

.text-deco-black {
  font-weight: 900;
}

.text-deco-underline--accent, .text-deco-underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-underline--accent {
  text-decoration-color: var(--color-accent-main);
}

.text-deco-overdot--small, .text-deco-overdot--accent, .text-deco-overdot {
  position: relative;
}
.text-deco-overdot--small::after, .text-deco-overdot--accent::after, .text-deco-overdot::after {
  position: absolute;
  content: "・";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
  font-feature-settings: "palt";
  top: -0.5em;
  left: 0.25em;
}

.text-deco-overdot--accent::after {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent-main);
  font-feature-settings: "palt";
}
.text-deco-overdot--small::after {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.5em;
  line-height: 1;
  font-feature-settings: "palt";
  top: -0.3em;
  left: 0.8em;
}

.text-deco-wave {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #a27e8a;
}

.text-deco-wave2 {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #ff0000;
}

.text-shadow {
  text-shadow: 3px 3px 0px var(--color-accent-main);
}
.text-shadow--blur {
  text-shadow: 5px 5px 8px var(--color-accent-main), 5px -5px 8px var(--color-accent-main), -5px 5px 8px var(--color-accent-main), -5px -5px 8px var(--color-accent-main);
}
.text-shadow--box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 3px 3px 20px var(--color-white), inset -3px -3px 20px var(--color-white);
}

.text-num {
  font-weight: 700;
  font-size: 1.4em;
  font-feature-settings: "palt";
}

.text-fz60 {
  font-size: 0.6em;
}

.text-fz70 {
  font-size: 0.7em;
}

.text-fz80 {
  font-size: 0.8em;
}

.text-fz90 {
  font-size: 0.9em;
}

.text-fz110 {
  font-size: 1.1em;
}

.text-fz120 {
  font-size: 1.2em;
}

.text-fz130 {
  font-size: 1.3em;
}

.text-fz140 {
  font-size: 1.4em;
}

.text-fz150 {
  font-size: 1.5em;
}

.text-fz200 {
  font-size: 2em;
  line-height: 1.3;
}

.text-fz250 {
  font-size: 2.5em;
}

.mb_vw0 {
  margin-bottom: unset;
}

.mb_vw10 {
  margin-bottom: 10px;
}

.mb_vw20 {
  margin-bottom: 20px;
}

.mb_vw30 {
  margin-bottom: 30px;
}

.mb_vw40 {
  margin-bottom: 40px;
}

.mb_vw50 {
  margin-bottom: 50px;
}

.mb_vw60 {
  margin-bottom: 60px;
}

.mb_vw70 {
  margin-bottom: 70px;
}

.mb_vw80 {
  margin-bottom: 80px;
}

.mb_vw90 {
  margin-bottom: 90px;
}

.mb_vw100 {
  margin-bottom: 100px;
}

.plr_vw10 {
  padding-left: 10px;
  padding-right: 10px;
}

.plr_vw20 {
  padding-left: 20px;
  padding-right: 20px;
}

.plr_vw30 {
  padding-left: 30px;
  padding-right: 30px;
}

.plr_vw40 {
  padding-left: 40px;
  padding-right: 40px;
}

.plr_vw60 {
  padding-left: 60px;
  padding-right: 60px;
}

.nanameline--accent, .nanameline {
  position: relative;
}
.nanameline--accent::before, .nanameline::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--color-black);
  left: -20px;
  bottom: -0.1em;
  transform: rotate(-40deg);
}
.nanameline--accent::after, .nanameline::after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--color-black);
  right: -20px;
  bottom: -0.1em;
  transform: rotate(40deg);
}

.nanameline--accent::before, .nanameline--accent::after {
  background-color: var(--color-accent-main);
  width: 2px;
}
.nanameline--accent::before {
  left: -0.6em;
}
.nanameline--accent::after {
  right: -0.6em;
}

.dummy {
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
  padding: 10px;
}

.dummy100 {
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
  padding: 10px;
}

.dummy200 {
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy300 {
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy500 {
  width: 100%;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy1000 {
  width: 100%;
  height: 1000px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis--oneline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis--line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
}/*# sourceMappingURL=style.css.map */