/* =========================================================
  LP layout / legacy overrides
  - moved from Liquid
========================================================= */

:root {
  --container: 500px;
  --panel-gap: 24px;
  --header-h: calc(56px + env(safe-area-inset-top));
  --sp-pad: 24px;

  --ff-body: "Noto Sans JP", "Noto Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  --main-primary: #527308;
  --text-primary: #333;
  --base-quaternary: #fff;
  --background-secondary: #f9f5ee;

  --shadow-header: 0 5px 10px rgba(99, 80, 46, 0.1);
  --shadow-panel: 0 0 50px rgba(99, 80, 46, 0.2);
  --shadow-button: 0 8px 8px rgba(138, 103, 93, 0.2);
}
/* =========================================================
  base
========================================================= */
html,
body {
  margin: 0;
}

body,
main#lp {
  background: var(--background-secondary);
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text-primary);
}

/* リード部：常に中央500px */
#lp .content-500 {
  max-width: var(--container) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

#lp .content-500 img,
#lp .content-500 video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
  foundation reset
  - Tailwind Preflight の代替
  - LP内で必要な初期化だけに絞る
========================================================= */

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--ff-body, "Noto Sans JP", "Noto Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif);
  color: var(--text-primary, #333333);
  background: var(--background-secondary, #f9f5ee);
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

main {
  display: block;
}

hr {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid currentColor;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd,
pre {
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:where(:hover) {
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

button,
select {
  text-transform: none;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  border-radius: 0;
  background: transparent;
  background-image: none;
  appearance: button;
  -webkit-appearance: button;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: var(--color-placeholder, #9ca3af);
}

[type="search"] {
  outline-offset: -2px;
  appearance: textfield;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

summary {
  display: list-item;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

svg {
  overflow: visible;
}

[hidden] {
  display: none !important;
}

/* =========================================================
  Utility
========================================================= */

.hidden {
  display: none !important;
}

.u-pcBreak {
  display: inline;
}

.u-spBreak {
  display: none;
}

@media (max-width: 767.98px) {
  .u-pcBreak {
    display: none;
  }
  .u-spBreak {
    display: inline;
  }
}

/* =========================================================
  Accessibility
========================================================= */

.sr-only,
.lp-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
  SP header
========================================================= */
#spHeader {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10000;
  display: block;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top);
  background: var(--base-quaternary);
  box-shadow: var(--shadow-header);
}

.lp-spHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  height: 56px;
  margin: 0 auto;
  padding: 0 10px 0 var(--sp-pad);
}

.lp-spHeader__logo {
  display: block;
  line-height: 1;
}

.lp-spHeader__logoImg {
  display: block;
  width: auto;
  height: 31px;
}

.lp-spHeader__toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--main-primary);
  appearance: none;
  cursor: pointer;
}

.lp-spHeader__toggle:focus-visible {
  outline: none;
}

.lp-spHeader__toggleIcon {
  position: relative;
  width: 30px;
  height: 24px;
}

.lp-spHeader__toggleBar {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transform: translateX(-50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.lp-spHeader__toggleBar:nth-child(1) {
  top: 0;
}

.lp-spHeader__toggleBar:nth-child(2) {
  top: 9px;
}

.lp-spHeader__toggleBar:nth-child(3) {
  top: 18px;
}

.lp-spHeader__toggleText {
  display: block;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 600;
}

.lp-spHeader__toggleText::before {
  content: "MENU";
}

.lp-spHeader__toggleIcon,
.lp-spHeader__toggleText {
  transform: translateY(2px);
}

.lp-spHeader__toggle[aria-expanded="true"] .lp-spHeader__toggleBar:nth-child(1) {
  transform: translateX(-50%) translateY(11px) rotate(35deg);
}

.lp-spHeader__toggle[aria-expanded="true"] .lp-spHeader__toggleBar:nth-child(2) {
  opacity: 0;
}

.lp-spHeader__toggle[aria-expanded="true"] .lp-spHeader__toggleBar:nth-child(3) {
  transform: translateX(-50%) translateY(-7px) rotate(-35deg);
}

.lp-spHeader__toggle[aria-expanded="true"] .lp-spHeader__toggleText::before {
  content: "CLOSE";
}

/* =========================================================
  mobile nav
========================================================= */
#mobileNav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 9999;
  background: var(--background-secondary);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lp-mobileNav__viewport {
  display: grid;
  place-content: center;
  min-height: calc(100dvh - var(--header-h));
  padding: env(safe-area-inset-top) var(--sp-pad) env(safe-area-inset-bottom);
  text-align: center;
}

.lp-mobileNav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.lp-mobileNav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.lp-mobileNav__link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lp-mobileNav__link:hover {
  opacity: 0.5;
}

.lp-mobileNav__ctaArea {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* =========================================================
  Mobile nav corporate link
========================================================= */
.lp-mobileNav__corpLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  color: var(--main-primary);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
}

.lp-mobileNav__corpIcon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transform: translateY(0.5px);
}

/* =========================================================
  common CTA
========================================================= */
.lpCta {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  column-gap: 12px;

  width: 277px;
  height: 66px;
  padding: 0 24px;

  border: 1px solid transparent;
  border-radius: 9999px;
  box-sizing: border-box;

  text-decoration: none;
  box-shadow: var(--shadow-button);

  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* 自由に選べる定期便 */
.lpCta--choose {
  background: var(--main-primary);
  border-color: var(--main-primary);
  color: #fff;
}

.lpCta:hover {
  opacity: 0.5;
  box-shadow: none;
}

.lpCta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px currentColor;
}

.lpCta__spacer {
  width: 24px;
  height: 24px;
}

.lpCta__text {
  display: block;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.lpCta__icon {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.lpCta__icon path,
.lpCta__icon line,
.lpCta__icon polyline,
.lpCta__icon circle {
  stroke: currentColor;
}
/* 本文用CTA */
.lpCta--main {
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  width: 100%;
  height: 80px;
}

.lpCta--main .lpCta__spacer {
  width: 28px;
  height: 28px;
}

.lpCta--main .lpCta__text {
  font-size: 16px;
}

.lpCta--main .lpCta__icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 767.98px) {
  .lpCta--main {
    width: 100%;
    height: 70px;
  }

  .lpCta--main .lpCta__text {
    font-size: 14px;
  }
}

/* 定期便申込み不可 */
.lpCta--disabled {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
/* =========================================================
  corporation link
========================================================= */
.lpCorpLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  color: var(--main-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
}

.lpCorpLink__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: translateY(0.5px);
}

/* =========================================================
  desktop logo
========================================================= */
.logo-lg {
  display: none;
}

@media (min-width: 1130px) {
  .logo-lg {
    position: fixed;
    left: calc(((100vw - var(--container)) / 2 - var(--panel-gap)) / 2);
    top: 50%;
    z-index: 60;
    display: inline-block;
    transform: translate(-50%, -50%);

    --logo-max: 190px;
    --logo-safe: 8px;
    --logo-available: calc((100vw - var(--container)) / 2 - var(--panel-gap) - var(--logo-safe));
    inline-size: clamp(0px, var(--logo-available), var(--logo-max));
    width: auto;
  }

  .logo-lg picture,
  .logo-lg img,
  .logo-lg svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .logo-lg .lg-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    inline-size: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .logo-lg.is-unpinned {
    position: absolute;
    top: var(--absTop, 0px);
    left: var(--absLeft, 24px);
    transform: none;
    will-change: top, left;
  }

  .logo-lg.is-top {
    position: fixed;
    left: 24px;
    top: 20px;
    transform: none;
    animation: logoDrop 0.25s ease-out;
  }

  .logo-lg.is-top .lg-wrap,
  .logo-lg.is-top-look .lg-wrap {
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  @keyframes logoDrop {
    from {
      opacity: 0;
      transform: translateY(-14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* =========================================================
  right panel
========================================================= */
#rightPanel {
  display: none;
}

@media (min-width: 1130px) {
  #spHeader,
  #mobileNav {
    display: none !important;
  }

  main#lp {
    padding-top: 0 !important;
  }

  #lp > .content-500:first-child {
    margin-top: 0 !important;
  }

  #rightPanel {
    position: fixed;
    left: calc(50% + (var(--container) / 2) + var(--panel-gap));
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    width: clamp(180px, calc((100vw - var(--container)) / 2 - var(--panel-gap)), 360px);
    max-height: calc(100vh - 40px);
    margin: auto;
    background: transparent !important;
  }

  #rightPanel .panel-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto 0;
    overflow: visible;
  }

  #rightPanel.rp-hidden {
    display: none !important;
  }

  #rightPanel.rp-unpinned {
    position: absolute !important;
    top: var(--rpAbsTop, 0px) !important;
    left: var(--rpAbsLeft, 0px) !important;
    right: auto;
    bottom: auto;
    width: var(--rpWidth, auto);
    height: var(--rpHeight, auto);
    max-height: none !important;
    margin: 0;
    box-sizing: border-box;
    transform: none !important;
    will-change: top, left;
  }

  .lp-sidePanel__navList {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-weight: 700;
  }

  .lp-sidePanel__navLink {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .lp-sidePanel__navLink:hover {
    opacity: 0.5;
  }

  .lp-sidePanel__ctaArea {
    display: grid;
    justify-items: center;
    gap: 16px;
    margin-top: 40px;
  }
}

@media (max-width: 1129.98px) {
  #spHeader {
    display: block !important;
  }

  .logo-lg,
  #rightPanel {
    display: none !important;
  }

  main#lp {
    padding-top: var(--header-h) !important;
  }
}

