@media (min-width: 768px) {
  .u-w--calc {
    width: 72.7272727273%;
  }
}
.u-bgc--gray {
  background-color: #f7f7f7;
}

.p-section {
  padding: 60px 0;
}

.p-section__inner {
  padding: 0 20px;
}

.p-section__heading {
  line-height: 1.4;
  margin: 0 0 32px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .p-section__heading {
    margin: 0 0 60px 0;
  }
}
.p-section__title {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .p-section__title {
    font-size: 1.75rem;
  }
}
.p-section__text a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .p-section {
    padding: 120px 0;
  }
  .p-section__inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .p-section__text {
    font-size: 1rem;
  }
}
.p-content {
  border-top: solid 1px #dedede;
}

@media (min-width: 768px) {
  .p-content__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .p-content__heading {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.p-content__title {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .p-content__title {
    font-size: 1.25rem;
  }
}
.p-content__detail {
  margin: 20px 0 0 0;
}

@media (min-width: 768px) {
  .p-content__detail {
    margin: 32px 0 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .p-content__detail--mt-0 {
    margin-top: 0;
  }
}
.p-content__item {
  border-bottom: solid 1px #dedede;
  padding: 24px 0 32px;
}

@media (min-width: 768px) {
  .p-content__item {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-content__item--grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr;
  }
  .p-content__item picture {
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
.p-content__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-content__header img {
  max-width: 120px;
  margin: 0 20px 0 0;
}

@media (min-width: 768px) {
  .p-content__header img {
    max-width: 240px;
    margin: 0 40px 0 0;
  }
}
@media (min-width: 768px) {
  .p-content__header {
    display: contents;
  }
}
.p-content--fz {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .p-content--fz {
    font-size: 1.375rem;
  }
}
.p-content__text + .p-content__text {
  margin-top: 1.6em;
}

.p-content__text a:hover {
  text-decoration: none;
}

.p-content__annotation {
  margin: 16px 0 0 0;
}

.p-content__annotation-text {
  font-size: 0.75rem;
}

.p-content__text + .p-content__annotation {
  margin-top: 8px;
}

@-webkit-keyframes open {
  0% {
    height: 0;
  }
  99% {
    height: var(--h);
  }
  100% {
    height: auto;
  }
}
@keyframes open {
  0% {
    height: 0;
  }
  99% {
    height: var(--h);
  }
  100% {
    height: auto;
  }
}
@media (min-width: 768px) {
  .p-accordion {
    font-size: 1rem;
  }
}
.p-accordion__content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.p-accordion__content.is-open {
  visibility: visible;
  -webkit-animation: open 0.4s ease-out 0s forwards;
  animation: open 0.4s ease-out 0s forwards;
}

.p-accordion__content.is-open .p-accordion__button {
  visibility: hidden;
}

.p-accordion__button {
  margin: 20px auto 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

@media (min-width: 768px) {
  .p-accordion__button {
    margin: 32px 0 0 0;
  }
  .p-accordion__button:hover {
    cursor: pointer;
    text-decoration: underline;
  }
  .p-accordion__button:hover .c-icon-plus {
    background-color: #000;
  }
  .p-accordion__button:hover .c-icon-plus::before, .p-accordion__button:hover .c-icon-plus::after {
    background-color: #fff;
  }
}
.p-accordion__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.p-accordion__item-title {
  margin: 0 0 20px 0;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .p-accordion__item-title {
    font-size: 1.25rem;
  }
}
.p-accordion__item-box span {
  font-weight: bold;
}

@media (min-width: 768px) {
  .p-accordion__item-box span {
    font-size: 1.25rem;
  }
}
.p-accordion__item-box:not(:first-of-type) {
  margin: 32px 0 0 0;
}

.p-accordion__item {
  margin: 0 0 40px 0;
}

.p-accordion .list-num {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .p-accordion .list-num {
    font-size: 1rem;
  }
}
.p-accordion__how-to-text {
  margin: 16px 0 0 0;
}

@media (min-width: 768px) {
  .p-accordion__how-to-text {
    margin: 20px 0 0 0;
  }
}
.p-how-to-lists {
  padding: 0 0 0 1.5em;
  margin: 12px 0 0 0;
}

@media (min-width: 768px) {
  .p-how-to-lists {
    margin: 16px 0 0 0;
  }
}
.p-how-to-list:not(:first-of-type) {
  margin: 12px 0 0 0;
}

@media (min-width: 768px) {
  .p-how-to-list:not(:first-of-type) {
    margin: 16px 0 0 0;
  }
}
.p-how-to-list {
  list-style-type: disc;
  list-style-position: outside;
}

.p-how-to-text {
  padding-left: 1em;
  margin: 16px 0 0 0;
}

@media (min-width: 768px) {
  .p-how-to-text {
    margin: 20px 0 0 0;
  }
}
.c-icon-plus {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 100%;
  -webkit-transition: background-color 0.12s ease-out 0s;
  transition: background-color 0.12s ease-out 0s;
}

.c-icon-plus::before, .c-icon-plus::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: #000;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transition: background-color 0.12s ease-out 0s;
  transition: background-color 0.12s ease-out 0s;
}

.c-icon-plus::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.d-block {
  display: none;
}

@media (min-width: 768px) {
  .d-block {
    display: block;
  }
}
.pg-wrapper {
  line-height: 1.6;
}

.pg-wrapper a {
  word-wrap: break-word;
  text-decoration: underline;
}

.pg-wrapper h3 {
  line-height: 1.4;
}

.pg-intro {
  padding: 80px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .pg-intro {
    padding: 120px 0;
  }
}
.pg-intro__inner {
  padding: 0 20px;
}

.pg-intro__logo {
  width: 130px;
  margin: 0 auto 56px;
}

.pg-intro__logo svg {
  width: 100%;
}

@media (min-width: 768px) {
  .pg-intro__logo {
    width: 170px;
    margin: 0 auto 80px;
  }
}
.pg-intro__heading {
  margin: 0 0 32px 0;
  line-height: 1.4;
}

.pg-intro__title {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: 400;
}

.pg-intro__text {
  font-size: 0.9375rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pg-intro__text {
    font-size: 1.125rem;
  }
} /*# sourceMappingURL=index.css.map */