@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

body {
  color: #000000;
  font-size: 62.5%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.5em;
}

/* chromeでクリック時に黒枠を表示させない */
* {
  outline: none !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

fieldset {
  border: 0;
  vertical-align: bottom;
}

img {
  border: 0;
  vertical-align: bottom;
  line-height: 0;
}

/*address , caption , cite , code , dfn , em , strong , th , var {*/
address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

em {
  font-style: normal;
}

strong {
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

textarea {
  font-size: 100%;
}

hr {
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  background-color: #ffffff;
  height: 0px;
}

/*- フォントサイズ指定 -*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

/*- フォームスタイル -*/
input[type=button], input[type=submit], input[type=email], input[type=text], input[type=tel] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

textarea,
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  cursor: pointer;
}

/*- slick -*/
.slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}
.slick-dots li button::before {
  font-family: slick;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

br.pc {
  display: inline;
}

br.tb {
  display: none;
}

br.sp {
  display: none;
}

@media only screen and (min-width: 601px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 1.3333333333vw;
  }
  html br.pc {
    display: none;
  }
  html br.tb {
    display: none;
  }
  html br.sp {
    display: inline;
  }
  body {
    width: 100%;
    -webkit-text-size-adjust: none;
    min-width: 320px;
  }
}
:root {
  --c-black: #000;
  --c-blackL: #313a4b;
  --c-beige: #f1ece5;
  --c-gold: #e3c172;
  --c-gray: #c6c8cb;
  --c-grayLL: #ebeced;
  --c-white: #ffffff;
  --font-main: "Zen Old Mincho", serif;
  --font-maru: "Zen Maru Gothic", sans-serif;
}