/* =========================================================
  Section heading
========================================================= */
.lp-sectionHeading {
  width: 100%;
  margin: 0 0 40px;
  text-align: center;
}

.lp-sectionHeading__picture {
  display: block;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
}

.lp-sectionHeading__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-sectionHeading {
    margin-bottom: 35px;
  }
}
/* =========================================================
  Main visual
========================================================= */

.lp-mainVisual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.lp-mainVisual__image {
  display: block;
  width: 100%;
  height: auto;
}

.lp-mainVisual__campaign {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;

  display: block;
  width: 100%;
  height: auto;

  pointer-events: none;
}
/* =========================================================
  about
========================================================= */
.lp-about {
  padding: 64px 32px;
  background: var(--background-secondary);
}

.lp-about__picture {
  display: block;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
}

.lp-about__image {
  display: block;
  width: 100%;
  height: auto;
}

/* 本文画像 → 丸3つ画像 */
.lp-about__picture + .lp-about__picture {
  margin-top: 24px;
}

/* 丸3つ画像 → CTAリード */
.lp-about__cta {
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .lp-about {
    padding: 56px 24px;
  }

  .lp-about__picture + .lp-about__picture {
    margin-top: 20px;
  }

  .lp-about__cta {
    margin-top: 35px;
  }
}
/* =========================================================
  info
========================================================= */

