@charset "UTF-8";

main {
    counter-reset: section;
}

.mv {
    aspect-ratio: 1280 / 209;
    width: 100%;
    display: flex;
    align-items: center;
    background: #F2F3F5;

    .l-container {
        width: 100%;
        max-width: 1280px;
        padding: 0 60px;
        margin-inline: auto;
    }
}

.c-single_block {
    padding-block: 100px 120px;
}

.single .c-mv .l-container {
  padding-inline: 50px 80px;
}

@media screen and (max-width: 768px) {
  .single .c-mv .l-container {
    padding-inline: clamp(12px, 5.333vw, 20px);
  }
}

.c-single__meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 70px;
}

.c-single__date {
  font-family: "Andika", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #00000080;
}

.c-single__category {
  font-size: 12px;
  line-height: 21px;
  color: var(--color-blue);
  padding-inline: 10px;
  height: 21px;
  background: #E4E6ED;
  border-radius: 3px;
}

.aligncenter {
  display: block;
  margin-inline: auto;

  .wp-block-image & {
    text-align: center;
  }
}

.alignright {
  float: none;
  text-align: right;
}

.wp-block-image.alignright {
  float: none !important;
  text-align: right !important;
}

.wp-block-image.aligncenter {
  text-align: center!important;
}

.c-single > *:first-child {
  margin-top: 0 !important;
}

.c-single > *:last-child {
  margin-bottom: 0 !important;
}

.c-single p {
  font-weight: 400;
  line-height: 1.8;
  margin-block: 20px;

  strong {
    font-size: 18px;
    letter-spacing: 0.03em;
    margin-block: 20px;
  }
}

.c-single a:not([class]) {
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-blue);
  text-decoration: underline;
  margin-block: 20px;

  &:hover {
    color: color-mix(in srgb, currentColor 100%, white 60%);
  }
}

.c-single :is(h2, h3, h4, h5) {
  font-weight: 700;
}

.c-single h2 {
  position: relative;
  font-size: 32px;
  margin-block: 40px 50px;
  color: var(--color-blue);

  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-blue) 0%, var(--color-blue) 70%, var(--color-yellow) 70%, var(--color-yellow) 100%);
  }
}

@media screen and (max-width: 1024px) {
  .c-single h2 {
    position: relative;
    font-size: 24px;
  }
}

.c-single h3 {
  font-size: 24px;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  margin-block: 30px 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-blue);
}

@media screen and (max-width: 1024px) {
  .c-single h3 {
    font-size: 20px;
  }
}

.c-single h4 {
  position: relative;
  font-size: 20px;
  line-height: 1;
  margin-block: 30px 40px;
  padding-left: 25px;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #2635A7 50%, #FFE300 50%);
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black-10);
  }
}

@media screen and (max-width: 1024px) {
  .c-single h4 {
    font-size: 18px;
  }
}

.c-single h5 {
  font-size: 16px;
  line-height: 1.6;
  margin-block: 30px 40px;
}

.c-single .is-layout-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .c-single .is-layout-flex {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}

.c-single .is-layout-flow > *:first-child {
  margin-top: 0 !important;
}

.c-single .is-layout-flow > *:last-child {
  margin-bottom: 0 !important;
}

.c-single ul {
  margin-block: 20px;

  li {
    font-size: 18px;
    padding-left: 10px;
    position: relative;

    &::before {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      background-color: var(--color-blue);
      position: absolute;
      top: 0.5lh;
      left: 0;
      translate: 0 -50%;
    }

    + li {
      margin-top: 10px;
    }
  }
}

