@charset "UTF-8";

/* about
----------------------------------- */

.about__wrap {
  display: flex;
  gap: 60px;
}

.about__img {
  width: 48%;
}

.about__text {
  flex: 1;
}

.about__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6;
}

.about__lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  margin-top: 120px;
}

.about__support-img {
  margin: 70px auto 0;
  width: min(100%, 900px);
}

.about-support {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}

.about-support__items {
  position: relative;
  width: 30%;
  padding: 60px 30px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.about-support__number {
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #fff;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color-orange);
  border-radius: 50%;
}

.about-support__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent-color-orange);
}

.about-support__text {
  font-size: 1.6rem;
  margin-top: 20px;
}

.interview__items {
  margin-top: 40px;
  padding: 20px 40px 30px;
  background-color: #fff1e9;
  border-radius: 20px;
}

.interview__items .wrap {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.interview__text {
  flex: 1;
  font-size: 1.6rem;
}


/* guide
----------------------------------- */

.merit__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.merit__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  padding: 25px 30px;
  border-radius: 10px;
  background-color: rgba(255, 211, 182, 0.4);
  box-sizing: border-box;
}

.merit__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color-orange);
}

.merit__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 10px;
}

.merit-box {
  padding-top: 80px;
}

.merit-box__body {
  position: relative;
  padding: 60px 40px 45px;
  background-color: #fff;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  border-radius: 10px;
}

.merit-box__title {
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  padding: 10px 25px;
  background-color: var(--accent-color-orange);
}

.merit-box__title::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  width: 20px;
  height: 13px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--accent-color-orange);
}

.merit-box__text {
  font-size: 1.8rem;
}

.merit-box__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.merit-box__list li {
  font-size: 1.8rem;
  padding-left: 1em;
  text-indent: -1em;
}

.merit-box__list li::before {
  content: '・';
}

.stepA__contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px 0;
  margin-top: 60px;
}

.stepA__items {
  display: flex;
  width: 47.5%;
}

.stepA__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  color: #fff;
  width: 80px;
  height: 80px;
  margin-right: 5%;
  background-color: var(--accent-color-green);
  border-radius: 50%;
}

.stepA__number span:nth-of-type(1) {
  font-size: 1.4rem;
  margin-top: 4px;
}

.stepA__number span:nth-of-type(2) {
  font-size: 4rem;
}

.stepA__desc {
  flex: 1;
}

.stepA__text {
  font-size: 1.8rem;
  margin-top: 15px;
}

.stepB__contents {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

.stepB__contents::before {
  position: absolute;
  content: '';
  top: 0;
  left: 39px;
  width: 2px;
  height: calc(100% + 2em);
  background-color: #ccc;
}

.stepB__head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  width: fit-content;
  padding: 5px 25px;
  background-color: var(--accent-color-orange);
}

.stepB__head::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  width: 20px;
  height: 13px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--accent-color-orange);
}

.stepB__number {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
}

.stepB__number span {
  font-size: 0.6em;
  margin: 0.2em 5px 0 0;
}

.stepB__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 25px;
}

.stepB__text {
  font-size: 1.6rem;
  margin: 20px 0 0 70px;
}


/* list
----------------------------------- */

.article-list {
  /* display: grid; */
  display: flex;
  flex-wrap: wrap;
  gap: 80px 2%;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  margin-top: 88px;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 120px;
}

.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .current {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
}

.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last {
  color: var(--text-color);
  border: 1px solid #333;
  background-color: #fff;
  transition: all .2s;
}

.wp-pagenavi .page:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
  color: #fff;
  background-color: #ADADAD;
  border-color: #ADADAD;
}

.wp-pagenavi .current {
  color: #fff;
  background-color: #ADADAD;
}

.wp-pagenavi .extend {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: -8px;
}

.previouspostslink,
.nextpostslink {
  width: 30px;
  height: 40px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 9px 15px;
}

.previouspostslink {
  background-image: url(../img/common/page-prev.svg);
}

.nextpostslink {
  background-image: url(../img/common/page-next.svg);
}


/* movie
----------------------------------- */

.movie .article-list {
  margin-top: 10px;
}


/* article
----------------------------------- */

.article__inner {
  max-width: 1000px;
  margin: auto;
}

.article__thumbnail {
  width: 100%;
}

.article-contents .article__thumbnail img {
  max-width: unset;
}

