@charset "UTF-8";
/*----------------------------------
    レスポンシブ用クランプ関数
    1440pxのvwで画面幅を縮め、画面幅768pxまでデザインを維持したい時
    768pxでは極端に小さくなるため、ここでは960pxの値を維持させる
-----------------------------------*/
/*----------------------------------
clamp-vw関数
VWでフォントサイズを制限する関数
$min-font: 最小フォントサイズ（px）
$max-font: 最大フォントサイズ（px）
$min-viewport: VW最小値（初期値: 320px）
$max-viewport: VW最大値（初期値: 1024px）
-----------------------------------*/
/* ===========================================
 * 専用clamp
 * ======================================== */
html {
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
  line-height: normal;
  color: #333;
  background: #D3C6B7;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 80px; /* ヘッダー分の高さに調整 */
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe,
video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.l-footer {
  background: #40220F;
  text-align: center;
  padding-block: clamp(1.875rem, 8vw, 3.4rem) clamp(0.9375rem, 4vw, 1.7rem);
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.l-footer__nav {
  -webkit-margin-before: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
          margin-block-start: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
}

.l-footer__nav-item {
  color: #fff;
  -webkit-margin-before: clamp(0.625rem, 2.6666666667vw, 1.1333333333rem);
          margin-block-start: clamp(0.625rem, 2.6666666667vw, 1.1333333333rem);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
}

.to-top {
  position: fixed;
  z-index: 20;
  width: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
  height: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
  right: clamp(1.4375rem, 6.1333333333vw, 2.6066666667rem);
  bottom: clamp(1.4375rem, 6.1333333333vw, 2.6066666667rem);
  text-align: center;
  font-size: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
  color: #fff;
}
.to-top .circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.to-top .circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: clamp(0.4375rem, 1.8666666667vw, 0.7933333333rem);
  -webkit-transform-origin: 0 clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
          transform-origin: 0 clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
}
.to-top .arrow_01 {
  position: absolute;
  top: 50%;
  left: 52%;
  width: clamp(0.25rem, 1.0666666667vw, 0.4533333333rem);
  height: clamp(1.375rem, 5.8666666667vw, 2.4933333333rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.to-top .arrow_01 svg {
  width: 100%;
  height: 100%;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes scroll_01 {
  0% {
    opacity: 1;
  }
  70% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  71% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll_01 {
  0% {
    opacity: 1;
  }
  70% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  71% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.l-header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1.875rem;
}
.l-header a:nth-of-type(2) {
  display: none;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
.l-header a:nth-of-type(2) img {
  background: #fff;
}

.l-header__logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hamburger {
  position: relative;
  z-index: 30;
  width: 30px;
  height: 12px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  bottom: 0;
}
.hamburger.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.mask {
  display: none;
  width: 100vw;
  height: 100dvh;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-header__nav {
  display: none;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  background: rgba(64, 34, 15, 0.8);
  padding-block: 10dvh 3dvh;
  padding-inline: 20vw;
}

.l-header__nav-item {
  color: #fff;
  text-align: center;
  width: 5rem;
}
.l-header__nav-item:nth-child(2n) {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.l-header__nav-item span {
  display: block;
}
.l-header__nav-item span.en {
  font-size: 1.125rem;
  font-weight: 700;
}
.l-header__nav-item span.ja {
  font-size: 0.625rem;
  font-weight: 700;
}

.l-header__sns {
  -webkit-margin-before: 5dvh;
          margin-block-start: 5dvh;
  position: relative;
}
.l-header__sns::before {
  content: "";
  position: absolute;
  width: 5.625rem;
  height: 1px;
  background: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-header__sns-link {
  -webkit-padding-before: 1.25rem;
          padding-block-start: 1.25rem;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.l-main {
  max-width: 680px;
  margin-inline: auto;
  overflow-x: hidden;
  background: #D3C6B7;
  position: relative;
  z-index: 1;
}
.l-inner {
  margin-inline: auto;
  padding-inline: clamp(1.875rem, 8vw, 3.4rem);
}

.animate.blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 0.8s;
  transition: -webkit-filter 0.8s;
  transition: filter 0.8s;
  transition: filter 0.8s, -webkit-filter 0.8s;
}
.animate.fade {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.animate.animated.blur {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.animate.animated.fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes bg {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  12% {
    -webkit-transform: rotate(45deg) scale(0.9);
            transform: rotate(45deg) scale(0.9);
  }
  25% {
    -webkit-transform: rotate(90deg) scale(1);
            transform: rotate(90deg) scale(1);
  }
  37% {
    -webkit-transform: rotate(135deg) scale(0.9);
            transform: rotate(135deg) scale(0.9);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
            transform: rotate(180deg) scale(1);
  }
  62% {
    -webkit-transform: rotate(225deg) scale(0.9);
            transform: rotate(225deg) scale(0.9);
  }
  75% {
    -webkit-transform: rotate(270deg) scale(1);
            transform: rotate(270deg) scale(1);
  }
  87% {
    -webkit-transform: rotate(315deg) scale(0.9);
            transform: rotate(315deg) scale(0.9);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}

@keyframes bg {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  12% {
    -webkit-transform: rotate(45deg) scale(0.9);
            transform: rotate(45deg) scale(0.9);
  }
  25% {
    -webkit-transform: rotate(90deg) scale(1);
            transform: rotate(90deg) scale(1);
  }
  37% {
    -webkit-transform: rotate(135deg) scale(0.9);
            transform: rotate(135deg) scale(0.9);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
            transform: rotate(180deg) scale(1);
  }
  62% {
    -webkit-transform: rotate(225deg) scale(0.9);
            transform: rotate(225deg) scale(0.9);
  }
  75% {
    -webkit-transform: rotate(270deg) scale(1);
            transform: rotate(270deg) scale(1);
  }
  87% {
    -webkit-transform: rotate(315deg) scale(0.9);
            transform: rotate(315deg) scale(0.9);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.cta__button a {
  display: inline-block;
  padding-block: clamp(0.5625rem, 2.4vw, 1.02rem);
  border-radius: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
  border: 1px solid #40220F;
  background: #FFF;
  width: 100%;
  text-align: center;
  position: relative;
  font-size: clamp(1.125rem, 4.8vw, 2.04rem);
  font-weight: 900;
}
.cta__button a .--en {
  font-family: "Alex Brush", cursive;
  color: #40220F;
  font-size: clamp(1.5rem, 6.4vw, 2.72rem);
  font-weight: 400;
  -webkit-transform: rotate(-11.641deg);
          transform: rotate(-11.641deg);
  position: absolute;
  left: clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
  top: max(-1.6vw, -0.68rem);
}
.cta__button a .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: clamp(3rem, 12.8vw, 5.44rem);
  width: clamp(0.75rem, 3.2vw, 1.36rem);
}
.cta__button a .icon svg {
  width: 100%;
  vertical-align: baseline;
}

.section__title {
  position: relative;
  z-index: 0;
  -webkit-padding-start: clamp(1.0625rem, 4.5333333333vw, 1.9266666667rem);
          padding-inline-start: clamp(1.0625rem, 4.5333333333vw, 1.9266666667rem);
}
.section__title .--en {
  position: absolute;
  z-index: -1;
  font-family: "Alex Brush", cursive;
  color: #C1A16C;
  font-size: clamp(2.25rem, 9.6vw, 4.08rem);
  opacity: 0.8;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  top: max(-6.6666666667vw, -2.8333333333rem);
  left: max(-1.0666666667vw, -0.4533333333rem);
}
.section__title .--ja {
  font-size: clamp(1.125rem, 4.8vw, 2.04rem);
  font-weight: 700;
  -webkit-transition: -webkit-filter 0.8s;
  transition: -webkit-filter 0.8s;
  transition: filter 0.8s;
  transition: filter 0.8s, -webkit-filter 0.8s;
}
.section__title::after {
  content: "";
  position: absolute;
  width: clamp(9.75rem, 41.6vw, 17.68rem);
  height: auto;
  aspect-ratio: 304/232;
  background: url(../images/title-vector.webp) no-repeat center center/contain;
  top: 0;
  left: max(-2.6666666667vw, -1.1333333333rem);
  z-index: -2;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}

.u-hidden-pc {
  display: block;
}

.u-hidden-sp {
  display: none;
}

.about__inner {
  margin-block: clamp(7.8125rem, 33.3333333333vw, 14.1666666667rem) clamp(8.625rem, 36.8vw, 15.64rem);
  position: relative;
  z-index: 0;
}
.about__inner::after {
  content: "";
  position: absolute;
  width: clamp(45rem, 192vw, 81.6rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: -3.125rem;
  left: 0;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.about__read {
  font-size: clamp(2rem, 8.5333333333vw, 3.6266666667rem);
  font-weight: 600;
  letter-spacing: -0.1em;
  -webkit-margin-before: clamp(1.625rem, 6.9333333333vw, 2.9466666667rem);
          margin-block-start: clamp(1.625rem, 6.9333333333vw, 2.9466666667rem);
}
.about__read .--size {
  font-size: clamp(2.25rem, 9.6vw, 4.08rem);
}
.about__body {
  line-height: 2.5;
  letter-spacing: 0.05em;
  -webkit-margin-before: clamp(1.875rem, 8vw, 3.4rem);
          margin-block-start: clamp(1.875rem, 8vw, 3.4rem);
  text-align: justify;
}

.eyecatch {
  aspect-ratio: 375/250;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.eyecatch img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% + 300px);
}

.access__inner {
  -webkit-margin-before: clamp(10.75rem, 45.8666666667vw, 19.4933333333rem);
          margin-block-start: clamp(10.75rem, 45.8666666667vw, 19.4933333333rem);
  position: relative;
  z-index: 0;
}
.access__inner::after {
  content: "";
  position: absolute;
  width: clamp(23.75rem, 101.3333333333vw, 43.0666666667rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  top: clamp(31.25rem, 133.3333333333vw, 56.6666666667rem);
  left: 6.25rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.access__head {
  position: relative;
  z-index: 0;
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  font-weight: 700;
  -webkit-margin-before: clamp(2.375rem, 10.1333333333vw, 4.3066666667rem);
          margin-block-start: clamp(2.375rem, 10.1333333333vw, 4.3066666667rem);
  text-align: center;
}
.access__head .img {
  display: inline-block;
  -webkit-margin-before: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
          margin-block-start: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
  margin-inline: auto;
  width: 80%;
}
.access__map {
  aspect-ratio: 313/242;
  margin-block: clamp(2rem, 8.5333333333vw, 3.6266666667rem) clamp(2.125rem, 9.0666666667vw, 3.8533333333rem);
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
.access__item {
  -webkit-margin-after: 74px;
          margin-block-end: 74px;
}
.access__item .head {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.4375rem, 1.8666666667vw, 0.7933333333rem);
     -moz-column-gap: clamp(0.4375rem, 1.8666666667vw, 0.7933333333rem);
          column-gap: clamp(0.4375rem, 1.8666666667vw, 0.7933333333rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access__item .head::before {
  content: "";
  width: clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
  height: clamp(0.0625rem, 0.2666666667vw, 0.1133333333rem);
  background: #333;
}
.access__item .text {
  line-height: 1.5;
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
}
.access__item .text.height {
  line-height: 1.7142;
}
.access__item .text.weight {
  font-weight: 700;
}
.access__item .way {
  font-size: clamp(0.75rem, 3.2vw, 1.36rem);
  line-height: 1.5;
  -webkit-margin-before: 22px;
          margin-block-start: 22px;
}
.appeal__inner {
  -webkit-margin-before: clamp(11.3125rem, 48.2666666667vw, 20.5133333333rem);
          margin-block-start: clamp(11.3125rem, 48.2666666667vw, 20.5133333333rem);
}
.appeal__title {
  margin-inline: clamp(1.875rem, 8vw, 3.4rem);
}
.appeal__items {
  -webkit-margin-before: clamp(2.9375rem, 12.5333333333vw, 5.3266666667rem);
          margin-block-start: clamp(2.9375rem, 12.5333333333vw, 5.3266666667rem);
}
.appeal__item .img img {
  width: 100%;
}
.appeal__item .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-after: clamp(8.125rem, 34.6666666667vw, 14.7333333333rem);
          padding-block-end: clamp(8.125rem, 34.6666666667vw, 14.7333333333rem);
}
.appeal__item .number {
  font-family: "Carattere", cursive;
  font-size: clamp(4.5rem, 19.2vw, 8.16rem);
  width: clamp(6.625rem, 28.2666666667vw, 12.0133333333rem);
  text-align: center;
  -webkit-margin-before: clamp(1.6875rem, 7.2vw, 3.06rem);
          margin-block-start: clamp(1.6875rem, 7.2vw, 3.06rem);
  position: relative;
}
.appeal__item .number::after {
  content: "";
  position: absolute;
  width: clamp(5rem, 21.3333333333vw, 9.0666666667rem);
  height: 1px;
  background: #333;
  -webkit-transform: rotate(-7.83deg);
          transform: rotate(-7.83deg);
  left: 0;
  top: clamp(4.375rem, 18.6666666667vw, 7.9333333333rem);
}
.appeal__item .wrap {
  width: calc(100% - clamp(6.6875rem, 28.5333333333vw, 12.1266666667rem));
  -webkit-margin-before: clamp(2.8125rem, 12vw, 5.1rem);
          margin-block-start: clamp(2.8125rem, 12vw, 5.1rem);
}
.appeal__item .head {
  font-size: clamp(1.375rem, 5.8666666667vw, 2.4933333333rem);
  font-weight: 600;
  -webkit-padding-end: clamp(0.3125rem, 1.3333333333vw, 0.5666666667rem);
          padding-inline-end: clamp(0.3125rem, 1.3333333333vw, 0.5666666667rem);
}
.appeal__item .head .--size {
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
}
.appeal__item .text {
  line-height: 1.71429;
  -webkit-margin-before: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
          margin-block-start: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
  -webkit-padding-end: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
          padding-inline-end: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
}
.appeal__item:nth-child(1) {
  position: relative;
  z-index: 0;
}
.appeal__item:nth-child(1) .head {
  letter-spacing: -0.1em;
}
.appeal__item:nth-child(1)::after {
  content: "";
  position: absolute;
  width: clamp(33.75rem, 144vw, 61.2rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: -3.125rem;
  left: 0;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.appeal__item:nth-child(2) {
  position: relative;
  z-index: 0;
}
.appeal__item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: clamp(14.375rem, 61.3333333333vw, 26.0666666667rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: 0;
  left: -3.125rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.appeal__item:nth-child(2) .body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.appeal__item:nth-child(2) .wrap {
  -webkit-padding-start: clamp(1.875rem, 8vw, 3.4rem);
          padding-inline-start: clamp(1.875rem, 8vw, 3.4rem);
}
.appeal__item:nth-child(2) .text {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.appeal__item:nth-child(2) .number::after {
  right: 0;
  left: auto;
}

.benefits__inner {
  -webkit-margin-before: clamp(9.125rem, 38.9333333333vw, 16.5466666667rem);
          margin-block-start: clamp(9.125rem, 38.9333333333vw, 16.5466666667rem);
}
.benefits__title {
  margin-inline: clamp(1.875rem, 8vw, 3.4rem);
}
.benefits__items {
  -webkit-margin-before: clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
          margin-block-start: clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
  position: relative;
  z-index: 0;
}
.benefits__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  -webkit-margin-before: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
          margin-block-start: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
  padding: clamp(4.375rem, 18.6666666667vw, 7.9333333333rem) clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
}
.benefits__item .item__title {
  font-size: clamp(1.5rem, 6.4vw, 2.72rem);
  font-weight: 700;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-padding-after: clamp(2.0625rem, 8.8vw, 3.74rem);
          padding-block-end: clamp(2.0625rem, 8.8vw, 3.74rem);
  line-height: 1.5;
}
.benefits__item .item__text {
  font-weight: 900;
  color: #FFF;
  -webkit-padding-before: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
          padding-block-start: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
  line-height: 1.5;
}
.benefits__item .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.benefits__item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% + 300px);
}

#faq {
  background: #40220F;
}

.faq__inner {
  -webkit-margin-before: clamp(9.125rem, 38.9333333333vw, 16.5466666667rem);
          margin-block-start: clamp(9.125rem, 38.9333333333vw, 16.5466666667rem);
  padding-block: clamp(4.1875rem, 17.8666666667vw, 7.5933333333rem) clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
  padding-inline: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
  position: relative;
  z-index: 0;
}
.faq__inner::before {
  content: "";
  position: absolute;
  width: clamp(17.5rem, 74.6666666667vw, 31.7333333333rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: -3.125rem;
  left: -9.375rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.faq__inner::after {
  content: "";
  position: absolute;
  width: clamp(33.75rem, 144vw, 61.2rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: 12.5rem;
  left: 9.375rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.faq__title {
  color: #FFF;
}
.faq__items {
  -webkit-margin-before: clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
          margin-block-start: clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
  background: url(../images/faq-bg-sp.webp) no-repeat center center/cover;
  padding-block: clamp(2.75rem, 11.7333333333vw, 4.9866666667rem) clamp(0.75rem, 3.2vw, 1.36rem);
  padding-inline: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
  position: relative;
  z-index: 0;
}
.faq__item {
  -webkit-margin-after: clamp(2.0625rem, 8.8vw, 3.74rem);
          margin-block-end: clamp(2.0625rem, 8.8vw, 3.74rem);
}
.faq__item[open] .js-summary span:last-child svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item .js-summary {
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  line-height: 1.3125;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
.faq__item .js-summary span:first-child {
  width: clamp(1.875rem, 8vw, 3.4rem);
}
.faq__item .js-summary span:nth-child(2) {
  width: calc(100% - clamp(3.75rem, 16vw, 6.8rem));
}
.faq__item .js-summary span:last-child {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.faq__item .js-summary span:last-child svg {
  vertical-align: baseline;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq__item .content {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-before: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
          padding-block-start: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
}
.faq__item .content span:first-child {
  width: clamp(1.875rem, 8vw, 3.4rem);
}
.faq__item .content span:nth-child(2) {
  width: calc(100% - clamp(3.75rem, 16vw, 6.8rem));
}

.flow__inner {
  -webkit-margin-before: clamp(10.3125rem, 44vw, 18.7rem);
          margin-block-start: clamp(10.3125rem, 44vw, 18.7rem);
}
.p-flow__slide {
  position: relative;
  padding-inline: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
  z-index: 1;
}
.p-flow__slide .number {
  font-family: "Carattere", cursive;
  font-size: clamp(6.25rem, 26.6666666667vw, 11.3333333333rem);
}
.p-flow__slide .head {
  -webkit-margin-before: clamp(3.375rem, 14.4vw, 6.12rem);
          margin-block-start: clamp(3.375rem, 14.4vw, 6.12rem);
  font-size: clamp(1.5rem, 6.4vw, 2.72rem);
  font-weight: 900;
  line-height: 1.25;
}
.p-flow__slide .text {
  -webkit-margin-before: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
          margin-block-start: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
  font-weight: 900;
  line-height: 1.5;
}
.p-flow__slide .img {
  position: absolute;
  width: clamp(15.625rem, 66.6666666667vw, 28.3333333333rem);
  z-index: -1;
  right: 0;
  top: 0;
}
.p-flow__slide .img img {
  width: 100%;
}
.p-flow__slide:nth-child(2n) .number {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-flow__slide:nth-child(2n) .head {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-flow__slide:nth-child(2n) .img {
  right: auto;
  left: 0;
}

.swiper-container {
  position: relative;
  -webkit-margin-before: clamp(2.125rem, 9.0666666667vw, 3.8533333333rem);
          margin-block-start: clamp(2.125rem, 9.0666666667vw, 3.8533333333rem);
}

.swiper-button-prev,
.swiper-button-next {
  width: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-button-prev {
  left: max(-2.6666666667vw, -1.1333333333rem);
}

.swiper-button-next {
  right: max(-2.6666666667vw, -1.1333333333rem);
}

.swiper-pagination {
  bottom: max(-8vw, -3.4rem) !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: clamp(0.625rem, 2.6666666667vw, 1.1333333333rem);
  height: clamp(0.625rem, 2.6666666667vw, 1.1333333333rem);
  margin: 0 clamp(0.3125rem, 1.3333333333vw, 0.5666666667rem) !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #40220F;
}

.fv {
  position: relative;
  z-index: 0;
}
.fv.animated .img {
  opacity: 1;
}
.fv.animated .read {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.fv .img {
  opacity: 0.2;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  position: relative;
}
.fv .img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.fv .read {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  font-size: clamp(2.5rem, 10.6666666667vw, 4.5333333333rem);
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: clamp(28.75rem, 122.6666666667vw, 52.1333333333rem);
  bottom: clamp(3.5rem, 14.9333333333vw, 6.3466666667rem);
  right: clamp(2.875rem, 12.2666666667vw, 5.2133333333rem);
  letter-spacing: 0.13em;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 4s;
  transition: -webkit-filter 4s;
  transition: filter 4s;
  transition: filter 4s, -webkit-filter 4s;
}
.instagram {
  margin-block: clamp(9.75rem, 41.6vw, 17.68rem) clamp(6.25rem, 26.6666666667vw, 11.3333333333rem);
  text-align: center;
}
.instagram .instagram__read {
  text-align: center;
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
}
.instagram a {
  display: inline-block;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  padding-inline: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
}

.menu__inner {
  -webkit-margin-before: clamp(9.5rem, 40.5333333333vw, 17.2266666667rem);
          margin-block-start: clamp(9.5rem, 40.5333333333vw, 17.2266666667rem);
  position: relative;
  z-index: 0;
}
.menu__inner::after {
  content: "";
  position: absolute;
  width: clamp(33.75rem, 144vw, 61.2rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: -3.125rem;
  left: 0;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.menu__title {
  margin-inline: clamp(1.875rem, 8vw, 3.4rem);
}
.menu__wrap {
  padding: clamp(2.5rem, 10.6666666667vw, 4.5333333333rem) clamp(1.875rem, 8vw, 3.4rem);
  -webkit-margin-before: clamp(2.75rem, 11.7333333333vw, 4.9866666667rem);
          margin-block-start: clamp(2.75rem, 11.7333333333vw, 4.9866666667rem);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.menu__wrap .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.menu__wrap .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% + 300px);
}
.menu__body {
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(4.25rem, 18.1333333333vw, 7.7066666667rem) clamp(3.75rem, 16vw, 6.8rem) clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
}
.menu__body ul:nth-child(2) {
  -webkit-padding-before: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
          padding-block-start: clamp(3.125rem, 13.3333333333vw, 5.6666666667rem);
}
.menu__item {
  color: #40220F;
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  line-height: 2.1875;
  font-weight: 500;
  -webkit-padding-after: clamp(4.375rem, 18.6666666667vw, 7.9333333333rem);
          padding-block-end: clamp(4.375rem, 18.6666666667vw, 7.9333333333rem);
  text-align: center;
}
.menu__item:last-child {
  border-bottom: #40220F 1px solid;
}
.menu__discount {
  color: #40220F;
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  line-height: 2.1875;
  font-weight: 700;
  -webkit-padding-after: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
          padding-block-end: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
  text-align: center;
}
.menu__discount:first-child {
  -webkit-padding-after: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
          padding-block-end: clamp(1.25rem, 5.3333333333vw, 2.2666666667rem);
}
.menu__cta {
  -webkit-margin-before: clamp(5.1875rem, 22.1333333333vw, 9.4066666667rem);
          margin-block-start: clamp(5.1875rem, 22.1333333333vw, 9.4066666667rem);
  margin-inline: clamp(1.875rem, 8vw, 3.4rem);
}

.methed__inner {
  -webkit-margin-before: clamp(13.625rem, 58.1333333333vw, 24.7066666667rem);
          margin-block-start: clamp(13.625rem, 58.1333333333vw, 24.7066666667rem);
  position: relative;
  z-index: 0;
}
.methed__inner::after {
  content: "";
  position: absolute;
  width: clamp(26.875rem, 114.6666666667vw, 48.7333333333rem);
  height: auto;
  background: url(../images/bg-vector.webp) no-repeat center center/contain;
  aspect-ratio: 1471/1279;
  z-index: -1;
  bottom: -3.125rem;
  left: 5rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.methed__body .read {
  -webkit-margin-before: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
          margin-block-start: clamp(2.1875rem, 9.3333333333vw, 3.9666666667rem);
  font-size: clamp(2rem, 8.5333333333vw, 3.6266666667rem);
  font-weight: 600;
  margin-inline: max(-1.3333333333vw, -0.5666666667rem);
}
.methed__body .text {
  -webkit-margin-before: clamp(1.875rem, 8vw, 3.4rem);
          margin-block-start: clamp(1.875rem, 8vw, 3.4rem);
}
.methed__body .text p {
  line-height: 2.5;
  -webkit-margin-before: clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
          margin-block-start: clamp(1.5625rem, 6.6666666667vw, 2.8333333333rem);
  text-align: justify;
}
.methed__img {
  -webkit-margin-before: clamp(5.5625rem, 23.7333333333vw, 10.0866666667rem);
          margin-block-start: clamp(5.5625rem, 23.7333333333vw, 10.0866666667rem);
  margin-inline: auto;
  width: clamp(15.625rem, 66.6666666667vw, 28.3333333333rem);
}

#voice {
  background: url(../images/voice-bg-sp.webp) no-repeat center bottom/cover;
}

.voice__inner {
  -webkit-padding-before: clamp(4.6875rem, 20vw, 8.5rem);
          padding-block-start: clamp(4.6875rem, 20vw, 8.5rem);
}
.voice__items {
  -webkit-margin-before: clamp(2.5rem, 10.6666666667vw, 4.5333333333rem);
          margin-block-start: clamp(2.5rem, 10.6666666667vw, 4.5333333333rem);
}
.voice__item {
  -webkit-padding-after: clamp(5.4375rem, 23.2vw, 9.86rem);
          padding-block-end: clamp(5.4375rem, 23.2vw, 9.86rem);
  position: relative;
}
.voice__item .number {
  color: #DC5822;
  font-size: clamp(1.75rem, 7.4666666667vw, 3.1733333333rem);
  font-weight: 600;
}
.voice__item .head {
  font-size: clamp(2rem, 8.5333333333vw, 3.6266666667rem);
  font-weight: 600;
  line-height: 1.1875;
  -webkit-margin-end: max(-1.6vw, -0.68rem);
          margin-inline-end: max(-1.6vw, -0.68rem);
  position: relative;
  z-index: 1;
}
.voice__item .head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 315/47.85;
  background: url(../images/voice-head-bg.webp) no-repeat center center/contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: clamp(2.5rem, 10.6666666667vw, 4.5333333333rem);
  z-index: -1;
}
.voice__item .name {
  font-size: clamp(0.625rem, 2.6666666667vw, 1.1333333333rem);
  text-align: right;
  letter-spacing: 0.2em;
  -webkit-margin-before: clamp(1.5rem, 6.4vw, 2.72rem);
          margin-block-start: clamp(1.5rem, 6.4vw, 2.72rem);
}
.voice__item .text {
  -webkit-margin-before: clamp(0.75rem, 3.2vw, 1.36rem);
          margin-block-start: clamp(0.75rem, 3.2vw, 1.36rem);
  line-height: 1.7143;
  text-align: justify;
  overflow: hidden;
  max-height: clamp(6rem, 25.6vw, 10.88rem);
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  position: relative;
}
.voice__item .text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#e4ded6));
  background: linear-gradient(to bottom, transparent, #e4ded6);
  top: 0;
  left: 0;
}
.voice__item .text.active::after {
  content: none;
}
.voice__item .more {
  -webkit-margin-before: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
          margin-block-start: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  display: block;
  cursor: pointer;
  font-size: clamp(1rem, 4.2666666667vw, 1.8133333333rem);
  font-weight: 500;
  -webkit-margin-end: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
          margin-inline-end: clamp(0.875rem, 3.7333333333vw, 1.5866666667rem);
  position: relative;
}
.voice__item .more::before {
  content: "";
  position: absolute;
  background: url(../images/voice-plus.webp) no-repeat center center/contain;
  width: clamp(0.6875rem, 2.9333333333vw, 1.2466666667rem);
  height: auto;
  aspect-ratio: 1/1;
  bottom: 0;
  left: max(-4.8vw, -2.04rem);
}
.voice__item .more::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #333;
  bottom: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.voice__item:first-child {
  position: relative;
  z-index: 0;
}
.voice__item:first-child::after {
  content: "";
  position: absolute;
  width: clamp(28.75rem, 122.6666666667vw, 52.1333333333rem);
  height: auto;
  background: url(../images/bg-white-vector.webp) no-repeat center center/contain;
  aspect-ratio: 987/1066;
  z-index: -1;
  bottom: -3.125rem;
  left: -18.75rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
.voice__item:nth-child(2) {
  position: relative;
  z-index: 0;
}
.voice__item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: clamp(21.25rem, 90.6666666667vw, 38.5333333333rem);
  height: auto;
  background: url(../images/bg-white-vector.webp) no-repeat center center/contain;
  aspect-ratio: 987/1066;
  z-index: -1;
  bottom: -18.75rem;
  left: 3.125rem;
  -webkit-animation: bg 25s linear infinite;
          animation: bg 25s linear infinite;
}
@media (any-hover: hover) {
  .to-top:hover .arrow_01 {
    -webkit-animation: scroll_01 3s infinite;
            animation: scroll_01 3s infinite;
  }
  .voice__item .more:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    z-index: 0;
    height: 100dvh;
    background: url(../images/pc-bg.webp) no-repeat center center/cover;
  }
  .l-header a:nth-of-type(2) {
    display: inline-block;
  }
  .l-header__logo {
    position: absolute;
    width: 10.6875rem;
    right: calc(50% + 600px);
  }
  .l-header__logo img {
    width: 10.6875rem;
  }
  .hamburger {
    display: none;
  }
  .l-header__nav {
    display: block;
    left: calc(50% + 525px);
    background: none;
    width: 17.5rem;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__nav-item {
    color: #40220F;
  }
  .l-header__sns {
    display: none;
  }
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */