@charset "UTF-8";

/* =========================================================
  01. Reset / Base
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: auto;
  max-width: 600px;
  min-width: inherit;
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

html,
body {
  overflow-x: clip !important;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: visible !important;
  }
}

ol,
ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
}

a {
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  outline: none;
  transition: all 0.25s linear;
}

a:hover {
  color: rgba(0, 0, 0, 0.6);
}

a:hover img {
  opacity: 0.8;
  transition: all 0.25s linear;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
  outline: none;
  transition: all 0.3s ease-in-out 0s;
  -ms-transition: none;
}

strong,
.bold {
  font-weight: bold;
}

.red {
  color: #ac0000;
}

.clearfix::after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: ".";
}

/* =========================================================
  02. Page Frame
========================================================= */
#container {
  width: 100%;
  margin: 0 auto;
}

#container.fixed {
  padding-top: 0;
}

#container,
main,
.before,
.page-shell,
.fixed-bg-section {
  contain: none !important;
  filter: none !important;
  perspective: none !important;
  transform: none !important;
}

#container,
main,
.page-shell,
.fixed-bg-section {
  overflow: visible !important;
}

@media screen and (min-width: 1024px) {
  body {
    max-width: none;
    min-width: 1024px;
    background:
      radial-gradient(circle at 18% 16%, rgba(181, 139, 56, 0.18), transparent 25%),
      radial-gradient(circle at 78% 82%, rgba(86, 99, 64, 0.2), transparent 28%),
      #2c251d;
  }

  #container {
    width: 430px;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    box-shadow: 0 26px 70px rgba(28, 22, 16, 0.24);
  }
}

/* =========================================================
  03. Main Visual
========================================================= */
header #mainImg {
  position: relative;
  width: 100%;
  overflow: hidden;
}

header #mainImg img {
  display: block;
}

/* =========================================================
  04. PC Side Navigation
========================================================= */
@media screen and (min-width: 1024px) {
  .lp-pc-menu {
    position: fixed;
    top: 50%;
    left: calc(50% + 215px + 48px);
    z-index: 20;
    display: grid;
    width: 186px;
    gap: 9px;
    transform: translateY(-50%);
  }

  .lp-pc-menu__seal {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    justify-self: center;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }

  .lp-pc-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(251, 246, 234, 0.94);
    color: #241f1a;
    font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
  }

  .lp-pc-menu a::after {
    width: 6px;
    height: 6px;
    content: "";
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }

  .lp-pc-menu a:hover,
  .lp-pc-menu a.is-current {
    transform: translateX(-4px);
    background: #b58b38;
    color: #fff;
  }

  .lp-pc-cta {
    position: fixed;
    right: max(32px, calc(50% - 185px - 292px));
    bottom: 30px;
    z-index: 22;
    display: inline-flex;
    width: 220px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: #8d352e;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1180px) {
  .lp-pc-menu {
    right: 24px;
    left: auto;
    width: 162px;
  }

  .lp-pc-cta {
    right: 24px;
    width: 162px;
  }
}

@media screen and (max-width: 1023px) {
  .lp-pc-menu,
  .lp-pc-cta {
    display: none;
  }
}

/* =========================================================
  05. Common Content Sections
========================================================= */
.innerWrap {
  max-width: inherit;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.fadeIn {
  opacity: 1 !important;
}

.section .ttl h2 {
  text-stroke: 2px black;
  paint-order: stroke;
  text-align: center;
  writing-mode: horizontal-tb;
  font-size: 24px;
  line-height: 1.42;
  margin-bottom: 12px;
}

.section .ttl span {
  margin-bottom: 15px;
  display: block;
  text-align: center;
  font-size: 15px;
  letter-spacing: normal;
  writing-mode: horizontal-tb;
}

.section .left,
.section .right {
  float: none;
}

.section ul.slide {
  width: 100%;
  margin-bottom: 24px;
  padding: 0 10%;
}

.section ul.slide li img {
  width: 100%;
  height: auto;
}

.section ul.slide li p {
  padding: 0 15px;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.8;
}

.section .data {
  width: auto;
  padding-top: 0;
  padding-right: 25px;
  padding-left: 25px;
  margin-bottom: 21px;
}

.section .data h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.section .data p {
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  line-height: 2.5;
}

aside {
  clear: both;
  padding-top: 15px;
  background-size: 4px 4px;
}

aside h4 {
  margin-bottom: 13px;
  font-size: 18px;
  text-align: center;
}

aside h4::after {
  display: block;
  width: 14px;
  height: 1px;
  margin: 1px auto 0;
  background: #555;
  content: "";
}

#spa {
  background-color: #fff;
  padding-top: 29px;
  background-image: url("../img/bg/contents_bg_pa02.webp");
  background-repeat: no-repeat;
  background-position: left -22px top 16px !important;
  background-size: auto 267px;
  background-blend-mode: multiply;
}

