#archive-faq .cate-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 959px) {
  #archive-faq .cate-menu {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .cate-menu {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .cate-menu {
    gap: 4px;
  }
}

#archive-faq .cate-menu__item a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  background: #eeeeee;
  color: #999999;
  font-size: 1.4rem;
}

@media screen and (max-width: 519px) {
  #archive-faq .cate-menu__item a {
    font-size: 1.2rem;
  }
}

#archive-faq .cate-menu__item a:hover, #archive-faq .cate-menu__item a.is-active {
  background: #24477f;
  color: #ffffff;
}

#archive-faq .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px 0;
}

#archive-faq .wp-pagenavi .page,
#archive-faq .wp-pagenavi .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 32px;
  aspect-ratio: 1/1;
  margin: 0 3px;
  padding-bottom: 2px;
  background: #ffffff;
  border-radius: 50%;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 519px) {
  #archive-faq .wp-pagenavi .page,
  #archive-faq .wp-pagenavi .current {
    font-size: 1.4rem;
  }
}

#archive-faq .wp-pagenavi .page:not(.current):hover,
#archive-faq .wp-pagenavi .current:not(.current):hover {
  background: #24477f;
  color: #ffffff;
}

#archive-faq .wp-pagenavi .current {
  background: #24477f;
  color: #ffffff;
}

#archive-faq .wp-pagenavi .nextpostslink,
#archive-faq .wp-pagenavi .previouspostslink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding-bottom: 2px;
  color: #24477f;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

#archive-faq .wp-pagenavi .previouspostslink {
  margin-right: 12px;
}

#archive-faq .wp-pagenavi .previouspostslink::before {
  content: '';
  width: 24px;
  height: 8px;
  padding-top: 4px;
  background: #24477f;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#archive-faq .wp-pagenavi .previouspostslink:hover::before {
  -webkit-transform: translateX(-4px) rotateY(180deg);
  transform: translateX(-4px) rotateY(180deg);
}

#archive-faq .wp-pagenavi .nextpostslink {
  margin-left: 12px;
}

#archive-faq .wp-pagenavi .nextpostslink::after {
  content: '';
  width: 24px;
  height: 8px;
  padding-top: 4px;
  background: #24477f;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#archive-faq .wp-pagenavi .nextpostslink:hover::after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

#archive-faq .faq-list__item {
  width: 100%;
  background: #f9f9f2;
}

#archive-faq .faq-list__item:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item:not(:last-child) {
    margin-bottom: 8px;
  }
}

#archive-faq .faq-list__item dt,
#archive-faq .faq-list__item dd {
  position: relative;
}

#archive-faq .faq-list__item dt::before,
#archive-faq .faq-list__item dd::before {
  content: '';
  position: absolute;
  left: 32px;
  width: 40px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/square-path.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/square-path.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dt::before,
  #archive-faq .faq-list__item dd::before {
    left: 24px;
  }
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dt::before,
  #archive-faq .faq-list__item dd::before {
    left: 16px;
    width: 32px;
    font-size: 1.8rem;
  }
}

#archive-faq .faq-list__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
  padding: 32px 80px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dt {
    padding: 24px 72px;
  }
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dt {
    min-height: 60px;
    padding: 16px 58px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

#archive-faq .faq-list__item dt::before {
  content: "Q";
  top: 24px;
  background: #24387F;
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dt::before {
    top: 13px;
  }
}

#archive-faq .faq-list__item dt::after {
  content: '+';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  font-size: 3.2rem;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dt::after {
    right: 24px;
  }
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dt::after {
    right: 16px;
    font-size: 2.8rem;
  }
}

#archive-faq .faq-list__item dd {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px 0 80px;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd {
    padding: 0 24px 0 72px;
  }
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dd {
    padding: 0 16px 0 58px;
  }
}

#archive-faq .faq-list__item dd::before {
  top: 0;
  content: "A";
  background: #a8a138;
}

