@charset "UTF-8";
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 15%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}
img {
  width: 100%;
  margin-top: -1px;
}
p {
  color: #101010;
}

/*コンテンツ横幅*/
.contents-inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
/*コンテンツ横幅 ここまで*/

/*FVここから*/
.cv {
  margin: 4% 0 16%;
}
/*FVここまで*/

/*CVボタンここから*/
.cv-btn {
  display: block;
  width: 90.67%;
  margin: 0 auto 5.33%;
  transition-duration: 0.3s;
}
.cv-under {
  display: block;
  width: 75.33%;
  margin: 0 auto;
}
.cv-btn:hover {
  transform: scale(0.9,0.9);
}
/*CVボタンここまで*/

/*固定ボタンここから*/
#jsfloat {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 750px;
  opacity: 0;
  transform: translateY(20px);
  transition: bottom 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
#jsfloat.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 10;
  animation: zoom 5000ms ease 1s infinite;
}
#jsfloat.is-footer {
  bottom: 10%;
}
@media screen and (max-width: 767px) {
  #jsfloat.is-footer {
    margin-bottom: 6%;
  }
}
.float .btn:hover {
  transform: scale(0.9,0.9);
}
@keyframes zoom {
  0% { transform:  scale(1); }
  25%  { transform:  scale(0.9); }
  50% { transform:  scale(1); }
  75% { transform:  scale(0.9); }
  100% { transform:  scale(1); }
}
/*固定ボタンここまで*/


/*スライダーここから*/
/* ======================== */
/* スライダー全体のスタイル */
/* ======================== */
.slider {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  cursor: grab;
  -webkit-user-select: none;
          user-select: none;
  margin-bottom: 16%;
}

/* スライダーの表示領域（インタラクション無効化） */
.slider-viewport {
  pointer-events: none;
}

/* スライダーのトラック（スライドを横並びに配置） */
.slider-items {
  display: flex;
}

/* 各スライドを均等幅に設定 */
.slider-slide {
  flex: 1;
}