#spa .ttl {
  margin-bottom: 30px;
}

#architecture {
  background-color: #fff;
  padding-top: 54px;
  background-image: url("../img/bg/contents_bg_pa01.webp");
  background-repeat: no-repeat;
  background-position: right -75px top 54px !important;
  background-size: auto 281px;
  background-blend-mode: multiply;
}

#architecture .ttl {
  margin-bottom: 33px;
}

#cuisine {
  background-color: #fff;
  padding-top: 54px;
  background-image: url("../img/bg/contents_bg_pa01.webp");
  background-repeat: no-repeat;
  background-position: right -224px top 30px !important;
  background-size: auto 300px;
  background-blend-mode: multiply;
}

#cuisine .ttl {
  margin-bottom: 30px;
}

#cuisine aside {
  margin: 0 20px 0px;
  padding: 20px 25px 5px;
  background-color: #f9f9f9ed;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

#cuisine aside ul,
#cuisine aside p {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

#cuisine aside p:last-child {
  padding: 16px 0;
  border-bottom: none;
  text-align: left;
}

#cuisine aside ul li {
  display: block;
  margin: 5px 0;
}

/* =========================================================
  06. Slick Slider
========================================================= */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide:focus {
  outline: none;
}

ul.slick-dots {
  display: none !important;
}

/* =========================================================
  07. Diagnosis
========================================================= */
.shindan,
.shindan * {
  box-sizing: border-box;
}