@media screen and (max-width: 768px) {
  .c-single ul {
    margin-top: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .c-single ul li {
    padding-left: 15px;
    letter-spacing: 0;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .c-single ul li::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .c-single ul li + li {
    margin-top: 1rem;
  }
}

.c-single ol {
  margin-block: 20px;
  counter-reset: item;

  li {
    font-size: 18px;
    counter-increment: item;

    &::before {
      content: counter(item) ". ";
      color: var(--color-blue);
    }

    + li {
      margin-top: 10px;
    }
  }
}

@media screen and (max-width: 768px) {
  .c-single ul {
    margin-top: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .c-single ol li {
    padding-left: 10px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-single ol li::before {}
}

@media screen and (max-width: 768px) {
  .c-single ol li + li {
    margin-top: 1rem;
  }
}

.c-single figure.wp-block-image {
  display: block;
  margin-block: 40px;

  img {
    display: block;
    border-radius: 10px;
  }

  figcaption {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}

@media screen and (max-width: 768px) {
  .c-single figure.wp-block-image {
    margin-top: 4rem;
  }
}

.c-single table {
	margin-block: 40px;
	border-collapse: separate !important;
	border: 1px solid var(--color-black-10);
	border-spacing: 0;
	overflow: hidden;

	tr {
		height: 70px !important;

		+ tr td {
			border-top: 1px solid var(--color-black-10);
		}

		td:first-child {
			background-color: var(--color-gray);
			font-weight: 500;
		}

		td:not(:last-child) {
			border-right: 1px solid var(--color-black-10);
		}
	}

	td {
		vertical-align: middle;
		padding-inline: 40px;
		line-height: 1.75;

		font-weight: 400;
	}
}

@media screen and (max-width: 768px) {
  .c-single table {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .c-single table td {
    padding-inline: 0.5rem;
  }
}

.is-provider-youtube iframe {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  width: 100%!important;
  height: auto;
}

.btn-box {
  margin-bottom: 40px;

  .c-arrow-btn {
    justify-content: space-between;
    padding-inline: 20px 15px;
    min-width: 150px;
    width: auto;
  }

  .c-arrow-btn-arrow {}
}

@media only screen and (max-width: 1024px) {
  .btn-box .c-arrow-btn-arrow {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px;
    padding-left: 10px;

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 20px;
      background: #6772c2;
      transition: background 0.3s ease;
    }
  }
}

.btn-external {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  padding-inline: 20px 25px;
    gap: 10px;
    height: 46px;
    min-width: 179px;
    margin-right: 5px;
    font-size: 14px;
    border: 1px solid var(--color-blue);
    border-radius: 3px;
    color: var(--color-blue);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, border 0.15s, color 0.15s;

    &:hover {
        opacity: 1;
        background: #d0d2e9;
        color: var(--color-blue);
		border: 1px solid #d0d2e9;
    }
}
	
	.btn-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  padding-inline: 20px 25px;
    gap: 10px;
    height: 46px;
    min-width: 179px;
    margin-right: 5px;
    font-size: 14px;
    border: 1px solid var(--color-blue);
    border-radius: 3px;
    color: var(--color-blue);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, border 0.15s, color 0.15s;


}
	.btn-pdf::after {
  content: "PDF";
  display: inline-flex;
  align-items: center;
		    justify-content: center;
  width: 33px;
  height: 15px;
  background: #E5E5E5;
	    color: var(--color-blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
}


.btn-pdf:hover {
  opacity: 1;
        background: #d0d2e9;
        color: var(--color-blue);
		border: 1px solid #d0d2e9;
	}

.btn-box .c-reversearrow-btn {

	 justify-content: space-between;
    padding-inline: 15px 20px;
  min-width: 150px;
	width: auto;
}
	.btn-box .c-reversearrow-btn-arrow {

}

.img-text-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;

  .col-img {
    flex: 1;

    img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }
  }

  .col-text {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .img-text-wrap {
    flex-direction: column;
    margin-bottom: 20px;

    .col-img {
      width: 100%;
    }
    flex-direction: column-reverse;

    &.reverse-img {
      flex-direction: column;
    }
  }
}

.img-float-wrap {
  margin-bottom: 40px;

  .col-float-img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    float: right;
    margin: 0 0 30px 40px;
  }
}

@media (max-width: 768px) {
  .img-float-wrap .col-float-img {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }
}

.link-anchor-item {
  font-size: 14px;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  margin-bottom: 40px;
  display: inline-block;

  &:hover .link-anchor-iconWrap {
    background: var(--color-blue);
  }

  &:hover .link-anchor-icon {

    stroke: var(--color-white);
  }
}

.link-anchor {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 15px;
  min-width: 151px;
  width: auto;

  &:hover {
    opacity: 1;
  }
}

.link-anchor-iconWrap {
  width: 22px;
  height: 22px;
  background: var(--color-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-anchor-icon {
  width: 10px;
  height: 11px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 1.5;
}

.notes-box {
  padding: 40px;
  margin-block: 40px;
  border: 1px solid var(--color-black-10);
}

.notes-title {
  font-size: 18px!important;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 10px;
  margin-block: 0 30px!important;
  border-left: 4px solid var(--color-blue);
  color: var(--color-blue);
}

.notes-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0!important;
  padding-bottom: 0!important;
}

@media only screen and (max-width: 768px) {
  .notes-box {
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .notes-title {
    font-size: 1rem!important;
    padding-bottom: 10px!important;
  }

  .notes-text {
    font-size: 0.9375rem!important;
    padding-bottom: 0!important;
  }
}