.lp-info {
  width: 100%;
  margin: 0 auto;
  padding: 64px 32px;
  background: #ffffff;
}

.lp-info .lp-youtube {
  position: relative;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lp-info .lp-youtube__iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .lp-info {
    padding: 56px 24px;
  }
}

/* =========================================================
  Common order CTA
========================================================= */
.lp-orderCta {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.lp-orderCta__lead {
  margin: 0;
  color: var(--main-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.lp-orderCta--section {
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .lp-orderCta {
    gap: 14px;
  }

  .lp-orderCta__lead {
    font-size: 17.5px;
  }

  .lp-orderCta--section {
    margin-top: 35px;
  }
}

/* =========================================================
  Price section
========================================================= */
.lp-priceSection {
  width: 100%;
  padding: 32px;
  background: #f3d8a8;
}

.lp-priceBox {
  padding: 24px;
  background: #fff;
}

.lp-priceSection__heading {
  margin: 0;
}

.lp-priceSection__titlePicture {
  display: block;
  width: 100%;
}

.lp-priceSection__titleImage {
  display: block;
  width: 100%;
  height: auto;
}

.lp-priceSection__priceImage {
  padding-top: 24px;
}

.lp-orderCta--price {
  margin-top: 24px;
}

@media (max-width: 767.98px) {
  .lp-priceSection {
    padding: 24px;
  }

  .lp-priceBox {
    padding: 20px 16px;
  }

  .lp-orderCta--price {
    margin-top: 20px;
  }
}

/* =========================================================
  Price notice
========================================================= */
.lp-priceNotice {
  margin: 24px 0 16px;
  border: 1px solid currentColor;
  color: var(--main-primary);
}

.lp-priceNotice__inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
}

.lp-priceNotice__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.lp-priceNotice__text {
  margin: 0;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
}

.lp-priceNotice__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-priceNotice__link:hover {
  opacity: 0.75;
}

@media (max-width: 767.98px) {
  .lp-priceNotice {
    margin: 20px 0 14px;
  }

  .lp-priceNotice__icon {
    flex-basis: 21px;
    width: 21px;
    height: 21px;
  }

  .lp-priceNotice__text {
    font-size: 12.25px;
  }
}

/* =========================================================
  Price note
========================================================= */
.lp-priceNote {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-priceNote {
    font-size: 12.25px;
  }
}

/* =========================================================
  reasons
========================================================= */
.lp-reasons {
  width: 100%;
  padding: 64px 0;
  background: #fff;
}

.lp-reasons__list {
  display: grid;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-reasons__item {
  width: 100%;
  margin: 0;
  padding: 0;
}

.lp-reasons__photoPicture {
  display: block;
  width: 100%;
}

.lp-reasons__photo {
  display: block;
  width: 100%;
  height: auto;
}

.lp-reasons__body {
  padding: 24px 32px 0;
  background: #fff;
}

.lp-reasons__itemTitle {
  margin: 0;
}

.lp-reasons__itemTitlePicture {
  display: block;
  width: 100%;
}

.lp-reasons__itemTitleImage {
  display: block;
  width: 100%;
  height: auto;
}

.lp-reasons__text {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-reasons {
    padding: 56px 0;
  }

  .lp-reasons__list {
    gap: 35px;
  }

  .lp-reasons__photo {
    aspect-ratio: 375 / 232.5;
  }

  .lp-reasons__body {
    padding: 24px 24px 0;
  }

  .lp-reasons__text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }
}
/* =========================================================
  Lineup
========================================================= */
.lp-lineup {
  width: 100%;
  padding: 64px 32px;
  background: var(--background-secondary);
}

.lp-lineup__leadPicture {
  display: block;
  width: 100%;
}

.lp-lineup__leadImage {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-lineup {
    padding: 56px 24px;
  }
}
/*
  Lineup cards
 */
.lp-lineup__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.lp-lineup__item {
  min-width: 0;
  margin: 0;
}

.lp-lineup__itemImage {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.lp-lineup__itemName {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-lineup__itemQuantity {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .lp-lineup__list {
    column-gap: 16px;
    row-gap: 20px;
    margin-top: 35px;
  }

  .lp-lineup__itemName {
    margin-top: 14px;
    font-size: 17.5px;
  }

  .lp-lineup__itemQuantity {
    font-size: 12px;
  }
}
/*
  Lineup campaign
 */
.lp-lineup__campaign {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.lp-lineup__campaignLead,
.lp-lineup__campaignImage {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-lineup__campaign {
    gap: 20px;
    margin-top: 35px;
  }
}

/* =========================================================
  Ranking
========================================================= */
.lp-ranking {
  width: 100%;
  padding: 64px 32px;
  background: #fff;
}

.lp-ranking__leadPicture {
  display: block;
  width: 100%;
}

.lp-ranking__leadImage {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-ranking {
    padding: 56px 24px;
  }
}

/*
  Ranking slider
 */
.lp-rankingSliderShell {
  --ranking-slide-w: 388px;
  --ranking-media-h: 320px;
  --ranking-arrow-size: 56px;
  --ranking-arrow-offset: 42px;

  position: relative;
  width: 100vw;
  margin-top: 40px;
  margin-left: calc(50% - 50vw);
  padding-bottom: 34px;
  overflow: visible;
}

.lp-rankingSlider {
  width: var(--ranking-slide-w);
  margin: 0 auto;
  overflow: visible;
}

.lp-rankingSlider .swiper-wrapper {
  align-items: stretch;
}

.lp-rankingSlider .swiper-slide {
  display: flex;
  width: var(--ranking-slide-w);
  height: auto;
  background: transparent;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-rankingSliderShell {
    --ranking-slide-w: clamp(285px, calc(26.21vw + 186.72px), 388px);
    --ranking-media-h: calc(var(--ranking-slide-w) * 320 / 388);
    --ranking-arrow-size: 46px;
    --ranking-arrow-offset: 30px;

    margin-top: 35px;
    padding-bottom: 29px;
  }
}
/*
  Ranking card
 */
.lp-rankingCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3eee5;
}

.lp-rankingCard__image {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
}

.lp-rankingCard__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 24px;
  background: #f3eee5;
}

.lp-rankingCard__description {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-rankingCard__body {
    padding: 20px;
  }

  .lp-rankingCard__description {
    font-size: 14px;
    line-height: 1.75;
  }
}
/*
  Ranking review
 */
.lp-rankingReview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
}

.lp-rankingReview__person {
  display: grid;
  justify-items: center;
  flex: 0 0 92px;
  width: 92px;
  text-align: center;
}

.lp-rankingReview__icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  object-fit: contain;
}

.lp-rankingReview__name {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.lp-rankingReview__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-rankingReview {
    gap: 16px;
    margin-top: 14px;
    padding: 10px 12px;
  }

  .lp-rankingReview__person {
    flex-basis: 71px;
    width: 71px;
  }

  .lp-rankingReview__icon {
    width: 64px;
    height: 64px;
  }

  .lp-rankingReview__name {
    font-size: 10px;
  }

  .lp-rankingReview__text {
    font-size: 12px;
  }
}
/*
  Ranking slider buttons
 */
.lp-rankingSliderShell .swiper-button-prev,
.lp-rankingSliderShell .swiper-button-next {
  position: absolute;
  top: calc(var(--ranking-media-h) - 40px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;

  border: 0;
  background: transparent !important;

  color: var(--main-primary);

  appearance: none;
  -webkit-appearance: none;
}

.lp-rankingSliderShell .swiper-button-prev {
  left: calc(50% - (var(--ranking-slide-w) / 2) - var(--ranking-arrow-offset));
}

.lp-rankingSliderShell .swiper-button-next {
  right: calc(50% - (var(--ranking-slide-w) / 2) - var(--ranking-arrow-offset));
}

.lp-rankingSliderShell .swiper-button-prev::after,
.lp-rankingSliderShell .swiper-button-next::after {
  content: none;
}

.lp-rankingSliderShell .swiper-button-prev svg,
.lp-rankingSliderShell .swiper-button-next svg {
  display: block;
  width: 56px;
  height: 56px;
}

.lp-rankingSliderShell .swiper-button-prev:hover svg path:first-of-type,
.lp-rankingSliderShell .swiper-button-next:hover svg path:first-of-type {
  fill: var(--main-primary);
}

.lp-rankingSliderShell .swiper-button-prev:hover svg path:last-of-type,
.lp-rankingSliderShell .swiper-button-next:hover svg path:last-of-type {
  stroke: #fff;
}

.lp-rankingSliderShell .swiper-button-disabled {
  opacity: 0.35;
}

@media (max-width: 767.98px) {
  .lp-rankingSliderShell .swiper-button-prev,
  .lp-rankingSliderShell .swiper-button-next {
    top: calc(var(--ranking-media-h) - 18px);
    width: 48px;
    height: 48px;
  }

  .lp-rankingSliderShell .swiper-button-prev svg,
  .lp-rankingSliderShell .swiper-button-next svg {
    width: 48px;
    height: 48px;
  }

  .lp-rankingSliderShell .swiper-button-prev {
    left: max(8px, calc(50% - (var(--ranking-slide-w) / 2) - var(--ranking-arrow-offset)));
  }

  .lp-rankingSliderShell .swiper-button-next {
    right: max(8px, calc(50% - (var(--ranking-slide-w) / 2) - var(--ranking-arrow-offset)));
  }
}

/*
  Ranking slider pagination
 */
.lp-rankingSlider__pagination.swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lp-rankingSlider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  background: rgba(82, 115, 8, 0.25);
  opacity: 1;
}

.lp-rankingSlider__pagination .swiper-pagination-bullet-active {
  background: var(--main-primary);
}

@media (max-width: 767.98px) {
  .lp-rankingSlider__pagination.swiper-pagination {
    gap: 6px;
  }

  .lp-rankingSlider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* =========================================================
  Features
========================================================= */
.lp-features {
  width: 100%;
  padding: 64px 32px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .lp-features {
    padding: 56px 24px;
  }
}

/*
  Features list
 */
.lp-features__list {
  display: grid;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-features__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 767.98px) {
  .lp-features__list {
    gap: 35px;
  }
}

/*
  Features item title
 */
.lp-features__title {
  margin: 0;
}

.lp-features__titlePicture {
  display: block;
  width: 100%;
}

.lp-features__titleImage {
  display: block;
  width: 100%;
  height: auto;
}

/*
  Features image
 */
.lp-features__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
}

@media (max-width: 767.98px) {
  .lp-features__image {
    margin-top: 21px;
  }
}

/*
  Features text
 */
.lp-features__text {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-features__text {
    margin-top: 16px;
    font-size: 14px;
  }
}

/*
  Features note
 */
.lp-features__note {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-features__note {
    margin-top: 7px;
    font-size: 12.25px;
  }
}
/*
  Features rank note
   */
.lp-features__noteArea {
  margin-top: 8px;
}

.lp-features__noteArea .lp-features__note {
  margin-top: 0;
}

.lp-features__note--mark,
.lp-features__note--bullet {
  position: relative;
  padding-left: 1em;
}

.lp-features__note--mark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.lp-features__note--bullet::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.lp-features__noteList {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767.98px) {
  .lp-features__noteArea {
    margin-top: 7px;
  }
}

/* =========================================================
  Voice
========================================================= */
.lp-voice {
  width: 100%;
  padding: 64px 32px;
  background: #f9f5ee;
}

@media (max-width: 767.98px) {
  .lp-voice {
    padding: 56px 24px;
  }
}

/*
  Voice lead
 */
.lp-voice__leadPicture {
  display: block;
  width: 100%;
}

.lp-voice__leadImage {
  display: block;
  width: 100%;
  height: auto;
}
/*
  Voice slider
 */
.lp-voiceSliderShell {
  --voice-slide-w: 388px;
  --voice-media-h: 240px;
  --voice-arrow-offset: 42px;

  position: relative;
  width: calc(100% + 64px);
  margin-top: 40px;
  margin-left: -32px;
  padding-bottom: 34px;
  overflow: hidden;
}

.lp-voiceSlider {
  width: 100%;
  margin: 0;
  overflow: visible;
}

.lp-voiceSlider .swiper-wrapper {
  align-items: stretch;
}

.lp-voiceSlider .swiper-slide {
  display: block;
  width: var(--voice-slide-w);
  height: auto;
  background: transparent;
}

@media (max-width: 767.98px) {
  .lp-voiceSliderShell {
    --voice-slide-w: clamp(285px, calc(26.21vw + 186.72px), 388px);

    --voice-media-h: calc(var(--voice-slide-w) * 240 / 388);

    --voice-arrow-offset: 30px;

    width: calc(100% + 48px);
    margin-top: 35px;
    margin-left: -24px;
    padding-bottom: 29px;
  }
}
/*
  Voice slider buttons
 */
.lp-voiceSliderShell .swiper-button-prev,
.lp-voiceSliderShell .swiper-button-next {
  position: absolute;
  top: calc(var(--voice-media-h) - 48px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;

  border: 0;
  background: transparent !important;

  color: var(--main-primary);

  appearance: none;
  -webkit-appearance: none;
}

.lp-voiceSliderShell .swiper-button-prev {
  left: calc(50% - (var(--voice-slide-w) / 2) - var(--voice-arrow-offset));
}

.lp-voiceSliderShell .swiper-button-next {
  right: calc(50% - (var(--voice-slide-w) / 2) - var(--voice-arrow-offset));
}

.lp-voiceSliderShell .swiper-button-prev::after,
.lp-voiceSliderShell .swiper-button-next::after {
  content: none;
}

.lp-voiceSliderShell .swiper-button-prev svg,
.lp-voiceSliderShell .swiper-button-next svg {
  display: block;
  width: 56px;
  height: 56px;
}

.lp-voiceSliderShell .swiper-button-prev:hover svg path:first-of-type,
.lp-voiceSliderShell .swiper-button-next:hover svg path:first-of-type {
  fill: var(--main-primary);
}

.lp-voiceSliderShell .swiper-button-prev:hover svg path:last-of-type,
.lp-voiceSliderShell .swiper-button-next:hover svg path:last-of-type {
  stroke: #fff;
}

.lp-voiceSliderShell .swiper-button-disabled {
  opacity: 0.35;
}

@media (max-width: 767.98px) {
  .lp-voiceSliderShell .swiper-button-prev,
  .lp-voiceSliderShell .swiper-button-next {
    top: calc(var(--voice-media-h) - 18px);
    width: 48px;
    height: 48px;
  }

  .lp-voiceSliderShell .swiper-button-prev svg,
  .lp-voiceSliderShell .swiper-button-next svg {
    width: 48px;
    height: 48px;
  }

  .lp-voiceSliderShell .swiper-button-prev {
    left: max(8px, calc(50% - (var(--voice-slide-w) / 2) - var(--voice-arrow-offset)));
  }

  .lp-voiceSliderShell .swiper-button-next {
    right: max(8px, calc(50% - (var(--voice-slide-w) / 2) - var(--voice-arrow-offset)));
  }
}
/*
  Voice card
 */
.lp-voiceProductCard {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.lp-voiceProductCard__media {
  width: 100%;
  height: 240px;
  margin: 0;
  overflow: hidden;
}

.lp-voiceProductCard__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-voiceProductCard__body {
  padding: 24px;
  background: #fff;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-voiceProductCard__media {
    height: 176px;
  }

  .lp-voiceProductCard__body {
    padding: 20px;
  }
}
/*
  Voice card head
 */
.lp-voiceProductCard__head {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
}

.lp-voiceProductCard__icon {
  display: block;
  width: 100px;
  height: 110px;
  object-fit: contain;
}

.lp-voiceProductCard__meta {
  min-width: 0;
}

.lp-voiceProductCard__title {
  margin: 0;
  color: #e69400;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.lp-voiceProductCard__customer {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-voiceProductCard__head {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 8px;
  }

  .lp-voiceProductCard__icon {
    width: 72px;
    height: 80px;
  }

  .lp-voiceProductCard__title {
    font-size: 17.5px;
  }

  .lp-voiceProductCard__customer {
    font-size: 12.25px;
  }
}
/*
  Voice card text
 */
.lp-voiceProductCard__description {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-voiceProductCard__description {
    margin-top: 14px;
    font-size: 14px;
  }
}
/*
  Voice slider pagination
 */
.lp-voiceSlider__pagination.swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lp-voiceSlider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(82, 115, 8, 0.25);
  opacity: 1;
  cursor: pointer;
}

