@charset "UTF-8";
.c-font {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.c-font--Oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none!important;
  }
}

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


/* 使用例
@use "global" as g;
@use "sass:map";

.hoge {
z-index: map.get(g.$layer, "header");
}

相対的な順番は、共通定義したドロワーの値から
z-index: map.get($layer, "drawer") + 1;
あるいは
z-index: map.get($layer, "drawer") - 1;
などして制御。
*/
@media screen and (min-width: 767px) {
  .c-hover {
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .c-hover:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
    transform: translateY(2px);
  }
}

body {
  padding: 0 !important;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

.prs .section {
  padding: 70px 0 90px;
}
@media screen and (max-width: 767px) {
  .prs .section {
    padding: 10.6% 0 13.3%;
  }
}

.prs .section__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .prs .section__inner {
    padding: 0 5.3vw;
  }
}

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

.prs .section__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #499100;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prs .section__title {
    font-size: 6.9vw;
    line-height: 1.38;
    white-space: nowrap;
  }
}
.prs .section__title::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 434px;
  height: 3px;
  background-image: url(../img/prs/sectionTitle_bar.svg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .prs .section__title::after {
    background-image: url(../img/prs/sp/sectionTitle_bar.svg);
    background-size: cover;
    width: 87%;
    height: 2px;
  }
}

.prs .section__text {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .prs .section__text {
    font-size: 4.8vw;
  }
}

.prs .section__text-bold {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .prs .section__text-bold {
    margin-top: 7.4%;
    display: block;
  }
}

.prs__kv {
  width: 100%;
  height: 250px;
  background-image: url(../img/prs/kv_bg.jpg);
  background-size: cover;
  position: relative;
  margin-top: min(10rem, 6.7vw);
}
@media screen and (max-width: 767px) {
  .prs__kv {
    background-image: url(../img/prs/sp/kv_bg.jpg);
    height: auto;
    padding-bottom: 137.5%;
    margin-top: 5rem;
  }
}
.prs__kv__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .prs__kv__body {
    top: 8.7%;
    transform: translate(-50%, 0%);
  }
}
.prs__kv__title {
  font-size: 4.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.08;
  margin-bottom: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .prs__kv__title {
    font-size: 10.6vw;
    text-align: center;
    padding-bottom: 4.3%;
  }
}
.prs__kv__subTitle {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .prs__kv__subTitle {
    font-size: 5.86vw;
    white-space: nowrap;
    text-align: center;
  }
}

