@charset "UTF-8";

/* CSS Document */
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Segoe UI", "Yu Gothic UI", "Meiryo", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media screen and (max-width : 767px) {
  body {
    font-size: 3.717vw;
  }
}

img {
  max-width: 100%;
}

a:hover {
  opacity: 0.9;
}

p {
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  p {
    letter-spacing: 0.03em;
  }
}

li {
  list-style: none;
}

/**
 * ***************************************
 * 専用改行
 * ***************************************
 */
.sp_br {
  display: none;
}

.pc_br {
  display: block;
}

@media screen and (max-width : 767px) {
  .sp_br {
    display: block;
  }

  .pc_br {
    display: none;
  }
}

/**
 * ***************************************
 * スラッシュ
 * ***************************************
 */
.slash {
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 600;
}

.slash:before,
.slash:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #333;
  width: 2px;
  height: 1em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}

.slash-blue:before,
.slash-blue:after {
  background: #007ccf;
  width: 4px;
}

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

  .slash-blue:before,
  .slash-blue:after {
    display: none;
  }
}

.slash:before {
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.slash:after {
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

/**
 * ***************************************
 * ドット
 * ***************************************
 */
.dot {
  position: relative;
  display: inline-block;
  /* Safariでの基準を安定化 */
  line-height: 1.2;
  /* 余白(leading)を抑えてズレ要因を除去 */
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Segoe UI", "Yu Gothic UI", "Meiryo", sans-serif;
}

.dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.2em;
  /* スケールさせたいなら em 推奨 */
  height: 0.2em;
  transform: translate(-50%, -55%);
  /* ← 下がる分を上に持ち上げる。-50%を基準に微調整 */
  background: radial-gradient(circle, #cc2027 50%, transparent 51%);
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .dot::before {
    top: -1vw;
    padding-top: 6px;
    background: radial-gradient(circle 6px, #cc2027 50%, transparent 50%);
    background: -moz-radial-gradient(circle 6px, #cc2027 50%, transparent 50%);
  }
}

/**
 * ***************************************
 * フェードイン
 * ***************************************
 */
.fadein {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/**
 * ***************************************
 * レスポンシブ
 * ***************************************
 */
.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}

/**
 * ***************************************
 * ヘッダー
 * ***************************************
 */
.header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 110px;
}

@media screen and (max-width : 767px) {
  .header {
    height: auto;
  }
}

.header__inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width : 767px) {
  .header__inner {
    padding: 4.2vw 3.58vw;
  }
}

.header__logo img {
  width: 270px;
  display: block;
}

@media screen and (max-width : 835px) {
  .header__logo img {
    width: 240px;
  }
}

@media screen and (max-width : 767px) {
  .header__logo img {
    width: 50vw;
  }
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  .header__cta {
    gap: 0vw;
  }
}

@media screen and (max-width: 767px) {
  .header__cta {
    gap: 2vw;
  }
}

.header__tel {
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 835px) {
  .header__tel {
    font-size: 1.25rem;
  }
}

.header__tel--red {
  color: #cc2027;
}

.header__tel-number {
  letter-spacing: 0em;
}

.header__tel-word {
  display: inline-block;
  background-color: #cc2027;
  font-size: 0.8rem;
  letter-spacing: 0em;
  margin-bottom: 0.8rem;
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 3px;
}

@media screen and (max-width : 835px) {
  .header__tel-word {
    font-size: 0.6rem;
    padding: 0.3rem 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.header__tel-time {
  font-size: 0.8rem;
  letter-spacing: 0em;
}

@media screen and (max-width : 835px) {
  .header__tel-time {
    font-size: 0.6rem;
  }
}

.header__tel img {
  margin-right: 0.6rem;
  margin-top: 1rem;
}

@media screen and (max-width : 835px) {
  .header__tel img {
    width: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .header__tel img {
    margin-top: 0;
    margin-right: 0;
    width: 13.97vw;
  }
}

.header__mail {
  position: relative;
  display: block;
}

@media screen and (max-width: 767px) {
  .header__mail {
    width: 10.97vw;
  }
}

.header__mail-text {
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
}

.header__mail--pc,
.header__tel--pc {
  display: block;
}

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

  .header__mail--pc,
  .header__tel--pc {
    display: none;
  }
}

.header__mail--sp,
.header__tel--sp {
  display: none;
}

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

  .header__mail--sp,
  .header__tel--sp {
    display: block;
  }
}

.header__tel--pc {
  display: flex;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .header__tel--pc {
    display: none;
  }
}

.header__emb {
  width: 60%;
}

@media screen and (max-width : 835px) {
  .header__emb {
    width: 50%;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .header__emb {
    width: 35%;
    margin-left: 1rem;
  }
}

/**
 * ***************************************
 * ファーストビュー
 * ***************************************
 */
.fv {
  background: url("../images/fv_pc_back.webp") no-repeat center;
}

@media screen and (max-width : 767px) {
  .fv {
    background: none;
  }
}

.fv__inner {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fv__inner {
    text-align: center;
  }
}

.fv a {
  opacity: 1;
}

/**
 * ***************************************
 * CTA
 * ***************************************
 */
.cta {
  background-color: #5c0a0b;
}

.cta__inner {
  max-width: 1050px;
  width: 100%;
  padding: 3rem 1rem;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cta__inner {
    padding: 10.2vw 3.58vw;
  }
}

@media screen and (max-width: 767px) {
  .cta__inner {
    padding: 0;
    padding-bottom: 5.128vw;
  }
}

.cta__box {
  background: #fff;
  margin-top: 0;
  position: relative;
  padding: 1.25rem 3.4375rem;
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .cta__box {
    flex-direction: column;
    gap: 1vw;
    margin-top: 9vw;
    padding: 2.8vw 2.8vw 8vw;
    border: 1vw solid #fcd005;
  }
}

.cta__box-left {
  width: 45%;
  align-items: center;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .cta__box-left {
    width: 100%;
  }
}

.cta__box-right {
  width: 50%;
  text-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .cta__box-right {
    width: 100%;
  }
}

.cta__btn-midashi {
  margin-top: 0;
  width: 100%;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #5c0a0b;
}

@media screen and (max-width : 835px) {
  .cta__btn-midashi {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .cta__btn-midashi {
    font-size: 6.5vw;
  }
}

@media screen and (max-width: 767px) {
  .cta__wrapper {
    padding: 1vw 3.58vw;
  }
}

.cta__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .cta__area {
    gap: 1.7vw;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    flex-direction: column;
    width: 70%;
    margin: 3vw auto;
  }
}

.cta__area-list {
  font-size: 1.5rem;
  color: #5c0a0b;
  font-weight: 600;
  border: 3px solid #5c0a0b;
  padding: 0.05rem 0.5rem;
}

@media screen and (max-width : 835px) {
  .cta__area-list {
    font-size: 1.0rem;
  }
}

@media screen and (max-width: 767px) {
  .cta__area-list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 3.846vw;
    padding: 0.5vw 1.7vw;
    border: 0.5vw solid #5c0a0b;
  }
}

.cta__price {
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .cta__price {
    margin-top: 4.5vw;
  }
}

.cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5625rem;
}

@media screen and (max-width: 1000px) {
  .cta__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .cta__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
}

.cta__btn-title {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .cta__btn-title {
    margin-top: 5.897vw;
  }
}

.cta__btn-text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .cta__btn-text {
    font-size: 5.384vw;
    top: 60%;
  }
}

.cta__btn-text--red {
  color: #d42b18;
}

.cta__mail {
  width: 100%;
  display: block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cta__mail {
    width: 100%;
  }
}

.cta__mail-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-shadow: 0 0 5px #fb9908, 0 0 10px #fb9908, 0 0 20px #fb9908;
}

