@charset "UTF-8";
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
:root {
  /* breakpoints */
  --bp-md: 768px;
  /* colors */
  --color-primary: #bee623;
  --color-accent: #e65a9e;
  --color-blue: #145ab4;
  --color-dark: #505050;
  --color-light-bg: #e1f5ff;
  --color-white: #fff;
  --color-border: #1496e6;
  /* fonts */
  --font-base: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-zen-maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-zen-kaku: "Zen Kaku Gothic Antique", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-noto: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  /* radius */
  --radius-pill: 9999px;
  --radius-card: 16px;
  /* z-index */
  --z-header: 100;
  --z-bottom-nav: 200;
  --z-pagetop: 800;
}

/**
 * uaplus.css version 0.0.1
 */
/**
 * Different box model
 * 
 * We use the traditional box model, where the padding and border 
 * of the element is drawn inside and not outside the specified 
 * width and height. That makes combining relative and absolute 
 * units in properties like <code>inline-size</code> and 
 * <code>block-size</code> easier.
 * 
 * See https://en.wikipedia.org/wiki/CSS_box_model
 */
*,
*::after,
*::before {
  box-sizing: border-box;
}

/**
 * Improve focus styles
 *
 * Add spacing between content and its focus outline.
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * Disable text size adjustment
 * 
 * To improve readability on non-mobile optimized websites, browsers
 * like mobile Safari increase the default font size when you switch
 * a website from portrait to landscape. We don't want that for our 
 * optimized sites.
 *
 * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
 */
:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

/**
 * Increase line height
 *
 * Long paragraphs are easier to read if the line height is higher.
 */
:where(html) {
  line-height: 1.5;
}

/**
 * Add scrollbar gutter
 *
 * Prevent the page from “jumping” when switching from a long to a short page.
 *
 */
:where(html) {
  scrollbar-gutter: stable;
}

/**
 * Remove UA styles for h1s nested in sectioning content
 *
 * Nesting h1s in section, articles, etc., shouldn't influence the 
 * styling of the heading since nesting doesn't influence 
 * semantics either.
 * 
 * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
 * See https://github.com/whatwg/html/pull/11102
 * See https://html.spec.whatwg.org/#sections-and-headings
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * Improve abbreviations with titles
 * 
 * The abbr element with the title isn't helpful regarding 
 * accessibility because support is inconsistent, and it's only 
 * accessible to some users. Still, it's commonly used. 
 * This rule shows a dotted underline on abbreviations in all 
 * browsers (there's a bug in Safari) and changes the cursor.
 * 
 * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * Optimize mark element in Forced Colors Mode
 *
 * The colors of the mark element don't change in Forced Colors Mode,
 * which can be problematic. Use system colors instead.
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * Announce del, ins, and s to screen readers
 * 
 * With the exception of NVDA (2024.4.2), which announces "deletion",
 * none of the common screen readers announces the <s> element.
 * Voice Over on macOS and iOS and Narrator don't announce 
 * <ins> and <del>. Usually, screen readers not announcing text-level
 * semantics is something we just accept, but devs using elements 
 * like <s> without knowing that they may not convey semantics is a 
 * common issue. We announce the start and end of stricken, inserted,
 * and deleted content with pseudo-elements. For languages other 
 * than English, you should provide translations, e.g. :lang(de) 
 * :where(s::before) { content: "Durchgestrichener Text Beginn "; }
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html
 */
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

/**
 * Avoid overflow caused by embedded content
 * 
 * Ensure that embedded content (audio, video, images, etc.) 
 * doesn't overflow its container.
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * Prevent fieldsets from causing overflow
 *
 * Reset the default `min-inline-size: min-content` to prevent
 * children from stretching fieldsets
 *
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * Turn labels into block elements
 * 
 * Labels for inputs, selects, and textarea should be block 
 * elements.
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * Increase the block-size of textareas
 *
 * The default height of textareas is small. We increase it a bit.
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * Inherit font styling in form elements
 * 
 * buttons, inputs, selects, and textarea should have the same font
 * family and size as the rest of the page.
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * Normalize search input styles
 *  
 * Remove the rounded corners of search inputs on macOS and IOS 
 * and normalize the background color
 */
