@charset "UTF-8";
:root {
  --f-stack: "Stack Sans Text", sans-serif;
  --f-zen: "Zen Kaku Gothic New", sans-serif;
}

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

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

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-ib {
    display: inline-block !important;
  }
}

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

.sp-f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-f {
    display: flex !important;
  }
}

.pagination {
  margin-top: max(4rem, 5.3333333333vw);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: max(2rem, 2vw);
}
@media screen and (max-width: 768px) {
  .pagination {
    justify-content: center;
  }
}
.pagination a {
  font-family: var(--f-stack);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: max(1.4rem, 1.0666666667vw);
  color: #737373;
  transition: opacity 0.3s;
  position: relative;
}
.pagination a.first {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-right: max(2rem, 2vw);
}
.pagination a.first::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 8px;
  background-image: repeating-linear-gradient(to right, #737373 0, #737373 2px, transparent 2px, transparent 3px);
}
.pagination a.last {
  display: flex;
  align-items: center;
  padding-left: max(2rem, 2vw);
}
.pagination a.last::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 8px;
  background-image: repeating-linear-gradient(to right, #737373 0, #737373 2px, transparent 2px, transparent 3px);
}
.pagination a.current {
  pointer-events: none;
  color: #000;
  position: relative;
}
.pagination a.current::after {
  content: "";
  height: 2px;
  width: max(1rem, 0.6666666667vw);
  background: #000;
  position: absolute;
  bottom: min(-1rem, -0.9333333333vw);
  left: 50%;
  translate: -50% 0;
}