@media screen and (max-width : 835px) {
  .cta__mail-text {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .cta__mail-text {
    font-size: 6.5vw;
    line-height: 0.8;
    left: 51%;
  }
}

.cta__mail-time {
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #fff;
  padding: 0.2rem 1rem;
}

@media screen and (max-width: 767px) {
  .cta__mail-time {
    font-size: 2.82vw;
    border: none;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .cta__btn-title img {
    width: 82.82vw;
  }
}

/**
 * ***************************************
 * マーカー
 * ***************************************
 */
.yellow_marker {
  background: linear-gradient(transparent 70%, #fcd005 80%);
  font-weight: 600;
}

.cta_yellow {
  background: linear-gradient(transparent 70%, #fcd005 80%);
}

/**
 * ***************************************
 * ターゲット訴求（悩み）
 * ***************************************
 */
.nayami {
  background: #e8ebf1;
}

.nayami__inner {
  max-width: 1050px;
  width: 100%;
  padding: 4rem 1rem 0;
  margin: 0 auto -4rem;
  text-align: center;
}

.nayami__subtitile {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 0 2rem;
}

@media screen and (max-width: 767px) {
  .nayami__subtitile {
    font-size: 4.6vw;
  }
}

.nayami__heading {
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .nayami__heading {
    font-size: 7vw;
  }
}

.nayami__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

@media screen and (max-width: 767px) {
  .nayami__wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
  }
}

.nayami__item {
  margin: 1.25rem;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
  width: 40%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}

@media screen and (max-width: 767px) {
  .nayami__item {
    margin: 1.25vw 2vw;
    padding: 5vw 4vw 6vw 4vw;
    width: 100%;
  }
}

.nayami__item img {
  width: 40%;
}

.nayami__txt {
  font-size: 1.25rem;
  padding-top: 0.9375rem;
  font-weight: 600;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .nayami__txt {
    font-size: 4vw;
  }
}

.nayami__txt span {
  display: inline-block;
}

.nayami__person {
  width: 80%;
  margin: 0 auto;
  margin-top: -7rem;
}

@media screen and (max-width: 767px) {
  .nayami__person {
    width: 80%;
    margin-top: -13vw;
  }
}

.nayami__note {
  margin-top: 2.5rem;
  font-size: 2.1875rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .nayami__note {
    font-size: 6vw;
    margin-top: 7.69vw;
  }
}

.nayami__note-img {
  margin-top: 2.1875rem;
  /* position: relative; */
}

.nayami__note--red {
  color: #cc2027;
}

.nayami__note-text {
  position: relative;
}

.nayami__note-magin {
  margin-bottom: 1rem;
}

.nayami__note-text--large {
  font-size: 1.43em;
}

@media screen and (max-width: 767px) {
  .nayami__note-text--large {
    font-size: 6.8vw;
  }
}

/**
 * ***************************************
 * 解決
 * ***************************************
 */
.kaiketsu {
  text-align: center;
  background: #fff;
}

.kaiketsu__inner {
  max-width: 1050px;
  width: 100%;
  padding: 3rem 1rem 0;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .kaiketsu__inner {
    padding: 20vw 3.58vw 3vw;
  }
}

.kaiketsu__heading {
  max-width: 957px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.kaiketsu__title {
  font-size: 2.5rem;
  font-weight: 700;
}

.kaikestsu__subtitile {
  border: 5px solid #5c0a0b;
  color: #5c0a0b;
}

@media screen and (max-width: 767px) {
  .kaikestsu__subtitile {
    font-size: 7vw;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .kaiketsu__text {
    font-size: 5vw;
  }
}

.kaiketsu__back {
  padding-top: 1rem;
  background: radial-gradient(#616161, #d9d9d9);
}

.kaiketsu__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.kaiketsu__item {
  margin: 1.25rem;
  width: 40%;
  border: 5px solid #333;
}

@media screen and (max-width: 767px) {
  .kaiketsu__item {
    width: 100%;
  }
}

/**
 * ***************************************
 * ベネフィット
 * ***************************************
 */
.benefit {
  background: url(../images/benefit_back.webp) center no-repeat;
  background-size: cover;
}

.benefit__inner {
  max-width: 1050px;
  width: 100%;
  padding: 2rem 1rem 5rem;
  margin: 0 auto;
  text-align: center;
}

.benefit__heading {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .benefit__heading {
    margin: 5vw auto 15vw;
  }
}

.benefit__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -5rem;
}

.benefit__item {
  margin: 1.25rem;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
  width: 40%;
  background-color: #fff;
  border: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .benefit__item {
    margin: 1.25vw 2vw;
    padding: 5vw 4vw 6vw 4vw;
    width: 100%;
  }
}

.benefit__item img {
  width: 40%;
}

.benefit__midashi {
  font-size: 1.5rem;
  padding-top: 0.9375rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .benefit__midashi {
    font-size: 5vw;
  }
}

.benefit__txt {
  font-size: 1.25rem;
  padding-top: 0.9375rem;
}

.benefit__txt span {
  display: inline-block;
}

.benefit__no1 {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .benefit__no1 {
    top: -15vw;
  }
}

.benefit__no1 img {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .benefit__no1 img {
    width: 50%;
  }
}

.benefit__hikaku {
  margin: 1.25rem;
  padding: 1.25rem 1.5rem 2rem 1.5rem;
  width: 84%;
  background-color: #fff;
  border: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .benefit__hikaku {
    margin: 1.25vw 2vw;
    padding: 5vw 4vw 6vw 4vw;
    width: 100%;
  }
}

.benefit__akarusa {
  margin-top: -3rem;
}

@media screen and (max-width: 767px) {
  .benefit__akarusa {
    margin-top: -10vw;
  }
}

.benefit__ending {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.benefit__display {
  margin: 3rem auto;
  width: 70%;
}

@media screen and (max-width: 767px) {
  .benefit__display {
    margin: 1rem auto;
    width: 100%;
  }
}

.benefit__copy {
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .benefit__copy {
    font-size: 7vw;
  }
}

.benefit__copy-end {
  font-size: 2.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .benefit__copy-end {
    font-size: 7vw;
  }
}

/**
 * ***************************************
 * MP4埋め込み
 * ***************************************
 */
.videoplay {
  margin-top: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.video_player {
  width: 100%;
  max-width: 900px;
  height: auto;
  border: 2px solid #444;
}

.video__container {
  border-radius: 16px;
  background: linear-gradient(to bottom, #5c0a0b, #cc2027);
  padding: 20px;
  filter: drop-shadow(0 0 1px #333);
}

@media screen and (max-width: 767px) {
  .video__container {
    padding: 10px;
  }
}

/**
 * ***************************************
 * お客様の声
 * ***************************************
 */
.voice {
  background: url(../images/hoganshi.png) repeat;
}

.voice__inner {
  max-width: 1050px;
  width: 100%;
  padding: 4rem 1rem;
  margin: 0 auto;
  text-align: center;
}

.voice__heading {
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
}

@media screen and (max-width: 767px) {
  .voice__heading {
    font-size: 7vw;
  }
}

.voice__area {
  width: 90%;
  background: #fff;
  margin: 3rem auto 0;
  /*border: 5px solid #0a2b6a;*/
  box-shadow: 3px 3px 5px 3px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .voice__area {
    width: 100%;
  }
}

.voice__number {
  text-align: center;
}

.voice__number span {
  width: 100%;
  margin: -20px auto 0;
  background: #cc2027;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  /*  border-radius: 10px;*/
  letter-spacing: 0.1em;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .voice__number span {
    font-size: 4.8vw;
  }
}

.voice__wrapper {
  border-bottom: 3px dotted;
  margin: 0 auto;
  width: 80%;
}

.voice__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 2rem;
}

@media screen and (max-width: 767px) {
  .voice__flex {
    flex-direction: column-reverse;
  }
}

.voice__text {
  padding: 2rem 1rem 1rem 0;
  text-align: left;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .voice__text {
    padding: 7vw;
    width: 100%;
  }
}

.voice__text-lage {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .voice__text-lage {
    font-size: 4vw;
  }
}

.voice__textall {
  padding: 2rem 7rem 3rem;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .voice__textall {
    padding: 7vw;
  }
}

.voice__impact {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .voice__impact {
    width: 50%;
  }
}

.voice__img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .voice__img {
    width: 90%;
    margin: 0 auto;
  }
}

.voice__copy {
  margin: 3rem 0;
}

.voice__copy-end {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

@media screen and (max-width: 767px) {
  .voice__copy-end {
    font-size: 7vw;
  }
}

.voice__ending {
  margin: 5rem auto -1.8rem;
  position: relative;
  max-width: 900px;
  width: 100%;
}

@media screen and (max-width : 835px) {
  .voice__ending {
    max-width: 700px;
  }
}

.voice__ending-text {
  color: #333;
  font-size: 1.5rem;
  position: absolute;
  text-align: left;
  left: 480px;
  top: 45px;
  font-weight: 500;
  width: 400px;
}

@media screen and (max-width : 835px) {
  .voice__ending-text {
    font-size: 2.2vw;
    left: 45vw;
    top: 3vw;
    width: 38vw;
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .voice__ending-text {
    font-size: 4.2vw;
    left: 27vw;
    top: 8vw;
    width: 61vw;
    line-height: 1.8;
  }
}

/**
 * ***************************************
 * 事例
 * ***************************************
 */
.case {
  background: linear-gradient(to bottom, #fff, #fff5f5);
}

.case__inner {
  max-width: 1050px;
  width: 100%;
  padding: 5rem 1rem;
  margin: 0 auto;
  text-align: center;
}

.case__copy {
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .case__copy {
    font-size: 5vw;
  }
}

.case__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  width: 90%;
  margin: 2.625rem auto 0;
}

@media screen and (max-width: 767px) {
  .case__box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 4.35vw;
  }
}

.case__items {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .case__items {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.case__list {
  background: #333;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: left;
  font-weight: 500;
  margin-top: 1.875rem;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .case__list {
    font-size: 4.39vw;
    margin-top: 2.56vw;
  }
}

.case__list:first-child {
  margin-top: 0;
}

.case__list--small {
  font-size: 0.6em;
}

.case__list--yellow {
  color: #fcd005;
}

.case__caution {
  position: absolute;
  bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .case__caution {
    font-size: 2.13vw;
  }
}

.case__cannot-img {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .case__cannot-img {
    margin: 0 auto -3vw;
    width: 70%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    position: relative;
  }
}

.case__list img {
  width: 22px;
  height: 22px;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .case__list img {
    margin-top: 0;
    width: 4.3vw;
    height: 4.3vw;
    margin-right: 3vw;
    margin-top: 0.9vw;
  }
}

@media screen and (max-width: 767px) {
  .case__guide {
    margin-top: 4.35vw;
  }
}

.case__heading {
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #5c0a0b;
  margin-bottom: 3rem;
  display: inline-block;
  border: 3px solid #5c0a0b;
  padding: 0.3rem 5rem;
}

@media screen and (max-width: 767px) {
  .case__heading {
    font-size: 7vw;
    padding: 1vw 6vw;
  }
}

.case__area {
  width: 100%;
  background: #fff;
  margin: 3rem auto 0;
  border: 3px solid #5c0a0b;
  box-shadow: 6px 6px 10px -2px rgba(0, 0, 0, 0.3);
}

.case__number {
  text-align: center;
}

.case__number span {
  margin: -3rem auto 0;
  background: #cc2027;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  /*  border-radius: 10px;*/
  letter-spacing: 0.1em;
  display: inline-block;
}

@media screen and (max-width : 835px) {
  .case__number span {
    font-size: 3vw;
    padding: 2vw 5vw;
  }
}

@media screen and (max-width: 767px) {
  .case__number span {
    font-size: 4vw;
    padding: 2vw 5vw;
  }
}

.case__wrapper {
  border-bottom: 3px dotted;
  margin: 0 auto;
  width: 100%;
}

.case__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 2rem;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .case__flex {
    flex-direction: column;
  }
}

.case__title {
  font-size: 1.5rem;
  padding: 1rem 1rem 0;
}

@media screen and (max-width: 767px) {
  .case__title {
    font-size: 4.5vw;
  }
}

.case__title-underline {
  display: inline-block;
  margin-bottom: 1.875rem;
  border-bottom: 3px solid #cc2027;
}

@media screen and (max-width: 767px) {
  .case__title-underline {
    margin-bottom: 2.0vw;
  }
}

.case__text {
  padding: 2rem 4rem;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .case__text {
    padding: 4vw;
  }
}

.case__text-large {
  font-size: 1.375rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .case__text-large {
    font-size: 4vw;
  }
}

.case__textall {
  padding: 2rem 7rem 3rem;
  text-align: left;
  width: 100%;
}

.case__impact {
  width: 35%;
}

.case__img {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .case__img {
    width: 90%;
  }
}

/* スライダー用 */
@media only screen and (max-width : 767px) {}

.swiper-parent {
  position: relative;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .swiper-parent {
    margin-top: 50px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  top: calc((100% - 50px) * 0.6);
  width: 50px;
  height: 50px;
  /*  border-radius: 50%;*/
  background-color: #cc2027;
}

.swiper-button-prev {
  left: 10%;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.swiper-button-next::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-slide {
  height: initial;
}

/**
 * ***************************************
 * 流れ
 * ***************************************
 */
.flow {
  background: #fff;
}

.flow__inner {
  max-width: 1000px;
  width: 100%;
  padding: 4rem 1rem;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width : 835px) {
  .flow__inner {
    max-width: 700px;
  }
}

@media screen and (max-width: 767px) {
  .flow__inner {
    padding: 10.2vw 3.58vw;
  }
}

.flow__heading {
  font-size: 3.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .flow__heading {
    font-size: 7.948vw;
  }
}

.flow__heading--blue {
  color: #009de3;
}

.flow__items {
  margin-top: 4.625rem;
}

@media screen and (max-width: 767px) {
  .flow__items {
    margin-top: 8.97vw;
  }
}

.flow__list {
  border: 3px solid #5c0a0b;
  padding: 2rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.75rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .flow__list {
    border: 0.6vw solid #5c0a0b;
    padding: 5.12vw 2.82vw;
    gap: 3.07vw;
  }
}

.flow__img {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .flow__img {
    width: 32%;
  }
}

.flow__list-inner {
  width: 70%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .flow__list-inner {
    width: 65%;
  }
}

.flow__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #5c0a0b;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 4.5vw;
    margin-top: 0;
  }
}

.flow__text {
  margin-top: 0.6rem;
  text-align: left;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .flow__text {
    line-height: 1.6;
    margin-top: 1vw;
  }
}

.flow__number {
  position: absolute;
  left: -1.3125rem;
  top: -1.3125rem;
}

@media screen and (max-width: 767px) {
  .flow__number {
    width: 13.3vw;
    left: -2vw;
  }
}

.flow__free {
  color: #fff;
  background: #e0400e;
  font-size: 1.5625rem;
  margin: 1.5rem 0;
  padding: 1rem;
}

@media screen and (max-width: 767px) {
  .flow__free {
    font-size: 3.717vw;
    padding: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .flow__img {
    width: 32%;
  }
}

@media screen and (max-width: 767px) {
  .flow__arrow {
    width: 24.1vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .flow__list02 {
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .flow__img02 {
    width: 38%;
  }
}

@media screen and (max-width: 767px) {
  .flow__list02-inner {
    width: 62%;
  }
}

/**
 * ***************************************
 * 送料テーブル
 * ***************************************
 */
.qa__table {
  border-collapse: collapse;
  width: 100%;
  max-width: 400px;
}

.qa__table th,
.qa__table td {
  border: 2px solid #fff;
  background-color: #FCE8E8;
  padding: 1em;
}

.qa__table th {
  background-color: #5c0a0b;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 60%;
  min-width: 4em;
}

@media screen and (max-width: 767px) {
  .qa__table th {
    width: 40%;
  }
}

/**
 * ***************************************
 * よくある質問
 * ***************************************
 */
.qa {
  padding: 0 0 1rem 0;
  background: #FCE8E8;
}

.qa__inner {
  max-width: 1050px;
  width: 100%;
  padding: 4rem 1rem;
  margin: 0 auto;
  text-align: center;
}

.qa__heading {
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .qa__heading {
    font-size: 7.948vw;
  }
}

.qa_list {
  text-align: left;
  margin: 3rem auto 0;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width : 767px) {
  .qa {
    padding: 2rem 0 2rem;
  }

  .qa_list {
    margin: 2rem auto 0;
  }
}

@media only screen and (min-width:769px)and (max-width: 1099px) {
  .qa_list {
    width: 90%;
  }
}

details {
  margin: 0 auto 10px;
  width: 100%;
  counter-increment: qnum anum 1;
  /*カウント増加数の設定*/
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  /*  font-size: 18px;*/
  background-color: #5c0a0b;
  /*  border-radius: 10px;*/
  cursor: pointer;
  color: #fff;
}

@media screen and (max-width : 767px) {
  summary {
    font-size: 1.0rem;
  }
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover,
details[open] summary {
  background-color: #cc2027;
}

summary::after {
  content: '+';
  margin-left: 30px;
  color: #fff;
  font-size: 30px;
  transition: transform .5s;
}

summary::before {
  /*Qアイコン表示*/
  color: #fff;
  content: "Q" counter(qnum);
  /*ナンバリング*/
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 0 12px;
  min-width: 50px;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.answer {
  background: #fff;
  padding: 20px 30px;
  line-height: 1.6;
}

@media screen and (max-width : 767px) {
  .answer {
    font-size: 1.1rem;
  }
}

.answer::before {
  /*Aアイコン表示*/
  color: #33221e;
  content: "A" counter(anum);
  /*ナンバリング*/
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 0 12px;
  min-width: 50px;
}

details[open] .answer {
  animation: fadein .5s ease;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**
 * ***************************************
 * フッター
 * ***************************************
 */
.footer {
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.footer__inner {
  margin: 1rem;
}

.footer__logo {
  width: 30%;
  padding: 1rem;
  margin: 0 auto;
}

.footer__text {
  color: #333;
  font-size: 0.875rem;
}

.footer a {
  color: #333;
  font-size: 0.8rem;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 40px;
}

.pagetop a {
  display: block;
  background-color: #fff;
  text-align: center;
  border: 2px solid #5c0a0b;
  font-size: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.pagetop a i {
  font-size: 20px;
  color: #5c0a0b;
  line-height: 50px;
}

@media screen and (max-width : 835px) {
  .footer__inner {
    width: 80vw;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width : 767px) {
  .footer a {
    color: #333;
    font-size: 0.6rem;
  }

  .footer__inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .footer__logo {
    width: 70%;
  }

  .pagetop {
    bottom: 80px;
    right: 10px;
  }

  .pagetop a {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }

  .pagetop a i {
    font-size: 18px;
    line-height: 38px;
  }
}