@charset "UTF-8";
:root {
  --color-text: #262626;
  --color-red: #f55d5d;
  --color-pink: #eb6d94;
  --color-bright-pink: #e5004f;
  --color-light-pink: #ffe3ea;
  --color-brown: #a27d53;
  --color-light-brown: #fae9d6;
  --color-blue: #65aadd;
  --color-light-blue: #e6f7fd;
  --color-tan: #fff7ed;
  --color-req-red: #e81c1c;
  --color-any-green: #479571;
  --color-placeholder: #bdbdbd;
}

/**
 * RETURNS A cubic bezier TIMING FUNCTION.

 * Modern browsers will get a custom property, legacy browsers will get a
 * `cubic-bezier()` function.
 */
/**
 * RETURNS VALUE(S) FOR A NAMED TIMING FUNCTION.
 */
/**
 * ALIAS FOR THE CSS cubic-bezier FUNCTION
 *
 * Use:
 * `transition-timing-function: bezier(.1, .02, 1, .7);`
 */
/**
 * REVERSE A cubic-bezier TIMING FUNCTION
 *
 * Use:
 * `transition-timing-function: reverse-bezier(.1, .02, 1, .7);`
 * `transition-timing-function: reverse-bezier($in-out-quad-value);`
 */
/**
 * ALIAS TO reverse-bezier
 */
/**
 * The four esaings coordinates for each easing
 */
/**
 * Available variables
 *
 * How it works:
 *
 * $in-[easingName]-value: coordinates (e.g, `.47, 0, .745, .715`).
 * $in-[easingName]-r-value: coordinates for reversed easing.
 *
 * $in-[easingName]: see functions/helpers.
 * $ease-in-[easingName]: alias for previous line.
 * $in-[easingName]-r: reverse for previous line.
 * $ease-in-[easingName]-r: alias for previous line.
 */
/**
 * The value associated to each easing
 */
/**
 * Available easings
 */
/**
 * Providing a custom easings list.
 */
/**
 * Attach easings custom properties to `:root {}` if `$easings-legacy` is true
 * or doesn’t exist.
 */
:root {
  --in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --in-sine-r: cubic-bezier(0.255, 0.285, 0.53, 1);
  --out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --out-sine-r: cubic-bezier(0.435, 0, 0.61, 0.425);
  --in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --in-out-sine-r: cubic-bezier(0.45, 0.05, 0.555, 0.95);
  --in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --in-quad-r: cubic-bezier(0.32, 0.47, 0.45, 0.915);
  --out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --out-quad-r: cubic-bezier(0.55, 0.06, 0.75, 0.54);
  --in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --in-out-quad-r: cubic-bezier(0.485, 0.045, 0.545, 0.97);
  --in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --in-cubic-r: cubic-bezier(0.325, 0.81, 0.45, 0.945);
  --out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --out-cubic-r: cubic-bezier(0.645, 0, 0.785, 0.39);
  --in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --in-out-cubic-r: cubic-bezier(0.645, 0, 0.355, 0.955);
  --in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --in-quart-r: cubic-bezier(0.315, 0.78, 0.105, 0.97);
  --out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --out-quart-r: cubic-bezier(0.56, 0, 0.835, 0.16);
  --in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --in-out-quart-r: cubic-bezier(0.825, 0, 0.23, 1);
  --in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --in-quint-r: cubic-bezier(0.145, 0.94, 0.245, 0.95);
  --out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --out-quint-r: cubic-bezier(0.68, 0, 0.77, 0);
  --in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --in-out-quint-r: cubic-bezier(0.93, 0, 0.14, 1);
  --in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --in-expo-r: cubic-bezier(0.205, 0.965, 0.05, 0.95);
  --out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --out-expo-r: cubic-bezier(0.78, 0, 0.81, 0);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-out-expo-r: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --in-circ-r: cubic-bezier(0.02, 0.665, 0.4, 0.96);
  --out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --out-circ-r: cubic-bezier(0.835, 0, 0.925, 0.18);
  --in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --in-out-circ-r: cubic-bezier(0.85, 0.14, 0.215, 0.865);
  --in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --in-back-r: cubic-bezier(0.265, 0.955, 0.4, 1.28);
  --out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --out-back-r: cubic-bezier(0.68, -0.275, 0.825, 0.115);
  --in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --in-out-back-r: cubic-bezier(0.735, -0.55, 0.32, 1.55);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

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

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

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

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

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #262626;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Zen Maru Gothic", sans-serif;
}
span.postal_script {
font-size:0.7em;
color:#333333;
}
a {
  text-decoration: none;
}
a img {
  outline: 0;
  border: none;
}

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