.lp-voiceSlider__pagination .swiper-pagination-bullet-active {
  background: var(--main-primary);
}

@media (max-width: 767.98px) {
  .lp-voiceSlider__pagination.swiper-pagination {
    gap: 6px;
  }

  .lp-voiceSlider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
/* =========================================================
  FAQ
========================================================= */
.lp-faq {
  --faq-step-bg: #fbf2ed;

  padding: 96px 32px 88px;
  background: var(--base-quaternary, #fff);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.lp-faq__inner {
  width: 100%;
  max-width: 594px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .lp-faq {
    padding: 56px 24px;
  }

  .lp-faq__inner {
    max-width: 436px;
  }
}

/* FAQ heading */
.lp-faq__heading {
  margin: 0 0 80px;
}

.lp-faq__headingPicture {
  display: block;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
}

.lp-faq__headingImage {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-faq__heading {
    margin-bottom: 35px;
  }
}

/* FAQ list */
.lp-faq__list {
  width: 100%;
}

/* FAQ item */
.lp-faq__item {
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: 1px dashed #e6d7bd;
}

/* FAQ trigger */
.lp-faq__trigger {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  align-items: start;
  gap: 21px;

  width: 100%;
  padding: 24px 0;

  border: 0;
  background: transparent;
  box-shadow: none;

  color: inherit;
  font: inherit;
  text-align: left;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lp-faq__trigger:hover,
.lp-faq__trigger:active {
  background: transparent;
}

.lp-faq__trigger:focus {
  outline: none;
}

@media (max-width: 767.98px) {
  .lp-faq__trigger {
    padding: 21px 0;
  }
}

/* Q / A icon */
.lp-faq__label {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;
}

.lp-faq__labelImage {
  display: block;
  width: 40px;
  height: 40px;
}

/* Question */
.lp-faq__questionText {
  display: block;
  min-width: 0;
  padding-top: 5px;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-faq__questionText {
    padding-top: 6.9px;
    font-size: 17.5px;
  }
}

/* Open / close icon */
.lp-faq__toggle {
  align-self: stretch;

  display: grid;
  place-items: center;

  width: 24px;
  padding: 0;
}

.lp-faq__toggleIcon {
  grid-area: 1 / 1;

  width: 16px;
  height: 16px;
}

/* 閉じている時 */
#faq .faq-trigger .icon-plus {
  display: block !important;
}

#faq .faq-trigger .icon-minus {
  display: none !important;
}

/* 開いている時 */
#faq .faq-trigger[aria-expanded="true"] .icon-plus {
  display: none !important;
}

