@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=M+PLUS+Rounded+1c&family=Poppins:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --text-color: #005b43;
  --main-color: #1ca867;
  --pink: #d74e71;
  --orange: #ef8615;
  --bk: #000;
  --wh: #fff;
}

@font-face {
  font-family: "DIN2014";
  src: url("../fonts/din-2014.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

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

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

.under499 {
  display: none !important;
}
@media screen and (max-width: 499px) {
  .under499 {
    display: block !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* -------------------------
 * アコーディオン
 * ------------------------- */
.accordion__item {
  display: grid;
  grid-template-rows: -webkit-min-content 0fr;
  grid-template-rows: min-content 0fr;
  -webkit-transition: grid-template-rows 300ms ease;
  transition: grid-template-rows 300ms ease;
  transition: grid-template-rows 300ms ease, -ms-grid-rows 300ms ease;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.accordion__item.open {
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.accordion__item.open .accordion__summary {
  background: var(--main-color);
  color: #fff;
}
.accordion__item.open .accordion__mark--q {
  background: #fff;
  color: var(--main-color);
}
.accordion__item.open .open-close-btn::before {
  content: "";
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
}
.accordion__item.open .open-close-btn::before, .accordion__item.open .open-close-btn::after {
  background: #fff !important;
}

.accordion__item .accordion__detail {
  overflow: hidden;
}

.accordion__item + .accordion__item {
  margin-top: 2rem;
}

.accordion__mark {
  font-size: 3.2rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 6rem;
  text-align: center;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 834px) {
  .accordion__mark {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

.accordion__summary {
  display: grid;
  grid-template-columns: 1fr 1em;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  font-weight: 500;
  padding: 2rem 3rem;
  background: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 834px) {
  .accordion__summary {
    padding: 2rem;
  }
}

.accordion__summary-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 834px) {
  .accordion__summary-inner {
    gap: 1.2rem;
  }
}

.accordion__summary-txt {
  margin-top: 1.2rem;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .accordion__summary-txt {
    font-size: 1.8rem;
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 640px) {
  .accordion__summary-txt {
    font-size: 1.8rem;
  }
}

.accordion__mark--q {
  background: var(--main-color);
  color: #fff600;
  font-weight: 500;
}

.accordion__detail {
  background: #fff;
}

.accordion__detail-inner {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 834px) {
  .accordion__detail-inner {
    padding: 2rem;
    gap: 1.2rem;
  }
}

.accordion__detail-txt {
  margin-top: 1.6rem;
}
@media screen and (max-width: 834px) {
  .accordion__detail-txt {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

.accordion__mark--a {
  background: #fff600;
  color: var(--main-color);
}

.open-close-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: grid;
  position: relative;
  margin-top: 1.6rem;
}
@media screen and (max-width: 834px) {
  .open-close-btn {
    width: 22px;
    height: 22px;
    margin-top: 0.8rem;
  }
}
.open-close-btn::before, .open-close-btn::after {
  content: "";
  position: absolute;
  background: #005b43;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.open-close-btn::after {
  width: 22px;
  height: 3px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 834px) {
  .open-close-btn::after {
    height: 2px;
    width: 16px;
  }
}
.open-close-btn::before {
  width: 3px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 834px) {
  .open-close-btn::before {
    width: 2px;
    height: 16px;
  }
}/*# sourceMappingURL=faq.css.map */