#archive-faq .faq-list__item dd .editor-styles-wrapper {
  font-size: 1.6rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item dd .editor-styles-wrapper {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

#archive-faq .faq-list__item dd .editor-styles-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

#archive-faq .faq-list__item dd .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
  padding: 0 16px;
}

#archive-faq .faq-list__item dd .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper .editor-post-title {
  margin: 0;
}

#archive-faq .faq-list__item dd .editor-styles-wrapper .wp-block-post-content {
  padding: 0 16px;
}

#archive-faq .faq-list__item dd .editor-styles-wrapper .wp-block-post-content .wp-block {
  max-width: none;
}

#archive-faq .faq-list__item dd h2 {
  position: relative;
  margin-top: 40px;
  margin-bottom: calc(8px * 4);
  padding: 12px 28px;
  background: -webkit-gradient(linear, left top, right top, from(#24477f), to(#3198b7));
  background: linear-gradient(to right, #24477f, #3198b7);
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h2 {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h2 {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h2 {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h2 {
    margin-top: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 1.8rem;
  }
}

#archive-faq .faq-list__item dd h2::before, #archive-faq .faq-list__item dd h2::after {
  content: '';
  width: 17px;
  aspect-ratio: 1/1;
}

#archive-faq .faq-list__item dd h2::before {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffffff));
  background: linear-gradient(to bottom left, transparent 50%, #ffffff 50%);
}

#archive-faq .faq-list__item dd h2::after {
  position: absolute;
  top: -1px;
  right: -1px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50%, #ffffff));
  background: linear-gradient(to top right, transparent 50%, #ffffff 50%);
}

#archive-faq .faq-list__item dd h3 {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  padding-bottom: 2px;
  margin-bottom: calc(8px * 3);
  background: -webkit-gradient(linear, left top, right top, from(#24477f), to(#3198b7));
  background: linear-gradient(to right, #24477f, #3198b7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h3 {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h3 {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h3 {
    margin-top: 36px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h3 {
    margin-top: 24px;
    font-size: 1.8rem;
  }
}

#archive-faq .faq-list__item dd h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#24477f), to(#3198b7));
  background: linear-gradient(to right, #24477f, #3198b7);
}

#archive-faq .faq-list__item dd h4 {
  margin-top: 32px;
  margin-bottom: calc(8px * 3);
  padding-left: 6px;
  border-left: solid 4px #eeeeee;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h4 {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h4 {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd h4 {
    margin-top: 36px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd h4 {
    font-size: 1.6rem;
  }
}

#archive-faq .faq-list__item dd .has-blk-color {
  color: #333333;
}

#archive-faq .faq-list__item dd .has-wht-color {
  color: #ffffff;
}

#archive-faq .faq-list__item dd .has-red-color {
  color: #EA4B2E;
}

#archive-faq .faq-list__item dd .has-main-color {
  color: #24477f;
}

#archive-faq .faq-list__item dd .has-sub-color {
  color: #3198b7;
}

#archive-faq .faq-list__item dd .has-blk-background-color {
  background-color: #333333;
}

#archive-faq .faq-list__item dd .has-wht-background-color {
  background-color: #ffffff;
}

#archive-faq .faq-list__item dd .has-red-background-color {
  background-color: #EA4B2E;
}

#archive-faq .faq-list__item dd .has-main-background-color {
  background-color: #24477f;
}

#archive-faq .faq-list__item dd .has-sub-background-color {
  background-color: #3198b7;
}

#archive-faq .faq-list__item dd p {
  margin: 0 0 32px;
}

#archive-faq .faq-list__item dd p strong {
  font-weight: bold;
}

#archive-faq .faq-list__item dd p a {
  text-decoration: underline;
  color: #333333;
}

#archive-faq .faq-list__item dd p a:hover {
  text-decoration: none;
}

#archive-faq .faq-list__item dd ul {
  margin: 0 0 32px;
  list-style: none;
}