.app-closed {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  background-color: #e82828;
  width: fit-content;
  margin: 30px auto 0;
  padding: 0 0.5em;
}

.app-note {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  background-color: #e82828;
  width: fit-content;
  padding: 0 0.5em 0.1em;
}

.article__main-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 30px;
}

.article__tags li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #8f8f8f;
  transition: opacity .2s;
}

.article__tags li a:hover {
  opacity: 0.7;
}

.place-tag-wrap {
  display: flex;
  gap: 2%;
}

.place-tag {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 16px;
  background-color: #008278;
  margin-bottom: 30px;
  padding: 8px 20px;
}

.article__date {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.article__date dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  padding: 2px 15px;
}

.article__date dt.green {
  background-color: var(--accent-color-green);
}

.article__date dt.orange {
  background-color: var(--accent-color-orange);
}

.article__date dd {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 20px;
}

.article__table {
  margin-top: 35px;
}

.article-table__items {
  display: flex;
}

.article-table__items dt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent-color-green);
  width: 150px;
  padding: 20px 0;
  border-bottom: 2px solid var(--accent-color-green);
}

.article-table__items dd {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 20px 40px;
  border-bottom: 2px solid #ccc;
}

.article-table__text {
  font-size: 1.4rem;
  margin-top: 20px;
}

.article__accent,
.article-area h6 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 40px;
}

.article__text,
.article-area p {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 40px;
}

.article-program {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-program__items {
  position: relative;
  display: flex;
  align-items: start;
  padding-left: 30px;
}

.article-program__items::before {
  position: absolute;
  content: '';
  top: 17px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.article-program__items.dots-none::before {
  display: none;
}

.article-program__items:nth-of-type(odd):before {
  background-color: var(--accent-color-orange);
}

.article-program__items:nth-of-type(even):before {
  background-color: var(--accent-color-green);
}

.article-program__time {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 6px;
  width: 43px;
}

.article-program__time span {
  font-size: 1.6rem;
  font-weight: 700;
}

.article-program__time span:nth-of-type(2):before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 12px;
  background-color: var(--text-color);
}

.article-program__desc {
  flex: 1;
  position: relative;
  margin-left: 45px;
  padding: 25px 40px 30px;
  border-radius: 20px;
}

.article-program__items:nth-of-type(odd) .article-program__desc {
  background-color: #fff1e9;
}

.article-program__items:nth-of-type(even) .article-program__desc {
  background-color: #d0f0ed;
}

.article-program__desc::before {
  position: absolute;
  content: '';
  top: 30px;
  right: 100%;
  width: 15px;
  height: 20px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.article-program__items:nth-of-type(odd) .article-program__desc::before {
  background-color: #fff1e9;
}

.article-program__items:nth-of-type(even) .article-program__desc::before {
  background-color: #d0f0ed;
}

.article-program__desc > *:first-child {
  margin-top: 0;
}

.article-program__main-title {
  font-size: 2.4rem;
  font-weight: 700;
  width: fit-content;
  padding: 0 0.5em;
  border: 2px solid var(--text-color);
}

.article-program__title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 30px;
}

.article-program__text {
  font-size: 1.6rem;
  margin-top: 5px;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.profile__items {
  display: flex;
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.3);
}

.profile__img {
  width: 26.8%;
}

.profile .profile__img img {
  border: 4px solid var(--accent-color-green);
}

.profile__desc {
  flex: 1;
  margin-left: 40px;
}

.profile__name {
  font-size: 2.1rem;
  font-weight: 700;
}

.profile__position {
  font-size: 1.8rem;
  font-weight: 500;
}

.profile__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 20px;
}

.place__text {
  font-size: 1.8rem;
  font-weight: 700;
}

.place__map {
  width: min(100%, 1000px);
  margin: 40px auto 0;
}

.place__map iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.sub-list-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0 0.4em;
}

.sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-list li {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
}

.sub-list li::before {
  content: '・';
}

.btn-report {
  margin: 40px auto 0;
}


.article-contents > *:first-child,
.wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}

.article-contents > *,
.wp-block-group__inner-container > * {
  margin-top: 40px;
}

.article-contents p {
  font-size: 1.6rem;
}

.article-contents h3 {
  position: relative;
  font-size: 2.4rem;
  margin: 70px 0 50px;
  padding: 0 0.5em 10px;
}

.article-contents h3::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccc;
}

.article-contents h3::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color-orange);
}

