@charset "utf-8";

/* ---------- TOPページ ---------- */
/* メインイメージ */

#main-visual {
  background: #f9dce9;
  padding-bottom: 1rem;
}
#main-visual h1 {
  margin-bottom: 0;
}

a.btn_thnq {
  position: relative;
  box-sizing: border-box;
  width: 96%;
  height: 100%;
  margin: 1rem auto 0;
  padding: 0.4rem 1vw 0.4rem 7vw;
  border: 1px solid #e64e97;
  background: #fff;
  border-radius: 100vh;
  text-align: center;
  font-size: 4vw;
  color: #e64e97;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  transition-duration: 0.2s;
}
a.btn_thnq:hover {
  color: #e64e97;
  text-decoration: none;
  opacity: 0.7;
}
a.btn_thnq ::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  top: 50%;
  left: 4vw;
  border-top: solid 3px #e64e97;
  border-right: solid 3px #e64e97;
  transform: translateY(-70%) rotate(135deg);
}

@media screen and (min-width: 641px) {
  #main-visual, #main-visual h1 {
    background: #f9dce9 url(/uservoice/img/main_pc.png) center top no-repeat;
  }
  #main-visual h1 {
    width: 960px;
    height: 425px;
    margin: 0 auto;
  }
  a.btn_thnq {
    display: inline-block;
    width: fit-content;
    padding: 1rem 1rem 0.8rem 40px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  a.btn_thnq ::before {
    width: 10px;
    height: 10px;
    left: 20px;
  }
}

@media screen and (max-width: 640px) {
  a.btn_thnq {
    display: flex;
    /* gap: 0 1vw; */
    justify-content: center;
    align-items: center;
    line-height: 1.2;
  }
  a.btn_thnq .small_text {
    font-size: 80%;
  }
  a.btn_thnq .sp_break_adjust {
    display: inline-block;
    margin-top: -1vw;
    letter-spacing: 0;
  }
}

/* 体験談一覧 */
#voice-list.section_box {
  padding: 6vw 0 14vw 0;
  background: #fcedf4;
}
#voice-list h2 {
  margin-bottom: 2rem;
}
.voice-list_box {
  width: 90%;
  margin: 0 auto;
}
.voice-list_box > li {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 2rem;
  /* background: #fff; */
}
.voice-list_box > li:last-child {
  margin-bottom: 0;
}
.voice-list_box > li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #337ab7 32px, #fff 0);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 2px 2px rgba(0, 0, 0, .1);
  color: #333;
  transition-duration: 0.2s;
}
.voice-list_box > li a:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.7;
}
.voice-list_box > li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  bottom: 4px;
  right: 4px;
  background: linear-gradient(-45deg, #fff 6px, transparent 0);
}
.voice-list_box > li .voice-list_title-area {
  display: flex;
  flex-direction: column-reverse;
}
.voice-list_box > li .voice_img img {
  width: 100%;
  margin-bottom: 1.6rem;
}
.voice-list_box > li h3 {
  margin-bottom: 1rem;
  padding: 0 2rem;
  font-size: 5.2vw;
  font-weight: bold;
  line-height: 1.4em;
}
.voice-list_box > li .voice-list_data-area {
  padding: 0 2rem;
}
.voice-list_box > li .voice-list_iij-plan {
  margin-bottom: 1rem;
  padding: 0.4rem 0 0.4rem 0.8rem;
  background: #f7f5f1;
  font-size: 4vw;
}
.voice-list_box > li .voice-list_iij-plan > span:first-child {
  font-weight: bold;
}
.voice-list_box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 0;
  margin-bottom: 1rem;
  font-size: 3.6vw;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}
.voice-list_box dt, .voice-list_box dd {
  padding: 0.2rem 0;
}
.voice-list_box dt {
  width: 42%;
  background: #f7f5f1;
  text-align: center;
}
.voice-list_box dd {
  width: 56%;
}
.voice-list_box > li .voice-list_date {
  font-size: 3.4vw;
  margin-bottom: 1.6rem;
}
.voice-list_box > li .voice-list_click {
  position: absolute;
  bottom: 6px;
  right: 2px;
  transform: rotate(-45deg);
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 641px) {
  #voice-list.section_box {
    padding-top: 2.4rem;
    padding-bottom: 5rem;
  }
  .voice-list_box {
    width: 960px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2%;
  }
  .voice-list_box > li {
    width: 32%;
    margin-bottom: 0;
    background: #fff;
  }
  .voice-list_box > li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .voice-list_box > li .voice_img img {
    margin-bottom: 1.2rem;
  }
  .voice-list_box > li h3 {
    padding: 0 1.2rem;
    font-size: 17px;
  }
  .voice-list_box > li .voice-list_data-area {
    padding: 0 1.2rem;
  }
  .voice-list_box > li .voice-list_iij-plan {
    padding: 0.4rem 0 0 0.8rem;
    font-size: 14.6px;
  }
  .voice-list_box dl {
    font-size: 13px;
  }
  .voice-list_box dt, .voice-list_box dd {
      padding: 0.2rem 0 0;
  }
  .voice-list_box > li .voice-list_date {
    font-size: 12px;
    margin-bottom: 1rem;
  }
}

/* サンキュ！ */
.voice-top #thnq {
  padding-top: 16vw;
  padding-bottom: 20vw;
}
.voice-top .thnq_sliderBalloon2 {
  display: none;
}
.voice-top .splide {
  border: none!important;
}
.thnq_slider_text {
  position: relative;
  top:9vw;
  margin-bottom: 1rem;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 641px) {
  .voice-top #thnq {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
  .voice-top .thnq_slider_text {
    top: 56px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .voice-top .splide {
    padding: 4.6rem 2rem 4rem;
  }
  .voice-top .splide__arrow--prev {
    left: 20px;
  }
  .voice-top .splide__arrow--next {
    right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .voice-top .thnq_sliderBalloon {
    width: 86vw;
    height: 12vw;
  }
  .voice-top .thnq_sliderBalloon > div {
    font-size: 5vw;
  }
  .voice-top .thnq_sliderBalloon img {
    width: 30vw;
  }
  .voice-top .thnq_container {
    height: 86vw;
  }
}

/* シミュレーション調整 */
.voice-top #giga_simulator {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 1.4;
}
.voice-top #giga_simulator p {
    line-height: 1.4;
}
.voice-top .anno-area p {
    font-size: 3.2vw;
    margin-bottom: 0.2rem;
}
.voice-top .cp-link-list .cp-link-list-title {
    font-size: 3.6vw;
}
.voice-top #giga_simulator .app-btn {
  width: fit-content;
  background-image: none;
}
.voice-top .giga-simulator .diagnosis-area .diagnosis-head {
    padding: 0.7rem 0;
}
.voice-top .use-cp .cp-link-list {
    padding: 1rem 1.6rem;
}
@media screen and (min-width: 641px) {
  .voice-top .anno-area p, .voice-top .diagnosis-anno p {
    font-size: 12px;
  }
  .voice-top .giga-simulator .q-area .q-sup-btns {
    padding-right: 210px;
  }
  .voice-top .cp-link-list .cp-link-list-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .voice-top .anno-area p {
    margin: 0 0.6rem 0.2rem 0.6rem;
  }
  .voice-top #giga_simulator .app-btn {
    background: none;
    box-shadow: none;
  }
  .voice-top .giga-simulator .delete-btn {
    right: calc(50% - 88px);
    top: 62px;
    margin-left: 0;
    padding: 5px 5px 4px 22px;
    border-radius: 10px;
  }
}