.prs__ankerArea {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .prs__ankerArea {
    padding: 9.3% 0 8%;
  }
}
.prs__ankerArea__linkWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px 0;
}
@media screen and (max-width: 767px) {
  .prs__ankerArea__linkWrap {
    gap: 5px 2%;
  }
}
.prs__ankerArea__link {
  width: 32.85%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prs__ankerArea__link {
    width: 49%;
    text-align: left;
  }
}
.prs__ankerArea__link a {
  width: 100%;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 22px;
  background-color: #82B74D;
  border-radius: 40px;
  position: relative;
  transition: 0.6s;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 900px) {
  .prs__ankerArea__link a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .prs__ankerArea__link a {
    font-size: 3.2vw;
    height: 13.3vw;
    border-radius: 10px;
    padding: 7.6%;
    justify-content: flex-start;
  }
}
.prs__ankerArea__link a::after {
  content: "";
  background-image: url(../img/prs/downArrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .prs__ankerArea__link a::after {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .prs__ankerArea__link a::after {
    background-image: url(../img/prs/sp/downArrow.svg);
    right: 5.8%;
    width: 8.2%;
    height: 0;
    padding-bottom: 4%;
  }
}
@media screen and (min-width: 768px) {
  .prs__ankerArea__link a:hover {
    opacity: 0.6;
  }
}

.prs__craft {
  background-image: url(../img/prs/craft_bg.jpg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .prs__craft {
    background-image: url(../img/prs/sp/craft_bg.jpg);
  }
}
.prs__craft__textWrap {
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .prs__craft__textWrap {
    margin-bottom: 9.5%;
  }
}
.prs__craft__picture {
  position: relative;
  width: 100%;
}

@media (max-width: 900px) {
  .system__pc {
    display: none;
  }
}

@media (min-width: 900px) {
  .system__sp {
    display: none;
  }
}

.prs__system {
  background-image: url(../img/prs/system_bg.png);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .prs__system {
    background-image: url(../img/prs/sp/system_bg.png);
  }
}
.prs__system__pictureBlock {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .prs__system__pictureBlock {
    padding-top: 8.9%;
    margin-bottom: 0;
  }
}
.prs__system__picture {
  display: block;
  margin-bottom: 70px;
  max-width: 510px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1180px) {
  .prs__system__picture {
    margin-bottom: 7.5%;
  }
}
.prs__system__block {
  position: absolute;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}
@media (max-width: 1180px) {
  .prs__system__block {
    position: relative;
    max-width: none;
    margin-bottom: 4.5%;
  }
}
.prs__system__block01 {
  top: 36px;
  left: 0;
}
@media (max-width: 1180px) {
  .prs__system__block01 {
    top: 0;
  }
}
.prs__system__block02 {
  bottom: 0;
  left: 0;
}
.prs__system__block03 {
  top: 0;
  right: 0;
}
.prs__system__block04 {
  bottom: 14px;
  right: 0;
}
@media (max-width: 1180px) {
  .prs__system__block04 {
    bottom: 0;
  }
}
.prs__system__blockInner {
  padding: 22px 40px 22px 32px;
}
.prs__system__blockTitle {
  font-size: 20px;
  font-weight: 700;
  color: #499100;
  line-height: 1.5;
  margin-bottom: 12px;
}
.prs__system__blockText {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.prs__system__text {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1C4325;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prs__system__text {
    font-size: 5.3vw;
    text-align: left;
  }
}
.prs__system__text-underLine {
  background: linear-gradient(transparent 70%, #FC9F49 30%);
}

.prs__contact {
  padding: 62px 0 54px;
  background-image: url(../img/prs/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prs__contact {
    background-image: url(../img/prs/sp/contact_bg.jpg);
    padding: 34.4% 0 11.5%;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact:after {
    content: "";
    position: absolute;
    background-image: url(../img/prs/sp/contact01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 84%;
    height: 19%;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.prs__contact__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 80px 26px auto;
  max-width: 825px;
  width: 100%;
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .prs__contact__top {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__top {
    display: block;
    margin: 0 auto 2%;
  }
}
.prs__contact__picture {
  width: 263px;
  position: relative;
}
.prs__contact__picture:before {
  content: "";
  background-image: url(../img/prs/contact01.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -105px;
  left: -200px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .prs__contact__picture:before {
    left: -140px;
    width: 170px;
    height: 170px;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__picture:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__picture {
    width: 84.6%;
  }
  .prs__contact__picture img {
    margin-bottom: 10%;
  }
}
.prs__contact__telTitle {
  font-size: 1.6875rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 6px;
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .prs__contact__telTitle {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__telTitle {
    font-size: 6.4vw;
    text-align: center;
    margin-bottom: 2%;
    line-height: 1.25;
  }
}
.prs__contact__tel {
  font-size: 4.125rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .prs__contact__tel {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__tel {
    font-size: 11.7vw;
  }
}
.prs__contact__bottom {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 840px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prs__contact__bottom {
    display: block;
  }
}
.prs__contact__link {
  width: 47.6%;
  padding: 20px 0;
  text-align: center;
  border-radius: 35px;
  transition: 0.6s;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .prs__contact__link {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .prs__contact__link:first-of-type {
    margin-bottom: 3.7%;
  }
}
.prs__contact__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background-image: url(../img/prs/rightArrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .prs__contact__link:after {
    right: 13%;
    background-image: url(../img/prs/sp/rightArrow.svg);
    width: 2.9%;
    height: 0;
    padding-bottom: 5.8%;
  }
}
@media screen and (min-width: 768px) {
  .prs__contact__link:hover {
    opacity: 0.8;
  }
}
.prs__contact__link span {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .prs__contact__link span {
    font-size: 5.3vw;
  }
}
.prs__contact__link-orange {
  background-color: #F38621;
}
.prs__contact__link-green {
  background-color: #499100;
}
.prs__contact__link-green:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 96px;
  transform: translateY(-50%);
  background-image: url(../img/prs/contact_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .prs__contact__link-green:before {
    left: 19.4%;
    background-image: url(../img/prs/sp/contact_line.png);
    width: 11%;
    height: 0;
    padding-bottom: 9.6%;
  }
}

.prs__pickup__text {
  text-align: center;
}
.prs__pickup__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .prs__pickup__body {
    display: block;
  }
}
.prs__pickup__box {
  border-radius: 10px;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .prs__pickup__box {
    width: 100%;
  }
}
.prs__pickup__box01 {
  border: 3px solid #499100;
  background-color: #E4F5D2;
}
@media screen and (max-width: 767px) {
  .prs__pickup__box01 {
    margin-bottom: 4.5%;
  }
}
.prs__pickup__box02 {
  border: 3px solid #0C5E81;
  background-color: #DDDDDD;
}
.prs__pickup__boxInner {
  padding: 42px 20px 36px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__boxInner {
    padding: 8.7% 4% 5.8%;
  }
}
.prs__pickup__titleWrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 8%;
}
@media screen and (max-width: 767px) {
  .prs__pickup__titleWrap {
    margin-bottom: 9.5%;
  }
}
.prs__pickup__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__title {
    margin: 0;
    font-size: 5.3vw;
    text-align: left;
    line-height: 1.5;
  }
}
.prs__pickup__icon {
  margin: 0 auto 30px;
  max-width: 92px;
  display: block;
}
@media screen and (max-width: 767px) {
  .prs__pickup__icon {
    width: 19%;
    height: 19%;
    margin: 0 3.5% 0 0;
  }
}
.prs__pickup__flexWrap {
  display: flex;
  justify-content: space-between;
}
.prs__pickup__flexBody {
  width: 48%;
}
.prs__pickup__imgWrap img {
  border-radius: 6px;
  margin-bottom: 10px;
}
.prs__pickup__imgTitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prs__pickup__imgTitle {
    font-size: 4.26vw;
    text-align: left;
  }
}
.prs__pickup__textWrap {
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__textWrap {
    padding: 0;
  }
}
.prs__pickup__bulletText {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 16px;
  text-indent: -16px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bulletText {
    font-size: 3.73vw;
    padding-left: 3.73vw;
    text-indent: -3.73vw;
  }
}
.prs__pickup__bottomBox {
  background-color: #FFF;
  margin: 20px auto 12px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bottomBox {
    margin: 12px 0 0 0;
  }
}
.prs__pickup__bottomBoxInner {
  padding: 12px 35px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bottomBoxInner {
    padding: 3% 3% 6% 6%;
  }
}
.prs__pickup__bottomText {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bottomText {
    font-size: 4.26vw;
  }
}
.prs__pickup__bottomMessage {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bottomMessage {
    font-size: 4.26vw;
    padding-left: 7.6%;
  }
}
.prs__pickup__bottomMessage:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/prs/pickup_cross-small.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 11px;
}
@media screen and (max-width: 767px) {
  .prs__pickup__bottomMessage:before {
    top: 1%;
    transform: translateY(50%);
    width: 4.26vw;
    height: 4vw;
  }
}

.prs__service {
  background-image: url(../img/prs/service_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .prs__service {
    background-image: url(../img/prs/sp/service_bg.jpg);
  }
}
.prs__service .section__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prs__service .section__text {
    text-align: left;
  }
}

.prs__check {
  background-color: #F2FCE8;
}
.prs__check__text {
  text-align: center;
}
.prs__check__body {
  position: relative;
  background-color: #fff;
  padding: 32px 0 25px;
}
@media screen and (max-width: 767px) {
  .prs__check__body {
    padding: 8.9% 0;
  }
}
.prs__check__bodyInner {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .prs__check__bodyInner {
    padding: 0 2% 0 5%;
  }
}
.prs__check__arrowWrap {
  position: absolute;
  max-width: 50px;
  left: 47px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prs__check__arrowWrap {
    max-width: none;
    width: 10%;
    left: 6%;
  }
}
.prs__check__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 22px;
  padding-left: 90px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .prs__check__item {
    display: block;
    padding-bottom: 4.7%;
    padding-left: 20%;
  }
}
.prs__check__item.prs__check__item-border {
  border-bottom: 1px solid #000;
}
.prs__check__item:last-of-type {
  padding-top: 22px;
}
@media screen and (max-width: 767px) {
  .prs__check__item:last-of-type {
    padding-top: 6.5%;
  }
}
.prs__check__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  padding: 5px 5px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .prs__check__label {
    font-size: 4.26vw;
    margin-bottom: 3%;
    width: 45.8%;
  }
}
.prs__check__label.label-red {
  background-color: #E80416;
}
.prs__check__label.label-orange {
  background-color: #F38621;
}
.prs__check__label.label-pink {
  background-color: #D738BD;
}
.prs__check__label.label-blue {
  background-color: #3F4CC0;
}
.prs__check__label.label-green {
  background-color: #79A335;
}
.prs__check__label.label-gray {
  background-color: #95928C;
}
.prs__check__itemText {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  line-height: 1.375;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .prs__check__itemText {
    font-size: 4.26vw;
    margin-left: 0;
  }
}
.prs__check__itemText-bold {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .prs__check__labelWrap {
    display: flex;
    align-items: center;
  }
}
.prs__check__note {
  font-size: 16px;
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .prs__check__note {
    font-size: 4.26vw;
    margin-left: 6%;
  }
}
.prs__check__bgImg {
  position: absolute;
  width: 33%;
  top: 30px;
  right: 34px;
}
@media screen and (max-width: 767px) {
  .prs__check__bgImg {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 74%;
    top: auto;
    right: auto;
    margin-top: 6%;
  }
}

.prs__qa {
  background-color: #F2F2F2;
}
.prs__qa__item {
  margin-bottom: 20px;
  cursor: pointer;
}
.prs__qa__itemHeader {
  background-color: #FFF;
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prs__qa__itemHeader {
    padding: 4% 13% 4% 5.8%;
  }
}
.prs__qa__itemHeader::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 11px;
  background-image: url(../img/prs/downArrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .prs__qa__itemHeader::after {
    background-image: url(../img/prs/sp/downArrow_green.svg);
  }
}
.prs__qa__qmark {
  font-size: 30px;
  font-weight: bold;
  color: #499100;
  margin-right: 36px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .prs__qa__qmark {
    font-size: 7.46vw;
    margin-right: 5%;
  }
}
.prs__qa__itemTitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .prs__qa__itemTitle {
    font-size: 4.26vw;
  }
}
.prs__qa__itemAnswerInner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 35px;
}
@media screen and (max-width: 767px) {
  .prs__qa__itemAnswerInner {
    padding: 4% 3.8% 4% 5.8%;
  }
}
.prs__qa__amark {
  font-size: 30px;
  font-weight: bold;
  color: #C0C812;
  margin-right: 36px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .prs__qa__amark {
    font-size: 7.46vw;
  }
}
.prs__qa__itemText {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .prs__qa__itemText {
    font-size: 4.26vw;
  }
}
@media screen and (min-width: 768px) {
  .prs__qa__itemLink:hover {
    text-decoration: underline;
  }
}

.prs__qa__item.open .prs__qa__itemHeader::after {
  background-image: url(../img/prs/upArrow_green.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .prs__qa__item.open .prs__qa__itemHeader::after {
    background-image: url(../img/prs/sp/upArrow_green.svg);
    background-size: contain;
  }
}

/*# sourceMappingURL=prs.css.map */

.p-achieve {
  width: 94%;
  max-width: 990px;
  margin: 0 auto;
  padding: 80px 0 50px;
}
@media screen and (max-width: 767px) {
  .p-achieve {
    width: 90%;
    padding: 40px 0 3vw;
  }
}
.p-achieve__mds {
  margin: 0 0 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-achieve__mds {
    margin-bottom: 10px;
  }
}
.p-achieve__mds--en {
  margin: 0 0 7px;
  font-size: 6.4rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-achieve__mds--en {
    margin-bottom: 3px;
    font-size: 3.4rem;
  }
}
.p-achieve__mds--ja {
  color: #BB140D;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-achieve__mds--ja {
    font-size: 1.8rem;
  }
}
.p-achieve__box {
  padding: 22px 20px;
  text-align: center;
  background-color: #fff;
  border: 3px solid #D6D6D6;
  border-radius: 6px;
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-achieve__box {
    padding: 3.5vw 0;
  }
}
.p-achieve__box img {
  width: 90%;
  max-width: 722px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-achieve__box img {
    width: 96%;
  }
}
