/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

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

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

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

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

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * 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%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

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

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

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

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@media screen and (max-width: 767.98px) {
  /*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
  .hamburger {
    padding: 21px 21px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger.is-active:hover {
    opacity: 1;
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #111;
  }
  .hamburger-box {
    width: 24px;
    height: 19px;
    display: inline-block;
    position: relative;
  }
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.5px;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 1px;
    background-color: #111;
    border-radius: 0px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -9px;
  }
  .hamburger-inner::after {
    bottom: -9px;
  }
  /*
   * Collapse
   */
  .hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse .hamburger-inner::after {
    top: -18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
    transform: translate3d(0, -9px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

@media screen and (min-width: 768px) {
  /*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
  .hamburger {
    padding: 10px 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger.is-active:hover {
    opacity: 1;
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #111;
  }
  .hamburger-box {
    width: 49px;
    height: 21px;
    display: inline-block;
    position: relative;
  }
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.5px;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 49px;
    height: 1px;
    background-color: #111;
    border-radius: 0px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -10px;
  }
  .hamburger-inner::after {
    bottom: -10px;
  }
  /*
   * Collapse
   */
  .hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

/* modaal */
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

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

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

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

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

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

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

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

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

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

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

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

html {
  font-size: calc(100vw / 750 * 10);
  height: 100%;
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw / 768 * 6);
  }
}

@media print, screen and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 2em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #111;
  height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
}

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

figure {
  margin: 0;
}

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

dl {
  margin: 0;
}

dl dd {
  margin-left: 0;
}

p {
  margin: 0;
}

hr {
  height: 0px;
  border: none;
  border-top: 1px solid #b9b9b9;
  border-top-width: 1px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: calc(1280em / 14);
    padding-left: calc(40em/14);
    padding-right: calc(40em/14);
  }
}

/* hamburgers.css Override */
.hamburger {
  outline: none;
}

.hamburger-box {
  /* bugFix
   * https://github.com/jonsuh/hamburgers/issues/66#issuecomment-442695022
   */
  display: block;
}

.flex {
  display: flex;
}



.now-loading {
  opacity: 0;
  transition: opacity .5s, visibility .5s;
  visibility: hidden;
}

.page-top {
  text-align: center;
  margin-top: 5em;
}

@media screen and (min-width: 768px) {
  .page-top {
    margin-top: 6.5em;
  }
}

.page-top .page-top_btn {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  background-image: url(../img/ico_pagetop.svg);
  background-position: center top 1.8em;
  background-repeat: no-repeat;
  transition: .5s;
  padding-top: 2em;
  background-size: calc(41em/19) calc(22em/19);
}

@media screen and (max-width: 767.98px) {
  .page-top .page-top_btn {
    font-size: 1.9rem;
    width: calc(145em/19);
    height: calc(130em/19);
  }
}

@media screen and (min-width: 768px) {
  .page-top .page-top_btn {
    width: calc(107em/14);
    height: calc( 96em/14);
  }
}

.page-top .page-top_btn:hover {
  background-color: rgba(242, 242, 242, 0.5);
  background-position: center top 1.5em;
}

.yakuhan {
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
}

.txt-justify {
  text-align: justify;
  text-justify: inter-character;
}

.image-mask {
  position: relative;
  overflow: hidden;
}

.image-mask::before {
  transition: left .5s ease 1s;
  content: '';
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-mask.is-hide::before {
  left: 100%;
}

@media screen and (max-width: 767.98px) {
  .hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}

.header {
  background-color: #f2f2f2;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .header {
    background-color: transparent;
  }
  .header.is-scroll {
    background-color: rgba(242, 242, 242, 0.7);
  }
  .header.is-scroll .flex {
    align-items: center;
  }
}

.header .flex {
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .header .flex {
    align-items: flex-end;
    height: 100%;
  }
}

.header .container {
  padding-left: calc(70em/14);
  padding-right: calc(70em/14);
}

@media screen and (max-width: 767.98px) {
  .header .container {
    padding-left: calc(45em/20);
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .header .container {
    height: 52px;
    max-width: 100%;
  }
}

.header-logo img {
  max-width: calc(170em/20);
}

@media screen and (min-width: 768px) {
  .header-logo img {
    max-width: calc(180em/14);
  }
}

@media screen and (max-width: 767.98px) {
  .overlay {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 242, 242, 0.7);
    z-index: 10;
  }
}

.nav-global {
  font-weight: 500;
  text-align: right;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  z-index: 998;
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .nav-global {
    width: 50%;
  }
}

.nav-global .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-left: calc(50em/20);
  padding-right: calc(50em/20);
  padding-top: 6em;
}

@media screen and (min-width: 768px) {
  .nav-global .container {
    margin-left: 0;
    max-width: calc(600em/14);
    padding-right: calc(28em/14);
    padding-top: 5em;
  }
}