.container {
  padding: 0 20px;
  position: relative;
}
@media (min-width: 46.25em) {
  .container {
    padding: 0 40px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
  }
}

[class*=show-from-] {
  display: none;
}

@media (min-width: 20em) {
  .hide-from-mobile {
    display: none;
  }

  .show-from-mobile {
    display: block;
  }
}
@media (min-width: 46.25em) {
  .hide-from-tablet {
    display: none;
  }

  .show-from-tablet {
    display: block;
  }
}
@media (min-width: 61.25em) {
  .hide-from-desktop {
    display: none;
  }

  .show-from-desktop {
    display: block;
  }
}
@media (min-width: 81.25em) {
  .hide-from-wide {
    display: none;
  }

  .show-from-wide {
    display: block;
  }
}
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 60px;
  background: #f55d5d url("../img/button-arrow.svg") no-repeat right 20px center/10px;
  cursor: pointer;
  height: 60px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0 40px;
}
.button--full-width {
  display: flex;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.button:hover {
  background-color: #f22d2d;
}

.main-wrapper {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.site-header .header-container {
  position: relative;
  z-index: 10;
  height: 48px;
  padding-left: 20px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 46.25em) {
  .site-header {
    position: absolute;
    background-color: transparent;
    padding: 20px 0;
  }
  .site-header .header-container {
    height: auto;
    position: relative;
  }
  body.page-thanks .site-header {
    background-color: #fff;
  }
  body.page-thanks .site-header .header-container {
    justify-content: center;
  }
}

.site-logo {
  width: 100px;
}
.site-logo img {
  display: block;
}
@media (min-width: 46.25em) {
  .site-logo {
    width: 220px;
  }
}

.menu-trigger {
  width: 48px;
  height: 48px;
  background-color: red;
  background: transparent url("../img/icon-menu-trigger.svg") no-repeat center center/28px;
}
@media (min-width: 46.25em) {
  .menu-trigger {
    display: none;
  }
}

.site-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: rgba(123, 122, 122, 0.4);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--out-cubic) 0.3s;
}
body.show-menu .site-nav {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s var(--out-cubic);
}
.site-nav__container {
  background-color: #fff;
  width: 100%;
  max-width: 320px;
  padding-top: 96px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.3s var(--out-cubic);
}
body.show-menu .site-nav__container {
  transform: translateX(0);
  transition: transform 0.3s var(--out-cubic) 0.3s;
}
.site-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  border-top: 1px solid #e6e6e6;
}
.site-nav .menu li {
  border-bottom: 1px solid #e6e6e6;
}
.site-nav .menu a {
  display: block;
  font-weight: bold;
  padding: 20px;
  color: #262626;
}
.site-nav .button {
  margin: 20px;
  width: auto;
  padding: 0 20px;
  background-image: none;
}
@media (min-width: 81.25em) {
  .site-nav__container {
    max-width: calc((100vw - 1360px) / 2 + 320px);
  }
}

.page-section {
  padding: 40px 0;
  position: relative;
  scroll-margin: 160px;
}
@media (min-width: 46.25em) {
  .page-section {
    scroll-margin: 200px;
  }
}