#faq .faq-trigger[aria-expanded="true"] .icon-minus {
  display: block !important;
}

/* FAQ panel */
.lp-faq__panel {
  display: grid;
  grid-template-rows: 0fr;

  overflow: hidden;
  contain: layout;

  transition: grid-template-rows 0.28s cubic-bezier(0.32, 0, 0.2, 1);
}

.lp-faq__item.is-open > .lp-faq__panel {
  grid-template-rows: 1fr;
  will-change: grid-template-rows;
}

/* FAQ answer */
.lp-faq__panelInner {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 21px;

  min-height: 0;
  overflow: hidden;
}

.lp-faq__answerText {
  margin: 0;
  padding: 6px 0 24px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

/*
  画像など複数要素を含む回答
  下余白は answerContent 側で管理する
*/
.lp-faq__answerContent {
  min-width: 0;
  padding-bottom: 24px;
}

.lp-faq__answerContent .lp-faq__answerText {
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  .lp-faq__answerText {
    padding-top: 5px;
    padding-bottom: 21px;
    font-size: 14px;
  }

  .lp-faq__answerContent {
    padding-bottom: 21px;
  }
}

/* FAQ howto image */
.lp-faq__howtoPicture {
  display: block;
  width: 100%;
}

.lp-faq__howtoImage {
  display: block;
  width: 100%;
  height: auto;

  margin: 6px 0 10px;

  border-radius: 8px;
  background: var(--faq-step-bg);
}

.lp-faq__howtoImage--noMargin {
  margin: 16px 0 0;
}

@media (max-width: 767.98px) {
  .lp-faq__howtoImage {
    margin: 5px 0 9px;
  }

  .lp-faq__howtoImage--noMargin {
    margin-top: 16px;
  }
}

/* FAQ link */
.lp-faq__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* FAQ animation */
@media (prefers-reduced-motion: reduce) {
  .lp-faq__panel {
    transition: none;
  }
}

/* =========================================================
  Type
========================================================= */
.lp-type {
  background: var(--background-secondary);
}

.lp-type__inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

@media (max-width: 767.98px) {
  .lp-type__inner {
    padding-top: 56px;
  }
}

/* Type heading */
.lp-type__header {
  text-align: center;
}

.lp-type__heading {
  margin: 8px 0 0;
}

.lp-type__headingPicture {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.lp-type__headingImage {
  display: block;
  width: 100%;
  height: auto;
}

/* Type navigation */
.lp-type__nav {
  margin: 40px 0;
}

@media (max-width: 767.98px) {
  .lp-type__nav {
    margin: 35px 0;
  }
}

.lp-type__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767.98px) {
  .lp-type__list {
    gap: 18px;
  }
}

.lp-type__item {
  width: 100%;
}

/* Type link */
.lp-type__link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  box-shadow: var(--shadow-button);
  transition:
    opacity 0.2s ease-out,
    box-shadow 0.2s ease-out;
}