.article-contents .article__lead {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 120px 0 80px;
}

.article-contents .image {
  text-align: center;
}

.article-contents figure,
.article-contents img {
  max-width: 800px;
  margin-inline: auto;
}

.article-contents figcaption {
  font-size: 1.4rem;
  text-align: left;
  color: #707070;
  margin-top: 8px;
}

.data-download {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.data-download__items {
  width: 48.5%;
}

.data-download__items a {
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 20px 60px 20px 20px;
  border-radius: 10px;
  background: #fff url(../img/common/download-icon.svg) no-repeat right 20px center / 30px auto;
  box-sizing: border-box;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.3);
  transition: all .3s;
}

.data-download__items a:hover {
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(6px);
}

.data-download__img {
  max-width: 30%;
}

.data-download__text {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-color);
  transition: color .2s;
}

.data-download__items a:hover .data-download__text {
  color: var(--accent-color-orange);
}


/* application
----------------------------------- */

.modal-overlay {
  align-items: center;
  background: rgba(0,0,0,.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #fff;
  max-height: 80vh;
  max-width: 700px;
  overflow-y: auto;
  width: 80%;
}

.modal-close {
  display: block;
  background: transparent;
  border: 0;
  margin-left: auto;
  margin-right: 20px;
}

.modal-header .modal-close::before {
  content: "\2715";
  font-size: 3rem;
}

.modal-content {
  font-size: 1.6rem;
}

.modal-wrap {
  padding: 20px 20px 60px;
}

.seminar-modal__text {
  text-align: center;;
}

.modal-open {
  display: block;
}

.seminar-modal-checkbox {
  display: block;
  text-align: center;
  margin: 20px auto 0;
}

.seminar-modal-checkbox input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

.seminar-modal-checkbox input:checked + span::after {
  opacity: 1;
}

.seminar-modal-checkbox span {
  position: relative;
  padding-left: 30px;
}

.seminar-modal-checkbox span::before,
.seminar-modal-checkbox span::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
}

.seminar-modal-checkbox span::before {
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid #686868;
  background-color: #fff;
}

.seminar-modal-checkbox span::after {
  top: 1px;
  left: 7px;
  transform: rotate(50deg);
  width: 10px;
  height: 18px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  opacity: 0;
  transition: opacity .1s;
}

.seminar-modal-submit {
  display: grid;
  place-items: center;
  width: 100%;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--accent-color-orange);
  transition: background-color .1s;
}

.seminar-modal-submit.disabled {
  background-color: #ccc;
  pointer-events: none;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.box-scroll {
  margin: 20px auto 0;
  padding: 1em;
  width: 90%;
  height: 120px;
  overflow-y: auto;
  border:1px solid #ccc;
  background-color:#fff;
}
.box-scroll .subttl {padding:1em 0 0.5em; font-weight:700;}
.box-scroll .subttl:first-child {padding-top: 0;}
.clause-title {padding:1em 0 0.5em; font-size: 1.4rem; font-weight:700;}
.clause-sub {font-size: 1.2rem; font-weight:700;}
.clause-text {margin-bottom: 1em; font-size: 1.2rem;}
.clause-text:last-child {margin-bottom: 0;}


/* report interview
----------------------------------- */

.report-interview {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.report-interview__items {
  padding: 25px 40px;
  border-radius: 20px;
}

.report-interview__items:nth-of-type(odd) {
  background-color: #fff1e9;
}

.report-interview__items:nth-of-type(even) {
  background-color: #d0f0ed;
}

.report-interview__items .title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.report-interview__items:nth-of-type(odd) .title {
  color: var(--accent-color-orange);
}

.report-interview__items:nth-of-type(even) .title {
  color: var(--accent-color-green);
}

.report-interview__items .position {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.report-interview__items .name {
  font-size: 2rem;
  font-weight: 700;
}

.report-interview__items .name span {
  font-size: 0.8em;
}

.report-interview__items .wrap {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #ccc;
}

.report-interview__items .text {
  flex: 1;
  font-size: 1.6rem;
}

.report-interview__items .image {
  width: 20%;
}


/* news
----------------------------------- */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.news-list__item a {
  display: block;
  font-size: 1.8rem;
  padding: 25px 35px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.3);
  transition: all .3s;
}

.news-list__item a:hover {
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.3);
  transform: translateY(6px);
}

.news-list__item .date {
  font-weight: 700;
  color: var(--accent-color-green);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent-color-green);
}