.curved-img {
  display: block;
  width: 100%;
  pointer-events: none;
}
.curved-img--pc {
  display: none;
  width: auto;
}
@media (min-width: 46.25em) {
  .curved-img--sp {
    display: none;
  }
  .curved-img--pc {
    display: block;
    width: 100%;
  }
}

.ornament-img {
  display: block;
  margin: 0 auto;
  pointer-events: none;
}

.hero-banner {
  position: relative;
  background-color: #fff;
}
.hero-banner__main-img {
  position: relative;
  overflow: hidden;
}
.hero-banner__main-img .main-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-banner__main-img .curved-img {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero-banner__main-img .main-img {
    width: auto;
    height: 100%;
    max-width: none;
  }
}
.hero-banner__wrapper {
  padding: 0 20px;
}
.hero-banner .banner-splash img {
  display: block;
}
.hero-banner .banner-product img {
  display: block;
}
.hero-banner .banner-content {
  clear: both;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  display: flex;
  flex-flow: column;
  margin: 0 0 20px;
}
.hero-banner .banner-content .img-magazine {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  width: 100px;
  z-index: 1;
}
.hero-banner .banner-content h1 {
  font-family: "Noto Sans JP", sans-serif;
  color: #e5004f;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 0.5em;
}
.hero-banner .banner-content .ribbon {
  background-color: #ffe3ea;
  background-repeat: no-repeat;
  background-image: url("../img/stars.png"), url("../img/stars.png");
  background-size: 28px 22px, 28px 22px;
  background-position: left 20px center, right 20px center;
  text-align: center;
  padding: 8px 16px;
  width: 100%;
  max-width: 280px;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}
.hero-banner .banner-content .content {
  margin: 0 0 10px;
}
@media (max-width: 46.24em) {
  .hero-banner__wrapper {
    margin: -75px auto 0;
    width: 100%;
    max-width: 380px;
  }
  .hero-banner .banner-splash {
    position: absolute;
    right: 0;
    top: 20px;
    width: 100%;
    max-width: 260px;
  }
  .hero-banner .banner-product {
    float: right;
    position: relative;
  }
  .hero-banner .banner-content {
    align-items: flex-end;
  }
  .hero-banner .banner-content .img-magazine {
    left: 0;
    top: -60px;
    transform: rotate(-15deg);
  }
  .hero-banner .banner-content .content {
    text-align: right;
  }
}
@media (min-width: 46.25em) {
  .hero-banner {
    display: flex;
    flex-flow: row-reverse;
  }
  .hero-banner__main-img {
    width: 50%;
    flex: none;
  }
  .hero-banner__main-img .show-from-tablet {
    height: 100%;
  }
  .hero-banner__main-img .curved-img {
    left: -2px;
    top: -2px;
    height: calc(100% + 4px);
    width: auto;
  }
}
@media (min-width: 46.25em) and (-ms-high-contrast: none), (min-width: 46.25em) and (-ms-high-contrast: active) {
  .hero-banner__main-img .main-img {
    width: 100%;
    height: auto;
    max-width: none;
  }
}
@media (min-width: 46.25em) {
  .hero-banner__wrapper {
    padding-top: 100px;
    padding-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
  }
}
@media (min-width: 46.25em) {
  .hero-banner .banner-splash {
    order: 2;
    width: 50%;
  }
}
@media (min-width: 46.25em) {
  .hero-banner .banner-product {
    order: 1;
    width: 50%;
  }
}
@media (min-width: 46.25em) {
  .hero-banner .banner-content {
    order: 3;
    padding-top: 20px;
    padding-left: 20px;
  }
  .hero-banner .banner-content .img-magazine {
    transform: rotate(12deg);
    width: 120px;
    top: 20px;
    left: 320px;
  }
}
@media (min-width: 61.25em) {
  .hero-banner__main-img {
    width: 48%;
    max-height: 800px;
  }
  .hero-banner__wrapper {
    padding-top: 20px;
    margin: 0;
  }
  .hero-banner .banner-splash {
    width: 60%;
    max-width: 440px;
    margin-right: -20px;
  }
  .hero-banner .banner-product {
    flex: 1;
  }
  .hero-banner .banner-product img {
    width: 100%;
  }
  .hero-banner .banner-content {
    align-self: center;
    display: block;
    padding-left: 40px;
    font-size: 14px;
  }
  .hero-banner .banner-content .img-magazine {
    width: 200px;
    left: 120%;
  }
  .hero-banner .banner-content h3 {
    font-size: 36px;
  }
  .hero-banner .banner-content .ribbon {
    max-width: none;
  }
}