:where([type=search]) {
  -webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * Maintain direction in some input types
 * 
 * Some input types should remain left-aligned in right-to-left
 * languages,but only if the value isn't empty because the 
 * placeholder should be right-aligned.
 *
 * See https://rtlstyling.com/posts/rtl-styling#form-inputs
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder) {
  direction: ltr;
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * Improve table styling
 *  
 * With the default styling, tables are hard to scan. These rules 
 * add padding and collapsed borders.
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * Fading dialogs
 *  
 * Add fade in and fade out transitions for the dialog element
 * and backdrops
 */
:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * Increase specificity of [hidden]
 *  
 * Make it harder to accidentally unhide elements with the 
 * [hidden] attribute while still maintaining the until-found 
 * functionality.
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.example-text {
  font-size: clamp(1.125rem, 0.8846rem + 1.0256vw, 1.5rem);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 1.875rem;
  height: auto;
}
@media (min-width: 769px) {
  html {
    scroll-padding-top: 1.875rem;
  }
}
html * {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  color: #505050;
  font-feature-settings: "palt";
}

a {
  text-decoration: underline;
  color: #505050;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

::-moz-selection {
  background-color: #bee623;
  color: #fff;
}

::selection {
  background-color: #bee623;
  color: #fff;
}

blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "“";
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

figure {
  margin-inline-start: 0;
  margin-inline-end: 0;
  max-width: 100%;
}

pre {
  overflow: auto;
  background: #efefef;
  padding: 1rem;
}

address {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 180%;
  color: #505050;
}
@media (min-width: 769px) {
  address {
    font-size: 1rem;
  }
}

h1, h2, h3, h4 {
  color: #505050;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-table-row {
  display: table-row !important;
}

.d-xs-none {
  display: none !important;
}

.d-xs-inline {
  display: inline !important;
}

.d-xs-block {
  display: block !important;
}

.d-xs-inline-block {
  display: inline-block !important;
}

.d-xs-flex {
  display: flex !important;
}

.d-xs-inline-flex {
  display: inline-flex !important;
}

.d-xs-grid {
  display: grid !important;
}

.d-xs-inline-grid {
  display: inline-grid !important;
}

.d-xs-table {
  display: table !important;
}

.d-xs-table-cell {
  display: table-cell !important;
}

.d-xs-table-row {
  display: table-row !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1360px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1920px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-mobile-only {
    display: none !important;
  }
}

.d-desktop-only {
  display: none !important;
}
@media (min-width: 769px) {
  .d-desktop-only {
    display: block !important;
  }
}

.d-tablet-up {
  display: none !important;
}
@media (min-width: 576px) {
  .d-tablet-up {
    display: block !important;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.l-inner {
  padding: 0 1.25rem;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-header);
  width: 100%;
  max-width: 375px;
  height: 0;
}
@media only screen and (max-width: 430px) {
  .p-header {
    max-width: 100%;
  }
}
.p-header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.p-header__logo {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.p-header__logo a {
  display: inline-flex;
  align-items: center;
}
.p-header__logo img {
  display: block;
  height: 1rem;
  width: auto;
}
.p-header__right {
  margin-left: auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.p-header .c-btn-cta {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.p-header .c-btn-cta img {
  height: 100%;
  width: auto;
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-footer {
  background: var(--color-light-bg);
  color: #fff;
  width: 100%;
  max-width: 391px;
  margin: 0 auto;
  overflow-x: hidden;
  padding-bottom: 5.375rem;
  border-left: solid 8px #fff;
  border-right: solid 8px #fff;
}
@media only screen and (max-width: 430px) {
  .p-footer {
    max-width: 100%;
    border: none;
  }
}
.p-footer__info {
  margin-bottom: 2.75rem;
}
.p-footer__logo {
  margin-bottom: 1.75rem;
}
.p-footer__logo-company {
  width: 5.25rem;
  margin-bottom: 1rem;
}
.p-footer__logo-company img {
  width: 100%;
  display: block;
}
.p-footer__logo-sns {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}
.p-footer__logo-sns a {
  display: inline-flex;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.p-footer__logo-sns a:hover {
  opacity: 1;
}
.p-footer__logo-sns img {
  width: 1.75rem;
  display: block;
}
.p-footer__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.p-footer__nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1;
  margin: 0 1rem 1rem 0;
}
.p-footer__nav a:hover {
  text-decoration: underline;
}
.p-footer__access-item p:nth-of-type(1) {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #fff;
  text-align: right;
}
.p-footer__access-item p:nth-of-type(2) {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: #fff;
  text-align: right;
}
.p-footer__copyright {
  text-align: center;
}
.p-footer__copyright small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
.p-footer__copyright small a {
  color: inherit;
  text-decoration: none;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-btn-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.c-btn-cta img {
  display: block;
  max-width: 100%;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  max-width: 376px;
  background: var(--color-light-bg);
  text-decoration: none;
  z-index: var(--z-bottom-nav);
  padding: 0.5rem 1.25rem;
}
.p-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}
.p-banner img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}
.p-banner:hover img {
  opacity: 0.6;
}
@media only screen and (max-width: 430px) {
  .p-banner {
    max-width: 100%;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
body {
  background: #55d2ff;
  background-image: url("../images/lp-background.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

.p-lp__side {
  display: none;
  position: fixed;
  top: 0;
  width: calc((100svw - 375px) / 2);
  min-height: 400px;
  height: 100%;
  min-width: 260px;
}
@media (min-width: 576px) {
  .p-lp__side {
    display: block;
  }
}
.p-lp__side--left {
  left: 0;
}
.p-lp__side--right {
  right: 0;
}
.p-lp__side .p-fv__logo {
  max-width: 306px;
  padding: 0 0.5rem;
  margin: 3.125rem auto 0;
}
.p-lp__side .p-fv__logo img {
  width: 100%;
}
.p-lp__side .p-fv__stats {
  position: relative;
  inset: auto;
  padding: 0;
}
.p-lp__side .p-fv__catch {
  transform: translateY(-4vw);
}
.p-lp__side .p-fv__benefit,
.p-lp__side .p-fv__cta {
  padding: 0;
  background: none;
}
.p-lp__side-inner {
  max-width: 306px;
  padding: 0 0.5rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-lp__main {
  position: relative;
  width: 100%;
  max-width: 391px;
  margin: 0 auto;
  background: var(--color-light-bg);
  overflow: hidden;
  border-left: solid 8px #fff;
  border-right: solid 8px #fff;
}
@media only screen and (max-width: 430px) {
  .p-lp__main {
    max-width: 100%;
    border: none;
  }
}

@keyframes lp-shake {
  72% {
    transform: translateX(0);
  }
  76% {
    transform: translateX(4px);
  }
  80% {
    transform: translateX(-4px);
  }
  84% {
    transform: translateX(4px);
  }
  88% {
    transform: translateX(-4px);
  }
  92% {
    transform: translateX(4px);
  }
  96% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-fv {
  background-color: #e1f5ff;
}
.p-fv__hero {
  position: relative;
  overflow: hidden;
}
.p-fv__hero-bg {
  position: absolute;
}
.p-fv__hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-fv__hero-content {
  position: relative;
  z-index: 2;
  top: 1rem;
  left: 0;
  right: 0;
  padding: 0 1.25rem;
  z-index: 1;
}
.p-fv__catch img {
  width: 100%;
  max-width: 344px;
  display: block;
}
.p-fv__stats {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
  padding: 0 1.125rem;
}
@media only screen and (max-width: 430px) {
  .p-fv__stats {
    margin-top: 25.6vw;
  }
}
.p-fv__stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5625rem;
}
.p-fv__stats-item {
  flex: 1;
  text-align: center;
}
.p-fv__stats-item img {
  width: 100%;
  height: auto;
  display: block;
}
.p-fv__benefit {
  margin-top: 1.5rem;
  padding: 0 1.25rem;
  text-align: center;
}
.p-fv__benefit-title {
  max-width: 304px;
  width: 100%;
  margin: 0 auto 0.625rem;
}
@media only screen and (max-width: 430px) {
  .p-fv__benefit-title {
    max-width: 81.0666666667vw;
  }
}
.p-fv__benefit-list {
  margin-bottom: 1rem;
}
.p-fv__benefit-total {
  margin-bottom: 1.25rem;
}
.p-fv__benefit-total img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.p-fv__cta {
  padding: 0 1.25rem;
}
.p-fv__cta a {
  display: block;
  transition: opacity 0.2s ease;
}
.p-fv__cta a:hover {
  opacity: 0.6;
}
.p-fv__video {
  padding: 0 1.25rem;
  margin-bottom: 1.25rem;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-problem__pain {
  background: var(--color-light-bg);
  background-image: url("../images/problem-pain-bg.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding: 6.25rem 1.25rem 6.625rem;
}
@media only screen and (max-width: 430px) {
  .p-problem__pain {
    padding: 26.6666666667vw 1.25rem 28.2666666667vw;
  }
}
.p-problem__pain-heading {
  text-align: center;
  margin: 0 0 0.875rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 430px) {
  .p-problem__pain-heading {
    margin: 0 0 3.7333333333vw;
    font-size: 5.3333333333vw;
  }
}
.p-problem__pain-heading img {
  width: 100%;
  max-width: 12.5rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-problem__pain-heading img {
    max-width: 53.3333333333vw;
  }
}
.p-problem__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-problem__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  padding: 1.5rem 0;
  margin-right: -8px;
  border-top: 1px dashed #fff;
}
@media only screen and (max-width: 430px) {
  .p-problem__card {
    padding: 6.4vw 0;
  }
}
.p-problem__card:first-child {
  border-top: none;
}
.p-problem__card:nth-of-type(1) .p-problem__card-label {
  width: 128px;
}
@media only screen and (max-width: 430px) {
  .p-problem__card:nth-of-type(1) .p-problem__card-label {
    width: 34.1333333333vw;
  }
}
.p-problem__card:nth-of-type(2) .p-problem__card-label {
  width: 165px;
}
@media only screen and (max-width: 430px) {
  .p-problem__card:nth-of-type(2) .p-problem__card-label {
    width: 44vw;
  }
}
.p-problem__card:nth-of-type(2) .p-problem__card-icon img {
  width: 82px;
}
@media only screen and (max-width: 430px) {
  .p-problem__card:nth-of-type(2) .p-problem__card-icon img {
    width: 21.8666666667vw;
  }
}
.p-problem__card-body {
  flex: 1;
  min-width: 0;
}
.p-problem__card-icon {
  flex-shrink: 0;
  width: 110px;
}
@media only screen and (max-width: 430px) {
  .p-problem__card-icon {
    width: 29.3333333333vw;
  }
}
.p-problem__card-icon img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-problem__card-label {
  display: block;
  margin-bottom: 0.75rem;
}
.p-problem__card-label img {
  width: auto;
  height: auto;
}
.p-problem__card-text img {
  width: 210px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 430px) {
  .p-problem__card-text img {
    width: 56vw;
  }
}
.p-problem__change {
  background: var(--color-light-bg);
  padding: 1.5rem 0;
}
.p-problem__change-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 0.75rem;
}
@media only screen and (max-width: 430px) {
  .p-problem__change-heading {
    font-size: 6.6666666667vw;
    gap: 2.1333333333vw;
  }
}
.p-problem__change-heading span {
  text-align: center;
}
.p-problem__change-deco {
  flex-shrink: 0;
  width: 2rem;
  height: auto;
  display: block;
}
@media only screen and (max-width: 430px) {
  .p-problem__change-deco {
    width: 8.5333333333vw;
  }
}
.p-problem__change-deco--flip {
  transform: scaleX(-1);
}
.p-problem__results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-problem__result:nth-of-type(3) {
  margin-top: 10px;
}
.p-problem__result img {
  width: 100%;
  height: auto;
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-reason {
  position: relative;
  background: #4bb9eb;
  background-image: url("../images/reason-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding: 19.625rem 0 0.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason {
    padding: 83.7333333333vw 0 3.7333333333vw;
  }
}
.p-reason__inner-top {
  position: relative;
  border-radius: 0.875rem 0.875rem 0 0;
  background-color: #fff;
  margin: 0 0.875rem 0;
  padding-top: 3.125rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__inner-top {
    margin: 0 3.7333333333vw;
    padding-top: 13.3333333333vw;
  }
}
.p-reason__inner-bottom {
  border-radius: 0 0 0.875rem 0.875rem;
  background-color: #e1f5ff;
  margin: 0 0.875rem;
  padding: 0.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__inner-bottom {
    margin: 0 3.7333333333vw;
  }
}
.p-reason__ticker-list {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0 0 1rem;
  padding: 3.375rem 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__ticker-list {
    margin: 0 0 4.2666666667vw;
    gap: 3.7333333333vw;
  }
}
.p-reason__ticker-item {
  font-size: 1rem;
  line-height: 1.875;
  color: var(--color-dark);
  background-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 2px rgb(255, 255, 255);
  border-radius: 0.3125rem;
  padding: 0 0.625rem;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.p-reason__ticker-item:nth-child(1) {
  margin-left: 1.8125rem;
}
.p-reason__ticker-item:nth-child(2) {
  margin-left: 4.75rem;
}
.p-reason__ticker-item:nth-child(3) {
  margin-left: 0.5rem;
}
.p-reason__ticker-item:nth-child(4) {
  margin-left: 8.75rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__ticker-item {
    font-size: 4.2666666667vw;
    padding: 0 2.6666666667vw;
  }
  .p-reason__ticker-item:nth-child(1) {
    margin-left: 7.7333333333vw;
  }
  .p-reason__ticker-item:nth-child(2) {
    margin-left: 20.2666666667vw;
  }
  .p-reason__ticker-item:nth-child(3) {
    margin-left: 2.1333333333vw;
  }
  .p-reason__ticker-item:nth-child(4) {
    margin-left: 37.3333333333vw;
  }
}
.p-reason__kicker {
  top: -2.5rem;
  left: 0;
  width: 100%;
  position: absolute;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .p-reason__kicker {
    top: -10.6666666667vw;
  }
}
.p-reason__kicker img {
  width: 150px;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-reason__kicker img {
    width: 40vw;
  }
}
.p-reason__heading {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.28;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 1.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__heading {
    font-size: 6.6666666667vw;
    margin: 0 0 8vw;
  }
}
.p-reason__body {
  font-size: 1.25rem;
  line-height: 1.85;
  line-height: 1.9;
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 3.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__body {
    font-size: 5.3333333333vw;
    margin: 0 0 16.5333333333vw;
  }
}
.p-reason__mark {
  background: linear-gradient(transparent 15%, #ffff00 15%, #ffff00 80%, #ffff00 90%, transparent 90%);
  color: #ff64aa;
  font-weight: 700;
}
.p-reason__contrast {
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__contrast {
    margin: 0 -3.7333333333vw;
  }
}
.p-reason__contrast img {
  width: 100%;
  height: auto;
  display: block;
}
.p-reason__conclusion {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  line-height: 2.1;
  color: var(--color-blue);
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 430px) {
  .p-reason__conclusion {
    font-size: 5.3333333333vw;
  }
}
.p-reason__conclusion-em {
  position: relative;
  z-index: 2;
  font-family: var(--font-zen-kaku);
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.44;
  color: #ff64aa;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media only screen and (max-width: 430px) {
  .p-reason__conclusion-em {
    font-size: 6.6666666667vw;
    margin: 0 0 6.4vw;
  }
}
.p-reason__photo {
  position: relative;
  z-index: 2;
}
.p-reason__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-feature {
  background: var(--color-light-bg);
  padding-bottom: 3.5rem;
  position: relative;
}
.p-feature::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 38px 28px 0 28px;
  border-color: #4bb9eb transparent transparent transparent;
  transform: translate(-50%);
}
@media only screen and (max-width: 430px) {
  .p-feature::before {
    top: -3.4666666667vw;
    border-width: 10.1333333333vw 7.4666666667vw 0 7.4666666667vw;
  }
}
.p-feature__header {
  padding: 2.875rem 0 2rem;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .p-feature__header {
    padding: 12.2666666667vw 0 8.5333333333vw;
  }
}
.p-feature__kicker {
  margin: 0 0 1.75rem;
}
@media only screen and (max-width: 430px) {
  .p-feature__kicker {
    margin: 0 0 7.4666666667vw;
  }
}
.p-feature__kicker img {
  width: 100%;
  max-width: 12.625rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-feature__kicker img {
    width: 53.8666666667vw;
  }
}
.p-feature__heading {
  margin: 0;
}
.p-feature__heading img {
  width: 100%;
  max-width: 17.125rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-feature__heading img {
    max-width: 73.0666666667vw;
  }
}
.p-feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-feature__item + .p-feature__item {
  margin-top: 3.125rem;
}
@media only screen and (max-width: 430px) {
  .p-feature__item + .p-feature__item {
    margin-top: 13.3333333333vw;
  }
}
.p-feature__item:nth-of-type(1) .p-feature__item-ttl img {
  max-width: 326px;
}
@media only screen and (max-width: 430px) {
  .p-feature__item:nth-of-type(1) .p-feature__item-ttl img {
    max-width: 86.9333333333vw;
  }
}
.p-feature__item:nth-of-type(2) .p-feature__item-ttl img {
  max-width: 326px;
}
@media only screen and (max-width: 430px) {
  .p-feature__item:nth-of-type(2) .p-feature__item-ttl img {
    max-width: 86.9333333333vw;
  }
}
.p-feature__item:nth-of-type(3) .p-feature__item-ttl img {
  max-width: 363px;
}
@media only screen and (max-width: 430px) {
  .p-feature__item:nth-of-type(3) .p-feature__item-ttl img {
    max-width: 96.8vw;
  }
}
.p-feature__item:nth-of-type(4) .p-feature__item-ttl img {
  max-width: 363px;
}
@media only screen and (max-width: 430px) {
  .p-feature__item:nth-of-type(4) .p-feature__item-ttl img {
    max-width: 96.8vw;
  }
}
.p-feature__item:nth-of-type(5) .p-feature__item-ttl img {
  max-width: 251px;
}
@media only screen and (max-width: 430px) {
  .p-feature__item:nth-of-type(5) .p-feature__item-ttl img {
    max-width: 66.9333333333vw;
  }
}
.p-feature__item-ttl {
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0 0 -0.3125rem -0.625rem;
}
.p-feature__item-ttl img {
  width: 100%;
  height: auto;
  display: block;
}
.p-feature__item-media {
  position: relative;
  z-index: 1;
  margin-bottom: 0.375rem;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 430px) {
  .p-feature__item-media {
    padding: 0 5.3333333333vw;
  }
}
.p-feature__item-media > img {
  width: 100%;
  height: auto;
  display: block;
}
.p-feature__item-media:has(.p-feature__slider) {
  padding-left: 0;
  padding-right: 0;
}
.p-feature__item-body {
  padding: 0 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 430px) {
  .p-feature__item-body {
    font-size: 4.2666666667vw;
    padding: 0 5.3333333333vw;
  }
}
.p-feature__item-body p {
  margin: 0;
}
.p-feature__item-body p strong {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-feature__item-body p.note {
  font-size: 0.75rem;
  line-height: 1.5833333333;
}
@media only screen and (max-width: 430px) {
  .p-feature__item-body p.note {
    font-size: 3.2vw;
  }
}
.p-feature__item-body p + p {
  margin-top: 1rem;
}
.p-feature__item-body p + p.note {
  margin-top: 0.1875rem;
}
@media only screen and (max-width: 430px) {
  .p-feature__item-body {
    font-size: 4vw;
  }
}
.p-feature__slider {
  --swiper-pagination-color: #1496e6;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  padding-bottom: 2.25rem !important;
}
.p-feature__slider .swiper-pagination-bullet {
  border: 1px solid #1496e6;
  box-sizing: border-box;
}
.p-feature__slides {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-feature__slide {
  height: auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 430px) {
  .p-feature__slide {
    padding: 0 5.3333333333vw;
  }
}
.p-feature__slide-img {
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  margin-bottom: 0.125rem;
  border-radius: 0.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-feature__slide-caption {
  text-align: center;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0;
}
@media only screen and (max-width: 430px) {
  .p-feature__slide-caption {
    font-size: 4vw;
  }
}
.p-feature__slider-pagination {
  bottom: 0.5rem !important;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-campaign {
  background: linear-gradient(to top right, #1ab7bf 0%, #15b6be 6%, #94faff 100%);
  padding: 1.625rem 1.25rem 1.25rem;
}
@media only screen and (max-width: 430px) {
  .p-campaign {
    padding: 6.9333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-campaign__question {
  text-align: center;
  margin: 0 0 0.625rem;
}
.p-campaign__question img {
  max-width: 21rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-campaign__question img {
    margin: 0 0 2.6666666667vw;
    max-width: 89.6vw;
  }
}
.p-campaign__lead {
  text-align: center;
  margin: 0 0 2.25rem;
}
@media only screen and (max-width: 430px) {
  .p-campaign__lead {
    margin: 0 0 9.6vw;
  }
}
.p-campaign__lead img {
  max-width: 12.125rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-campaign__lead img {
    max-width: 51.7333333333vw;
  }
}
.p-campaign__box {
  background-image: url("../images/campaign-box-bg.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0 1.125rem;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .p-campaign__box {
    padding-bottom: 4.8vw;
  }
}
.p-campaign__ttl {
  margin: 0 0 1.375rem;
  padding-top: 3.75rem;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .p-campaign__ttl {
    margin-bottom: 5.8666666667vw;
    padding-top: 16vw;
  }
}
.p-campaign__ttl img {
  height: auto;
  display: inline-block;
}
.p-campaign__ttl img:nth-of-type(1) {
  position: absolute;
  margin-bottom: 0.75rem;
  max-width: 8.5rem;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
}
@media only screen and (max-width: 430px) {
  .p-campaign__ttl img:nth-of-type(1) {
    top: -1rem;
    max-width: 36.2666666667vw;
    top: -4.2666666667vw;
    margin-bottom: 3.2vw;
  }
}
.p-campaign__ttl img:nth-of-type(2) {
  max-width: 17.1875rem;
}
@media only screen and (max-width: 430px) {
  .p-campaign__ttl img:nth-of-type(2) {
    max-width: 73.3333333333vw;
  }
}
.p-campaign__price {
  margin: 0 0 1.25rem;
}
.p-campaign__price img {
  max-width: 14.1875rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-campaign__price img {
    max-width: 60.5333333333vw;
  }
}
.p-campaign__amenities {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  gap: 0.4375rem;
  justify-content: center;
}
@media only screen and (max-width: 430px) {
  .p-campaign__amenities {
    margin: 0 0 5.3333333333vw;
    gap: 1.8666666667vw;
  }
}
.p-campaign__amenity {
  flex: 1;
  max-width: 9.25rem;
}
.p-campaign__amenity img {
  max-width: 9.0625rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-campaign__amenity img {
    max-width: 38.6666666667vw;
  }
}
.p-campaign__deadline {
  margin: 0 0 0.125rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #ff64aa;
}
@media only screen and (max-width: 430px) {
  .p-campaign__deadline {
    font-size: 3.7333333333vw;
  }
}
.p-campaign__deadline img {
  height: auto;
  display: inline-block;
}
.p-campaign__btn {
  display: block;
  margin: 0;
  transition: opacity 0.2s ease;
}
.p-campaign__btn:hover {
  opacity: 0.6;
}
.p-campaign__btn img {
  max-width: 19.0625rem;
  height: auto;
  display: inline-block;
}
@media only screen and (max-width: 430px) {
  .p-campaign__btn img {
    max-width: 81.3333333333vw;
  }
}
.p-campaign__note {
  margin: 0.3125rem 0 0;
  font-size: 0.75rem;
  line-height: 1;
}
@media only screen and (max-width: 430px) {
  .p-campaign__note {
    font-size: 3.2vw;
  }
}
.p-campaign__note img {
  height: auto;
  display: inline-block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-plan {
  background: var(--color-light-bg);
  padding: 2.625rem 0;
}
@media only screen and (max-width: 430px) {
  .p-plan {
    padding: 11.2vw 0;
  }
}
.p-plan__lead {
  padding: 0 1.25rem;
  margin-bottom: 1.75rem;
}
.p-plan__lead img {
  width: 100%;
  height: auto;
  display: block;
}
.p-plan__badge {
  position: absolute;
  flex-shrink: 0;
  width: 5.1875rem;
  margin: 0;
  top: -2.875rem;
  left: -0.75rem;
}
.p-plan__badge img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 430px) {
  .p-plan__badge {
    top: -12.2666666667vw;
    left: -3.2vw;
    width: 22.1333333333vw;
  }
}
.p-plan__label {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0 0 0.625rem;
  line-height: 1.8;
}
@media only screen and (max-width: 430px) {
  .p-plan__label {
    font-size: 5.3333333333vw;
    margin: 0 0 2.6666666667vw;
  }
}
.p-plan__list {
  list-style: none;
  margin: 0;
  padding: 0 1.1875rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (max-width: 430px) {
  .p-plan__list {
    gap: 10.6666666667vw;
  }
}
.p-plan__item {
  position: relative;
}
.p-plan__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-voice {
  background: var(--color-white);
  padding: 2.625rem 0 1.875rem;
}
@media only screen and (max-width: 430px) {
  .p-voice {
    padding: 11.2vw 0 8vw;
  }
}
.p-voice__heading {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0 0 1rem;
  line-height: 1;
}
@media only screen and (max-width: 430px) {
  .p-voice__heading {
    font-size: 5.3333333333vw;
    margin: 0 0 4.2666666667vw;
  }
}
.p-voice__slider {
  --swiper-navigation-color: #505050;
  --swiper-navigation-size: 20px;
  --swiper-navigation-sides-offset: 0;
  padding: 0;
}
.p-voice__slides {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-voice__slide {
  height: auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 430px) {
  .p-voice__slide {
    padding: 0 5.3333333333vw;
  }
}
.p-voice__slide-name {
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  color: var(--color-dark);
  margin: 0 0 0.625rem;
}
@media only screen and (max-width: 430px) {
  .p-voice__slide-name {
    font-size: 4vw;
    margin: 0 0 2.6666666667vw;
  }
}
.p-voice__slide-media {
  margin-bottom: 0.75rem;
}
@media only screen and (max-width: 430px) {
  .p-voice__slide-media {
    margin-bottom: 3.2vw;
  }
}
.p-voice__slide-body {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  color: var(--color-dark);
  margin: 0;
}
@media only screen and (max-width: 430px) {
  .p-voice__slide-body {
    font-size: 4vw;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-flow {
  background: var(--color-white);
  padding: 2.625rem 0 3.5rem;
}
@media only screen and (max-width: 430px) {
  .p-flow {
    padding: 11.2vw 0 14.9333333333vw;
  }
}
.p-flow__header {
  text-align: center;
  padding: 0 1.25rem;
  margin-bottom: 1.75rem;
}
.p-flow__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 0.75rem;
}
@media only screen and (max-width: 430px) {
  .p-flow__heading {
    font-size: 5.3333333333vw;
    gap: 2.1333333333vw;
  }
}
.p-flow__heading span {
  text-align: center;
}
.p-flow__heading-deco {
  flex-shrink: 0;
  width: 2rem;
  height: auto;
  display: block;
}
@media only screen and (max-width: 430px) {
  .p-flow__heading-deco {
    width: 8.5333333333vw;
  }
}
.p-flow__heading-deco--flip {
  transform: scaleX(-1);
}
.p-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-flow__item {
  list-style: none;
}
.p-flow__item:not(:first-child) {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 430px) {
  .p-flow__item:not(:first-child) {
    margin-top: 10.6666666667vw;
  }
}
.p-flow__card {
  position: relative;
}
.p-flow__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 18.75rem;
  min-height: 44px;
  padding: 0 1rem 0 1.125rem;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(90deg, #1ab7bf 0%, #15b6be 6%, #94faff 100%);
  color: #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 430px) {
  .p-flow__head {
    gap: 3.2vw;
    width: 80vw;
    min-height: 11.7333333333vw;
    padding: 0 4.2666666667vw 0 4.8vw;
  }
}
.p-flow__step {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding-right: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}
.p-flow__step::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.6875rem;
  background: rgba(255, 255, 255, 0.9);
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 430px) {
  .p-flow__step::after {
    height: 7.2vw;
  }
}
@media only screen and (max-width: 430px) {
  .p-flow__step {
    font-size: 5.3333333333vw;
    padding-right: 3.2vw;
  }
}
.p-flow__title {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  color: #fff;
}
@media only screen and (max-width: 430px) {
  .p-flow__title {
    font-size: 5.8666666667vw;
  }
}
.p-flow__body {
  display: flex;
  width: calc(100% - 20px);
  margin-top: -22px;
  overflow: hidden;
  background: var(--color-light-bg);
}
@media only screen and (max-width: 430px) {
  .p-flow__body {
    width: calc(100% - 5.3333333333vw);
    margin-top: -5.8666666667vw;
  }
}
.p-flow__text, .p-flow__media {
  width: 50%;
  min-height: 190px;
}
@media only screen and (max-width: 430px) {
  .p-flow__text, .p-flow__media {
    min-height: 50.6666666667vw;
  }
}
.p-flow__text {
  display: flex;
  align-items: center;
  padding: 2.5rem 1rem 1.25rem 1.25rem;
  box-sizing: border-box;
  background: var(--color-light-bg);
}
@media only screen and (max-width: 430px) {
  .p-flow__text {
    padding: 10.6666666667vw 4.2666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-flow__desc {
  margin: 0;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media only screen and (max-width: 430px) {
  .p-flow__desc {
    font-size: 3.7333333333vw;
  }
}
.p-flow__desc small {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
@media only screen and (max-width: 430px) {
  .p-flow__desc small {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.p-flow__media {
  background: #e5e5e5;
}
.p-flow__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-flow__item:nth-child(odd) .p-flow__head {
  margin-right: auto;
}
.p-flow__item:nth-child(odd) .p-flow__body {
  margin-left: auto;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media only screen and (max-width: 430px) {
  .p-flow__item:nth-child(odd) .p-flow__body {
    border-radius: 5.3333333333vw 0 0 5.3333333333vw;
  }
}
.p-flow__item:nth-child(odd) .p-flow__text {
  order: 1;
}
.p-flow__item:nth-child(odd) .p-flow__media {
  order: 2;
}
.p-flow__item:nth-child(even) .p-flow__head {
  margin-left: auto;
  padding: 0 1rem 0 1.125rem;
  border-radius: 99px 0 0 99px;
}
@media only screen and (max-width: 430px) {
  .p-flow__item:nth-child(even) .p-flow__head {
    padding: 0 4.8vw 0 4.8vw;
  }
}
.p-flow__item:nth-child(even) .p-flow__body {
  margin-right: auto;
  border-radius: 0 1.25rem 1.25rem 0;
}
@media only screen and (max-width: 430px) {
  .p-flow__item:nth-child(even) .p-flow__body {
    border-radius: 0 5.3333333333vw 5.3333333333vw 0;
  }
}
.p-flow__item:nth-child(even) .p-flow__text {
  order: 2;
  padding: 2.5rem 1.25rem 1.25rem 1rem;
}
@media only screen and (max-width: 430px) {
  .p-flow__item:nth-child(even) .p-flow__text {
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw 4.2666666667vw;
  }
}
.p-flow__item:nth-child(even) .p-flow__media {
  order: 1;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-trainer {
  background: var(--color-light-bg);
  padding: 2.625rem 0;
}
@media only screen and (max-width: 430px) {
  .p-trainer {
    padding: 11.2vw 0;
  }
}
.p-trainer__heading {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.44;
  text-align: center;
  color: var(--color-dark);
  margin: 0 0 0.9375rem;
  padding: 0;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 430px) {
  .p-trainer__heading {
    font-size: 6.6666666667vw;
    margin: 0 0 4vw;
  }
}
.p-trainer__photo {
  margin-bottom: 0.75rem;
  padding: 0 2.5rem 0 2.4375rem;
}
@media only screen and (max-width: 430px) {
  .p-trainer__photo {
    margin-bottom: 3.2vw;
    padding: 0 10.6666666667vw;
  }
}
.p-trainer__body {
  padding: 0 2.5rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: var(--color-dark);
  margin: 0 0 1rem;
}
.p-trainer__body + .p-trainer__body {
  margin-top: 0;
}
.p-trainer__body:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 430px) {
  .p-trainer__body {
    font-size: 3.7333333333vw;
    padding: 0 10.6666666667vw;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-access {
  background: var(--color-white);
  padding: 3.375rem 0;
}
@media only screen and (max-width: 430px) {
  .p-access {
    padding: 14.4vw 0;
  }
}
.p-access__heading {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.44;
  text-align: center;
  color: var(--color-dark);
  margin: 0 0 0.9375rem;
  padding: 0;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 430px) {
  .p-access__heading {
    font-size: 6.6666666667vw;
    margin: 0 0 4vw;
  }
}
.p-access__map {
  margin-bottom: 0.875rem;
  padding: 0 2.5rem;
}
@media only screen and (max-width: 430px) {
  .p-access__map {
    padding: 0 10.6666666667vw;
  }
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 11.25rem;
  border: 0;
}
.p-access__table {
  margin: 0 0 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-noto);
}
@media only screen and (max-width: 430px) {
  .p-access__table {
    margin: 0 0 6.4vw;
    padding: 0 10.6666666667vw;
  }
}
.p-access__row {
  display: flex;
  gap: 1.25rem;
  padding: 0.6875rem 0;
  border-bottom: 1px solid var(--color-border);
}
.p-access__term {
  flex-shrink: 0;
  width: 4em;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #000;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  margin: 0;
}
@media only screen and (max-width: 430px) {
  .p-access__term {
    font-size: 4vw;
  }
}
.p-access__desc {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  font-weight: 400;
}
@media only screen and (max-width: 430px) {
  .p-access__desc {
    font-size: 4vw;
  }
}
.p-access__note {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #000;
  margin-top: 0.25rem;
  font-weight: 400;
}
@media only screen and (max-width: 430px) {
  .p-access__note {
    font-size: 2.9333333333vw;
  }
}
.p-access__cta {
  padding: 0 2.5rem;
}
.p-access__btn {
  display: block;
  transition: opacity 0.2s ease;
}
.p-access__btn:hover {
  opacity: 0.6;
}
.p-access__btn {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 0.25rem;
}
@media only screen and (max-width: 430px) {
  .p-access__btn {
    font-size: 4.2666666667vw;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-faq {
  background: var(--color-white);
  padding: 0 0 3.5rem;
}
.p-faq__heading {
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 1.44;
  text-align: center;
  background-color: #1496e6;
  color: #fff;
  margin: 0 0 1.75rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 430px) {
  .p-faq__heading {
    height: 17.0666666667vw;
    font-size: 6.6666666667vw;
    margin: 0 0 7.4666666667vw;
  }
}
.p-faq__list {
  padding: 0 1.25rem;
}
.p-faq__item + .p-faq__item {
  margin-top: 1.75rem;
}
@media only screen and (max-width: 430px) {
  .p-faq__item + .p-faq__item {
    margin-top: 7.4666666667vw;
  }
}
.p-faq__item > summary {
  list-style: none;
}
.p-faq__item > summary::-webkit-details-marker {
  display: none;
}
.p-faq__question {
  min-height: 52px;
  display: flex;
  gap: 0.75rem;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid #1496e6;
}
.p-faq__q-label {
  flex-shrink: 0;
  width: 3.125rem;
  background: #1496e6;
  color: var(--color-white);
  font-size: 2.1875rem;
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-style: italic;
  padding-right: 0.5rem;
  padding-bottom: 0.25rem;
  line-height: 0;
}
@media only screen and (max-width: 430px) {
  .p-faq__q-label {
    font-size: 9.3333333333vw;
  }
}
.p-faq__q-text {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-family: var(--font-noto);
  font-weight: 500;
  color: #000;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
}
@media only screen and (max-width: 430px) {
  .p-faq__q-text {
    font-size: 4vw;
  }
}
.p-faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  margin-right: 0.625rem;
  position: relative;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #1496e6;
}
.p-faq__icon::before {
  width: 0.75rem;
  height: 2px;
  transform: translate(-50%, -50%);
}
.p-faq__icon::after {
  width: 2px;
  height: 0.75rem;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-faq__item[open] .p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__answer {
  overflow: hidden;
  height: 0;
  background-color: #e1f5ff;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-faq__answer-inner {
  overflow: visible;
  padding: 1rem 1.25rem;
  font-family: var(--font-noto);
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
}
.p-faq__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  margin: 0;
}
@media only screen and (max-width: 430px) {
  .p-faq__answer-inner p {
    font-size: 4vw;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-footer-cta {
  position: relative;
  background-image: url("../images/footer-cta-bg.webp");
  background-size: cover;
  background-position: center;
  height: 22.25rem;
  padding: 1rem 1.25rem 0;
}
@media only screen and (max-width: 430px) {
  .p-footer-cta {
    padding: 4.2666666667vw 5.3333333333vw 0;
    height: 94.9333333333vw;
  }
}
.p-footer-cta__heading {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 430px) {
  .p-footer-cta__heading {
    font-size: 5.3333333333vw;
  }
}
.p-footer-cta__btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 19.125rem;
  z-index: 1;
  display: block;
  transition: opacity 0.2s ease;
}
@media only screen and (max-width: 430px) {
  .p-footer-cta__btn {
    bottom: 4.2666666667vw;
    width: 81.6vw;
  }
}
.p-footer-cta__btn:hover {
  opacity: 0.6;
}
.p-footer-cta__btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-review {
  background: #222;
  padding: 4rem 0;
}
.p-review > .l-inner {
  padding: 0 1.25rem;
}
.p-review__title {
  margin: 0 auto 2rem;
}
.p-review__title img {
  display: block;
  margin: 0 auto;
  width: 74%;
}
.p-review__content {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-review__content .ti-reviews-container-wrapper {
  display: flex;
}
.p-review__content .ti-review-item {
  min-width: 280px;
  margin-right: 1.25rem;
}
.p-review__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.p-review__arrow img {
  display: block;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-shop {
  background: #222;
  padding: 4rem 0;
}
.p-shop > .l-inner {
  padding: 0 1.25rem;
}
.p-shop__title {
  margin: 0 auto 3rem;
}
.p-shop__title img {
  display: block;
  margin: 0 auto;
  width: 56%;
}
.p-shop__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-shop__item {
  margin-bottom: 3rem;
}
.p-shop__item img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
.p-shop__item p {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.p-shop__item a {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.p-shop__item a:hover {
  opacity: 0.7;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-contact {
  background: linear-gradient(135deg, #FF5680 0%, #F9BC36 100%);
  padding: 4rem 0;
}
.p-contact > .l-inner {
  padding: 0 1.25rem;
}
.p-contact__title img {
  display: block;
  width: 80%;
  margin: 0 auto 3rem;
}
.p-contact__form {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-contact__form iframe {
  display: block;
  width: 800px;
  height: 800px;
  border: none;
  background: #fff;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-blog {
  background: #222;
  padding: 4rem 0;
}
.p-blog > .l-inner {
  padding: 0 1.25rem;
}
.p-blog__title {
  margin: 0 auto 3rem;
}
.p-blog__title img {
  display: block;
  margin: 0 auto;
  width: 48%;
}
.p-blog__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-blog__item {
  margin-bottom: 2rem;
}
.p-blog__link {
  display: block;
  text-decoration: none;
}
.p-blog__link:hover {
  animation: blog-flash 1s ease;
}
.p-blog__link img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
.p-blog__link p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
}

@keyframes blog-flash {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 375px;
  height: 48px;
  background: #fff;
  z-index: var(--z-bottom-nav);
  box-shadow: 0 4px 4px rgba(34, 34, 34, 0.2);
}
@media only screen and (max-width: 430px) {
  .p-bottom-nav {
    max-width: 100%;
  }
}
.p-bottom-nav__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.p-bottom-nav__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.p-bottom-nav__link img {
  width: 100%;
  height: auto;
  display: block;
}
.p-bottom-nav__link:nth-of-type(1) {
  width: 67.466666666%;
}
.p-bottom-nav__link:nth-of-type(2) {
  width: 32.533333333%;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-justify {
  text-align: justify !important;
}

.u-text-start {
  text-align: start !important;
}

.u-text-end {
  text-align: end !important;
}

.u-text-xs-left {
  text-align: left !important;
}

.u-text-xs-center {
  text-align: center !important;
}

.u-text-xs-right {
  text-align: right !important;
}

.u-text-xs-justify {
  text-align: justify !important;
}

.u-text-xs-start {
  text-align: start !important;
}

.u-text-xs-end {
  text-align: end !important;
}

@media (min-width: 576px) {
  .u-text-sm-left {
    text-align: left !important;
  }
  .u-text-sm-center {
    text-align: center !important;
  }
  .u-text-sm-right {
    text-align: right !important;
  }
  .u-text-sm-justify {
    text-align: justify !important;
  }
  .u-text-sm-start {
    text-align: start !important;
  }
  .u-text-sm-end {
    text-align: end !important;
  }
}
@media (min-width: 769px) {
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
  .u-text-md-justify {
    text-align: justify !important;
  }
  .u-text-md-start {
    text-align: start !important;
  }
  .u-text-md-end {
    text-align: end !important;
  }
}
@media (min-width: 1024px) {
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
  .u-text-lg-justify {
    text-align: justify !important;
  }
  .u-text-lg-start {
    text-align: start !important;
  }
  .u-text-lg-end {
    text-align: end !important;
  }
}
@media (min-width: 1360px) {
  .u-text-xl-left {
    text-align: left !important;
  }
  .u-text-xl-center {
    text-align: center !important;
  }
  .u-text-xl-right {
    text-align: right !important;
  }
  .u-text-xl-justify {
    text-align: justify !important;
  }
  .u-text-xl-start {
    text-align: start !important;
  }
  .u-text-xl-end {
    text-align: end !important;
  }
}
@media (min-width: 1920px) {
  .u-text-xxl-left {
    text-align: left !important;
  }
  .u-text-xxl-center {
    text-align: center !important;
  }
  .u-text-xxl-right {
    text-align: right !important;
  }
  .u-text-xxl-justify {
    text-align: justify !important;
  }
  .u-text-xxl-start {
    text-align: start !important;
  }
  .u-text-xxl-end {
    text-align: end !important;
  }
}
.u-text-mobile-center {
  text-align: center !important;
}
@media (min-width: 769px) {
  .u-text-mobile-center {
    text-align: left !important;
  }
}

.u-text-mobile-left {
  text-align: left !important;
}
@media (min-width: 769px) {
  .u-text-mobile-left {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .u-text-tablet-center {
    text-align: center !important;
  }
}

@media (min-width: 769px) {
  .u-text-desktop-right {
    text-align: right !important;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.u-m-0 {
  margin: 0rem !important;
}

.u-m-1 {
  margin: 0.25rem !important;
}

.u-m-2 {
  margin: 0.5rem !important;
}

.u-m-3 {
  margin: 1rem !important;
}

.u-m-4 {
  margin: 1.5rem !important;
}

.u-m-5 {
  margin: 2rem !important;
}

.u-m-6 {
  margin: 2.5rem !important;
}

.u-m-7 {
  margin: 4rem !important;
}

.u-m-8 {
  margin: 5rem !important;
}

.u-m-9 {
  margin: 6rem !important;
}

.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-1 {
  margin-top: 0.25rem !important;
}

.u-mt-2 {
  margin-top: 0.5rem !important;
}

.u-mt-3 {
  margin-top: 1rem !important;
}

.u-mt-4 {
  margin-top: 1.5rem !important;
}

.u-mt-5 {
  margin-top: 2rem !important;
}

.u-mt-6 {
  margin-top: 2.5rem !important;
}

.u-mt-7 {
  margin-top: 4rem !important;
}

.u-mt-8 {
  margin-top: 5rem !important;
}

.u-mt-9 {
  margin-top: 6rem !important;
}

.u-mr-0 {
  margin-right: 0rem !important;
}

.u-mr-1 {
  margin-right: 0.25rem !important;
}

.u-mr-2 {
  margin-right: 0.5rem !important;
}

.u-mr-3 {
  margin-right: 1rem !important;
}

.u-mr-4 {
  margin-right: 1.5rem !important;
}

.u-mr-5 {
  margin-right: 2rem !important;
}

.u-mr-6 {
  margin-right: 2.5rem !important;
}

.u-mr-7 {
  margin-right: 4rem !important;
}

.u-mr-8 {
  margin-right: 5rem !important;
}

.u-mr-9 {
  margin-right: 6rem !important;
}

.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-1 {
  margin-bottom: 0.25rem !important;
}

.u-mb-2 {
  margin-bottom: 0.5rem !important;
}

.u-mb-3 {
  margin-bottom: 1rem !important;
}

.u-mb-4 {
  margin-bottom: 1.5rem !important;
}

.u-mb-5 {
  margin-bottom: 2rem !important;
}

.u-mb-6 {
  margin-bottom: 2.5rem !important;
}

.u-mb-7 {
  margin-bottom: 4rem !important;
}

.u-mb-8 {
  margin-bottom: 5rem !important;
}

.u-mb-9 {
  margin-bottom: 6rem !important;
}

.u-ml-0 {
  margin-left: 0rem !important;
}

.u-ml-1 {
  margin-left: 0.25rem !important;
}

.u-ml-2 {
  margin-left: 0.5rem !important;
}

.u-ml-3 {
  margin-left: 1rem !important;
}

.u-ml-4 {
  margin-left: 1.5rem !important;
}

.u-ml-5 {
  margin-left: 2rem !important;
}

.u-ml-6 {
  margin-left: 2.5rem !important;
}

.u-ml-7 {
  margin-left: 4rem !important;
}

.u-ml-8 {
  margin-left: 5rem !important;
}

.u-ml-9 {
  margin-left: 6rem !important;
}

.u-mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.u-mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.u-mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.u-mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.u-mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.u-mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.u-mx-6 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.u-mx-7 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.u-mx-8 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.u-mx-9 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.u-my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.u-my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.u-my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-my-6 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-my-8 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-my-9 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.u-p-0 {
  padding: 0rem !important;
}

.u-p-1 {
  padding: 0.25rem !important;
}

.u-p-2 {
  padding: 0.5rem !important;
}

.u-p-3 {
  padding: 1rem !important;
}

.u-p-4 {
  padding: 1.5rem !important;
}

.u-p-5 {
  padding: 2rem !important;
}

.u-p-6 {
  padding: 2.5rem !important;
}

.u-p-7 {
  padding: 4rem !important;
}

.u-p-8 {
  padding: 5rem !important;
}

.u-p-9 {
  padding: 6rem !important;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-1 {
  padding-top: 0.25rem !important;
}

.u-pt-2 {
  padding-top: 0.5rem !important;
}

.u-pt-3 {
  padding-top: 1rem !important;
}

.u-pt-4 {
  padding-top: 1.5rem !important;
}

.u-pt-5 {
  padding-top: 2rem !important;
}

.u-pt-6 {
  padding-top: 2.5rem !important;
}

.u-pt-7 {
  padding-top: 4rem !important;
}

.u-pt-8 {
  padding-top: 5rem !important;
}

.u-pt-9 {
  padding-top: 6rem !important;
}

.u-pr-0 {
  padding-right: 0rem !important;
}

.u-pr-1 {
  padding-right: 0.25rem !important;
}

.u-pr-2 {
  padding-right: 0.5rem !important;
}

.u-pr-3 {
  padding-right: 1rem !important;
}

.u-pr-4 {
  padding-right: 1.5rem !important;
}

.u-pr-5 {
  padding-right: 2rem !important;
}

.u-pr-6 {
  padding-right: 2.5rem !important;
}

.u-pr-7 {
  padding-right: 4rem !important;
}

.u-pr-8 {
  padding-right: 5rem !important;
}

.u-pr-9 {
  padding-right: 6rem !important;
}

.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-1 {
  padding-bottom: 0.25rem !important;
}

.u-pb-2 {
  padding-bottom: 0.5rem !important;
}

.u-pb-3 {
  padding-bottom: 1rem !important;
}

.u-pb-4 {
  padding-bottom: 1.5rem !important;
}

.u-pb-5 {
  padding-bottom: 2rem !important;
}

.u-pb-6 {
  padding-bottom: 2.5rem !important;
}

.u-pb-7 {
  padding-bottom: 4rem !important;
}

.u-pb-8 {
  padding-bottom: 5rem !important;
}

.u-pb-9 {
  padding-bottom: 6rem !important;
}

.u-pl-0 {
  padding-left: 0rem !important;
}

.u-pl-1 {
  padding-left: 0.25rem !important;
}

.u-pl-2 {
  padding-left: 0.5rem !important;
}

.u-pl-3 {
  padding-left: 1rem !important;
}

.u-pl-4 {
  padding-left: 1.5rem !important;
}

.u-pl-5 {
  padding-left: 2rem !important;
}

.u-pl-6 {
  padding-left: 2.5rem !important;
}

.u-pl-7 {
  padding-left: 4rem !important;
}

.u-pl-8 {
  padding-left: 5rem !important;
}

.u-pl-9 {
  padding-left: 6rem !important;
}

.u-px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.u-px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.u-px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.u-px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.u-px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-px-6 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.u-px-7 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-px-8 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-px-9 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.u-py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.u-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.u-py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-py-6 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.u-py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-py-8 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-py-9 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (max-width: 768px) {
  .u-sp-m-0 {
    margin: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-1 {
    margin: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-2 {
    margin: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-3 {
    margin: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-4 {
    margin: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-5 {
    margin: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-6 {
    margin: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-7 {
    margin: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-8 {
    margin: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-m-9 {
    margin: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-0 {
    margin-top: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-1 {
    margin-top: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-2 {
    margin-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-3 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-4 {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-5 {
    margin-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-6 {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-7 {
    margin-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-8 {
    margin-top: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mt-9 {
    margin-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-0 {
    margin-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-1 {
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-2 {
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-3 {
    margin-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-4 {
    margin-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-5 {
    margin-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-6 {
    margin-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-7 {
    margin-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-8 {
    margin-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mr-9 {
    margin-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-0 {
    margin-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-1 {
    margin-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-2 {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-3 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-4 {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-5 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-6 {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-7 {
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-8 {
    margin-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mb-9 {
    margin-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-0 {
    margin-left: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-1 {
    margin-left: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-2 {
    margin-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-3 {
    margin-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-4 {
    margin-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-5 {
    margin-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-6 {
    margin-left: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-7 {
    margin-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-8 {
    margin-left: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-ml-9 {
    margin-left: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-mx-9 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-my-9 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-0 {
    padding: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-1 {
    padding: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-2 {
    padding: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-3 {
    padding: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-4 {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-5 {
    padding: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-6 {
    padding: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-7 {
    padding: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-8 {
    padding: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-p-9 {
    padding: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-0 {
    padding-top: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-1 {
    padding-top: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-2 {
    padding-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-3 {
    padding-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-4 {
    padding-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-5 {
    padding-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-6 {
    padding-top: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-7 {
    padding-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-8 {
    padding-top: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pt-9 {
    padding-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-0 {
    padding-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-1 {
    padding-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-2 {
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-3 {
    padding-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-4 {
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-5 {
    padding-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-6 {
    padding-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-7 {
    padding-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-8 {
    padding-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pr-9 {
    padding-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-0 {
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-1 {
    padding-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-2 {
    padding-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-3 {
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-4 {
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-5 {
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-6 {
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-7 {
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-8 {
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pb-9 {
    padding-bottom: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-0 {
    padding-left: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-1 {
    padding-left: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-2 {
    padding-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-3 {
    padding-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-4 {
    padding-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-5 {
    padding-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-6 {
    padding-left: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-7 {
    padding-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-8 {
    padding-left: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-pl-9 {
    padding-left: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-px-9 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 768px) {
  .u-sp-py-9 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

.u-pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .u-sp-pb-50 {
    padding-bottom: 50px;
  }
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* =========================================================
  Utility: Scroll Reveal Animations
  .u-reveal
========================================================= */
/* utility/_animation.scss */
/* 初期状態：非表示。でも transition はまだ効かせない */
.u-reveal {
  opacity: 0;
  transform: translate(0, 0);
  will-change: opacity, transform;
}
.u-reveal[data-animate=up] {
  transform: translateY(30px);
}
.u-reveal[data-animate=down] {
  transform: translateY(-30px);
}
.u-reveal[data-animate=left] {
  transform: translateX(30px);
}
.u-reveal[data-animate=right] {
  transform: translateX(-30px);
}
.u-reveal[data-animate=fade] {
  transform: none;
}

/* 🔸 アニメーションを「有効化」する状態（body に .is-reveal-ready が付いたら） */
.is-reveal-ready .u-reveal {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示状態 */
.is-reveal-ready .u-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-lh-1 {
  line-height: 1 !important;
}

.u-lh-11 {
  line-height: 1.1 !important;
}

.u-lh-12 {
  line-height: 1.2 !important;
}

.u-lh-13 {
  line-height: 1.3 !important;
}

.u-lh-14 {
  line-height: 1.4 !important;
}

.u-lh-15 {
  line-height: 1.5 !important;
}

.u-lh-16 {
  line-height: 1.6 !important;
}

.u-lh-17 {
  line-height: 1.7 !important;
}

.u-lh-18 {
  line-height: 1.8 !important;
}

.u-lh-2 {
  line-height: 2 !important;
}

/* =========================================
  Utility: Form Width
========================================= */
.u-formWidth--full {
  width: 100%;
}

.u-formWidth--sm {
  width: min(100%, 320px);
}

.u-formWidth--md {
  width: min(100%, 480px);
}

.u-formWidth--lg {
  width: min(100%, 640px);
}