.lp-type__link:hover,
.lp-type__link:focus-visible {
  opacity: 0.6;
  box-shadow: none;
}

/* Type image */
.lp-type__picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
}

.lp-type__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9999px;
}
/* =========================================================
  Set section
========================================================= */
.lp-setSection {
  width: 100%;
  max-width: 1376px;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 32px;
}

@media (max-width: 767.98px) {
  .lp-setSection {
    padding: 24px;
  }
}

.lp-setSection--haji {
  background: #f4e0b9;
}

/* Set section heading */
.lp-setSection__heading {
  margin: 0 0 32px;
}

.lp-setSection__headingPicture,
.lp-setSection__headingImage {
  display: block;
  width: 100%;
}

.lp-setSection__headingImage {
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-setSection__heading {
    margin-bottom: 24px;
  }
}

/* Set card */
.lp-setCard {
  padding: 24px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .lp-setCard {
    padding: 20px 16px;
  }
}

/* Set title */
.lp-setCard__title {
  margin: 0;
}

.lp-setCard__titlePicture,
.lp-setCard__titleImage {
  display: block;
  width: 100%;
}

.lp-setCard__titleImage {
  height: auto;
}

/* Set main image */
.lp-setCard__imageArea {
  padding-top: 24px;
}

@media (max-width: 767.98px) {
  .lp-setCard__imageArea {
    padding-top: 20px;
  }
}