/* ======================== */
/* スライド内の画像のスタイル */
/* ======================== */
/* スライド内の画像を比率固定で表示 */
.slider-image {
  position: relative;
  aspect-ratio: 750/1056;
}
.slider-image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================== */
/* 矢印ナビゲーションのスタイル */
/* ======================== */
/* 矢印ボタンのサイズ調整 */
.slider-nav button {
  display: block;
  position: absolute;
  top: 50%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
@media print, (min-width: 768px) {
  .slider-nav button {
    width: 60px;
    height: 60px;
    transform: translateY(-30px);
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button {
    width: 50px;
    height: 50px;
    transform: translateY(-25px);
  }
}

/* 矢印アイコンのスタイル */
.slider-nav button::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  background: #ccc;
  -webkit-mask: url(../images/slider_arrow.svg) 0 0/contain no-repeat;
          mask: url(../images/slider_arrow.svg) 0 0/contain no-repeat;
  transition: background-color 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .slider-nav button::before {
    width: 25px;
    height: 20px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button::before {
    width: 19px;
    height: 15px;
    margin-top: -7.5px;
  }
}

/* 矢印ボタンのホバー・アクティブ状態のスタイル */
@media print, (min-width: 768px) {
  .slider-nav button:hover::before,
  .slider-nav button:active::before {
    background: #cf7e7b;
  }
}

/* 左矢印ボタンのスタイル */
.slider-nav button:nth-child(1) {
  left: 0;
}
.slider-nav button:nth-child(1)::before {
  transform: scaleX(-1);
}
@media print, (min-width: 768px) {
  .slider-nav button:nth-child(1)::before {
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button:nth-child(1)::before {
    left: 10px;
  }
}

/* 右矢印ボタンのスタイル */
.slider-nav button:nth-child(2) {
  right: 0;
}
@media print, (min-width: 768px) {
  .slider-nav button:nth-child(2)::before {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button:nth-child(2)::before {
    right: 10px;
  }
}

/* ======================== */
/* インジケーターのスタイル */
/* ======================== */
.slider-indicators {
  display: flex;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* インジケーターのボタンスタイル */
.slider-indicators button {
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}

/* インジケーターアイコンのスタイル */
.slider-indicators button::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #ccc;
  transition: background-color 300ms cubic-bezier(.215, .61, .355, 1), transform 300ms cubic-bezier(.215, .61, .355, 1);
}

/* インジケーターのホバー・アクティブ状態 */
@media print, (min-width: 768px) {
  .slider-indicators button:hover::before,
  .slider-indicators button:active::before {
    background: #cf7e7b;
  }
}

/* 現在のスライドを示すインジケーターのスタイル */
.slider-indicators button.is-current {
  pointer-events: none;
}

/* アクティブ状態のインジケーター */
.slider-indicators button.is-current::before {
  background: #cf7e7b;
  transform: scale(1.5);
}

/* ======================== */
/* グラブカーソルの設定 */
/* ======================== */
/* フリック操作中のカーソル変更 */
.slider.is-grabbing,
.slider.is-grabbing * {
  cursor: grabbing !important;
}
/*スライダーここまで*/

/*理由ここから*/
.cv-reason {
  padding: 4% 0 16%;
  background: url(../images/07_bg.jpg) repeat center center / cover;
}
/*理由ここまで*/

/*よくある質問ここから*/
.faq {
  background-color: #F4D7D5;
  background: url(../images/10_bg.jpg) repeat center center / cover;
  padding-bottom: 16%;
}
.accordion-inner {
  width: 93.33%;
  border-radius: 20px;
  margin: 0 auto 5.33%;
  padding: 3% 2%;
  background-color: #fff;
}
.icon-q {
  display: inline-block;
  width: 10%;
  vertical-align: text-bottom;
  margin-top: 0;
}
.icon-2digits{
  width: 13%;
}
@media screen and (max-width: 767px) {
.icon-q {
  width: 9%;
  vertical-align: top;
}
.icon-2digits{
  width: 12%;
}
}
/*よくある質問ここまで*/


/*アコーディオンここから*/
.accordion {
  list-style: none;
}

.question-content {
  display: inline-block;
  font-weight: bold;
  color: #cf7e7b;
  line-height: 1.6;
}

@media print, (min-width: 768px) {
  .question-content {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .question-content {
    font-size: 15px;
  }
}

.question-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media print, (min-width: 768px) {
  .question-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .question-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}

.question-icon::before,
.question-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #cf7e7b;
}

@media print, (min-width: 768px) {
  .question-icon::before,
  .question-icon::after {
    top: 9px;
  }
}

@media screen and (max-width: 767px) {
  .question-icon::before,
  .question-icon::after {
    top: 7px;
  }
}

.question-icon::after {
  transform: rotate(90deg);
  transition: transform 400ms;
}

.question button {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
}

@media print, (min-width: 768px) {
  .question button {
    padding: 10px 60px 10px 45px;
  }
}

@media screen and (max-width: 767px) {
  .question button {
    padding: 10px 36px 10px 20px;
  }
}

@media print, (min-width: 768px) {
  .question button:hover,
  .question button:active {
    opacity: 0.5;
  }
}

.answer {
  display: none;
  overflow: hidden;
}

.answer-inner {
  position: relative;
}

@media print, (min-width: 768px) {
  .answer-inner {
    padding: 5px 50px 10px 45px;
  }
}

@media screen and (max-width: 767px) {
  .answer-inner {
    padding: 5px 20px 10px 20px;
  }
}

@media print, (min-width: 768px) {
  .answer-content p {
    font-size: 30px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .answer-content p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
  }
}

@media print, (min-width: 768px) {
  .answer-content p + p {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .answer-content p + p {
    margin-top: 20px;
  }
}

.accordion > li.is-open .question-icon::after {
  transform: rotate(0deg);
}
/*アコーディオンここまで*/

/*最後のCTAブロックここから*/
.cta-last {
  padding-bottom: 30%;
}
/*最後のCTAブロックここまで*/

/*footer*/
footer {
  display: block;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  background: #fff;
}
ul {
  list-style: none;
}
.footer_nav {
  text-align: center;
  padding: 10px 0;
}
.footer_nav li {
  display: inline-block;
  margin: 0 5px 0 0;
  font-size: 13px;
}
.footer_nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #000;
}
footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
}
/*footer ここまで*/
