#wrap {
  background: #f8f5ee;
}

a {
  cursor: pointer;
}

.lp-wrapper a:hover {
  opacity: 0.8;
}

:root {
  --font-mincho: "Source Han Serif", "源ノ明朝", "Noto Serif CJK JP", "Noto Serif JP",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.lp-wrapper {
  max-width: 525px;
  width: 100%;
  margin: 0 auto;
  font-size: 10px;
  --s-val: 10px;
  color: #333333;
  background: #fff;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック",
    "MS PGothic", Verdana, Roboto, "Droid Sans", sans-serif;
}

@media screen and (max-width: 768px) {
  .lp-wrapper {
    --s-var: 2vw;
  }
}

/*===メニュー===*/

.top-menu {
  position: sticky;

  z-index: 9999;
  background-color: rgb(248 248 248);
}

.top-list {
  display: flex;
  align-items: center;
  align-items: stretch;
  text-align: center;
  background-color: rgba(205, 182, 144, 0.2);
  font-size: calc(var(--s-val) * 1.6);
}

.top-list li {
  width: 100%;
  border-left: 1px solid #cdb690;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  position: relative;
}

.top-list li a {
  color: #333333;
}

.top-list li:first-child {
  border-left: none;
}

.top-list li:last-child {
  padding-bottom: 1.5rem;
  line-height: 1.3;
}

.top-list li::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 0.6em;
  position: absolute;
  bottom: 5px;
}

.top-list li:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*===point===*/

.point {
  background-color: #cdb690;
  padding: 0 5% 7%;
  margin-top: -10%;
}

.point a {
  margin-bottom: 3%;
  display: block;
}

.point a:hover {
  opacity: 0.8;
}

/*===design===*/

.design-area {
  width: 90%;
  margin: 0 auto 5rem;
}

.design-text {
  background-color: rgba(205, 182, 144, 0.25);
  text-align: center;
}

.design-text p:first-child {
  font-size: calc(var(--s-val) * 2.3);
  font-weight: bold;
  text-align: center;
  padding: 2rem 0;
}

.design-area .video-box {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.design-area video {
  transform: scale(1.4);
}

.design-text p:last-child {
  margin: 0 auto;
  width: 90%;
  font-size: calc(var(--s-val) * 1.8);
  text-align: left;
  line-height: 1.8;
  padding: 1.5rem 0;
}

.link-text {
  margin-bottom: 3rem;
}

/*===voice===*/

.voice-area {
  background-color: rgba(205, 182, 144, 0.2);
  padding: 10% 0;
}

.voice-area .voice-title {
  width: 50%;
  margin: 0 auto 2rem;
}

.voice-area ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.voice-btn {
  padding: 3% 13% 3% 4%;
  font-size: calc(var(--s-val) * 1.9);
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: rgba(205, 182, 144, 0.5);
  cursor: pointer;
}

.toggle-btn::before,
.toggle-btn::after {
  content: "";
  width: calc(var(--s-val) * 1.5);
  height: calc(var(--s-val) * 0.2);
  background-color: #333333;
  position: absolute;
  right: 5%;
  top: 50%;
}

.toggle-btn::before {
  transform: rotate(90deg);
  transition: all 0.4s ease;
}

.toggle-btn.active::before {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.js-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.js-content.active {
  max-height: 500px;
  opacity: 1;
}

.voice-area .toggle-btn img {
  width: 20%;
}

.voice-detail {
  font-size: calc(var(--s-val) * 1.5);
  background-color: #fff;
}

.voice-detail p {
  padding: 3% 3%;
  line-height: 1.5;
}

.voice-detail span {
  color: #81c4b1;
}

.voice-note {
  width: 95%;
  text-align: right;
  margin: 0 auto;
}

/*===youtube===*/

.youtube-area {
  background: unset;
}

.youtube-area iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/*===qa===*/

.qa-area {
  background-color: rgba(205, 182, 144, 0.1);
  padding: 5rem 0;
}

.qa-area .qa-title {
  width: 30%;
  margin: 0 auto 2rem;
}

.qa-btn {
  font-size: calc(var(--s-val) * 1.6);
  padding: 4%;
}

.qa-btn p {
  width: 100%;
}

.q-txt,
.a-txt {
  font-size: calc(var(--s-val) * 2);
  margin-right: 1%;
  font-family: "Jost", sans-serif;
}

.a-txt {
  color: #cdb690;
  line-height: 1;
}

.qa-detail {
  font-size: calc(var(--s-val) * 1.5);
  line-height: 1.5;
}

.qa-list .detail-note {
  font-size: calc(var(--s-val) * 1.2);
}

.qa-detail p {
  padding: 4%;
  display: flex;
  background-color: #fff;
}

.qa-list {
  width: 90%;
  margin: 0 auto;
}

.qa-list li {
  margin-bottom: 1rem;
}

.qa-list li:last-child {
  margin-bottom: 0;
}

/*===service===*/

.service-wrapper {
  background-color: rgba(205, 182, 144, 0.25);
  padding: 0rem 0 3rem;
}

.service-inner {
  width: 90%;
  margin: 0 auto;
}

.service-title {
  text-align: center;
  font-size: calc(var(--s-val) * 2.2);
  background-color: #cdb690;
  padding: 3% 0;
  position: relative;
  cursor: pointer;
}

.service-title::before,
.service-title::after {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #333333;
  width: calc(var(--s-val) * 1.5);
  height: 2px;
}

.service-title::after {
  transform: rotate(90deg);
}

.service-title.active::after {
  transform: rotate(0);
}

.service-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #fff;
}

.service-detail.active {
  max-height: 1400px;
  opacity: 1;
}

.service-detail_inner {
  padding: 3rem 4rem;
}

.service-contact {
  margin-bottom: 2rem;
  display: block;
  cursor: pointer;
}

.contact-text {
  background-color: rgba(205, 182, 144, 0.25);
  text-align: center;
}

.contact-text {
  width: 90%;
  margin: 0 auto;
  display: block;
}

/*===lineup===*/

.lp-wrapper .line-up {
  background-image: url(../img/lp-bg.png);
  padding: 6rem 0;
  text-align: center;
  color: #fff;
}

.lp-wrapper .line-up p {
  font-size: calc(var(--s-val) * 2);
  margin-bottom: 2rem;
  font-family: var(--font-mincho);
}

.lp-wrapper .line-up a {
  font-size: calc(var(--s-val) * 2);
  color: #fff !important;
  position: relative;
  font-family: "Jost", sans-serif;
}

.lp-wrapper .line-up a:hover {
  color: #fff;
  opacity: 0.8;
}

.lp-wrapper .line-up a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
}

