@charset "UTF-8";
main {
  padding-top: 0;
}

.pageTtl {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pageTtl .inner {
    max-width: 1120px;
  }
}
@media screen and (min-width: 1024px) {
  .pageTtl {
    padding: 32px 0;
    margin-bottom: 90px;
  }
}

.secAbout {
  margin-bottom: 50px;
}
.secAbout__ttl {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5714;
}
.secAbout__row {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.secAbout__row .image {
  width: 100%;
}
.secAbout__row .txtWrap {
  width: 100%;
}
.secAbout__row .ttl {
  margin-bottom: 0.4em;
  font-size: 18px;
  font-weight: 500;
}
.secAbout__row p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7778;
}
@media screen and (min-width: 769px) {
  .secAbout__row {
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
  }
  .secAbout__row .image {
    width: 51.4%;
    flex-shrink: 0;
  }
  .secAbout__row .txtWrap {
    width: 48.6%;
  }
}
@media screen and (min-width: 1024px) {
  .secAbout__ttl {
    margin-bottom: 60px;
    font-size: 36px;
  }
  .secAbout__row {
    grid-gap: 64px;
  }
  .secAbout__row .ttl {
    font-size: 24px;
  }
  .secAbout__row p {
    font-size: 16px;
  }
}

.secMerit {
  margin-bottom: 45px;
}
.secMerit__ttl {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.secMerit__ttl strong {
  color: #F08300;
  font-size: 137.5%;
  font-weight: 500;
}
.secMerit__list {
  display: grid;
  grid-gap: 16px;
  counter-reset: list 0;
}
.secMerit__listItem {
  padding: 20px;
  background-color: #FCE6CC;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 15px;
}
.secMerit__listItem .img {
  width: 100%;
  max-width: 256px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
.secMerit__listItem .img img{
  border-radius: 16px;
}

.secMerit__listItem .img::before, .secMerit__listItem .img::after {
  width: 128px;
  height: 40px;
  padding: 0 28px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: absolute;
  top: -8px;
  left: -24px;
}
.secMerit__listItem .img::before {
  content: "メリット";
  background-color: #F29626;
  border-radius: 20px;
  font-size: 14px;
}
.secMerit__listItem .img::after {
  counter-increment: list 1;
  content: counter(list);
  font-size: 20px;
  font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  justify-content: flex-end;
}
.secMerit__listItem .img img {
  width: 100%;
  display: block;
}
.secMerit__listItem .txtWrap .ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4545;
  text-align: center;
}
.secMerit__listItem .txtWrap p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .secMerit__listItem {
    flex-direction: row;
    align-items: center;
  }
  .secMerit__listItem .img {
    flex-shrink: 0;
  }
  .secMerit__listItem .img::before, .secMerit__listItem .img::after {
    top: -10px;
    left: -10px;
  }
  .secMerit__listItem .txtWrap .ttl {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .secMerit {
    margin-bottom: 88px;
  }
  .secMerit__ttl {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .secMerit__listItem {
    padding: 32px;
    flex-direction: row;
    align-items: center;
    grid-gap: 32px;
  }
  .secMerit__listItem .img::before, .secMerit__listItem .img::after {
    left: -16px;
  }
  .secMerit__listItem .txtWrap .ttl {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .secMerit__listItem .txtWrap p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .secMerit__listItem {
    padding: 32px 64px;
    grid-gap: 64px;
  }
  .secMerit__listItem .img::before, .secMerit__listItem .img::after {
    left: -32px;
  }
}

.secRecommend {
  margin-bottom: 25px;
}
.secRecommend__row {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.secRecommend__row .image {
  width: 100%;
}
.secRecommend__row .txtWrap {
  width: 100%;
}
.secRecommend__row .ttl {
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: 500;
}
.secRecommend__row p {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7778;
}
@media screen and (min-width: 769px) {
  .secRecommend__row {
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
  }
  .secRecommend__row .image {
    width: 51.4%;
    flex-shrink: 0;
  }
  .secRecommend__row .txtWrap {
    width: 48.6%;
  }
}
@media screen and (min-width: 1024px) {
  .secRecommend {
    margin-bottom: 44px;
  }
  .secRecommend__row {
    grid-gap: 64px;
  }
  .secRecommend__row .ttl {
    font-size: 24px;
  }
  .secRecommend__row p {
    font-size: 16px;
  }
}

.secHowto__img {
  /*padding: 50px 10px 50px 0;*/
  margin-bottom: 23px;
  /*background-color: #fce7cc;
  background: #fce7cc url(../re_img/pharmacy/support/howto_bg.png) center bottom/100% no-repeat;
  border-radius: 16px;*/
}
.secHowto__img img {
  width: 100%;
  /*max-width: 950px;*/
  margin: 0 auto;
}
.secHowto__txt {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7143;
}
@media screen and (min-width: 1024px) {
  .secHowto__img {
    /*padding: 100px 85px 140px;*/
  }
  .secHowto__txt {
    font-size: 14px;
  }
}




/*add*/

.orange_font{
color: #F08300;
    font-size: 137.5%;
    font-weight: 500;
}