.news-list__item .title {
  font-weight: 500;
  color: var(--text-color);
  margin-top: 12px;
}


/* icon-banner
----------------------------------- */

.inpit-icon-img,
.inpit-banner-img {
  margin-top: 20px;
  padding: 0 20px;
}

.inpit-icon-img img,
.inpit-banner-img img {
  width: min(100%, 600px);
}


/* 404
----------------------------------- */

.page404 .sub-main {
  background: none;
}

.error__content .lead {
  font-size: 2.8rem;
  font-weight: 700;
}

.error__content .text {
  font-size: 1.6rem;
  margin-top: 50px;
}



/* -------------------------------------
  responsive
------------------------------------- */

@media (width < 768px) {
  /* about
  ----------------------------------- */
  .about__wrap {
    flex-direction: column;
    gap: 30px;
  }
  .about__img {
    width: 100%;
  }
  .about__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .about__lead {
    font-size: 1.6rem;
    line-height: 1.75;
    text-align: left;
    margin-top: 50px;
  }
  .about__support-img {
    margin-top: 30px;
  }
  .about-support {
    flex-direction: column;
    gap: 55px;
    margin-top: 60px;
  }
  .about-support__items {
    width: 100%;
    padding: 45px 20px 20px;
  }
  .about-support__number {
    font-size: 3rem;
    width: 60px;
    height: 60px;
  }
  .about-support__text {
    margin-top: 15px;
  }
  .interview__items {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .interview__items .wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .interview__text {
    font-size: 1.4rem;
  }

  /* guide
  ----------------------------------- */
  .merit__contents {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .merit__items {
    width: 100%;
    padding: 15px 20px;
  }
  .merit__title {
    font-size: 1.8rem;
  }
  .merit__text {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .merit-box {
    padding-top: 50px;
  }
  .merit-box__body {
    padding: 40px 20px 20px;
  }
  .merit-box__title::before {
    left: 20px;
    width: 15px;
    height: 10px;
  }
  .merit-box__title {
    left: 15px;
    font-size: 1.8rem;
    padding: 5px 15px;
  }
  .merit-box__text,
  .merit-box__list li {
    font-size: 1.4rem;
  }
  .stepA__contents {
    margin-top: 30px;
    gap: 20px 0;
  }
  .stepA__items {
    width: 100%;
  }
  .stepA__number {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  .stepA__number span:nth-of-type(1) {
    font-size: 1rem;
  }
  .stepA__number span:nth-of-type(2) {
    font-size: 2.4rem;
  }
  .stepA__text {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .stepB__contents {
    margin-top: 30px;
    gap: 20px;
  }
  .stepB__contents::before {
    left: 27px;
  }
  .stepB__head {
    padding: 5px 15px;
  }
  .stepB__head::before {
    left: 20px;
    width: 15px;
    height: 10px;
  }
  .stepB__number {
    font-size: 1.6rem;
  }
  .stepB__title {
    font-size: 1.8rem;
    margin-left: 15px;
  }
  .stepB__text {
    font-size: 1.4rem;
    margin: 15px 0 0 45px;
  }

  /* list
  ----------------------------------- */
  .article-list {
    gap: 30px 2%;
    margin-top: 50px;
  }
  .wp-pagenavi {
    gap: 10px;
    margin-top: 40px;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .first,
  .wp-pagenavi .last,
  .wp-pagenavi .current {
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
  }
  .wp-pagenavi .extend {
    font-size: 1.4rem;
  }
  .previouspostslink,
  .nextpostslink {
    width: 20px;
  }

  /* article
  ----------------------------------- */
  .article__main-title {
    font-size: 2.4rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .app-closed {
    font-size: 1.8rem;
    margin-top: 15px;
  }
  .app-note {
    font-size: 1.6rem;
  }
  .article__tags {
    gap: 0 10px;
    margin-top: 10px;
  }
  .article__tags li a {
    font-size: 1.4rem;
  }
  .place-tag {
    font-size: 1.6rem;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
  .article__date {
    align-items: start;
    margin-top: 5px;
  }
  .article__date dt {
    font-size: 1.2rem;
    padding: 0px 6px 1px;
  }
  .article__date dd {
    font-size: 1.4rem;
    margin-left: 10px;
  }
  .article__table {
    margin-top: 10px;
  }
  .article-table__items dt {
    font-size: 1.4rem;
    width: 80px;
    padding: 8px 0;
  }
  .article-table__items dd {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
  .article-table__text {
    font-size: 1.2rem;
  }
  .article__text,
  .article-area p {
    line-height: 1.75;
    margin-top: 20px;
  }
  .article-program {
    gap: 15px;
  }
  .article-program__items {
    padding-left: 15px;
  }
  .article-program__items::before {
    width: 6px;
    height: 6px;
  }
  .article-program__time {
    gap: 10px;
  }
  .article-program__time span {
    font-size: 1.4rem;
  }
  .article-program__desc {
    margin-left: 15px;
    padding: 12px 15px 15px;
    border-radius: 10px;
  }
  .article-program__desc::before {
    top: 22px;
    width: 10px;
    height: 15px;
  }
  .article-program__main-title {
    font-size: 1.7rem;
    border-width: 1px;
  }
  .article-program__title {
    font-size: 1.6rem;
  }
  .article-program__text {
    font-size: 1.4rem;
  }
  .profile {
    gap: 20px;
  }
  .profile__items {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }
  .profile__img {
    width: 75%;
  }
  .profile__desc {
    margin: 20px 0 0;
  }
  .profile__name {
    font-size: 1.8rem;
  }
  .profile__position {
    font-size: 1.6rem;
  }
  .profile__text {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .place__text {
    font-size: 1.6rem;
  }
  .place__map {
    margin-top: 20px;
  }
  .btn-report {
    margin-top: 20px;
  }
  .article-contents > * {
    margin-top: 20px;
  }
  .article-contents .article__lead {
    font-size: 1.6rem;
    margin: 50px 0 30px;
  }
  .article-contents h3 {
    font-size: 1.8rem;
    margin: 40px 0 30px;
  }
  .article-contents h3::before {
    height: 2px;
  }
  .article-contents h3::after {
    width: 30px;
    height: 2px;
  }
  .article-contents figcaption {
    font-size: 1.2rem;
  }
  .article__accent,
  .article-area h6 {
    font-size: 1.6rem;
  }
  .article__img {
    margin-top: 30px;
  }
  .data-download {
    flex-wrap: wrap;
    gap: 10px;
  }
  .data-download__items {
    width: 100%;
  }
  .data-download__items a {
    gap: 15px;
    padding: 15px 45px 15px 15px;
    background-size: 20px auto;
    background-position: right 15px center;
  }
  .data-download__text {
    font-size: 1.4rem;
  }
  .sub-list-title {
    font-size: 1.8rem;
  }

  /* application
  ----------------------------------- */
  .modal-content {
    font-size: 1.4rem;
  }
  .modal-wrap {
    padding: 10px 10px 35px;
  }
  .seminar-modal-submit {
    font-size: 1.6rem;
    height: 60px;
  }
  .seminar-modal-checkbox span {
    padding-left: 25px;
  }
  .seminar-modal-checkbox span::before {
    width: 20px;
    height: 20px;
  }
  .seminar-modal-checkbox span::after {
    top: 2px;
    left: 6px;
    width: 7px;
    height: 14px;
  }

  /* report interview
  ----------------------------------- */
  .report-interview{
    gap: 15px;
  }
  .report-interview__items {
    border-radius: 10px;
    padding: 15px 20px 20px;
  }
  .report-interview__items .title {
    font-size: 1.8rem;
  }
  .report-interview__items .position {
    font-size: 1.2rem;
  }
  .report-interview__items .name {
    font-size: 1.6rem;
  }
  .report-interview__items .wrap {
    flex-direction: column-reverse;
    gap: 20px;
    border-top-width: 1px;
  }
  .report-interview__items .text {
    font-size: 1.4rem;
  }
  .report-interview__items .image {
    width: min(400px, 80%);
    margin: auto;
  }

  /* news
  ----------------------------------- */
  .news-list {
    gap: 20px;
  }
  .news-list__item a {
    font-size: 1.6rem;
    padding: 20px 25px;
  }

  /* 404
  ----------------------------------- */
  .error__content .lead {
    font-size: 2rem;
    margin-top: 60px;
  }
  .error__content .text {
    font-size: 1.4rem;
    margin-top: 30px;
  }
}


@media (width < 520px) {
  .article-list {
    gap: 20px;
  }
  .articles-items {
    width: 100%;
  }
}