@charset "UTF-8";

/* ===============================
pg_acc_wrap
=============================== */
.pg_acc_wrap {
  padding: 0 20px;
}
.pg_acc {
  max-width: calc(750 / 16 * 1rem);
  margin: 0 auto;
}
.pg_acc + .pg_acc {
  margin-top: 5px;
}
.pg_acc_title {
  position: relative;
  background-color: var(--color_blue_400);
  color: #fff;
}
.pg_acc_title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width:  calc(40 / 16 * 1rem);
  height: 100%;
  background-color: #cfd8e1;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.pg_acc_button {
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 50px;
  color: #fff;
  text-align: center;
  font-size: calc(16 / 16 * 1rem);
  letter-spacing: 0.05em;
  outline-offset: -2px;
}
.pg_acc_button::before,
.pg_acc_button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: calc(20 / 16 * 1rem);;
  bottom: 0;
  width: calc(13 / 16 * 1rem);;
  height: 2px;
  background-color: #fff;
  margin: auto;
}
.pg_acc_button::before {
  transform: rotate(90deg);
}
.is_open .pg_acc_button::before {
  transform: rotate(0);
}
.pg_acc_body_inner {
  padding: 28px 0 75px;
}
.pg_acc_body p {
  line-height: 1.75;
}
.pg_acc_text {
  margin-bottom: 1em;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .pg_acc_button {
    transition: background-color .15s;
  }
  .pg_acc_button:hover {
    background-color: rgb(255 255 255 / 15%);
  }
}

/* ===============================
pg_item
=============================== */
.pg_item {
  display: grid;
  grid-template-columns: 2.2fr 1.4fr 1.4fr;
  border: 1px solid var(--color_base);
}
.pg_item.__empty {
  display: block;
  min-height: 170px;
  padding: 16px 20px;
}
.pg_item + .pg_item {
  margin-top: 10px;
}
.pg_item > div {
  padding: 16px 20px;
}
.pg_item > div:not(:first-child) {
  border-left: 1px solid var(--color_base);
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_acc_body_inner {
    padding: 20px 0 50px;
  }
  .pg_item {
    display: block;
  }
  .pg_item > div:not(:first-child) {
    border-top: 1px solid var(--color_base);
    border-left: none;
  }
}