.buy-rent-example {
  scroll-margin: 60px;
  background: #e6e6e6 url("../img/stars-buy-rent-sp.png") no-repeat right 20px bottom 40px/190px;
  padding-bottom: 240px;
  position: relative;
}
.buy-rent-example__img {
  display: block;
  margin: 0 auto;
}
.buy-rent-example__img img {
  display: block;
  margin: auto;
}
.buy-rent-example .curved-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
}
@media (min-width: 46.25em) {
  .buy-rent-example {
    padding: 20px 0 60px;
    scroll-margin: 100px;
  }
  .buy-rent-example__img {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
  }
}
@media (min-width: 61.25em) {
  .buy-rent-example {
    background: #e6e6e6 url("../img/stars-buy-rent-pc.png") no-repeat center center/1020px;
    padding: 40px 0 100px;
  }
  .buy-rent-example__img {
    max-width: 900px;
  }
}

.section-introduction {
  background-color: #ffe3ea;
  padding-bottom: 80px;
}
.section-introduction .curved-img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-introduction .ornament-img {
  position: absolute;
  z-index: 20;
}
.section-introduction .ornament-img--a {
  left: 0;
  top: -140px;
  max-width: 220px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 180px, 0 180px);
          clip-path: polygon(0 0, 100% 0, 100% 180px, 0 180px);
}
.section-introduction .ornament-img--b {
  right: 40px;
  top: -120px;
  max-width: 140px;
}
.section-introduction .ornament-img--c {
  display: none;
}
@media (min-width: 46.25em) {
  .section-introduction {
    padding-bottom: 0;
    background-image: url("../img/stars-intro-1.png"), url("../img/stars-intro-2.png");
    background-size: 74px, 74px;
    background-repeat: no-repeat, no-repeat;
    background-position: 20px top, calc(100% - 20px) 30%;
  }
  .section-introduction .ornament-img--a {
    -webkit-clip-path: none;
            clip-path: none;
    left: 20px;
    top: -120px;
  }
  .section-introduction .ornament-img--b {
    right: auto;
    left: 40%;
    top: -120px;
  }
  .section-introduction .ornament-img--c {
    display: block;
    right: 0;
    top: -120px;
    max-width: 220px;
  }
  .section-introduction .cta {
    background-color: #fff;
  }
}
@media (min-width: 61.25em) {
  .section-introduction .ornament-img--a, .section-introduction .ornament-img--b, .section-introduction .ornament-img--c {
    max-width: none;
  }
  .section-introduction .ornament-img--a {
    top: -180px;
    left: 0;
  }
  .section-introduction .ornament-img--b {
    top: -160px;
  }
  .section-introduction .ornament-img--c {
    top: -180px;
  }
  .section-introduction .intro-elm-img {
    pointer-events: none;
    position: absolute;
    left: 40px;
    top: inherit;
    z-index: 1;
  }
}

.introduction {
  background-color: #fff;
  border-radius: 24px;
  padding: 20px;
  margin: 0 0 40px;
}
@media (min-width: 46.25em) {
  .introduction {
    padding: 40px;
  }
}
@media (min-width: 61.25em) {
  .introduction {
    padding: 80px;
  }
}