.nav-global.is-active {
  left: 0;
}

@media screen and (min-width: 768px) {
  .nav-global.is-active {
    left: 50%;
  }
}

.nav-main li {
  font-size: 3.7rem;
}

@media screen and (min-width: 768px) {
  .nav-main li {
    font-size: 2.2rem;
  }
}

.nav-main li + li {
  margin-top: 1.5em;
}

.nav-main a {
  display: inline-block;
  white-space: nowrap;
  position: relative;
}

.nav-main a::before {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background-color: #b2baba;
  position: absolute;
  top: 100%;
  left: 0;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.nav-main a:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.nav-sns {
  justify-content: flex-end;
  align-items: center;
  margin-top: 7em;
}

@media screen and (min-width: 768px) {
  .nav-sns {
    margin-top: 5em;
  }
}

.nav-sns li + li {
  margin-left: 1.6em;
}

@media screen and (min-width: 768px) {
  .nav-sns li + li {
    margin-left: 1.1em;
  }
}

.nav-sns a {
  max-width: calc(52em/20);
  display: inline-block;
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .nav-sns a {
    max-width: calc(25em/14);
  }
}

.nav-sns a:hover {
  opacity: .6;
}

.nav-sub {
  margin-top: 3em;
}

.nav-sub li {
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .nav-sub li {
    font-size: 1.6rem;
  }
}

.nav-sub a {
  display: inline-block;
  white-space: nowrap;
  position: relative;
}

.nav-sub a::before {
  content: '';
  width: 0%;
  height: 2px;
  display: block;
  background-color: #b2baba;
  position: absolute;
  top: 100%;
  left: 0;
  transition: .5s;
}

.nav-sub a:hover::before {
  width: 100%;
}

.main-visual {
  visibility: visible;
}

@media screen and (max-width: 767.98px) {

	
  .main-visual .container figure {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
  }
  .main-visual .container .ttl-mv {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: .5em;
  }
}

.main-visual-img>img{
	width: 100%;
}

@media screen and (min-width: 768px) {

	
/*修正*/
	.pc{
		display: block;
	}
	.sp{
		display: none;
	}
	
	.main-visual-inner{
		position: relative;
	}
	
	.main-visual-text{
		position: absolute;
		top: 25%;
		right: 15%;
	}
/*//修正*/
	
	
 
  .main-visual .container figure {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
  }

  .main-visual .container .ttl-mv {
    white-space: nowrap;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-row-align: center;
    align-self: center;
    padding-right: calc(58em/78);
  }
  .main-visual .container .scroll-down {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
  }
}


@media screen and (max-width: 1600px){
	
	/*修正*/

	.main-visual-inner{
		position: relative;
	}
	
	.main-visual-text{
		position: absolute;
		top: 20%;
		right: 10%;
	}
	/*//修正*/
	
}


@media screen and (max-width: 768px){
	
	/*修正*/
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	
	.main-visual-inner{
		position: relative;
	}
	
	.main-visual-text{
		position: absolute;
		top: 15%;
		right: 4%;
	}
	/*//修正*/
	
}


.ttl-mv {
  text-align: left;
  font-size: 7.8rem;
  line-height: 1;
}

@media screen and (max-width: 767.98px) {
  .ttl-mv .underline_sp {
    padding-bottom: .3em;
    margin-bottom: .2em;
  }
  .ttl-mv .underline_sp::before, .ttl-mv .underline_sp::after {
    content: '';
    position: absolute;
    height: 2.5px;
    width: 100%;
    bottom: 0;
  }
  .ttl-mv .underline_sp::before {
    left: 0;
    background-color: #b2baba;
  }
  .ttl-mv .underline_sp::after {
    left: calc(150em/78);
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .ttl-mv {
    font-size: 5rem;
    text-align: right;
  }
  .ttl-mv .underline_pc {
    padding-bottom: .2em;
    margin-bottom: .3em;
  }
  .ttl-mv .underline_pc::before, .ttl-mv .underline_pc::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0;
  }
  .ttl-mv .underline_pc::before {
    left: 0;
    background-color: #fff;
  }
  .ttl-mv .underline_pc::after {
    left: calc(106em/55);
    background-color: #b2baba;
  }
  .ttl-mv .underline_sp {
    overflow: hidden;
  }
}

.ttl-mv span {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.ttl-mv small {
  display: block;
  font-size: 1.8rem;
  line-height: 1.67;
  font-weight: 400;
}

@media screen and (max-width: 767.98px) {
  .ttl-mv small {
    margin-top: 1em;
  }
}


@media screen and (max-width: 768px) {
  .ttl-mv small {
    font-size: 2.5rem;
	  padding-left: 3px;
  }
}

.scroll-down {
  position: relative;
}

.scroll-down .inner {
  position: absolute;
  bottom: -1.5em;
  left: 32vw;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  display: inline-flex;
  width: 256px;
  align-items: center;
  justify-content: space-between;
}

.scroll-down .vertical-line {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.scroll-down .vertical-line::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: #111;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.scroll-down .txt {
  width: auto;
  font-family: "ubuntu", sans-serif;
  white-space: nowrap;
  flex-shrink: 1;
  margin-left: .6em;
}

@media screen and (max-width: 767.98px) {
  .scroll-down {
    display: none;
  }
}

.btn-buy {
  position: fixed;
  right: 0;
  bottom: 0;
  padding-right: 2em;
  padding-bottom: 2em;
  text-align: right;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .btn-buy {
    padding-right: 3em;
    padding-bottom: 2em;
  }
}

.btn-buy a {
  font-size: 1.9rem;
  width: calc(160em/19);
  height: calc(160em/19);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #b2baba;
  background-repeat: no-repeat;
  background-size: calc(64em/19) auto;
  background-position: center top 1em;
  color: #fff;
  border-radius: 50%;
  padding-top: 4em;
  line-height: 1.2;
  transition: .5s;
}

.no-webp .btn-buy a,
.no-js .btn-buy a {
  background-image: url(../img/ico_cart.png);
}

.webp .btn-buy a {
  background-image: url(../img/ico_cart.webp);
}

@media screen and (min-width: 768px) {
  .btn-buy a {
    font-size: 1.2rem;
    width: calc(100em/12);
    height: calc(100em/12);
  }
}

.btn-buy a:hover {
  background-color: rgba(129, 216, 208, 0.8);
}

@media screen and (max-width: 767.98px) {
  .sec-concept:nth-of-type(1) {
	margin-top: 5em;
  }
}

@media screen and (min-width: 768px) {
  .sec-concept:nth-of-type(1) {
    margin-top: 8.5em;
  }
  .sec-concept:nth-of-type(1) .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto calc(420em/14) calc(60em/14) calc(500em/14) calc(100em/14) auto;
    grid-template-columns: auto calc(420em/14) calc(60em/14) calc(500em/14) calc(100em/14) auto;
    -ms-grid-rows: calc(550em/14);
    grid-template-rows: calc(550em/14);
  }
  .sec-concept:nth-of-type(1) .container .sec-head {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-row-align: center;
    align-self: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 55%;
    grid-template-columns: 45% 55%;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .sec-concept:nth-of-type(1) .container .sec-head .ttl-sec {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    line-height: 1;
  }
  .sec-concept:nth-of-type(1) .container .sec-head .ttl-sec-2nd {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column-align: end;
    justify-self: end;
    line-height: 1;
  }
  .sec-concept:nth-of-type(1) .container .sec-head p {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .sec-concept:nth-of-type(1) .container figure {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
  }
  .sec-concept:nth-of-type(1) .container img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  .sec-concept:nth-of-type(2) {
    margin-top: 7.2em;
  }
  .sec-concept:nth-of-type(2) .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto calc(56em/14) calc(244em/14) calc(280em/14) calc(620em/14) auto;
    grid-template-columns: auto calc(56em/14) calc(244em/14) calc(280em/14) calc(620em/14) auto;
    -ms-grid-rows: calc(834em/14);
    grid-template-rows: calc(834em/14);
  }
  .sec-concept:nth-of-type(2) .container .sec-head {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-row-align: center;
    align-self: center;
    z-index: 1;
  }
  .sec-concept:nth-of-type(2) .container .sec-head .ttl-sec-2nd {
    margin-top: 1em;
  }
  .sec-concept:nth-of-type(2) .container figure {
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-column: 4 / 7;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    z-index: -1;
  }
  .sec-concept:nth-of-type(2) .container img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  .sec-concept:nth-of-type(3) {
    margin-top: 8.5em;
  }
  .sec-concept:nth-of-type(3) .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto calc(120em/14) calc(480em/14) calc(510em/14) calc(90em/14) auto;
    grid-template-columns: auto calc(120em/14) calc(480em/14) calc(510em/14) calc(90em/14) auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .sec-concept:nth-of-type(3) .container .sec-head {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 31% 69%;
    grid-template-columns: 31% 69%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    margin-top: 7.9em;
    z-index: 1;
  }
  .sec-concept:nth-of-type(3) .container .sec-head .ttl-sec {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / 5;
  }
  .sec-concept:nth-of-type(3) .container .sec-head p {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    margin-top: 0;
  }
  .sec-concept:nth-of-type(3) .container .sec-head p + p {
    margin-top: 2em;
  }
  .sec-concept:nth-of-type(3) .container .charts {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    z-index: 1;
  }
  .sec-concept:nth-of-type(3) .container figure {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    z-index: -1;
  }
  .sec-concept:nth-of-type(3) .container img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.sec-concept .ttl-sec {
  font-size: 7.6rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .sec-concept .ttl-sec {
    font-size: 4.6rem;
    line-height: 1.5;
  }
}

.sec-concept .ttl-sec .left-mergin {
  display: inline-block;
  margin-left: -.2em;
}

.sec-concept .ttl-sec-2nd {
  font-size: 3.2rem;
  margin-top: .7em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .sec-concept .ttl-sec-2nd {
    font-size: 2.2rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .sec-concept .sec-head {
    padding: 0 1.2em;
  }
}

.sec-concept p {
  font-size: 2.4rem;
  margin-top: 2.2em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .sec-concept p {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 3em;
  }
}

.sec-concept p + p {
  margin-top: 1.8em;
}

@media screen and (min-width: 768px) {
  .sec-concept p + p {
    margin-top: 2em;
  }
}

@media screen and (max-width: 767.98px) {
  .sec-concept figure {
    margin-top: 4em;
  }
}

@media screen and (max-width: 767.98px) {
  .sec-concept + .sec-concept {
    margin-top: 5em;
  }
}

.charts {
  display: flex;
  justify-content: space-between;
  padding-left: 1.2em;
  padding-right: 1.2em;
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .charts {
    justify-content: center;
    margin-top: 2.2em;
    margin-bottom: 2.2em;
    padding-left: calc(273em/14);
    padding-right: calc(217em/14);
  }
}

.charts li {
  width: 45.6%;
}

.charts .chart-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  width: calc(292em/20);
  height: calc(292em/20);
  position: relative;
}

.charts .ttl-chart {
  font-size: 3.5rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .charts .ttl-chart {
    font-size: 2.4rem;
  }
}

.charts .value {
  line-height: 1;
  font-family: "ubuntu", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 8.75rem;
  margin-top: .1em;
}

@media screen and (min-width: 768px) {
  .charts .value {
    font-size: 6rem;
  }
}

.charts .unit {
  font-size: 50%;
}

.merit {
  margin-top: 5em;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: auto 100%;
}

.no-webp .merit,
.no-js .merit {
  background-image: url(../img/img_bg.jpg);
}

.webp .merit {
  background-image: url(../img/img_bg.webp);
}

@media screen and (min-width: 768px) {
  .merit {
    margin-top: 10.8em;
    background-size: auto;
    background-color: #f2f2f2;
  }

  .no-webp .merit,
  .no-js .merit {
    background-image: url(../img/pc/img_bg.jpg);
  }

  .webp .merit {
    background-image: url(../img/pc/img_bg.webp);
  }
}

.merit .container {
  padding-top: 5.5em;
  padding-bottom: 5.5em;
}

@media screen and (min-width: 768px) {
  .merit .container {
    padding-top: 10.3em;
    padding-bottom: 10.5em;
  }
}

.merit-head {
  padding: 0 1.3em;
}

@media screen and (min-width: 768px) {
  .merit-head {
    padding: 0 0;
  }
}

.merit-head p {
  font-size: 2.2rem;
  margin-top: 2em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .merit-head p {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 2;
  }
}

.merit-head p + p {
  margin-top: .8em;
}

@media screen and (min-width: 768px) {
  .merit-head p + p {
    margin-top: .6em;
  }
}

@media screen and (min-width: 768px) {
  .merit-head {
    display: flex;
    justify-content: space-between;
  }
  .merit-head .col-left {
    width: 50%;
  }
  .merit-head .col-right {
    width: 50%;
    padding-right: 5em;
  }
}

.ttl-merit {
  font-size: 15rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .ttl-merit {
    font-size: 13rem;
  }
}

.ttl-merit span {
  display: inline-block;
  background: linear-gradient(transparent 84%, #b2baba 84%, #b2baba 100%);
  padding: 0 .2em .05em .2em;
}

.ttl-merit-sub {
  font-size: 3.2rem;
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  .ttl-merit-sub {
    font-size: 2.6rem;
  }
}

.list-compare {
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
  background-repeat: no-repeat;
  background-position: 50% 23%;
  background-size: calc(45em/20) auto;
}

.no-webp .list-compare,
.no-js .list-compare {
  background-image: url(../img/arrow01.png);
}

.webp .list-compare {
  background-image: url(../img/arrow01.webp);
}

@media screen and (min-width: 768px) {
  .list-compare {
    padding-left: 18.7em;
    padding-right: 18.7em;
    background-size: calc(45em/14) auto;
  }
}

.list-compare li {
  width: 42%;
}

@media screen and (min-width: 768px) {
  .list-compare li {
    width: 37.6%;
  }
}

.list-compare h4 {
  font-size: 3.2rem;
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .list-compare h4 {
    margin-top: .8em;
    font-size: 2.8rem;
  }
}

.list-compare p {
  margin-top: 1em;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .list-compare p {
    line-height: 2;
  }
}

.fig-video {
  text-align: center;
  background-color: #f2f2f2;
}

.fig-video a {
  display: block;
  transition: .5s;
}

.fig-video a:hover {
  opacity: .8;
}

.modaal-content-container {
  padding: 0;
}

.modaal-content-container .video {
  width: 100%;
}

.use {
  margin-top: 6em;
}

.ttl-use {
  font-size: 5.6rem;
  border-bottom: 1px solid #b2baba;
  border-top: 1px solid #b2baba;
  line-height: 1;
  padding-bottom: .5em;
  padding-top: .5em;
}

@media screen and (min-width: 768px) {
  .ttl-use {
    border: 0;
    font-size: 4rem;
  }
}

.list-use {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (min-width: 768px) {
  .list-use {
    padding-left: 3em;
    padding-right: 3em;
  }
}

.list-use li {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  width: 50%;
  margin-top: 2em;
  text-align: center;
}

.no-webp .list-use li,
.no-js .list-use li {
  background-image: url(../img/bg_use.png);
}

.webp .list-use li {
  background-image: url(../img/bg_use.webp);
}

@media screen and (max-width: 767.98px) {
  .list-use li:nth-child(1n+3) {
    margin-top: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .list-use li {
    width: 20%;
  }
  .list-use li:nth-child(1n+6) {
    margin-top: 5.8em;
  }
}

.list-use .ico {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(260em/20);
  height: calc(260em/20);
}

.list-use .ico figcaption {
  font-family: "ubuntu", sans-serif;
  line-height: 1;
  margin-top: 1.5em;
}

.list-use .ico img {
  margin-top: .2em;
}

.list-use .ico-sofa img {
  max-width: calc(175.5em/20);
}

.list-use .ico-clothes img {
  max-width: calc(104em/20);
}

.list-use .ico-bed img {
  max-width: calc(159.943em/20);
}

.list-use .ico-kitchen img {
  max-width: calc(188.493em/20);
}

.list-use .ico-toilet img {
  max-width: calc(94.9em/20);
}

.list-use .ico-toy img {
  max-width: calc(104.03em/20);
}

.list-use .ico-trash img {
  max-width: calc(91em/20);
}

.list-use .ico-door img {
  max-width: calc(87.097em/20);
  margin-right: 1.6em;
}

.list-use .ico-tobacco img {
  max-width: calc(135.075em/20);
}

.list-use .ico-filter img {
  max-width: calc(101.4em/20);
}

.supporter {
  margin-top: 6em;
}

@media screen and (min-width: 768px) {
  .supporter {
    margin-top: 10em;
  }
}

.supporter .fig-video {
  margin-top: 6em;
  text-align: center;
  background-color: #f2f2f2;
}

.ttl-supporter {
  font-size: 5.6rem;
  border-bottom: 1px solid #b2baba;
  border-top: 1px solid #b2baba;
  padding-bottom: .3em;
  padding-top: .3em;
}

@media screen and (min-width: 768px) {
  .ttl-supporter {
    border: 0;
    font-size: 4rem;
  }
}

.list-supporter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list-supporter li {
  width: 49%;
  text-align: center;
  margin-top: 3em;
}

@media screen and (max-width: 767.98px) {
  .list-supporter li:nth-child(n+3) {
    margin-top: 2em;
  }
}

@media screen and (min-width: 768px) {
  .list-supporter li {
    width: 23.9%;
  }
  .list-supporter li:nth-child(n+5) {
    margin-top: 1em;
  }
}

.list-supporter .comment figure {
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767.98px) {
  .list-supporter .comment figure::before {
    content: '';
    background-color: #fff;
    opacity: .35;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .list-supporter .comment figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    transition: .5s;
  }
}

@media screen and (min-width: 768px) {
  .list-supporter .comment figure:hover::before {
    width: 100%;
  }
  .list-supporter .comment figure:hover figcaption {
    opacity: 1;
  }
}

.list-supporter .comment figure figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 2;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .list-supporter .comment figure figcaption {
    font-size: 1.6rem;
    opacity: 0;
    transition: .5s;
  }
}

.survey {
  margin-top: 5em;
}

@media screen and (min-width: 768px) {
  .survey {
    margin-top: 6em;
  }
}

.survey .qst {
  text-align: left;
  font-weight: 400;
}

.survey .bubble {
  display: inline-block;
  font-size: 3.2rem;
  border-bottom: 1px solid #b2baba;
  padding: 0 0 .5em 0;
  margin-left: 1em;
  position: relative;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .survey .bubble {
    font-size: 2.4rem;
    margin-left: .5em;
  }
}

.survey .bubble::after {
  position: absolute;
  bottom: calc(-20.5996em/32);
  left: 1em;
  content: '';
  display: block;
  width: calc(20.25em/32);
  height: calc(21.5996em/32);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2225.128%22%20viewBox%3D%220%200%2021.98%2025.128%22%20width%3D%2221.98%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1.5%201.5h19.5%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20d%3D%22m1%201v21.6l20.25-21.6%22%20fill%3D%22%23fff%22%20stroke%3D%22%23b2baba%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

.survey .chart {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90% 10%;
  grid-template-columns: 90% 10%;
  -ms-grid-rows: calc(110em/20);
  grid-template-rows: calc(110em/20);
}

@media screen and (min-width: 768px) {
  .survey .chart {
    -ms-grid-rows: calc(100em/14);
    grid-template-rows: calc(100em/14);
  }
}

.survey .chart .bg {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 1;
  grid-row: 1 / 1;
  background-color: #f2f2f2;
}

.survey .chart .bar {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  grid-row: 1 / 1;
  background-color: #b2baba;
}

.survey .chart .value {
  font-family: "ubuntu", sans-serif;
  align-self: center;
  text-align: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  grid-row: 1 / 1;
  font-size: 9.4rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .survey .chart .value {
    font-size: 7rem;
  }
}

.survey .chart .yes {
  margin-right: .5em;
  font-size: 3.8rem;
}

@media screen and (min-width: 768px) {
  .survey .chart .yes {
    font-size: 2.8rem;
  }
}

.survey .chart.val-70 {
  -ms-grid-columns: 70% 30%;
  grid-template-columns: 70% 30%;
}

@media screen and (min-width: 768px) {
  .list-survey {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .list-survey li {
    width: 48%;
  }
  .list-survey li:first-child {
    padding-top: 2.75em;
  }
  .list-survey li:nth-child(n+3) {
    margin-top: 3.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .list-survey li + li {
    margin-top: 4em;
  }
}

.media {
  margin-top: 6em;
}

@media screen and (min-width: 768px) {
  .media {
    margin-top: 10em;
  }
}

.ttl-media {
  font-size: 5.6rem;
  border-bottom: 1px solid #b2baba;
  border-top: 1px solid #b2baba;
  line-height: 1;
  padding-bottom: .4em;
  padding-top: .4em;
}

@media screen and (min-width: 768px) {
  .ttl-media {
    font-size: 4rem;
    border: 0;
  }
}

.list-media {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
}

.list-media li {
  width: 30%;
}

@media screen and (min-width: 768px) {
  .list-media li {
    width: 32.5%;
  }
}

.list-media li:nth-child(3) {
  width: 27%;
}

@media screen and (min-width: 768px) {
  .list-media li:nth-child(3) {
    width: 31.3%;
  }
}

.products {
  margin-top: 6em;
}

@media screen and (min-width: 768px) {
  .products {
    margin-top: 11em;
  }
}

.products .container {
  padding-left: calc(60em/20);
  padding-right: calc(60em/20);
}

@media screen and (max-width: 767.98px) {
  .head-products {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(470em/20) calc(90em/20) auto;
    grid-template-columns: calc(470em/20) calc(90em/20) auto;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
  .head-products figure {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
  }
  .head-products .ttl-products {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    z-index: 1;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media screen and (min-width: 768px) {
  .head-products {
    display: -ms-grid;
    display: grid;
/*
    -ms-grid-columns: auto 840px 60px 300px auto;
    grid-template-columns: auto 840px 60px 300px auto;
*/
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
  .head-products figure {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    text-align: center;
    height: calc(500em/14);
  }
  .head-products img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    right: 0;
    top: 0;
  }
  .head-products .ttl-products {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    z-index: 1;
    -ms-grid-row-align: center;
    align-self: center;
    position: relative;
  }
}

.ttl-products {
  font-size: 5.6rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .ttl-products {
    font-size: 5rem;
  }
}

.list-products {
  margin-top: 4em;
}

@media screen and (min-width: 768px) {
  .list-products li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 4em;
    padding-right: 4em;
  }
  .list-products li .col-pic {
    width: calc(400em/14);
  }
  .list-products li .col-txt {
    width: 57%;
  }
}

.list-products li + li {
  margin-top: 5em;
}

@media screen and (min-width: 768px) {
  .list-products li + li {
    margin-top: 8em;
  }
}

.list-products .pic-item {
  margin-top: 1em;
  border: 1px solid #f2f2f2;
  max-width: calc(557em/20);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .list-products .pic-item {
    max-width: 100%;
    margin-top: 0;
  }
}

.list-products .ttl-item {
  font-family: "ubuntu", sans-serif;
  font-weight: 300;
  font-size: 5.4rem;
  text-align: left;
  line-height: 1;
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .list-products .ttl-item {
    margin-top: 0;
    font-size: 4rem;
  }
}

.list-products .ttl-item span {
  display: inline-block;
  border-bottom: 2.5px solid #b2baba;
  padding-bottom: .3em;
}

.list-products p {
  margin-top: 2em;
  font-size: 2.4rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .list-products p {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.faq {
  margin-top: 5em;
}

@media screen and (min-width: 768px) {
  .faq {
    margin-top: 9em;
  }
}

.ttl-faq {
  font-size: 5.6rem;
  border-bottom: 1px solid #b2baba;
  border-top: 1px solid #b2baba;
  line-height: 1;
  padding-bottom: .5em;
  padding-top: .5em;
}

@media screen and (min-width: 768px) {
  .ttl-faq {
    font-size: 4rem;
    text-align: left;
    border: 0;
    padding-left: 1.4em;
  }
}

.list-faq {
  margin-top: 3.2em;
}

.list-faq .row + .row {
  margin-top: 1.3em;
}

@media screen and (min-width: 768px) {
  .list-faq .row + .row {
    margin-top: 1em;
  }
}

.list-faq dt {
  background-color: #f2f2f2;
  padding: 1em 1.5em;
  font-size: 3.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .list-faq dt {
    padding: 1em 2.5em;
    font-size: 2.2rem;
  }
}

.list-faq dt::after {
  -ms-grid-row-align: center;
  align-self: center;
  content: '';
  height: calc(30em/32);
  width: calc(30em/32);
  background-image: url(../img/arrow_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .list-faq dt::after {
    right: 2.5em;
  }
}

.list-faq dt:hover {
  background-color: #efefef;
}

.list-faq dt.open::after {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.list-faq dd {
  padding: 1em 1.7em 1em 2.2em;
  line-height: 1.8;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .list-faq dd {
    padding: 1.5em 4em;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.buy {
  margin-top: 6em;
  background-size: 100% auto;
  background-position: 50% 50%;
}

.no-webp .buy,
.no-js .buy {
  background-image: url(../img/bg_buy.jpg);
}

.webp .buy {
  background-image: url(../img/bg_buy.webp);
}

@media screen and (min-width: 768px) {
  .buy {
    background-size: cover;
    margin-top: 7em;
  }

  .no-webp .buy,
  .no-js .buy {
    background-image: url(../img/pc/bg_buy.jpg);
  }

  .webp .buy {
    background-image: url(../img/pc/bg_buy.webp);
  }
}

.buy .container {
  padding-top: 5.2em;
  padding-bottom: 6.4em;
}

@media screen and (min-width: 768px) {
  .buy .container {
    padding-top: 10.4em;
    padding-bottom: 10.4em;
  }
}

.ttl-buy {
  font-size: 5rem;
}

@media screen and (min-width: 768px) {
  .ttl-buy {
    font-size: 3.8rem;
  }
}

.list-buy {
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .list-buy {
    display: flex;
    justify-content: center;
    margin-top: 4em;
  }
}

.list-buy li {
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .list-buy li + li {
    margin-top: 1.6em;
  }
}

@media screen and (min-width: 768px) {
  .list-buy li + li {
    margin-left: 4.2em;
  }
}

.list-buy .logo-buy1 {
  max-width: calc(172em/20);
}

.list-buy .logo-buy2 {
  padding-top: .9em;
  max-width: calc(150em/20);
}

@media screen and (min-width: 768px) {
  .list-buy .logo-buy2 {
    max-width: calc(146em/20);
  }
}

.list-buy .logo-buy3 {
  max-width: calc(249em/20);
}

.list-buy a {
  background-color: #fff;
  height: calc(120em/20);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/arrow_next.svg);
  background-position: right 2.5em center;
  background-repeat: no-repeat;
  background-size: calc(15.4em/20) auto;
  transition: .5s;
  width: calc(468em/20);
}

@media screen and (min-width: 768px) {
  .list-buy a {
    width: calc(311em/14);
    height: calc( 90em/14);
    background-position: right 2.2em center;
  }
}

.list-buy a::before {
  transition: .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: calc(7.5em/20);
  background-color: #b2baba;
}

@media screen and (min-width: 768px) {
  .list-buy a::before {
    height: calc(3em/14);
  }
}

.list-buy a:hover {
  background-position: right 2.2em center;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 768px) {
  .list-buy a:hover {
    background-position: right 2.0em center;
  }
}

.list-buy a:hover::before {
  width: 100%;
  background-color: rgba(129, 216, 208, 0.7);
}

.gallery {
  margin-top: 9em;
}

@media screen and (min-width: 768px) {
  .gallery {
    margin-top: 10.5em;
  }
}

.gallery .container {
  padding-left: 0;
  padding-right: 0;
  overflow-x: auto;
}

@media screen and (min-width: 768px) {
  .gallery .container {
    max-width: 100%;
  }
}

.gallery .flex li {
  flex-shrink: 0;
  width: calc(330em/20);
}

@media screen and (min-width: 768px) {
  .gallery .flex li {
    width: calc(300em/14);
  }
}

.gallery .flex li + li {
  margin-left: 1em;
}

.gallery .flex a {
  display: block;
  overflow-y: hidden;
  height: calc(330em/20);
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .gallery .flex a {
    height: auto;
  }
  .gallery .flex a img {
    width: calc(300em/14);
    height: calc(300em/14);
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.gallery .flex a:hover {
  opacity: .8;
}

.sns {
  margin-top: 4em;
}

.list-sns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-sns li {
  max-width: calc(61em/20);
}

@media screen and (min-width: 768px) {
  .list-sns li {
    max-width: calc(50em/14);
  }
}

.list-sns li + li {
  margin-left: 2em;
}

.list-sns a {
  display: block;
  transition: .5s;
}

.list-sns a:hover {
  opacity: .6;
}

.footer {
  background: #262626;
  color: #fff;
  text-align: center;
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 4.2em;
  }
}

.footer .container {
  padding-top: 2.6em;
  padding-bottom: 2.6em;
}

@media screen and (min-width: 768px) {
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 70%;
    grid-template-columns: 30% 70%;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    max-width: calc(704em/14);
    padding-top: 2.2em;
    padding-bottom: 2.0em;
  }
  .footer .container .company-name {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .footer .container .address {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    padding-left: 2em;
  }
  .footer .container .contact {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    padding-left: 2em;
  }
  .footer .container .copyright {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
}

.footer .company-name {
  font-weight: 500;
  font-size: 2.8rem;
}

@media screen and (min-width: 768px) {
  .footer .company-name {
    text-align: left;
    font-size: 2rem;
  }
}

.footer .address {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
  margin-top: .5em;
}

@media screen and (min-width: 768px) {
  .footer .address {
    text-align: left;
    font-size: 1.4rem;
  }
}

.footer .contact {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .footer .contact {
    text-align: left;
    font-size: 1.4rem;
  }
}

.footer .copyright {
  font-family: "ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 2.8em;
}

@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 1.2rem;
  }
}

.is-fadein {
  opacity: 0;
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767.98px) {
  .is-fadeout {
    opacity: 1;
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.is-fadein-up {
  opacity: 0;
  -webkit-transform: translateY(1em);
  transform: translateY(1em);
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.is-fadein-scale {
  opacity: 0;
  -webkit-transform: scale(95%);
  transform: scale(95%);
  -webkit-animation-name: fade-in-scale;
  animation-name: fade-in-scale;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes fade-in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(95%);
    transform: scale(95%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(100%);
    transform: scale(100%);
  }
}

@keyframes fade-in-scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(95%);
    transform: scale(95%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(100%);
    transform: scale(100%);
  }
}

.is-moveleft, .scroll-down .vertical-line::before {
  -webkit-animation-timing-function: cubic-bezier(0.57, 0.05, 0.52, 0.96);
  animation-timing-function: cubic-bezier(0.57, 0.05, 0.52, 0.96);
  -webkit-animation-name: move-left;
  animation-name: move-left;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes move-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes move-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.js-bar-chart {
  width: 0%;
}

.is-bar-scale {
  width: 0%;
  -webkit-animation-name: bar-scale;
  animation-name: bar-scale;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes bar-scale {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes bar-scale {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.chart-circle {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.chart-circle rect {
  fill: #fff;
}

.chart-circle circle {
  fill: transparent;
  stroke: #b2baba;
  stroke-width: 24;
}

.chart-circle.is-animate {
  stroke-dasharray: 0 838;
  -webkit-animation-name: circle;
  animation-name: circle;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.chart-circle.circle2.is-animate {
  -webkit-animation-name: circle2;
  animation-name: circle2;
}

@-webkit-keyframes circle {
  0% {
    stroke-dasharray: 0 838;
  }
  100% {
    stroke-dasharray: 836 836;
  }
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 838;
  }
  100% {
    stroke-dasharray: 836 836;
  }
}

@-webkit-keyframes circle2 {
  0% {
    stroke-dasharray: 0 838;
  }
  100% {
    stroke-dasharray: 836 836;
  }
}

@keyframes circle2 {
  0% {
    stroke-dasharray: 0 838;
  }
  100% {
    stroke-dasharray: 836 836;
  }
}

.animation-roop, .scroll-down .vertical-line::before {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media screen and (min-width: 768px) {
  .animation-delay-1 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
  }
  .animation-delay-2 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
  }
  .animation-delay-3 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
  }
  .animation-delay-4 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .animation-delay-5 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .animation-delay-6 {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
  }
  .animation-delay-7 {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
  }
  .animation-delay-8 {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
  }
  .animation-delay-9 {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
  }
  .animation-delay-10 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
  }
}
