@charset "utf-8";
/*--------------------------------------
problem common｜お悩み別
--------------------------------------*/
/* ページタイトル
		---------------------------------------------- */
@media screen and (max-width: 768px) {
  .problem .header-kv .ttl-center {
    font-size: 20px;
    line-height: 22px;
  }
  .problem .header-kv .ttl-center span {
    font-size: 11px;
  }
}

/* ◯代のお悩み
		---------------------------------------------- */
.blowing {
  margin: 18px 0 14px;
  font-size: 18px;
  text-align: center;
}

.side-btn-area {
  display: flex;
  justify-content: center;
}

.side-btn-area + .side-btn-area {
  margin-top: 16px;
}

.problem-btn {
  display: block;
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 17px 0 23px;
  text-align: center;
  background-color: var(--white);
}

.problem-btn.noBtn {
  pointer-events: none;
}

.problem-btn.oneline {
  padding: 20px 0;
}

.problem-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 86%;
  border: 1.2px solid var(--redbrown);
  z-index: 6;
}
.problem-btn.link::after {
  content: "";
  border: 0;
  border-top: solid 1.5px var(--redbrown);
  border-right: solid 1.5px var(--redbrown);
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
}

.problem-btn + .problem-btn {
  margin-left: 18px;
}
.problem-btn.oneline p {
  padding: 12.5px 0;
  height: 30.3px;
}

.problem-btn p {
  font-size: 22px;
  line-height: 1.2em;
}

.problem-btn span {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .blowing {
    margin: 18px 0 8px;
    font-size: 13px;
  }

  .side-btn-area {
    display: block;
    max-width: 400px;
    margin: auto;
  }
  .side-btn-area + .side-btn-area {
    margin-top: 6px;
  }
  .problem-btn + .problem-btn {
    margin-left: 0;
    margin-top: 6px;
  }

  .problem-btn {
    padding: 7px 0 13px;
  }
  .problem-btn.oneline {
    padding: 10px 0;
  }

  .problem-btn.oneline p {
    padding: 8.25px 0;
    height: 22px;
  }

  .problem-btn p {
    font-size: 18px;
    line-height: 1em;
  }

  .problem-btn span {
    font-size: 12px;
  }

  .problem-btn.link::after {
    width: 6px;
    height: 6px;
    right: 18px;
  }
}

/* ◯◯でお悩みの方へ
		---------------------------------------------- */
.problem-sect .table-2col tbody th {
  background-color: #ded5be;
}

.problem-sect .problem-img-area {
  text-align: center;
}

.problem-sect .problem-img-area img {
  max-width: 480px;
}

.problem-sect .side-btn-area {
  margin: 20px 24px 0;
}

@media screen and (max-width: 768px) {
  .point .bg-yel {
    margin: 10px 0 0;
    padding: 10px 6px;
  }

  .problem-sect .side-btn-area {
    margin-top: 10px;
  }
}

/* イチオシメニュー
		---------------------------------------------- */
.menu-item {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  align-items: center;
  gap: 16px;
}

.row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sp {
  display: none;
}

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

  .pc {
    display: none;
  }

  .sp img {
    margin: 8px 0;
  }
}

/* その他おすすめメニュー
		---------------------------------------------- */
.problem .listWrap {
  max-width: 1332px;
  margin: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 26px;
  grid-row-gap: 26px;
}

.problem .menuImg {
  position: relative;
  z-index: 5;
}

.problem .menuImg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96.875%;
  height: 94.791667%;
  border: 1.2px solid rgba(255, 255, 255, 0.5);
  z-index: 6;
}

.problem .menu-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.problem .menu-title .small {
  font-size: 20px;
}

.problem .menu-text {
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.4em;
}

@media screen and (max-width: 768px) {
  .problem .listWrap {
    margin: 20px 0;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 22px;
    grid-column-gap: 8px;
  }

  .problem .menu-title {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.2em;
  }

  .problem .menu-text {
    font-size: 12px;
  }
}

/* QA
		---------------------------------------------- */
.qa-box {
  margin: 30px auto;
  padding: 0 24px;
}

.qa-box .qa {
  background-color: var(--white);
  padding: 10px 20px;
}

.qa-box .qa + .qa {
  margin-top: 40px;
}

.qa-box .qa dt,
.qa-box .qa dd {
  display: flex;
  align-items: baseline;
  margin: 30px 0;
}

.qa-box .qa dt p {
  width: 100%;
  padding-left: 15px;
  font-size: 20px;
  line-height: 1.4em;
}

.qa-box .qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
  font-size: 18px;
  line-height: 1.6em;
}

.qa-box .qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brown);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  font-size: 18px;
}

.qa-box .qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--redbrown);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .qa-box .qa {
    background-color: var(--white);
    padding: 8px 10px;
  }
  .qa-box .qa + .qa {
    margin-top: 20px;
  }
  .qa-box .qa dt,
  .qa-box .qa dd {
    margin: 10px 0;
  }
  .qa-box .qa dt p {
    padding-left: 10px;
    font-size: 15px;
    line-height: 1.4em;
  }
  .qa-box {
    padding: 0;
  }
  .qa-box .qa dd p {
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.4em;
  }

  .qa-box .qa dt::before {
    width: 35px;
    height: 30px;
    font-size: 16px;
  }

  .qa-box .qa dd::before {
    width: 35px;
    height: 30px;
    font-size: 1=6px;
  }
}