#archive-faq .faq-list__item dd ul li {
  position: relative;
  padding-left: 18px;
}

#archive-faq .faq-list__item dd ul li:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

#archive-faq .faq-list__item dd ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  aspect-ratio: 1/1;
  background: #24477f;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/common/list-mark.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/common/list-mark.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#archive-faq .faq-list__item dd ol {
  margin: 0 0 32px;
  list-style: auto;
  list-style-position: inside;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

#archive-faq .faq-list__item dd ol.wp-block {
  padding: 0 0 0 20px;
}

#archive-faq .faq-list__item dd ol li {
  margin-left: 1.3em;
  text-indent: -1.3em;
}

#archive-faq .faq-list__item dd ol li::marker {
  color: #24477f;
}

#archive-faq .faq-list__item dd ol li div {
  display: inline;
}

#archive-faq .faq-list__item dd .wp-block-quote {
  margin: 0 0 32px;
  padding: 16px;
  background: #eeeeee;
}

#archive-faq .faq-list__item dd .wp-block-quote p {
  margin: 0 0 4px;
}

#archive-faq .faq-list__item dd .wp-block-quote cite a {
  text-decoration: underline;
  font-size: 1.4rem;
  color: #999999;
}

#archive-faq .faq-list__item dd .wp-block-quote cite a:hover {
  text-decoration: none;
}

#archive-faq .faq-list__item dd .wp-block-image {
  margin: 0 0 32px;
}

#archive-faq .faq-list__item dd .wp-block-image img {
  width: auto;
}

#archive-faq .faq-list__item dd .wp-block-media-text {
  margin: 0 0 32px;
}

#archive-faq .faq-list__item dd .wp-block-column .wp-block-image {
  margin: 0;
}

#archive-faq .faq-list__item dd .wp-block-column .wp-block-image img {
  width: 100%;
}

#archive-faq .faq-list__item dd .wp-block-file {
  margin: 0 0 32px;
}

#archive-faq .faq-list__item dd .wp-block-file a {
  font-size: 1.6rem;
  color: #24477f;
  text-decoration: underline;
}

#archive-faq .faq-list__item dd .wp-block-file a:hover {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd .wp-block-file a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd .wp-block-file a {
    font-size: 1.2rem;
  }
}

#archive-faq .faq-list__item dd .wp-block-file .wp-block-file__button {
  background: #24477f;
  display: inline-block;
  padding: 4px 8px 2px 10px;
  text-decoration: none;
  color: #ffffff;
}

#archive-faq .faq-list__item dd .wp-block-button .wp-block-button__link {
  padding: 8px 24px;
  background-color: #24477f;
  border: solid 1px #24477f;
  border-radius: 0;
  color: #ffffff;
}

@media screen and (max-width: 519px) {
  #archive-faq .faq-list__item dd .wp-block-button .wp-block-button__link {
    padding: 4px 16px;
  }
}

#archive-faq .faq-list__item dd .wp-block-button .wp-block-button__link:hover {
  background-color: #ffffff;
  color: #24477f;
}

#archive-faq .faq-list__item dd .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: #ffffff;
  color: #24477f;
}

#archive-faq .faq-list__item dd .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #24477f;
  color: #ffffff;
}

#archive-faq .faq-list__item dd .wp-block-separator {
  margin: 40px 0;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item dd .wp-block-separator {
    margin: 24px 0 28px;
  }
}

#archive-faq .faq-list__item.is-open dt::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

#archive-faq .faq-list__item.is-open dd {
  padding: 0 32px 32px 80px;
}

@media screen and (max-width: 959px) {
  #archive-faq .faq-list__item.is-open dd {
    padding: 0 24px 24px 72px;
  }
}

@media screen and (max-width: 767px) {
  #archive-faq .faq-list__item.is-open dd {
    padding: 0 16px 16px 58px;
  }
}

/*# sourceMappingURL=../../maps/pages/faq.css.map */