.introduction-header {
  font-size: 20px;
  text-align: center;
  color: #65aadd;
  position: relative;
  margin: 1em 0 40px;
}
.introduction-header span {
  display: block;
  position: relative;
  z-index: 2;
}
.introduction-header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  background: transparent url("../img/introduction-header-bg.jpg") no-repeat center center/contain;
}
@media (min-width: 46.25em) {
  .introduction-header {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 60px;
  }
}
@media (min-width: 61.25em) {
  .introduction-header {
    font-size: 42px;
    margin-bottom: 80px;
  }
}

.intro-1 img {
  display: block;
  margin: 0 auto;
}
.intro-1__img-1 {
  display: block;
  margin: 0 auto;
}
.intro-1__img-1 img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.intro-1__header {
  border-radius: 32px;
  background: #e6f7fd url("../img/intro-1-header-bg.jpg") repeat left top/16px;
  text-align: center;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  margin: 1em;
}
@media (min-width: 46.25em) {
  .intro-1 {
    margin: 0 0 40px;
  }
  .intro-1:after {
    content: "";
    display: table;
    clear: both;
  }
  .intro-1__img-1 {
    float: left;
    width: 50%;
  }
  .intro-1__img-1 img {
    transform: rotate(-5deg);
    max-width: 240px;
    margin: 0 auto;
  }
  .intro-1__header {
    margin: 1em 0;
    overflow: hidden;
  }
  .intro-1__img-2 img {
    max-width: 240px;
  }
}
@media (min-width: 61.25em) {
  .intro-1__img-1 img, .intro-1__img-2 img {
    max-width: 300px;
  }
}
@media (min-width: 81.25em) {
  .intro-1__img-1 img, .intro-1__img-2 img {
    max-width: none;
  }
}

.intro-2__imgs img {
  display: block;
  margin: 16px auto;
}
.intro-2__text {
  font-size: 12px;
}
.intro-2__text img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 46.25em) {
  .intro-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .intro-2__text {
    order: 1;
    width: 45%;
    font-size: 8px;
  }
  .intro-2__imgs {
    order: 2;
    width: 50%;
    position: relative;
  }
  .intro-2__imgs img {
    position: absolute;
    max-width: 240px;
  }
  .intro-2__imgs img:nth-child(1) {
    transform: rotate(8deg);
    right: 0;
    top: -80px;
  }
  .intro-2__imgs img:nth-child(2) {
    transform: rotate(-8deg);
    left: 0;
    top: 80px;
  }
  .intro-2__brands {
    order: 3;
    width: 100%;
    padding-top: 40px;
  }
}
@media (min-width: 61.25em) {
  .intro-2__text {
    font-size: 12px;
  }
  .intro-2__imgs img {
    max-width: 300px;
  }
  .intro-2__imgs img:nth-child(1) {
    top: -120px;
  }
}

.brands-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
.brands-list .brand-logo {
  padding: 8px;
}
.brands-list .brand-logo img {
  display: block;
  margin: 0 auto;
  max-height: 5.8vw;
}
@media (min-width: 46.25em) {
  .brands-list .brand-logo {
    padding: 8px 16px;
  }
  .brands-list .brand-logo img {
    max-height: 24px;
  }
}
@media (max-width: 61.24em) {
  .brands-list .brand-logo img {
    width: auto;
  }
}
@media (min-width: 61.25em) {
  .brands-list .brand-logo {
    flex: none;
  }
  .brands-list .brand-logo img {
    max-height: none;
  }
}