@media screen and (max-width: 768px) {
  .top-list li::before {
    bottom: 3px;
  }

  .top-list {
    flex-wrap: wrap;
    align-items: center;
  }

  .top-list li {
    width: calc(33.33% - calc(var(--s-val) * 0));
    font-size: 1.4rem;
    min-height: calc(var(--s-val) * 5.5);
    border-bottom: 1px solid #cdb690;
    padding: 1rem 0 1.5rem;
  }

  .top-list li:nth-child(4),
  .top-list li:nth-child(5),
  .top-list li:nth-child(6) {
    border-bottom: none;
  }

  .top-list li:last-child::before {
    bottom: 3px;
  }

  .top-list li:last-child {
    padding: 0.5rem 0 1rem;
  }

  /*===design===*/

  .design-text p:first-child {
    font-size: calc(var(--s-val) * 1.6);
  }

  .design-text p:last-child {
    font-size: calc(var(--s-val) * 1.3);
  }

  .voice-btn {
    padding: 4% 13% 4% 4%;
    font-size: calc(var(--s-val) * 1.4);
    font-weight: normal;
  }

  .voice-detail {
    font-size: calc(var(--s-val) * 1.2);
  }

  .qa-btn {
    font-size: calc(var(--s-val) * 1.4);
    padding: 4% 10% 4% 4%;
    font-weight: normal;
  }

  .qa-btn p {
    display: flex;
    align-items: center;
    gap: calc(var(--s-var) * 0.3);
  }

  .qa-detail {
    font-size: calc(var(--s-val) * 1.2);
  }

  .qa-detail p {
    padding: 4%;
    line-height: 1.5;
  }

  .service-title {
    font-size: calc(var(--s-val) * 1.6);
    padding: 4% 0;
    font-weight: normal;
  }

  .service-detail_inner {
    padding: 2rem 1rem;
  }

  .lp-wrapper .line-up p {
    font-size: calc(var(--s-val) * 1.6);
  }

  .lp-wrapper .line-up a {
    font-size: calc(var(--s-val) * 1.8);
  }
}

.brush-fixed-check {
  display: none;
}
.brush-fixed-area,
.brush-fixed-bg {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.brush-fixed-wrapper {
  overflow: hidden;
  transition: height 0.25s, opacity 0.25s;
}
.brush-fixed-bg {
  mix-blend-mode: multiply;
  z-index: 45;
}
.brush-fixed-bg::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #c1c1c1;
  transition: height 0.3s, opacity 0.3s;
}
#brush-fixed-check:checked ~ .brush-fixed-bg::before,
#brush-fixed-check:checked ~ .brush-fixed-area .brush-fixed-wrapper {
  height: 0;
  opacity: 0;
}
.brush-fixed-area .close-button::before,
.brush-fixed-area .close-button::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
}
.brush-fixed-area .close-button {
  position: absolute;
  display: block;
  cursor: pointer;
}
.brush-fixed-area .close-button::before {
  transform: rotate(45deg);
}
.brush-fixed-area .close-button::after {
  transform: rotate(135deg);
}
.brush-fixed-area .close-button > span {
  text-indent: -999em;
  font-size: 0px;
}
.brush-fixed-buttons a {
  display: block;
  position: relative;
  text-align: center;
}
.brush-fixed-buttons a .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 2.2;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.brush-fixed-area.active {
  opacity: 1;
}