.shindan {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0 34px;
  background: #fffdf8;
  color: #33383d;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}

.shindan p,
.shindan h2,
.shindan ul {
  margin-top: 0;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.steps span {
  width: 9px;
  height: 9px;
  border: 1.5px solid #33506b;
  border-radius: 50%;
  background: transparent;
  opacity: 0.4;
  transition: all 0.25s;
}

.steps span.on {
  background: #33506b;
  opacity: 1;
}

.card {
  border-radius: 4px;
  padding: 20px 20px 36px;
}

.start-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  text-align: center;
}

.start-card > :not(#momiji) {
  position: relative;
  z-index: 1;
}

.step-label {
  margin-bottom: 8px;
  color: #b5493a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
}

.question {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.9;
  text-align: center;
  -webkit-text-stroke: 10px #fffdf8;
  text-stroke: 2px black;
  paint-order: stroke;
}

.start-btn {
  display: block;
  width: 80%;
  margin: auto;
  border: none;
  color: #fffdf8;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.2s, transform 0.15s;
}

.start-btn:hover,
.start-btn:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.start-btn:focus-visible {
  outline: 2px solid #33506b;
  outline-offset: 3px;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.choices li {
  margin: 0;
  padding: 0;
}

.choices button {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(51, 80, 107, 0.22);
  border-radius: 999px;
  background: #f7f3ea;
  color: #33383d;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.choices button:hover,
.choices button:focus-visible {
  border-color: #33506b;
  background: #fff;
  transform: translateY(-1px);
}

.choices button:focus-visible {
  outline: 2px solid #33506b;
  outline-offset: 2px;
}

.back {
  display: block;
  margin: 20px auto 0;
  border: none;
  background: none;
  color: #8a8f94;
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.back:hover,
.back:focus-visible {
  color: #33506b;
}

.loading {
  display: none;
  padding: 56px 0;
  text-align: center;
}

.loading .enso {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border: 2.5px solid transparent;
  border-top-color: #33506b;
  border-right-color: #33506b;
  border-radius: 50%;
  animation: mawaru 1.1s linear infinite;
}

.loading p {
  color: #33506b;
  font-family: "Shippori Mincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.result {
  display: none;
  scroll-margin-top: 18px;
}

.result-eyebrow {
  margin-bottom: 20px;
  color: #b5493a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
}

.kotoba-wrap {
  display: flex;
  justify-content: center;
  min-height: 300px;
  padding: 34px 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(51, 80, 107, 0.15);
  border-radius: 4px;
  background: #f7f3ea;
}

.kotoba {
  max-height: 360px;
  margin-bottom: 0;
  color: #33506b;
  font-family: "Shippori Mincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 5.4vw, 23px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 2.3;
  white-space: pre-line;
  writing-mode: vertical-rl;
}

.kaisetsu {
  padding: 15px;
  margin-bottom: 28px;
  color: #33383d;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.5;
}

.kaisetsu_p {
  text-align: center;
}

.cta {
  display: block;
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 999px;
  background: #b5493a;
  box-shadow: 0 3px 10px rgba(181, 73, 58, 0.28);
  color: #fffdf8;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.cta:hover,
.cta:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* =========================================================
  08. Diagnosis Result Offer
========================================================= */
.offer-push {
  margin-top: 14px;
  padding-top: 6px;
  text-align: center;
}

.offer-panel {
  position: relative;
  padding: 30px 0 11px;
  margin: 42px 0 19px;
  border-radius: 24px;
}

.offer-panel-label {
  position: absolute;
  top: -19px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 34px);
  padding: 10px 22px;
  border-radius: 999px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.offer-main-copy {
  display: inline;
  margin-bottom: 10px;
  background: linear-gradient(transparent 68%, rgb(245 243 167 / 50%) 0);
  color: #8f5854;
  font-size: clamp(21px, 5vw, 27px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.65;
}

.offer-lead {
  margin: 12px 0 24px;
  color: #50555a;
  font-size: 13.5px;
  line-height: inherit;
  text-align: center;
}

.offer-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px dashed rgba(79, 184, 126, 0.38);
}

.offer-feature {
  padding: 20px 12px 18px;
  border-bottom: 1px dashed rgba(79, 184, 126, 0.38);
}

.offer-feature:nth-child(odd) {
  border-right: 1px dashed rgba(79, 184, 126, 0.38);
}

.offer-feature h4 {
  margin: 0 0 6px;
  color: #8f5854;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.offer-feature p {
  margin: 0 0 10px 5px;
  color: #6b6f73;
  font-size: 11.5px;
  line-height: 1.7;
  text-align: left;
}

.add-content-slider {
  margin: 24px 0 34px;
  text-align: left;
}

.add-content-marquee {
  width: calc(100% + 40px);
  padding: 0;
  margin: 0 -20px;
  overflow: hidden;
}

.add-content-track {
  display: flex;
  width: max-content;
  animation: addContentMarquee 28s linear infinite;
  will-change: transform;
}

.add-content-marquee:hover .add-content-track {
  animation-play-state: paused;
}

.add-content-group {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
}

.add-content-card img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
}

@media (max-width: 420px) {
  .add-content-marquee {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .add-content-card img {
    height: 112px;
  }

  .offer-feature {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* =========================================================
  09. Momiji Animation
========================================================= */
div#momiji {
  position: absolute;
  top: 14px;
  left: 5%;
  z-index: 0;
  width: 90%;
  height: 130px;
  pointer-events: none;
}

#momiji .inner div {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/bg/autumn.webp") center / contain no-repeat;
  opacity: 0;
  transform-origin: 0 0;
  animation-name: Drop;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

#momiji .inner div.flake2,
#momiji .inner div.flake4,
#momiji .inner div.flake6,
#momiji .inner div.flake8 {
  background-size: 5px 6px !important;
}

.flake1 {
  left: 4%;
  animation-duration: 2.5s;
}

.flake2 {
  left: 16%;
  animation-delay: 0.2s;
  animation-duration: 2.7s;
}

.flake3 {
  left: 28%;
  animation-delay: 0.4s;
  animation-duration: 2.9s;
}

.flake4 {
  left: 42%;
  animation-delay: 0s;
  animation-duration: 2.4s;
}

.flake5 {
  left: 56%;
  animation-delay: 1s;
  animation-duration: 2.4s;
}

.flake6 {
  left: 70%;
  animation-delay: 1.2s;
  animation-duration: 2.2s;
}

.flake7 {
  left: 82%;
  animation-delay: 1.2s;
  animation-duration: 2.7s;
}

.flake8 {
  left: 94%;
  animation-delay: 1.4s;
  animation-duration: 3s;
}

/* =========================================================
  10. Voice Slider / Splide
========================================================= */
.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide__track--draggable {
  user-select: none;
  -webkit-touch-callout: none;
}

.splide__list {
  display: flex;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__slide {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0;
  list-style-type: none !important;
  backface-visibility: hidden;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.ly_wave {
  background-position: top, bottom;
  background-repeat: repeat-x, repeat-x, repeat;
}

img.un_voice_ttl {
    padding: 0 7%;
}

.el_heading {
  max-width: 32.1875rem;
  padding: 10px;
  margin: 0 10%;
  border-radius: 60px;
  background-color: #b5493a;
  color: #fff;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: initial;
  text-align: center;
}

.el_heading img {
  display: block;
  width: 100%;
  height: auto;
}

.un_voice {
  padding: 20px 0;
  position: relative;
  z-index: 1;
  /* padding-block: 2rem 6rem; */
  background-color: #faf3e4;
}
img.un_tPlan_slide_img {
    margin: 0 auto;
}

.un_voice_main {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.un_voice_slide .splide__track {
  padding-bottom: 2rem;
}

.un_voice_slide .splide__slide {
  /* padding: 0 7%; */
  /*width: 100% !important;
  max-width: 100%;
  margin-right: 1rem !important;*/
}

.un_voice_slide_item {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(86px, 30%) minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 1rem;
  min-width: 0;
  padding: clamp(18px, 6vw, 28px) clamp(14px, 4.5vw, 20px);
  border-radius: 1.75rem;
  background-color: #f5f2e7;
  transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  grid-auto-flow: row;
}

.splide__slide.is-active .un_voice_slide_item {
  background-color: #fff;
}

.splide__slide.is-active .un_voice_slide_item::before {
  filter: brightness(0) invert(1);
}

.un_tPlan_slide_img {
  display: block;
  width: 100%;
  max-width: 126px;
  height: auto;
  align-self: flex-start;
  justify-self: center;
}

.un_voice_slide_item_content {
  padding-top: 4%;
  display: flex;
  min-width: 0;
  margin-top: 0;
  overflow-wrap: break-word;
  flex-direction: column;
  align-items: center;
}

.un_voice_slide_item_heading {
  margin: 0;
  color: #e8382f;
  font-size: clamp(20px, 5.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.un_voice_slide_item_heading span {
  display: inline-block;
  margin-left: 0.15em;
  font-size: 0.55em;
  vertical-align: middle;
}

.un_voice_slide_item_text {
  padding: 3%;
  margin: 6px 0 0;
  color: #4c4948;
  font-family: "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.un_voice_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.25rem;
  padding: 0;
  margin-top: 1.625rem;
  list-style: none;
  transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}

.un_voice_pagination .splide__pagination__page {
  appearance: none;
  display: block;
  width: 1.25rem;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #dabab6;
}

.un_voice_pagination .splide__pagination__page.is-active {
  background-color: #e8382f;
}

.js_voiceSlide .splide__list.slick-initialized {
  display: block;
  height: auto;
}

.js_voiceSlide .slick-list {
  overflow: hidden;
}

.js_voiceSlide .slick-track {
  display: flex;
  align-items: stretch;
}

.js_voiceSlide .slick-slide {
  height: auto;
}

.js_voiceSlide .slick-slide > div,
.js_voiceSlide .splide__slide {
  height: 100%;
}

.js_voiceSlide .splide__slide {
  padding: 0 1%;
}

.js_voiceSlide .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  column-gap: 1.25rem;
  margin: 1.625rem 0 0;
  padding: 0;
  list-style: none;
}

.js_voiceSlide .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.js_voiceSlide .slick-dots .splide__pagination__page {
  appearance: none;
  display: block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #dabab6;
  cursor: pointer;
}

.js_voiceSlide .slick-dots .slick-active .splide__pagination__page {
  background-color: #e8382f;
}




/* 
/* =========================================================
  11. Trial / Point / Service
========================================================= */
img.trial_cta {
  width: 100%;
  padding: 5px 20px 0;
}

#point {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  background-color: #f4f4ed;
  text-align: center;
}

.con_service {
  position: relative;
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
}

.con_service::after {
  display: table;
  clear: both;
  content: "";
}

.box_service {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.fac_inner {
  display: flex;
}

img.fac_img {
  width: 50%;
  padding: 2%;
}

img.voic_cd {
  background-color: #f4f4ed;
  padding: 10px 4% 3%;
}

/* =========================================================
  12. Fixed Background Message
========================================================= */
img.tha_img {
  display: none;
}

.page-shell {
  margin: 0;
  padding: 0;
}

.demo-after {
  display: none;
}

.demo-after p {
  margin: 0;
}

.fixed-bg-section {
  position: relative;
  isolation: isolate;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  padding: 0;
  margin: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
}

.sticky-background {
  grid-area: 1 / 1 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 0;
  display: block !important;
  height: 100vh !important;
  height: 100svh !important;
  align-self: start;
  margin: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    url("../img/bg/before_bg.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.scene-image,
.scene-label {
  display: none;
}

.floating-stack {
  grid-area: 1 / 1 !important;
  position: relative !important;
  z-index: 1 !important;
  width: 100%;
  padding: 10svh 18px 45svh;
  margin: 0;
  background-image: linear-gradient(0deg, #4a4a4a00, #333333ab);
}

.float-card {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.last_p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: center;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.68);
  white-space: normal;
}

/* =========================================================
  13. FAQ
========================================================= */
.FQA {
  position: relative;
  z-index: 888;
  margin-top: -14px;
  background-color: #ededed;
}

div#Question {
  width: 100%;
  max-width: 800px;
  padding-top: 40px;
}

h2.fqa_ttl {
  text-stroke: 2px black;
  paint-order: stroke;
  margin-bottom: 12px;
  font-size: 24px;
  text-align: center;
  writing-mode: horizontal-tb;
}

.section.s_03 {
  padding: 10px 10px 30px;
  margin: auto;
  background: #ededed;
}

.s_03 .accordion_one {
  padding: 20px 0px 20px 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  overflow: hidden;
  border-top: 2px solid;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
}

.s_03 .accordion_one .accordion_header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 6px 60px 0px 0;
  border-radius: 40px;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  transition-duration: 0.2s;
}

.accordion_header p {
  margin: 0 !important;
  color: #000;
  font-weight: 600;
}

.s_03 .accordion_one .accordion_header .i_box {
  position: absolute;
  top: 50%;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_03 .accordion_one .accordion_header .i_box .one_i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_03 .accordion_one .accordion_header .i_box .one_i::before,
.s_03 .accordion_one .accordion_header .i_box .one_i::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: flex;
  width: 18px;
  height: 4px;
  border-radius: 10px;
  background-color: #000;
  content: "";
  transform: rotate(0deg);
  transform-origin: center center;
}

.s_03 .accordion_one .accordion_header .i_box .one_i::before {
  top: 0;
  left: 7px;
  width: 4px;
  height: 18px;
}

.s_03 .accordion_one .accordion_inner {
  display: none;
  box-sizing: border-box;
  padding: 10px 20px 10px 0;
}

.s_03 .accordion_one .accordion_inner.show {
  display: block;
}

.s_03 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.s_03 .accordion_one .accordion_header.open .i_box {
  transform: rotate(-45deg);
}

/* =========================================================
  14. Floating Buttons
========================================================= */
.floating {
  max-width: 430px;
  position: fixed;
  right: 0;
  bottom: 13px;
  left: 0;
  z-index: 1000000;
  width: 97%;
  /* max-width: 750px; */
  margin: auto;
}

img.button-simple.yureru-s {
  width: 49%;
}

/* =========================================================
  15. Keyframes / Reduced Motion
========================================================= */
@keyframes mawaru {
  to {
    transform: rotate(360deg);
  }
}

@keyframes addContentMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes Drop {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(62px);
  }

  100% {
    opacity: 0.3;
    transform: translateY(122px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading .enso {
    border-color: #33506b;
    animation: none;
  }

  .steps span,
  .choices button,
  .start-btn,
  .cta {
    transition: none;
  }

  .add-content-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .add-content-track {
    animation: none;
  }

  #momiji .inner div {
    animation: none;
  }
}

/* =========================================================
  16.footer
========================================================= */

footer {
  background-color: #EBEFEF;
  margin: 0 auto;
  display: block;
}

footer .nav {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px;
}

footer .nav>li {
  line-height: 1.6;
  font-size: 11px;
  display: inherit;
  padding: 0 10px;
  margin-bottom: 10px;
}

footer .nav>li a {
  text-decoration: none;
  color: #969696;
}

footer .copyright {
  padding: 1rem 1rem 110px 1rem;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background-color: #555555;
  /* padding: 1rem 0; */
}