.lp-setCard__picture,
.lp-setCard__image {
  display: block;
  width: 100%;
}

.lp-setCard__image {
  height: auto;
}

/* Set CTA */
.lp-setCta {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  column-gap: 12px;

  width: 388px;
  height: 80px;
  margin: 24px auto;

  padding: 0 24px;
  border: 0;
  border-radius: 9999px;

  color: #fff;
  text-decoration: none;

  box-shadow: var(--shadow-button);

  transition:
    opacity 0.2s ease-out,
    box-shadow 0.2s ease-out;
}

@media (max-width: 767.98px) {
  .lp-setCta {
    width: 100%;
    height: 70px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.lp-setCta--haji {
  background: #dd4a21;
}

.lp-setCta--haji:hover {
  opacity: 0.5;
  box-shadow: none;
}

.lp-setCta--haji:focus-visible {
  outline: 2px solid #dd4a21;
  outline-offset: 2px;
}

/* CTA text */
.lp-setCta__spacer {
  width: 24px;
  height: 24px;
}

.lp-setCta__text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767.98px) {
  .lp-setCta__text {
    font-size: 14px;
  }
}

/* CTA arrow */
.lp-setCta__icon {
  width: 8px;
  height: 16px;
  color: currentColor;
  justify-self: center;
}

@media (max-width: 767.98px) {
  .lp-setCta__icon {
    width: 7px;
    height: 14px;
  }
}

/* Disabled CTA */
.lp-setCta--disabled {
  background: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
}

/* Set note */
.lp-setCard__note {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 767.98px) {
  .lp-setCard__note {
    font-size: 12.25px;
  }
}
/* Low-carb bread set */
.lp-setSection--carbo {
  background: #d8e2f1;
}

.lp-setCta--carbo {
  background: #2b6dc8;
}

.lp-setCta--carbo:hover {
  opacity: 0.5;
  box-shadow: none;
}

.lp-setCta--carbo:focus-visible {
  outline: 2px solid #2b6dc8;
  outline-offset: 2px;
}
/* Kids bread set */
.lp-setSection--children {
  background: #f2d3ca;
}

.lp-setCta--children {
  background: #dd7457;
}

.lp-setCta--children:hover {
  opacity: 0.5;
  box-shadow: none;
}

.lp-setCta--children:focus-visible {
  outline: 2px solid #dd7457;
  outline-offset: 2px;
}
/* =========================================================
  Official online store
========================================================= */
.lp-storeAbout {
  padding: 64px 32px;
}

@media (max-width: 767.98px) {
  .lp-storeAbout {
    padding: 56px 24px;
  }
}

/* Heading */
.lp-storeAbout__heading {
  margin: 0 0 40px;
}

.lp-storeAbout__headingPicture {
  display: block;
  width: 100%;
  max-width: 359px;
  margin: 0 auto;
}

.lp-storeAbout__headingImage {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .lp-storeAbout__heading {
    margin-bottom: 35px;
  }
}

/* Text */
.lp-storeAbout__text {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .lp-storeAbout__text {
    margin-bottom: 35px;
  }
}

/* Logo */
.lp-storeAbout__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-storeAbout__logoImage {
  display: block;
  width: 159px;
  height: auto;
}
/* =========================================================
  Floating CV
  - JS: #floating-button / #try-button に .show を付け外し
========================================================= */

/* SP fixed CTA */
.lp-floatingCta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  color: #fff;
  text-decoration: none;
}

.lp-floatingCta__bar {
  position: relative;
  height: 64px;
  padding: 0 20px env(safe-area-inset-bottom);
  overflow: hidden;
  box-sizing: border-box;
  background: var(--main-primary);
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  transform: translateZ(0);
  will-change: transform;
}

.lp-floatingCta__inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.lp-floatingCta__image {
  grid-column: 1;
  grid-row: 1;
  width: 72px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.lp-floatingCta__text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
}

.lp-floatingCta__icon {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 24px;
  height: 24px;
}

/* PCでは非表示 */
@media (min-width: 768px) {
  .lp-floatingCta {
    display: none;
  }
}

/* Show / hide animation */
#floating-button,
#try-button {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 200ms ease-out,
    transform 200ms ease-out;
  will-change: opacity, transform;
}

#floating-button {
  transform: translateY(100%);
}

#try-button {
  transform: translateY(12px) scale(0.96);
}

#floating-button.show,
#try-button.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  #floating-button,
  #try-button {
    transition: none;
  }
}

/* Fixed CTA space */
@media (max-width: 767.98px) {
  main#lp {
    padding-bottom: 0;
  }

  main#lp.is-mypage {
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }
}
