@charset "UTF-8";
.pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: inline-block;
  }
}

.sp-hidden {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
}

/*-- globalフォルダの中の_index.scss --*/
html {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

body {
  color: #333333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
a:hover img {
  opacity: 0.7;
}
a img {
  transition-property: opacity;
  transition-duration: 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 1px;
}

small {
  font-size: inherit;
}

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

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

/*-- 口コミ --*/
.wrapper {
 width: 500px;
 height: 300px;
}

.wrapper iframe {
 width:100%;
 height:100%
}

/*-- baseフォルダの中の_index.scss --*/
.hover-anime01 {
  position: relative;
  top: 0;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.hover-anime01:hover {
  opacity: 0.6;
  top: 3px;
}

.tellink {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tellink {
    pointer-events: auto;
    text-decoration: underline;
  }
}

.m-title1 {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0rem;
  line-height: 1.26;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .m-title1 {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}

.m-title2 {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding-top: 25px;
  padding-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1000px) {
  .m-title2 {
    font-size: 50px;
    font-size: 3.125rem;
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .m-title2 {
    font-size: 40px;
    font-size: 2.5rem;
    padding-top: 14px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 640px) {
  .m-title2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 330px) {
  .m-title2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.m-title3 {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  color: #80B6CE;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-title3 {
    font-size: 40px;
    font-size: 2.5rem;
    max-width: 350px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 640px) {
  .m-title3 {
    font-size: 27px;
    font-size: 1.6875rem;
    max-width: 208px;
  }
}
.m-title3::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  padding-top: 30px;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #80B6CE 70%, #C19F80 100%);
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .m-title3::before {
    padding-top: 15px;
  }
}
@media screen and (max-width: 640px) {
  .m-title3::before {
    padding-top: 10px;
  }
}

.wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    margin-right: 20px;
    margin-left: 20px;
  }
}

/*-- componentフォルダの中の_index.scss --*/
.js-fade01 {
  opacity: 0;
  top: 30px;
  visibility: hidden;
  transition: opacity 1s, visibility 0.3s, top 0.7s;
}

.js-fade01.inview {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.js-fade02 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.js-fade02.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-border a {
  position: relative;
}
.js-border a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.js-border a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.js-border a.border::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.price-slider button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.price-slider button:focus {
  outline: none;
}

.price-slider button.arrow_name {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  padding-top: 70px;
  cursor: pointer;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .price-slider button.arrow_name {
    width: 50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .price-slider button.arrow_name {
    width: 40px;
    padding-top: 40px;
  }
}

.price-slider .prev_arrow {
  background-image: url(../img/price/arrow01.png);
  left: -35px;
}
@media screen and (max-width: 1100px) {
  .price-slider .prev_arrow {
    left: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .price-slider .prev_arrow {
    left: -2%;
  }
}
@media screen and (max-width: 640px) {
  .price-slider .prev_arrow {
    left: -18px;
  }
}

.price-slider .next_arrow {
  background-image: url(../img/price/arrow02.png);
  right: -35px;
}
@media screen and (max-width: 1100px) {
  .price-slider .next_arrow {
    right: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .price-slider .next_arrow {
    right: -2%;
  }
}
@media screen and (max-width: 640px) {
  .price-slider .next_arrow {
    right: -18px;
  }
}

/*-- javascriptフォルダの中の_index.scss --*/
.l-footer {
  margin-top: auto;
}
.l-footer__container {
  text-align: center;
}
.l-footer-privacy {
  text-align: center;
}
.l-footer-privacy__link {
  display: inline-block;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer-privacy__link {
    font-size: 9px;
    font-size: 0.5625rem;
    margin-bottom: 5px;
  }
}
.l-footer__small {
  background-color: #99C5E5;
  line-height: 1;
  padding: 14px;
}
@media screen and (max-width: 768px) {
  .l-footer__small {
    padding: 5px;
  }
}
.l-footer__small small {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer__small small {
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.l-footer__btns {
  position: fixed;
  right: 100px;
  top: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .l-footer__btns {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__btns {
    text-align: center;
    width: 100%;
    right: 0;
    top: auto;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.l-footer__btns.scroll {
  opacity: 1;
  visibility: visible;
}
.l-footer__btnLink {
  display: inline-block;
  position: relative;
  outline: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-footer__btnLink {
    display: block;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 425px) {
  .l-footer__btnLink {
    width: 75%;
  }
}
.l-footer__btnLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  -webkit-animation: shine 5.5s infinite;
          animation: shine 5.5s infinite;
}
.l-footer__btnLink:hover {
  opacity: 1;
}
.l-footer__btnLink:hover img {
  opacity: 1;
}
.l-footer__btnLink:hover::before {
  -webkit-animation: shine02 0.7s;
          animation: shine02 0.7s;
}
@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  25% {
    left: -75%;
  }
  50% {
    left: -75%;
  }
  90% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  0% {
    left: -75%;
  }
  25% {
    left: -75%;
  }
  50% {
    left: -75%;
  }
  90% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@-webkit-keyframes shine02 {
  100% {
    left: 125%;
  }
}
@keyframes shine02 {
  100% {
    left: 125%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__btnLink img {
    width: 100%;
  }
}
.l-footer__Topbtns {
  position: fixed;
  right: 90px;
  bottom: 70px;
  width: 150px;
  height: 150px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .l-footer__Topbtns {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__Topbtns {
    width: 105px;
    height: 105px;
    right: 0px;
    bottom: 50px;
  }
}
.l-footer__Topbtns:hover {
  transform: translateY(4px);
}
.l-footer__Topbtns.show {
  opacity: 1;
  visibility: visible;
}
.l-footer__TopbtnLink {
  width: 100%;
  display: inline-block;
  position: relative;
}
.l-footer__TopbtnLink:hover {
  opacity: 1;
}
.l-footer__TopbtnLink img:hover {
  opacity: 1;
}

.flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.l-header__container {
  padding: 18px 95px 25px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header__container {
    padding: 14px 21px 12px;
  }
}
.l-header__logo {
  line-height: 1;
}
.l-header__top {
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-header__top {
    width: 130px;
  }
}

.l-main {
  margin-top: 98px;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin-top: 50px;
  }
}


/*-- layoutフォルダの中の_index.scss --*/
/*# sourceMappingURL=style.css.map */