.brush-fixed-area {
  opacity: 0;
}

@media all and (min-width: 641px) {
  .brush-wrapper {
    position: relative;
    background: url("./bg_pc.jpg") repeat-y center top;
    background-size: 100% auto;
  }
  .brush-main {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -14px 28px -14px rgba(0, 0, 0, 0.3);
  }
  .brush-fixed-wrapper {
    position: absolute;
    width: 175px;
    height: 290px;
    bottom: 0;
    right: 0;
    z-index: 45;
    background: rgba(0, 0, 0, 0.3);
  }
  .brush-fixed-bg::before {
    width: 175px;
    height: 290px;
    bottom: 0;
    right: 0;
  }
  .brush-fixed-area .close-button {
    right: 0;
    width: 32px;
    height: 32px;
  }
  .brush-fixed-area .close-button::before,
  .brush-fixed-area .close-button::after {
    width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
  }
  .brush-fixed-buttons {
    max-width: 142px;
    margin: 35px auto 0;
  }
  .brush-fixed-buttons > li + li {
    margin-top: 10px;
  }
  .brush-fixed-buttons a img {
    transition: opacity 0.25s;
  }
  .brush-fixed-buttons a:hover img {
    opacity: 0.75;
  }
}
@media screen and (max-width: 640px) {
  .brush-sup {
    font-size: 2.67vw;
    transform: scale(0.8);
    margin: -0.125em;
  }
  .brush-feature-care-test-graph .brush-sup {
    transform: scale(0.65);
  }
  .brush-box-shadow {
    box-shadow: 0 0 1.33vw rgba(0, 0, 0, 0.2);
  }
  .fs {
    display: block;
    font-size: 2.67vw;
  }
  .brush-fs-48 {
    font-size: 6.4vw;
  }
  .brush-fs-46 {
    font-size: 6.13vw;
  }
  .brush-fs-44 {
    font-size: 5.86vw;
  }
  .brush-fs-42 {
    font-size: 5.6vw;
  }
  .brush-fs-40 {
    font-size: 5.33vw;
  }
  .brush-fs-38 {
    font-size: 5.06vw;
  }
  .brush-fs-37 {
    font-size: 4.93vw;
  }
  .brush-fs-36 {
    font-size: 4.8vw;
  }
  .brush-fs-34 {
    font-size: 4.53vw;
  }
  .brush-fs-33 {
    font-size: 3.86vw;
  }
  .brush-fs-32 {
    font-size: 4.26vw;
  }
  .brush-fs-30 {
    font-size: 4vw;
  }
  .brush-fs-29 {
    font-size: 3.73vw;
  }
  .brush-fs-28 {
    font-size: 3.73vw;
  }
  .brush-fs-26 {
    font-size: 3.46vw;
  }
  .brush-fs-24 {
    font-size: 3.2vw;
  }
  .brush-fs-22 {
    font-size: 2.93vw;
  }
  .brush-fs-20,
  .brush-fs-18,
  .brush-fs-16,
  .brush-fs-14 {
    font-size: 2.67vw;
  }
  .brush-fs-18 .fs {
    transform: scale(0.9);
    margin: -0.055em -5.555%;
  }
  .brush-fs-16 .fs {
    transform: scale(0.8);
    margin: -0.125em -12.5%;
  }
  .brush-fs-14 .fs {
    transform: scale(0.7);
    margin: -0.214em -21.4285%;
  }
  .brush-nav {
    top: 80px;
    border-top-width: 1px;
    border-left-width: 1px;
  }
  .brush-nav > a {
    border-right-width: 1px;
    border-bottom-width: 1px;
    font-size: 2.36vw;
  }
  .brush-fixed-wrapper {
    width: 100%;
    height: 22vw;
    background: rgba(0, 0, 0, 0.3);
  }
  .brush-fixed-bg::before {
    width: 100%;
    height: 22vw;
    bottom: 0;
    left: 0;
  }
  #brush-fixed-check:checked ~ .brush-fixed-bg::before,
  #brush-fixed-check:checked ~ .brush-fixed-area .brush-fixed-wrapper {
    height: 0;
    opacity: 0;
  }
  .brush-fixed-area .close-button {
    right: 0;
    width: 8vw;
    height: 8vw;
    z-index: 1;
  }
  .brush-fixed-area .close-button::before,
  .brush-fixed-area .close-button::after {
    width: 5vw;
    height: 2px;
    margin: -1px 0 0 -2.5vw;
  }
  .brush-fixed-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 86.67%;
    height: 22vw;
    margin: 1.5vw auto 0;
    z-index: 5;
  }
  .brush-fixed-buttons > li {
    width: 31.23%;
  }
  .brush-fixed-buttons a .text {
    font-size: 11px;
    font-size: 2.93vw;
  }
}