.remark {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.section-features {
  background-color: #e6f7fd;
  padding-bottom: 80px;
}
.section-features .ornament-img {
  position: absolute;
  right: 10px;
  top: -150px;
  max-width: 220px;
}
.section-features .curved-img {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: -1px;
}
@media (min-width: 46.25em) {
  .section-features {
    padding-bottom: 0;
  }
  .section-features .ornament-img {
    max-width: 320px;
    top: -240px;
  }
  .section-features .cta {
    background-color: #fff7ed;
    padding-bottom: 120px;
    margin-top: 40px;
  }
}
@media (min-width: 61.25em) {
  .section-features .ornament-img {
    max-width: none;
    top: -320px;
  }
  .section-features .cta {
    padding-bottom: 160px;
  }
}

.features-header {
  color: #eb6d94;
  font-size: 38px;
}
.features-header span {
  border-bottom: 2px dashed;
}
@media (min-width: 61.25em) {
  .features-header {
    font-size: 56px;
    margin-top: 0;
  }
}
@media (min-width: 81.25em) {
  .features-header {
    font-size: 68px;
  }
}

@media (min-width: 46.25em) {
  .features-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}

.feature-item {
  margin: 40px auto;
  width: 100%;
  max-width: 320px;
}
.feature-item__header {
  display: flex;
  align-items: center;
  margin: 0 0 1em;
}
.feature-item__header .badge {
  display: flex;
  margin-right: 16px;
}
.feature-item__header .badge span {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  position: relative;
}
.feature-item__header .badge span.text {
  background-color: #fff;
  color: #eb6d94;
  border: 8px solid currentColor;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
  align-items: center;
}
.feature-item__header .badge span.number {
  color: #fff;
  background-color: #eb6d94;
  font-size: 44px;
  margin-left: -16px;
  z-index: 1;
  line-height: 52px;
}
.feature-item__header .title {
  flex: auto;
  font-size: 16px;
  border-bottom: 2px dashed #eb6d94;
  margin: 0;
  padding-bottom: 0.5em;
}
.feature-item__body {
  font-size: 14px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.feature-item__body img {
  display: block;
  border-radius: 16px;
}
@media (min-width: 46.25em) and (max-width: 81.24em) {
  .feature-item {
    margin: 0;
    padding: 10px;
    width: 33.3333333333%;
  }
  .feature-item__header {
    display: block;
  }
  .feature-item__header .badge {
    margin: 0 0 10px;
  }
}

.section-customer-voice {
  background-color: #ffe3ea;
}
.section-customer-voice .ornament-img {
  position: absolute;
  left: 40px;
  top: -140px;
  width: 140px;
}
@media (min-width: 46.25em) {
  .section-customer-voice {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-customer-voice .ornament-img {
    left: auto;
    right: 80px;
    top: -160px;
    width: 220px;
  }
  .section-customer-voice .curved-img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .section-customer-voice .cta {
    background-color: #fff7ed;
    padding-bottom: 120px;
    margin-top: 40px;
  }
}
@media (min-width: 61.25em) {
  .section-customer-voice .cta {
    padding-bottom: 160px;
  }
}

.customer-voice-header {
  text-align: center;
  font-size: 32px;
}
@media (min-width: 46.25em) {
  .customer-voice-header {
    text-align: left;
    margin-top: 0;
    font-size: 36px;
    transform: translateY(-20px);
  }
}
@media (min-width: 61.25em) {
  .customer-voice-header {
    font-size: 48px;
  }
}

.cv-item {
  padding: 0 0 20px;
}
.cv-item__container {
  border-radius: 24px;
  padding: 20px;
  background-color: #fff;
}
.cv-item__header {
  border-radius: 8px;
  background-color: #fae9d6;
  text-align: center;
  padding: 16px;
  font-size: 16px;
}
.cv-item__header .badge {
  padding: 2px 24px;
  border-radius: 24px;
  background-color: #fff;
  color: #a27d53;
}
.cv-item__header .title {
  padding: 16px 0 0;
  font-size: inherit;
  margin: 0;
}
.cv-item__body {
  font-size: 14px;
}
.cv-item__body img {
  display: block;
  margin: 24px auto;
  width: 100%;
  max-width: 240px;
}
@media (min-width: 46.25em) {
  .cv-item {
    padding: 10px;
    width: 50%;
  }
}
@media (min-width: 61.25em) {
  .cv-item {
    padding: 20px;
    width: 33.3333333333%;
  }
}

@media (min-width: 46.25em) {
  .section-faqs {
    padding-top: 0;
  }
  .section-faqs .ornament-img {
    position: absolute;
    right: 40px;
    top: 0;
    transform: translateY(-50%);
    max-width: 360px;
  }
}
@media (min-width: 61.25em) {
  .section-faqs .ornament-img {
    max-width: none;
  }
}

.faqs-header {
  text-align: center;
  font-size: 32px;
}
@media (min-width: 46.25em) {
  .faqs-header {
    text-align: left;
    margin-top: 0;
    font-size: 36px;
    transform: translateY(-20px);
  }
}
@media (min-width: 61.25em) {
  .faqs-header {
    font-size: 56px;
  }
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
}
.faq-item__question, .faq-item__answer {
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.faq-item__question:before, .faq-item__answer:before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 32px;
  color: #fff;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-right: 16px;
}
.faq-item__question {
  margin: 0;
  font-size: 16px;
  background-color: #e6f7fd;
}
.faq-item__question:before {
  content: "Q";
  background-color: #65aadd;
}
.faq-item__answer {
  background-color: #ffe3ea;
  font-size: 14px;
}
.faq-item__answer:before {
  content: "A";
  background-color: #eb6d94;
}

.section-inquiry {
  background-color: #fff7ed;
}

.inquiry-form {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}

.inquiry-header {
  text-align: center;
  margin: 0 0 40px;
}
.inquiry-header :first-child {
  margin-top: 0;
}
.inquiry-header :last-child {
  margin-bottom: 0;
}
.inquiry-header h2 {
  font-size: 20px;
}
.inquiry-header h3 {
  font-size: 12px;
  font-weight: normal;
}
@media (min-width: 46.25em) {
  .inquiry-header h2 {
    font-size: 28px;
    margin: 0;
  }
}
@media (min-width: 61.25em) {
  .inquiry-header h2 {
    font-size: 32px;
  }
}

.form-row {
  margin: 16px 0;
}
.form-row label {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  margin: 0 0 0.5em;
}
.form-row label:after {
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  line-height: 1;
  margin-left: 0.5em;
  display: inline-block;
  padding: 4px;
}
.form-row label.req:after {
  content: "必須";
  background-color: #e81c1c;
}
.form-row label.any:after {
  content: "任意";
  background-color: #479571;
}
.form-row .input-text,
.form-row .input-dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cdd6dd;
  border-radius: 8px;
  width: 100%;
  display: block;
  margin: 0;
  padding: 1em 20px;
  line-height: inherit;
  color: inherit;
}
.form-row .input-text::-moz-placeholder, .form-row .input-dropdown::-moz-placeholder {
  color: #bdbdbd;
}
.form-row .input-text:-ms-input-placeholder, .form-row .input-dropdown:-ms-input-placeholder {
  color: #bdbdbd;
}
.form-row .input-text::placeholder,
.form-row .input-dropdown::placeholder {
  color: #bdbdbd;
}
.form-row .input-text + .input-text,
.form-row .input-dropdown + .input-text {
  margin-top: 1em;
}
.form-row .input-dropdown {
  color: inherit;
  cursor: pointer;
  background: #fff url("../img/icon-dropdown-arrow.svg") no-repeat right 20px center/14px;
}
.form-row--action {
  margin: 40px 0 0;
}
@media (max-width: 46.24em) {
  .form-row .input-text[name=postal-code] {
    max-width: 220px;
  }
}
@media (min-width: 46.25em) {
  .form-row {
    margin: 32px 0;
  }
  .form-row .input-wrapper {
    display: flex;
  }
  .form-row .input-text {
    flex: auto;
  }
  .form-row .input-text + .input-text {
    margin-top: 0;
    margin-left: 20px;
  }
}

.stars-img {
  pointer-events: none;
  display: none;
}

.cta {
  overflow: hidden;
  position: relative;
}
.cta__container {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.cta__container .header {
  display: none;
  font-size: 20px;
}
@media (min-width: 46.25em) {
  .cta .curved-img {
    position: static;
  }
  .cta .curved-img:first-child {
    margin-top: -1px;
  }
  .cta .curved-img:last-child {
    margin-bottom: -1px;
  }
  .cta__container .header {
    display: inline-block;
    position: relative;
  }
  .cta__container .header:before, .cta__container .header:after {
    position: absolute;
    top: 50%;
    content: "";
    display: block;
    background-color: #eb6d94;
    width: 4px;
    height: 80px;
  }
  .cta__container .header:before {
    left: -60px;
    transform: translateY(-50%) rotate(-30deg);
  }
  .cta__container .header:after {
    right: -60px;
    transform: translateY(-50%) rotate(30deg);
  }
}
@media (min-width: 61.25em) {
  .cta--features .stars-img {
    display: block;
    position: absolute;
    right: 40px;
    top: 50%;
  }
  .cta--customer-voice .stars-img {
    display: block;
    position: absolute;
    right: 80px;
    top: 0;
  }
}

.section-thanks {
  background-color: #fff7ed;
}

.thanks {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 60px 0;
}
.thanks h2 {
  font-size: 24px;
}
.thanks img {
  display: block;
  margin: 20px auto;
}
@media (min-width: 46.25em) {
  .thanks {
    padding: 120px 0;
  }
  .thanks h2 {
    font-size: 32px;
  }
  .thanks img {
    margin: 40px auto;
  }
}

.float-button {
  background-color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(150%);
  pointer-events: none;
  transition: all 0.3s var(--out-cubic);
}
body.show-float-button .float-button {
  transform: translateY(0);
  pointer-events: auto;
}
.float-button__img {
  max-width: 64px;
  margin-right: 20px;
}
.float-button__img img {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transform: rotate(-12deg);
}
.float-button span {
  color: #a27d53;
  font-weight: bold;
  margin-left: 20px;
}
@media (max-width: 46.24em) {
  .float-button__img {
    max-width: 60px;
    margin-right: 10px;
  }
  .float-button .button {
    font-size: 10px;
    height: 40px;
    padding: 0 30px 0 20px;
    background-size: 8px;
    background-position: right 10px center;
  }
  .float-button span {
    font-size: 10px;
    margin-left: 10px;
  }
}

.site-footer {
  padding: 40px 0;
}

@media (min-width: 46.25em) {
  .footer-container {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
  }
}

.footer-logo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.footer-logo img {
  display: block;
}
@media (min-width: 46.25em) {
  .footer-logo {
    width: auto;
    max-width: none;
    margin: 0;
  }
}

.footer-contact {
  text-align: center;
  font-weight: bold;
  color: #eb6d94;
  margin: 10px 0;
}
.footer-contact span {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.footer-contact span.phone {
  font-size: 24px;
}
.footer-contact span.phone:before {
  content: "";
  width: 28px;
  height: 18px;
  background: transparent url("../img/icon-hot-line.svg") no-repeat center center/contain;
  margin-right: 0.25em;
}
.footer-contact span.website {
  letter-spacing: 1px;
}
.footer-contact a {
  color: currentColor;
}
.footer-contact a:hover {
  opacity: 0.8;
}
@media (min-width: 46.25em) {
  .footer-contact {
    margin: 0;
    margin-left: 40px;
    line-height: 1.3;
  }
  .footer-contact span {
    font-size: 20px;
    justify-content: flex-start;
  }
  .footer-contact span.phone {
    font-size: 30px;
  }
}

.copyrights {
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: #a27d53;
}
@media (min-width: 46.25em) {
  .copyrights {
    padding-top: 20px;
  }
}
#dp-year,#dp-month {
width:30%;
}
#number_input {
width:50%;
}
@media (max-width: 46.25em) {
#dp-year,#dp-month {
width:45%;
}
}
/*# sourceMappingURL=style.css.map */