.single {
  margin-top: max(2rem, 1.3333333333vw);
  position: relative;
  padding-bottom: 14vw;
}
.single__top-bar {
  height: max(0.4rem, 0.4vw);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6.6666666667vw;
  gap: max(2rem, 1.6vw);
}
.single__top-bar::before {
  content: "";
  height: auto;
  width: max(0.4rem, 0.4vw);
  aspect-ratio: 1;
  background: #000;
  border-radius: 9999px;
  display: block;
}
.single__top-bar::after {
  content: "";
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #35ab84, #6bb247, #fbdd00);
  border-radius: 9999px;
  display: block;
}
.single__inner {
  width: 86.6666666667vw;
  margin: 0 auto;
}
.single__content {
  width: 73.3333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .single__content {
    width: 100%;
  }
}
.single__content-top {
  display: flex;
  align-items: center;
  gap: max(1.5rem, 1.2vw);
  margin-bottom: max(1.5rem, 2.6666666667vw);
}
.single__content-date {
  font-family: var(--f-stack);
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: max(1.2rem, 0.8666666667vw);
}
.single__content-date::before, .single__content-date::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__content-date::before {
  margin-block-end: calc((1 - 1) * 0.5em);
}
.single__content-date::after {
  margin-block-start: calc((1 - 1) * 0.5em);
}
.single__content-category {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #fbdd00;
  height: max(2rem, 1.3333333333vw);
  font-weight: 700;
  width: max(10rem, 6.8vw);
  line-height: 1;
  letter-spacing: 0em;
  font-size: max(1.2rem, 0.8vw);
}
.single__content-category::before, .single__content-category::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__content-category::before {
  margin-block-end: calc((1 - 1) * 0.5em);
}
.single__content-category::after {
  margin-block-start: calc((1 - 1) * 0.5em);
}
.single__content-category--seminar {
  color: #fff;
  background: #35ab84;
}
.single__content-title {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: max(2rem, 3.2vw);
  font-weight: 700;
  padding-bottom: max(1.5rem, 3.3333333333vw);
  margin-bottom: max(3rem, 6.6666666667vw);
  border-bottom: solid 1px #bfbfbf;
}
.single__content-title::before, .single__content-title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__content-title::before {
  margin-block-end: calc((1 - 1.5) * 0.5em);
}
.single__content-title::after {
  margin-block-start: calc((1 - 1.5) * 0.5em);
}
.single__back {
  margin-top: max(6rem, 8vw);
  padding-top: 3.3333333333vw;
  border-top: solid 1px #bfbfbf;
}
.single__editor {
  width: 53.3333333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .single__editor {
    width: 100%;
  }
}
.single__editor .s-top {
  display: flex;
  justify-content: center;
  gap: 2.6666666667vw;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .single__editor .s-top {
    flex-direction: column;
    gap: 2rem;
  }
}
.single__editor .s-top img {
  margin: 0;
  width: 47.5%;
}
@media screen and (max-width: 640px) {
  .single__editor .s-top img {
    width: 100%;
  }
}
.single__editor .s-top p {
  margin: 0;
  width: 47.5%;
}
@media screen and (max-width: 640px) {
  .single__editor .s-top p {
    width: 100%;
  }
}
.single__editor p {
  margin-block: max(2rem, 3.3333333333vw);
  line-height: 2;
  letter-spacing: 0em;
  font-size: max(1.4rem, 1.0666666667vw);
}
.single__editor p::before, .single__editor p::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor p::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.single__editor p::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
.single__editor p.mb-minus {
  margin-bottom: min(-3rem, -3.3333333333vw);
}
.single__editor p.center {
  text-align: center;
}
.single__editor p.right {
  text-align: right;
}
.single__editor span {
  display: block;
  color: #737373;
}
.single__editor span:not(:is(.scroll-hint-icon)) {
  line-height: 1.5;
  letter-spacing: 0em;
  font-size: max(1.2rem, 0.9333333333vw);
}
.single__editor span:not(:is(.scroll-hint-icon))::before, .single__editor span:not(:is(.scroll-hint-icon))::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor span:not(:is(.scroll-hint-icon))::before {
  margin-block-end: calc((1 - 1.5) * 0.5em);
}
.single__editor span:not(:is(.scroll-hint-icon))::after {
  margin-block-start: calc((1 - 1.5) * 0.5em);
}
.single__editor span a {
  line-height: 2;
  letter-spacing: 0em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: max(1.2rem, 0.9333333333vw);
}
.single__editor h2 {
  margin-top: max(4rem, 5.3333333333vw);
  margin-bottom: min(-0.5rem, -0.6666666667vw);
  padding: max(1.5rem, 1.3333333333vw) max(1.5rem, 2vw);
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-size: max(1.8rem, 1.6vw);
  font-weight: bold;
  background: #ededed;
}
.single__editor h2::before, .single__editor h2::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor h2::before {
  margin-block-end: calc((1 - 1.3333333333) * 0.5em);
}
.single__editor h2::after {
  margin-block-start: calc((1 - 1.3333333333) * 0.5em);
}
.single__editor h3 {
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-size: max(1.6rem, 1.6vw);
  font-weight: 700;
  padding-left: max(1.5rem, 1.3333333333vw);
  position: relative;
  padding-block: max(0.4rem, 0.2666666667vw);
  margin-top: max(4rem, 5.3333333333vw);
  margin-bottom: min(-0.5rem, -0.6666666667vw);
}
.single__editor h3::before, .single__editor h3::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor h3::before {
  margin-block-end: calc((1 - 1.3333333333) * 0.5em);
}
.single__editor h3::after {
  margin-block-start: calc((1 - 1.3333333333) * 0.5em);
}
.single__editor h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #35ab84, #6bb247, #fbdd00);
}
.single__editor img {
  display: block;
  width: 100%;
  margin-block: max(4rem, 5.3333333333vw);
}
.single__editor .col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(2rem, 2.6666666667vw);
  margin-block: max(4rem, 5.3333333333vw);
}
@media screen and (max-width: 768px) {
  .single__editor .col2 {
    grid-template-columns: 1fr;
  }
}
.single__editor .col2 img {
  margin: 0;
}
.single__editor .col2 p {
  margin: 0;
}
.single__editor .links {
  display: flex;
  flex-direction: column;
  gap: max(1rem, 1vw);
  margin-block: max(4rem, 5.3333333333vw);
}
.single__editor .buttons {
  display: flex;
  flex-flow: row wrap;
  gap: max(1rem, 1.3333333333vw) max(1.5rem, 2vw);
  margin-block: max(4rem, 5.3333333333vw);
}
.single__editor .border-wrap {
  width: fit-content;
  padding: max(2rem, 2.6666666667vw);
  border: solid 1px #000;
}
.single__editor .border-wrap p {
  margin: 0;
}
.single__editor a {
  width: fit-content;
  word-break: break-all;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: max(1.4rem, 1.0666666667vw);
  position: relative;
}
@media (hover) {
  .single__editor a:hover::before {
    scale: 0 1;
  }
}
.single__editor a::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: min(-0.3rem, -0.3333333333vw);
  left: 0;
  background: #000;
  transform-origin: right top;
  transition: scale 0.3s;
}
.single__editor a[target=_blank] {
  display: inline-flex;
  gap: max(0.6rem, 0.5333333333vw);
  align-items: center;
}
.single__editor a[target=_blank]::after {
  content: "";
  height: auto;
  width: max(1.2rem, 0.8vw);
  aspect-ratio: 1;
  background: url(/common/imgs/blank.svg) no-repeat;
  background-size: contain;
}
.single__editor a[target=_blank][href$=".pdf"] {
  display: inline-flex;
  gap: max(0.6rem, 0.5333333333vw);
  align-items: center;
}
.single__editor a[target=_blank][href$=".pdf"]::after {
  content: "";
  height: auto;
  width: max(1.3rem, 1vw);
  aspect-ratio: 15/16;
  background: url(/common/imgs/pdf.svg) no-repeat;
  background-size: contain;
}
.single__editor a[href^="tel:"] {
  font-size: max(2rem, 1.6vw);
}
.single__editor a.button {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 9999px;
  border: solid 1px #000;
  padding-inline: max(1rem, 1.3333333333vw);
  padding-block: max(1.5rem, 1.0666666667vw);
  gap: 0 !important; /*　打ち消し */
  line-height: 1.2;
  transition: color 0.3s, background 0.3s;
}
@media (hover) {
  .single__editor a.button:hover {
    color: #fff;
    background: #000;
  }
  .single__editor a.button:hover::after {
    background: #fff !important;
  }
}
.single__editor a.button::before {
  content: "";
  display: none;
}
.single__editor a.button::after {
  content: "";
  display: inline-block;
  width: max(1rem, 1.3333333333vw);
  aspect-ratio: 20/7;
  transition: background 0.3s;
  -webkit-mask-image: url(/common/imgs/arrow.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/common/imgs/arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background: #000 !important;
  margin-left: max(0.8rem, 1.0666666667vw);
}
.single__editor a.button.center {
  margin-inline: auto;
}
.single__editor a.button.left {
  margin-inline: 0 auto;
}
.single__editor a.button.right {
  margin-inline: auto 0;
}
.single__editor .js-scrollable {
  margin-block: max(4rem, 5.3333333333vw);
  overflow-y: hidden !important;
}
.single__editor .js-scrollable table {
  margin-block: 0;
}
.single__editor table {
  width: 100%;
  margin-block: max(4rem, 5.3333333333vw);
  border: solid 1px #bfbfbf;
  min-width: 530px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.single__editor table::-webkit-scrollbar {
  display: none;
}
.single__editor table caption {
  caption-side: bottom;
  margin-top: max(1.5rem, 1.3333333333vw);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: max(1.4rem, 1.0666666667vw);
}
.single__editor table caption::before, .single__editor table caption::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor table caption::before {
  margin-block-end: calc((1 - 1.5) * 0.5em);
}
.single__editor table caption::after {
  margin-block-start: calc((1 - 1.5) * 0.5em);
}
.single__editor table th,
.single__editor table td {
  vertical-align: middle;
}
.single__editor table th.w-10,
.single__editor table td.w-10 {
  width: 10%;
}
.single__editor table th.w-15,
.single__editor table td.w-15 {
  width: 15%;
}
.single__editor table th.w-20,
.single__editor table td.w-20 {
  width: 20%;
}
.single__editor table th.w-25,
.single__editor table td.w-25 {
  width: 25%;
}
.single__editor table th.w-30,
.single__editor table td.w-30 {
  width: 30%;
}
.single__editor table th.w-35,
.single__editor table td.w-35 {
  width: 35%;
}
.single__editor table th.w-40,
.single__editor table td.w-40 {
  width: 40%;
}
.single__editor table th.w-45,
.single__editor table td.w-45 {
  width: 45%;
}
.single__editor table th.w-50,
.single__editor table td.w-50 {
  width: 50%;
}
.single__editor table th.w-55,
.single__editor table td.w-55 {
  width: 55%;
}
.single__editor table th.w-60,
.single__editor table td.w-60 {
  width: 60%;
}
.single__editor table th.w-65,
.single__editor table td.w-65 {
  width: 65%;
}
.single__editor table th.w-70,
.single__editor table td.w-70 {
  width: 70%;
}
.single__editor table th.w-75,
.single__editor table td.w-75 {
  width: 75%;
}
.single__editor table th.w-80,
.single__editor table td.w-80 {
  width: 80%;
}
.single__editor table th.w-85,
.single__editor table td.w-85 {
  width: 85%;
}
.single__editor table th.w-90,
.single__editor table td.w-90 {
  width: 90%;
}
.single__editor table tr {
  border-bottom: solid 1px #bfbfbf;
}
.single__editor table tr th {
  padding: max(1.5rem, 1.6666666667vw) max(1rem, 1.3333333333vw);
  border-left: solid 1px #bfbfbf;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-size: max(1.4rem, 1.0666666667vw);
  background: #ededed;
}
.single__editor table tr th::before, .single__editor table tr th::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.single__editor table tr th::before {
  margin-block-end: calc((1 - 1.75) * 0.5em);
}
.single__editor table tr th::after {
  margin-block-start: calc((1 - 1.75) * 0.5em);
}
.single__editor table tr th.blank {
  border-left: none;
  padding-block: 0;
}
.single__editor table tr td {
  padding: max(1.5rem, 1.6666666667vw) max(1rem, 1.3333333333vw);
  border-left: solid 1px #bfbfbf;
  text-align: left;
  line-height: 2;
  letter-spacing: 0em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: max(1.4rem, 1.0666666667vw);
  /* 最後の子要素だけにアクセス */
}
.single__editor table tr td ul {
  margin-block: 0;
}
.single__editor table tr td img {
  margin: 0;
}
.single__editor table tr td > *:first-child {
  margin-top: 0;
}
.single__editor table tr td > *:last-child {
  margin-bottom: 0;
}
.single__editor table tr td > * + * {
  margin-top: max(1rem, 1vw);
}
.single__editor ol,
.single__editor ul {
  display: flex;
  flex-direction: column;
  gap: max(1.5rem, 1.3333333333vw);
  margin-block: max(4rem, 5.3333333333vw);
}
.single__editor ol li,
.single__editor ul li {
  padding-left: max(1rem, 1.3333333333vw);
  position: relative;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: max(1.4rem, 1.0666666667vw);
}
.single__editor ul > li::before {
  content: "";
  position: absolute;
  top: max(1.2rem, 0.9333333333vw);
  left: 0;
  height: auto;
  width: max(0.4rem, 0.4vw);
  aspect-ratio: 1;
  background: #000;
  border-radius: 9999px;
}
.single__editor ol li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.single__editor ol.privacy {
  margin-top: min(-1rem, -2.3333333333vw);
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .single__editor ol.privacy {
    gap: 1.5em;
  }
}
.single__editor ol.privacy li {
  line-height: 1.75;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*# sourceMappingURL=style.css.map */