:root {
  --fade: fade-animation;
  --fade-up: fade-up-animation;
  --fade-down: fade-down-animation;
  --zoom: zoomin-animation;
  --delay: delay-animation;
}
@-webkit-keyframes fade-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up-animation {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up-animation {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-down-animation {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-down-animation {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes zoomin-animation {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomin-animation {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes delay-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes delay-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.delay-scroll .box {
  opacity: 0;
}

.fade-in-trigger,
.fade-up-trigger,
.fade-down-trigger,
.zoom-in-trigger {
  opacity: 0;
}

.fade-in {
  -webkit-animation-name: var(--fade);
          animation-name: var(--fade);
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.fade-up {
  -webkit-animation-name: var(--fade-up);
          animation-name: var(--fade-up);
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.fade-down {
  -webkit-animation-name: var(--fade-down);
          animation-name: var(--fade-down);
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.zoom-in {
  -webkit-animation-name: var(--zoom);
          animation-name: var(--zoom);
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

body {
  letter-spacing: 0.05em;
  color: var(--c-blackL);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--c-beige);
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
@media (max-width: 600px) {
  body {
    font-size: calc(12px + 5 * (100vw - 320px) / 280);
  }
}
body img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* リンク - 基本 */
a {
  transition: all 0.3s;
}
a:link, a:visited {
  color: var(--c-orange);
}
a:hover, a:active {
  color: var(--c-orange);
  text-decoration: none;
  transition: all 0.3s;
}

/* 電話番号リンク - 基本 */
.tel-link a {
  color: var(--c-blackL);
  text-decoration: none;
}

/* CTA */
.cta .content .button-ec,
#footer .content .button-ec {
  width: 95%;
  margin: 5rem auto 6rem;
}
.cta .content .button-ec a,
#footer .content .button-ec a {
  display: block;
  -webkit-animation: growShrink 1s infinite alternate;
          animation: growShrink 1s infinite alternate;
}
@-webkit-keyframes growShrink {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes growShrink {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.cta .content .button-line,
#footer .content .button-line {
  width: 90%;
  margin: 0 auto;
}
.cta .content .button-line a,
#footer .content .button-line a {
  display: block;
}

.cta {
  background-image: url("images/cta-back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

/* flex */
.flex {
  display: flex;
  justify-content: space-between;
}

section,
footer,
.section {
  position: relative;
  padding: 0;
}
section .content,
footer .content,
.section .content {
  position: relative;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding: 7.5rem 0;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#lp {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-color: var(--c-white);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  /* Creema レビュー */
  /* youtube 紹介 */
  /* こんなお悩み */
  /* 3つのポイント */
  /* よくある質問 */
  /* 会社概要 */
  /* フッター */
}
#lp img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  text-align: center;
  vertical-align: top;
}
#lp .reviews-creema {
  background-image: url("images/section-02-back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#lp .reviews-creema .content .creema-slider-content {
  padding: 5rem 0;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .review-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-dots {
  position: absolute;
  bottom: -6.75rem;
  display: block;
  width: auto;
  padding: 0 2.5rem;
  margin: 0;
  list-style: none;
  text-align: center;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 0.85rem;
  padding: 0;
  cursor: pointer;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  cursor: pointer;
  color: var(--c-grayLL);
  border: 0;
  outline: 0;
  background: 0 0;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-dots li button::before {
  font-family: slick;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  text-align: center;
  opacity: 1;
  color: var(--c-grayLL);
  background-color: var(--c-grayLL);
  border-radius: 100rem;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-dots li.slick-active button::before {
  background-color: var(--c-gold);
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-next,
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-prev {
  position: absolute;
  top: auto;
  bottom: -17rem;
  left: auto;
  right: auto;
  font-size: 0;
  width: 9rem;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 10;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-next:before,
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-prev:before {
  display: none;
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-next {
  right: 0;
  background-image: url("images/ya01-right.svg");
}
#lp .reviews-creema .content .creema-slider-content .creema-slider .slick-prev {
  right: 11rem;
  background-image: url("images/ya01-left.svg");
}
#lp .cta .content .cta-02 {
  display: block;
  width: 97.5%;
  margin: 2.5rem auto 0;
}
#lp .cta .content .cta-03 {
  display: block;
  margin: 2.5rem auto 0;
}
#lp #movie {
  background-color: var(--c-grayLL);
}
#lp #movie .content {
  padding-top: 5rem;
}
#lp #movie .content h2 {
  display: block;
  margin-bottom: 2.5rem;
}
#lp #worries {
  background-image: url("images/worries-back.svg");
  background-size: 4rem auto;
  background-repeat: repeat;
}
#lp #worries .content {
  position: relative;
  padding: 0;
  top: -3.5rem;
}
#lp .point .title {
  position: relative;
  display: block;
  padding: 0 1.25rem;
  background-image: url("images/point-title-back.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#lp .point .title img {
  position: relative;
  top: -2.5rem;
  width: 100%;
}
#lp .point .img-slider {
  width: 100%;
  height: 10rem;
  margin: 0 0 9.5rem;
  background-image: url("images/slide-board.png");
  background-repeat: repeat-x;
  background-size: cover;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
}
@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
#lp #flow {
  position: relative;
}
#lp #flow .button-ec {
  position: absolute;
  width: 76%;
  top: 90rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#lp #flow .button-ec a {
  display: block;
}
#lp #flow .button-line {
  position: absolute;
  width: 76%;
  top: 138.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#lp #flow .button-line a {
  display: block;
}
#lp #qa {
  background-image: url("images/worries-back.svg");
  background-size: 4rem auto;
  background-repeat: repeat;
}
#lp #qa .content {
  padding-bottom: 10rem;
}
#lp #qa .content h2 {
  display: block;
  width: 50%;
  margin: 0 auto 5.5rem;
}
#lp #qa .content ul li {
  margin-bottom: 2.5rem;
}
#lp #qa .content ul li .toggle-title {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  text-align: left;
  font-family: var(--font-maru);
  font-size: calc(15px + 5 * (100vw - 320px) / 280);
  pointer-events: all;
  line-height: 1.2;
  padding: 3rem 5rem 3rem 4rem;
  background-color: var(--c-blackL);
  border-radius: 2rem;
}
@media (min-width: 601px) {
  #lp #qa .content ul li .toggle-title {
    font-size: 20px;
  }
}
#lp #qa .content ul li .toggle-title .q {
  padding-right: 2.5rem;
}
#lp #qa .content ul li .toggle-title .q img {
  width: 1.15em;
}
#lp #qa .content ul li .toggle-title h3 {
  color: var(--c-white);
  font-weight: 700;
}
#lp #qa .content ul li .toggle-title span {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 3rem;
  aspect-ratio: 1/1;
  margin-left: auto;
  border-radius: 100rem;
}
#lp #qa .content ul li .toggle-title span::before, #lp #qa .content ul li .toggle-title span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2rem;
  height: 0.55rem;
  border-radius: 0.5rem;
  background: var(--c-white);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#lp #qa .content ul li .toggle-title span::after {
  background: var(--c-white);
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
#lp #qa .content ul li .toggle-title.active {
  border-radius: 2rem 2rem 0 0;
}
#lp #qa .content ul li .toggle-title.active span::after {
  transform: rotate(0);
  transition: 0.5s;
}
#lp #qa .content ul li .toggle-data {
  display: none;
  text-align: left;
  padding: 3rem 5rem;
  letter-spacing: 0;
  font-size: calc(13px + 5 * (100vw - 320px) / 280);
  background-color: var(--c-white);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 601px) {
  #lp #qa .content ul li .toggle-data {
    font-size: 17px;
  }
}
#lp #qa .content ul li .toggle-data p {
  font-weight: bold;
}
#lp #qa .content ul li:last-of-type {
  margin-bottom: 0;
}
#lp #company .content dl {
  display: flex;
  text-align: left;
  letter-spacing: 0;
  border-bottom: 1px solid var(--c-gray);
}
#lp #company .content dl dt {
  width: 12em !important;
  padding: 2rem;
  text-align: center;
  background-color: var(--c-grayLL);
}
#lp #company .content dl dd {
  width: 100%;
  padding: 2rem;
}
#lp #company .content dl:first-of-type {
  border-top: 1px solid var(--c-gray);
}
#lp #footer {
  color: var(--c-white);
  background-color: var(--c-blackL);
}
#lp #footer .content {
  padding: 2.5rem 0 5.5rem;
}
#lp #footer .content .flex {
  align-items: flex-start;
  padding: 7.5rem 1rem 0;
}
#lp #footer .content .flex .left {
  width: 37.5%;
}
#lp #footer .content .flex .right {
  width: 55%;
  text-align: left;
}
#lp #footer .content .flex .right .name {
  font-family: var(--font-maru);
  font-weight: bold;
  font-size: calc(15px + 5 * (100vw - 320px) / 280);
}
@media (min-width: 601px) {
  #lp #footer .content .flex .right .name {
    font-size: 21px;
  }
}
#lp #footer .content .flex .right .link {
  padding-top: 1.5rem;
}
#lp #footer .content .flex .right .link a {
  display: inline-block;
  color: var(--c-gold);
  text-decoration: none;
  font-family: var(--font-maru);
  font-weight: bold;
  letter-spacing: 0;
  font-size: calc(14px + 5 * (100vw - 320px) / 280);
  vertical-align: top;
}
@media (min-width: 601px) {
  #lp #footer .content .flex .right .link a {
    font-size: 21px;
  }
}
#lp #footer .content .flex .right .link img {
  display: inline-block;
  width: 1.1em;
  margin-right: 1rem;
  vertical-align: middle;
}
#lp #footer .copy {
  text-align: right;
  padding: 0 3rem 3rem;
}