@charset "UTF-8";
/* top */
/* bg */
.bg {
  position: relative;
  overflow: hidden;
  height: 800px;
  min-width: 1260px;
  z-index: 0 !important;
}
@media screen and (max-width: 767px) {
  .bg {
    min-width: auto;
  }
}

.bg > video {
  z-index: -1 !important;
  position: fixed;
  width: 100%;
  min-width: 1260px;
}

.bg > img {
  z-index: 0 !important;
  position: fixed;
  width: 100%;
  min-width: 1260px;
}

.section-training {
  margin-top: 164px;
}
.section-training > .inner-wrap {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-bottom: 80px;
}
.section-training > .inner-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1 * (100vw - 100%));
  width: calc(100vw - 100%);
  height: 100%;
  background-color: #fff;
}
.section-training h2 {
  margin-top: -80px;
  padding-left: 0;
}
.section-training h2 .color-accent {
  color: #E4A600;
}
.section-training .training-list {
  margin-top: 100px;
}
.section-training .training-list p {
  font-size: 2.2rem;
  font-weight: 500;
  cursor: pointer;
}
.section-training .training-list p.active {
  color: #3377FD;
  background: #EAF4FD;
  background: linear-gradient(90deg, rgb(234, 244, 253) 0%, rgb(230, 236, 249) 100%);
}
.section-training .training-list p span {
  border-bottom: 1px solid #E9EBF1;
  display: block;
  padding: 0.7em 0;
  padding-left: 24px;
}
.section-training .training-list p:first-child span {
  border-top: 1px solid #E9EBF1;
  height: 100%;
}
.section-training .training-list-wrap {
  position: relative;
  max-width: 1200px;
  padding-right: 40px;
}
.section-training .training-link-panel-list {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.section-training .training-link-panel {
  display: none;
  background-color: #E4A600;
  border-radius: 12px;
  background-image: url(/assets/images/bg_training_01.svg);
  background-size: auto 100%;
  padding: 40px 62px;
  width: 684px;
  min-height: 334px;
  background-repeat: no-repeat;
}
.section-training .training-link-panel.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.section-training .training-link-panel .txt-wrap {
  background-color: rgba(0, 0, 0, 0.2);
  width: 550px;
  color: #fff;
  line-height: 2;
  padding: 24px 28px;
}
.section-training .training-link-panel .training-btn-wrap {
  display: flex;
  justify-content: center;
}
.section-training .training-link-panel .training-btn-wrap .btn-cmn {
  padding: 0.7em 1em;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  gap: 8px;
  color: #C49000;
  border-color: #E1E5F0;
}
.section-training .training-link-panel .training-btn-wrap .btn-cmn::after {
  background-color: #E4A600;
}
@media screen and (max-width: 767px) {
  .section-training .training-link-panel .training-btn-wrap .btn-cmn::after {
    background-color: #A1A7B9;
  }
}

@media screen and (max-width: 767px) {
  .section-training {
    margin-top: 105px;
  }
  .section-training > .inner-wrap {
    padding-bottom: 60px;
  }
  .section-training .training-list {
    margin-top: 40px;
  }
  .section-training .training-list p {
    font-size: 2rem;
  }
  .section-training .training-link-panel {
    padding: 33px;
  }
  .section-training .training-link-panel.active {
    gap: 20px;
  }
  .section-training .training-link-panel .txt-wrap {
    width: 100%;
    font-size: 1.5rem;
  }
}
.calendar-wrap {
  margin-top: 140px;
}

.calendar-wrap .inner-wrap {
  margin: auto;
  width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
}

.calendar-wrap .month {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

.calendar-wrap .month .num {
  font-size: 3.8rem;
  font-family: "Open Sans", sans-serif;
}

.calendar-wrap .month-btn-wrap {
  display: flex;
  gap: 8px;
}

.calendar-wrap .month-btn-wrap .btn-cmn {
  width: 90px;
  font-size: 1.4rem;
  gap: 8px;
  background-color: #EAF4FF;
  border: none;
}

.calendar-wrap .month-btn-wrap .btn-cmn.arrow.prev::after {
  content: none;
}

.calendar-wrap .month-btn-wrap .btn-cmn.arrow::after {
  background-image: url(/assets/images/icn_chevron.svg);
  background-size: 5px 10px;
}

.calendar-wrap .month-btn-wrap .btn-cmn.arrow::before {
  content: none;
}

.calendar-wrap .month-btn-wrap .btn-cmn.arrow.prev::before {
  content: "";
  background-color: #3377FD;
  background-image: url(/assets/images/icn_chevron.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px 10px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: block;
  transition: all 0.2s ease;
  transform: rotate(180deg);
}

.calendar-wrap .month-btn-wrap .btn-cmn.arrow.prev:hover::before {
  background-color: #A1A7B9;
}

.calendar-wrap .date-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 22px;
}

.calendar-wrap .date-list > label {
  order: -1;
  background-color: #EAF4FF;
  min-width: 38px;
  min-height: 38px;
  color: #3377FD;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  border: 1px solid #E9EBF1;
}

.calendar-wrap .date-list > label:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.calendar-wrap .date-list > label:nth-child(n+2) {
  border-left: none;
}

.calendar-wrap .date-list > label:nth-last-child(2) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.calendar-wrap .date-list > label:hover {
  opacity: 0.7;
}

.calendar-wrap .date-list input {
  display: none;
}

.calendar-wrap .date-list label:has(input:disabled) {
  background-color: #fff;
  color: #7A7A89;
}

.calendar-wrap .date-list label:has(input:disabled):hover {
  opacity: 1;
  cursor: default;
}

.calendar-wrap .date-list label:has(:checked) {
  background-color: #3377FD;
  color: #fff;
  border-color: #3377FD;
}

.calendar-wrap .date-list label:has(:checked) + div {
  display: block;
}

@media screen and (max-width: 767px) {
  .calendar-wrap {
    margin-top: 80px;
  }
  .calendar-wrap .month-btn-wrap {
    justify-content: center;
  }
  .calendar-head-wrap {
    margin-top: 0 !important;
  }
  .calendar-wrap .date-list > label {
    min-width: 14.2857142857%;
  }
}
/* research */
.section-research {
  margin-top: 164px;
}

.section-research .bg-wrap {
  position: relative;
  background-color: #fff;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  max-width: 1260px; /* inner に合わせる */
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}

.section-research .bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * (100vw - 100%));
  width: calc(100vw - 100%);
  height: 100%;
  background-color: #fff;
}

.section-research .inner-wrap {
  margin-right: 10px;
}

.section-research h2 {
  margin-top: -80px;
}

.section-research h2 .color-accent {
  color: #A576CC;
}

.section-research .link-panel-wrap.col2 {
  margin-top: 64px;
  display: flex;
  gap: 24px;
}

.section-research .link-panel-wrap.col2 .link-panel {
  width: 50%;
  min-height: 320px;
  color: #fff;
  text-align: center;
  background-color: #A576CC;
  background-repeat: no-repeat;
  padding: 10px 48px;
  gap: 38px;
  justify-content: center;
}

.section-research .link-panel.panel-01 {
  background-image: url(/assets/images/bg_research_01.svg);
}

.section-research .link-panel.panel-02 {
  background-image: url(/assets/images/bg_research_02.svg);
}

.section-research .img-wrap {
  margin: auto;
}

.section-research .img-wrap img {
  width: 150px;
}

.section-research .txt-wrap {
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.section-research .link-panel .ttl {
  font-size: 3.4rem;
  line-height: 1.3;
}

.section-research .link-panel .txt {
  font-size: 1.6rem;
  margin-top: 10px;
}

.section-research .link-panel .btn-cmn {
  margin: auto;
  width: 202px;
  color: #9168B3;
  border-color: #9168B3;
  font-size: 1.4rem;
  gap: 8px;
  margin-top: 18px;
}

.section-research .link-panel .btn-cmn.arrow::after {
  background-color: #A576CC;
  background-size: 12px 12px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
}

.section-research .link-panel .btn-cmn.arrow:hover::after {
  background-color: #A1A7B9;
}

.research-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}

.research-btn-wrap .btn-cmn {
  width: 240px;
  font-size: 1.6rem;
  gap: 16px;
}

/* publications */
.section-publications {
  margin-top: 124px;
}
.section-publications > .bg-wrap {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  padding-bottom: 80px;
  width: 1260px;
  margin: 0 auto;
}
.section-publications > .bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1 * (100vw - 100%));
  width: calc(100vw - 100%);
  height: 100%;
  background-color: #fff;
}

.section-publications h2 {
  margin-top: -80px;
}

.section-publications h2 .color-accent {
  color: #23C06B;
}

.section-publications .link-panel-wrap.col1 {
  margin-top: 64px;
  display: flex;
  gap: 24px;
}

.section-publications .link-panel-wrap.col1 .link-panel {
  width: 100%;
  min-height: 320px;
  color: #fff;
  text-align: center;
  background-color: #23C06B;
  background-repeat: no-repeat;
  padding: 10px 120px;
  justify-content: space-between;
}

.section-publications .link-panel {
  background-image: url(/assets/images/bg_publications_01.svg);
}

.section-publications .img-wrap {
  margin: auto;
  margin-left: 0;
}

.section-publications .img-wrap img {
  width: 230px;
}

.section-publications .txt-wrap {
  text-align: center;
  margin: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
}

.section-publications .link-panel .ttl {
  font-size: 3.4rem;
  line-height: 1.3;
}

.section-publications .link-panel .link-list {
  font-size: 1.6rem;
  margin-top: 10px;
  display: flex;
  gap: 18px;
}

.section-publications .link-panel .link-list a {
  color: #fff;
  text-decoration: underline;
}

.section-publications .link-panel .link-list a:hover {
  text-decoration: none;
  opacity: 1;
}

.section-publications .link-panel .btn-cmn {
  margin: auto;
  width: 202px;
  color: #1EA65D;
  border-color: #1EA65D;
  font-size: 1.4rem;
  gap: 8px;
  margin-top: 18px;
}

.section-publications .link-panel .btn-cmn.arrow::after {
  background-color: #23C06B;
  background-size: 12px 12px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
}

.section-publications .link-panel .btn-cmn.arrow:hover::after {
  background-color: #A1A7B9;
}

@media screen and (max-width: 767px) {
  .mv-wrap {
    left: 30px;
  }
  .emergency-wrap {
    left: unset;
    right: 30px;
    transform: unset;
    top: 420px;
    max-height: 126px;
  }
  .section-training > .inner-wrap {
    margin-left: 0;
    padding-left: 30px;
  }
  .section-training h2 {
    padding-left: 0;
  }
  .section-training .training-list-wrap {
    position: static;
    max-width: unset;
    padding-right: 0;
  }
  .section-training .training-link-panel-list {
    position: static;
    transform: unset;
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  .section-training .training-list p {
    padding-left: 0;
  }
  .calendar-wrap .month {
    font-size: 2rem;
  }
  .calendar-wrap .month .num {
    font-size: 3.4rem;
  }
  .calendar-wrap .inner-wrap {
    margin: auto !important;
    padding: 0;
    width: 100%;
  }
  .section-publications .bg-wrap {
    margin-left: 0;
  }
  .section-research .bg-wrap {
    margin-right: 0;
  }
  .section-research .inner-wrap {
    margin: auto;
  }
  .bg {
    min-width: unset;
  }
  .bg > video {
    min-width: 1070px;
  }
  .bg > img {
    min-width: unset;
  }
  section.splide .splide__list {
    overflow: visible;
  }
  section.splide {
    left: 30px;
  }
  section.splide .inner-wrap {
    padding: 0 30px;
    width: 100%;
    max-width: 1260px;
    padding-left: 0;
    padding-right: 60px;
  }
  .section-publications .inner-wrap {
    margin-left: 0;
    max-width: unset;
  }
  .section-research .inner-wrap {
    margin-right: 0;
    max-width: unset;
  }
  .section-research .link-panel-wrap.col2 {
    justify-content: center;
  }
  .section-research .link-panel-wrap.col2 .link-panel {
    max-width: 588px;
  }
  .section-publications .link-panel-wrap.col1 {
    display: flex;
    justify-content: center;
  }
  .section-publications .link-panel-wrap.col1 .link-panel {
    max-width: 1200px;
  }
  .section-research .link-panel .ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .section-research .link-panel-wrap.col2 .link-panel {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    min-height: unset;
    padding: 30px;
  }
  .section-publications .img-wrap {
    margin-right: 0;
  }
  .section-publications .txt-wrap {
    margin-left: 0;
  }
  .section-publications .img-wrap img {
    width: 200px;
  }
  .section-publications .link-panel-wrap.col1 .link-panel {
    justify-content: center;
    gap: 38px;
    padding: 10px;
  }
  footer .link-list {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .copy-wrap .copy-link-list {
    padding-bottom: 16px;
  }
  footer .copy-wrap .inner-wrap {
    display: inline-block;
    margin-bottom: 26px;
  }
  .section-research {
    margin-top: 80px;
  }
  .section-research .link-panel-wrap.col2 {
    gap: 30px;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  .section-research .link-panel-wrap.col2 .link-panel {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    min-height: unset;
    padding: 30px;
  }
  .section-research .img-wrap img {
    width: 110px;
  }
  .section-research .link-panel .ttl {
    font-size: 1.8rem;
  }
  .section-research .link-panel .txt {
    font-size: 1.4rem;
  }
  .research-btn-wrap {
    margin-top: 40px;
  }
  .section-research .bg-wrap {
    padding-bottom: 60px;
  }
  .section-publications {
    margin-top: 105px;
  }
  .section-publications .link-panel-wrap.col1 {
    margin-top: 30px;
  }
  .section-publications .link-panel-wrap.col1 .link-panel {
    flex-direction: column;
    gap: 15px;
    padding: 30px;
  }
  .section-publications .img-wrap img {
    width: 110px;
  }
  .section-publications .link-panel .ttl {
    font-size: 1.8rem;
  }
  .section-publications .link-panel .link-list {
    font-size: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .section-publications .bg-wrap {
    padding-bottom: 60px;
    width: 100%;
  }
}
/* pickup */
.pickup-ttl-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pickup-ttl-wrap .ttl {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #3377FD;
}

.pickup-ttl-wrap .txt {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pickup-ttl-wrap .txt::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #DADADE;
}

/* slider */
section.splide {
  position: relative;
  inset-inline: calc(50% - 600px) 0;
  margin-top: 40px;
}

section.splide .splide__arrows {
  position: absolute;
  bottom: -6px;
}

.splide__arrow--prev {
  left: 73px;
  background-color: #3377FD;
  opacity: 1;
  top: -23px;
  width: 24px;
  height: 24px;
}

.splide__arrow--next {
  left: 138px;
  background-color: #3377FD;
  opacity: 1;
  top: -23px;
  width: 24px;
  height: 24px;
}

.splide__arrow--prev svg,
.splide__arrow--next svg {
  fill: #fff;
  width: 11px;
}

section.splide .inner-wrap {
  margin-left: 0;
  margin-top: 100px;
  padding: 0;
  max-width: 1200px;
}

section.splide .splide__list {
  overflow: visible;
}

section.splide .splide__track {
  overflow: visible;
}

section.splide .splide__slide {
  min-width: 580px;
  max-width: 580px;
  margin-right: 40px;
  position: relative;
  z-index: -1;
  display: block;
}

section.splide .splide__slide a {
  z-index: 2;
  display: block;
  position: relative;
}

section.splide .splide__slide .date-wrap {
  position: absolute;
  min-width: 183px;
  height: 32px;
  background-color: #FFF364;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-radius: 4px 4px 4px 0;
  top: -12px;
  left: -8px;
  z-index: auto;
}

section.splide .splide__slide .date-wrap::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #ebdb1e;
  border-left: 0;
  bottom: -8px;
  left: 0;
  z-index: -1;
}

section.splide .splide__slide img {
  width: 100%;
  border-radius: 0 20px 20px 20px;
  position: relative;
  z-index: -2;
}

section.splide .splide__slide .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

section.splide .splide__slide .ttl::after {
  content: "";
  background-color: #3377FD;
  background-image: url(/assets/images/icn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: block;
  transition: all 0.2s ease;
}

section.splide .splide__slide a:hover .ttl::after {
  background-color: #A1A7B9;
}

section.splide .btn-wrap {
  margin-top: 24px;
}

section.splide .page-wrap {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif;
  color: #3377FD;
  margin-top: 12px;
}

.toggle-btn {
  position: absolute;
  bottom: 11px;
  left: 112px;
  width: 12px;
  height: 12px;
  background-size: 12px auto;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -9999px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("/assets/images/icn_play.svg");
}

.toggle-btn.is-playing {
  background-image: url("/assets/images/icn_stop.svg");
}

.my-carousel-progress {
  background: #E9EBF0;
}

.my-carousel-progress-bar {
  background: #3377FD;
  height: 4px;
  transition: width 400ms ease;
  width: 0;
}

@media screen and (max-width: 767px) {
  section.splide {
    left: 0;
    margin-top: 0;
  }
  section.splide .splide__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 30px;
  }
  section.splide .splide__slide .date-wrap {
    font-size: 1.4rem;
    min-width: 160px;
    height: 24px;
    top: -16px;
  }
  section.splide .splide__slide .ttl {
    font-size: 1.4rem;
    margin-top: 6px;
  }
  section.splide .splide__slide .ttl::after {
    background-size: 12px 12px;
    width: 17px;
    min-width: 17px;
    height: 17px;
  }
  section.splide .inner-wrap {
    padding: 0 30px;
    margin-top: 0;
  }
  .toggle-btn {
    left: 132px;
  }
  .splide__arrow--prev {
    left: 93px;
  }
  .splide__arrow--next {
    left: 158px;
  }
}
/* information */
.information-txt {
  background-color: #EAF4FF;
  border-radius: 12px;
  padding: 1.4em 2.4em;
}
.information-txt p {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-weight: bold;
}
.information-txt p + p {
  margin-top: 0.6em;
}

@media screen and (max-width: 767px) {
  .information-txt {
    padding: 24px;
    line-height: 1.42;
    font-size: 1.2rem;
  }
}
/* topics */
.section-topics {
  margin-top: 60px;
}

.section-topics h2 {
  margin-top: 80px;
}

.topics-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}

.topics-list li a {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  min-height: 82px;
  border-radius: 12px;
  background-color: #fff;
  padding: 10px 24px;
}

.topics-list li a:hover .ttl:after {
  background-color: #A1A7B9;
}

.topics-list li a .left-wrap {
  display: flex;
  align-items: center;
}

.topics-list li a .right-wrap {
  width: 100%;
}

.topics-list li .date {
  min-width: 110px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.topics-list li .tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3377FD;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  min-height: 33px;
  border: 1px solid #3377FD;
  border-radius: 60px;
}

.topics-list li .ttl {
  font-weight: 700;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.topics-list li .ttl:after {
  content: "";
  background-color: #3377FD;
  background-image: url(/assets/images/icn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: block;
  transition: all 0.2s ease;
}

.topics-btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.topics-btn-wrap .btn-cmn {
  width: 340px;
  font-size: 1.4rem;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .topics-list li a {
    flex-direction: column;
    align-items: start;
    padding: 16px;
    gap: 10px;
  }
  .topics-list li .ttl {
    padding-left: 0;
    font-size: 1.2rem;
    align-items: end;
  }
  .topics-list {
    margin-top: 30px;
    gap: 10px;
  }
  .topics-btn-wrap {
    margin-top: 32px;
    flex-direction: column;
  }
  .topics-btn-wrap .btn-cmn {
    width: 100%;
    justify-content: space-between;
    font-size: 1.2rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* training */
.training .main-contents .link-wrap.full-top {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .training .main-contents .link-wrap.full-top {
    margin-bottom: 25px;
  }
}
.training .main-contents .link-wrap.full-top .pdf-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}
.training .main-contents .link-wrap.full-top .pdf-btn::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.training .main-contents .link-wrap.full-top .pdf-btn[href$=".pdf"]::after {
  content: "PDF";
}
.training .main-contents .link-wrap.full-top .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .training .main-contents .link-wrap.full-top .pdf-btn:hover {
    opacity: 1;
  }
  .training .main-contents .link-wrap.full-top .pdf-btn:hover span {
    text-decoration: none;
  }
}

.detail-wrap {
  font-size: 1.6rem;
  background-color: #F5F7F8;
  border-radius: 12px;
  margin-top: 16px;
  display: none;
  width: 100%;
  padding: 20px 24px;
}
.detail-wrap .txt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 8px;
}
.detail-wrap .txt-attention {
  font-size: 1.4rem;
  font-weight: 500;
  color: #E63C3C;
  margin-top: 16px;
}
.detail-wrap .txt-attention p {
  font-size: 1.4rem;
}
.detail-wrap .txt-attention a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #E63C3C;
}
.detail-wrap .table-wrap table {
  width: 100%;
  margin-top: 16px;
}
.detail-wrap .table-wrap table th,
.detail-wrap .table-wrap table td {
  border: 1px solid #DBE2EB;
  padding: 0.6em 1.2em;
  line-height: 1.6;
  text-align: center;
  width: 20%;
}
.detail-wrap .table-wrap table th {
  background-color: #EAF4FF;
  white-space: nowrap;
}
.detail-wrap .table-wrap table th:nth-child(4),
.detail-wrap .table-wrap table td:nth-child(4),
.detail-wrap .table-wrap table th:nth-child(5),
.detail-wrap .table-wrap table td:nth-child(5) {
  width: 6%;
}
.detail-wrap .table-wrap table td {
  background-color: #fff;
}
.detail-wrap .table-wrap table td:nth-child(3) {
  min-width: 334px;
  max-width: 334px;
}
.detail-wrap .table-wrap table .txt-red {
  color: #E63C3C;
}
.detail-wrap.training {
  display: block;
  margin-top: 24px;
}
.detail-wrap.training.space-top {
  margin-top: 32px;
}
.detail-wrap .link-wrap {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.detail-wrap .link-wrap a {
  display: flex;
  gap: 8px;
}
@media (any-hover: hover) {
  .detail-wrap .link-wrap a:hover:hover {
    opacity: 1;
  }
  .detail-wrap .link-wrap a:hover:hover span {
    text-decoration: none;
  }
}
.detail-wrap .link-wrap a::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.detail-wrap .link-wrap a[href$=".pdf"]::after {
  content: "PDF";
}
.detail-wrap .link-wrap a[href$=".doc"]::after, .detail-wrap .link-wrap a[href$=".docx"]::after {
  content: "WORD";
}
.detail-wrap .link-wrap a[href$=".ppt"]::after, .detail-wrap .link-wrap a[href$=".pptx"]::after, .detail-wrap .link-wrap a[href$=".pptm"]::after {
  content: "PPT";
}
.detail-wrap .link-wrap a span {
  text-decoration: underline;
}

.blog .detail-wrap {
  padding: 20px 40px;
}

.head-wrap {
  display: flex;
  justify-content: space-between;
  min-height: 89px;
}
@media screen and (min-width: 768px) {
  .head-wrap {
    background-color: #fff;
    position: relative;
    padding: 10px 10px 10px 20px;
    gap: 16px;
  }
}
.head-wrap .ttl-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .head-wrap .ttl-wrap {
    background-color: #fff;
    position: relative;
    padding: 10px;
  }
}
.head-wrap .ttl-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 28px);
  background-image: url(/assets/images/img_deco_01.svg);
  background-size: contain;
  width: 4px;
  height: 56px;
}
.head-wrap .ttl-wrap .ttl {
  font-size: 2.2rem;
  font-weight: 700;
}
.head-wrap .btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .head-wrap .btn-wrap {
    flex-direction: column;
  }
}
.head-wrap .btn-wrap .btn-cmn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #3377FD;
  min-width: 240px;
  padding: 16px;
  gap: 16px;
}
.head-wrap .btn-wrap .btn-cmn.arrow::after {
  background-color: #fff;
  background-image: url(/assets/images/icn_arrow_blue.svg);
}
.head-wrap .btn-wrap .btn-cmn.another-tab {
  display: flex;
  justify-content: center;
}
@media (any-hover: hover) {
  .head-wrap .btn-wrap .btn-cmn.another-tab:hover::after {
    background-color: #A1A7B9;
  }
}
.head-wrap .btn-wrap .btn-cmn.another-tab::after {
  content: "";
  background-color: #fff;
  background-image: url(/assets/images/icn_another_tab.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: block;
  transition: all 0.2s ease;
}

.blog .detail-wrap .ttl-wrap {
  background-color: #F5F7F8;
  padding: 0;
}
.blog .detail-wrap .ttl-wrap .ttl {
  font-size: 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.blog .detail-wrap .ttl-wrap .ttl::after {
  content: "";
  background-color: #3377FD;
  background-image: url(/assets/images/icn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: block;
  transition: all 0.2s ease;
}
.blog .detail-wrap .ttl-wrap .blog-ttl {
  display: flex;
  align-items: center;
  gap: 90px;
  width: 100%;
}
.blog .detail-wrap .ttl-wrap .blog-ttl time {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.blog.base .detail-wrap .ttl-wrap::before {
  content: none;
}

.detail-wrap .link-wrap a[href$=".pdf"]::after {
  content: "PDF";
}

.detail-wrap .link-wrap a[href$=".doc"]::after,
.detail-wrap .link-wrap a[href$=".docx"]::after {
  content: "WORD";
}

.detail-wrap .link-wrap a[href$=".xls"]::after,
.detail-wrap .link-wrap a[href$=".xlsx"]::after,
.detail-wrap .link-wrap a[href$=".xlsm"]::after {
  content: "EXCEL";
}

.detail-wrap .link-wrap a[href$=".ppt"]::after,
.detail-wrap .link-wrap a[href$=".pptx"]::after,
.detail-wrap .link-wrap a[href$=".pptm"]::after {
  content: "PPT";
}

.calendar-wrap .training-top-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  font-size: 1.6rem;
}
.calendar-wrap .training-top-btn-wrap .btn-cmn {
  width: 240px;
  gap: 8px;
}

.calendar-head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: -50px;
}
.calendar-head-wrap .link-wrap {
  margin-top: 0;
  display: inline-flex;
  font-size: 1.6rem;
}
.calendar-head-wrap .link-wrap a {
  display: flex;
  gap: 8px;
}
.calendar-head-wrap .link-wrap a[href$=".pdf"]::after {
  content: "PDF";
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media (any-hover: hover) {
  .calendar-head-wrap .link-wrap a:hover a:hover {
    opacity: 1;
  }
  .calendar-head-wrap .link-wrap a:hover a:hover span {
    text-decoration: none;
  }
}
.calendar-head-wrap .link-wrap a span {
  text-decoration: underline;
}

.list-box {
  margin-top: 24px;
}

.list-box li {
  font-size: 1.6rem;
}

.cmn-h2-ttl {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.detail-wrap.training + .cmn-h2-ttl {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .detail-wrap .ttl-wrap {
    flex-direction: column;
    gap: 9px;
    padding: 16px 16px 16px 18px;
    align-items: start;
  }
  .blog .detail-wrap {
    padding: 20px;
  }
  .blog .detail-wrap .ttl-wrap {
    flex-direction: row;
    align-items: center;
  }
  .blog .detail-wrap .ttl-wrap .blog-ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .blog .detail-wrap .ttl-wrap .ttl {
    font-size: 1.2rem;
    align-items: end;
    gap: 20px;
  }
  .detail-wrap .ttl-wrap .ttl {
    font-size: 1.5rem;
  }
  .detail-wrap .link-wrap {
    justify-content: start;
    margin-top: 24px;
  }
  .detail-wrap .link-wrap a[href$=".pdf"]::after {
    min-height: 24px;
    height: 24px;
  }
  .detail-wrap .link-wrap a span {
    font-size: 1.5rem;
  }
  .detail-wrap .txt {
    font-size: 1.7rem;
    margin-top: 30px;
  }
  .detail-wrap table {
    font-size: 1.4rem;
  }
  .detail-wrap table th {
    white-space: wrap;
  }
  .detail-wrap .txt-attention {
    font-size: 1.2rem;
    margin-top: 30px;
  }
  .detail-wrap .txt-attention a,
  .detail-wrap .txt-attention p {
    font-size: 1.2rem;
  }
  .calendar-wrap .training-top-btn-wrap {
    margin-top: 30px;
  }
  .detail-wrap .btn-wrap {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
  }
  .detail-wrap .btn-wrap.column {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .list-box {
    margin-top: 24px;
  }
  .list-box li {
    font-size: 1.4rem;
  }
  .cmn-h2-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
    left: 0;
    transform: translateX(0);
  }
  .detail-wrap.training + .cmn-h2-ttl {
    margin-top: 20px;
  }
  .training .inner-wrap .explain-txt,
  .blog .inner-wrap .explain-txt,
  .research .inner-wrap .explain-txt {
    margin-top: 20px;
  }
  .head-wrap {
    flex-direction: column;
  }
  .head-wrap .ttl-wrap,
  .head-wrap .btn-wrap {
    min-height: unset;
  }
  .head-wrap .ttl-wrap {
    padding: 16px 16px 16px 18px;
  }
  .head-wrap .btn-wrap {
    padding-right: 0;
    background-color: unset;
  }
}
.dots-list {
  margin-top: 20px;
}

.dots-list li {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
}

.dots-list li + li {
  margin-top: 8px;
}

.dots-list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  left: 0;
  background-color: #3377FD;
  border-radius: 50%;
}

.num-list {
  margin-top: 32px;
  counter-reset: listnum;
}

.num-list li {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.num-list li + li {
  margin-top: 12px;
}

.num-list li:before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  color: #3377FD;
  font-weight: 500;
}

.link-txt {
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 0.25em;
}

.link-txt::after {
  content: none;
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 10px 5px;
  margin-left: 8px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  display: inline-block;
}

.link-txt[target=_blank]::after {
  content: "別ウィンドウ";
}

.link-txt[target=_blank]:not([href$=".pdf" i])::after {
  content: "";
  background-image: url(/assets/images/icn_blank.svg);
  background-size: 24px 22px;
  border: none;
  width: 24px;
  height: 22px;
  background-repeat: no-repeat;
  margin-bottom: -0.4em;
  margin-left: 4px;
}

.link-txt[href$=".pdf" i]::after {
  content: "PDF";
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 48px;
}
@media screen and (max-width: 767px) {
  .sitemap-list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }
}

.sitemap-title {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #3B3B4A;
  font-weight: 700;
  line-height: 1.5;
  background-color: #fff;
  font-size: 2rem;
}
.sitemap-title:not(.no-link):after {
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 20px;
  transition: all 0.2s ease;
  background-color: #3377FD;
  background-image: url(/assets/images/icn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.sitemap-child-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .sitemap-child-list {
    margin-top: 16px;
    gap: 8px;
  }
}
.sitemap-child-list li a {
  font-size: 1.6rem;
}

.not-found-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .not-found-btn-wrap {
    flex-direction: column;
    gap: 16px;
  }
}
.not-found-btn-wrap .btn-cmn {
  font-size: 1.6rem;
  min-width: 240px;
  padding: 1.3em;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .not-found-btn-wrap .btn-cmn {
    padding: 1em;
    font-size: 1.4rem;
  }
}

/* data */
.data-wrap {
  margin-top: 40px;
}

.data-wrap .inner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 65px;
       column-gap: 65px;
  row-gap: 20px;
}

.data-wrap .inner-wrap .data-item {
  width: 100%;
  background: #EAF4FF;
  border-radius: 5px;
  padding: 15px 20px;
}

.data-item .ttl-wrap {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 40px;
  border-radius: 6px;
}

.data-item .ttl-wrap .ttl {
  font-size: 1.9rem;
  font-weight: bold;
}

.data-item .ttl-wrap .pdf-btn {
  max-width: 235px;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: #3177FA;
  border-radius: 30px;
  padding: 20px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.data-item .ttl-wrap a[href$=".pdf"]::after {
  content: "PDF";
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.data-item .ttl-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 28px);
  background-image: url(/assets/images/img_deco_01.svg);
  background-size: contain;
  width: 4px;
  height: 56px;
}

.data-item .ttl-wrap .btn-cmn {
  font-size: 1.4rem;
  color: #fff;
  background-color: #3377FD;
  min-width: 240px;
  padding: 1.3em;
  gap: 16px;
}

.data-item .ttl-wrap .btn-cmn.arrow::after {
  background-color: #fff;
  background-image: url(/assets/images/icn_arrow_blue.svg);
}

@media screen and (max-width: 767px) {
  .data-wrap .inner-wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .data-item .ttl-wrap {
    padding: 10px 10px 10px 30px;
  }
  .data-item .ttl-wrap .ttl {
    font-size: 1.6rem;
  }
  .data-item .ttl-wrap::before {
    top: calc(50% - 23px);
    height: 46px;
    background-repeat: no-repeat;
  }
  .data-item .ttl-wrap .pdf-btn.pc-only {
    display: none !important;
  }
  .data-wrap .btn-wrap {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
  }
  .data-item .btn-wrap .pdf-btn {
    max-width: 235px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: #3177FA;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .data-item .btn-wrap a[href$=".pdf"]::after {
    content: "PDF";
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
  }
  .data-item .btn-wrap .btn-cmn {
    font-size: 1.4rem;
    color: #fff;
    background-color: #3377FD;
    min-width: 240px;
    padding: 1.3em;
    gap: 16px;
  }
  .data-item .btn-wrap .btn-cmn.arrow::after {
    background-color: #fff;
    background-image: url(/assets/images/icn_arrow_blue.svg);
  }
}
/* blog */
.blog .inner-wrap .blog-link {
  min-height: 82px;
  display: flex;
  align-items: center;
  background-color: #F5F7F8;
  margin-top: 30px;
}

.blog .inner-wrap .blog-link.is-disabled {
  pointer-events: none;
}

.blog .inner-wrap .blog-link .detail-wrap.training {
  margin-top: 0;
}

.blog .inner-wrap .blog-link:hover .ttl::after {
  background-color: #A1A7B9;
}

.blog .inner-wrap .blog-link.is-disabled .ttl::after {
  background-color: #CCC !important;
}

.blog-wrap {
  margin-top: 40px;
}

.blog-wrap .inner-wrap .detail-wrap {
  font-size: 1.6rem;
  background-color: #F5F7F8;
  border-radius: 12px;
  margin-top: 16px;
  width: 100%;
  padding: 20px 24px;
  display: block;
}

.blog-wrap .inner-wrap .detail-wrap .ttl-wrap {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  padding: 10px 10px 10px 20px;
  border-radius: 6px;
}

.blog-wrap .inner-wrap .detail-wrap .ttl-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 28px);
  background-image: url(/assets/images/img_deco_01.svg);
  background-size: contain;
  width: 4px;
  height: 56px;
}

.blog-wrap .inner-wrap .detail-wrap .ttl-wrap .ttl {
  background-color: #4569E0;
  padding: 5px;
  border-radius: 5px;
  font-size: 1.6rem;
  display: block;
  width: inherit;
  color: #fff;
  white-space: nowrap;
}

.blog-wrap .inner-wrap .detail-wrap .ttl-wrap .ttl::after {
  display: none;
}

.blog-wrap .ttl-wrap p {
  font-size: 1.8rem;
  font-weight: bold;
}

.blog-wrap .blog-date {
  text-align: right;
  margin-top: 8px;
}

.blog-wrap .blog-date time {
  font-size: 1.6rem;
}

.blog-wrap .blog-contents {
  margin-top: 40px;
}

.blog-wrap .blog-contents img {
  max-width: 100%;
  height: auto;
}

.blog-wrap .blog-contents {
  margin-top: 40px;
}

.blog-wrap .blog-contents h1,
.blog-wrap .blog-contents h2 {
  margin-bottom: 48px;
  padding-bottom: 24px;
  font-size: 3.2rem;
  position: relative;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .blog-wrap .blog-contents h1,
  .blog-wrap .blog-contents h2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.blog-wrap .blog-contents h1::after,
.blog-wrap .blog-contents h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3377FD;
}
@media screen and (max-width: 767px) {
  .blog-wrap .blog-contents h1::after,
  .blog-wrap .blog-contents h2::after {
    width: 80px;
  }
}

.blog-wrap .blog-contents h3 {
  font-size: 2.4rem;
  padding-left: 16px;
  border-left: 4px solid #3377FD;
  font-weight: bold;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .blog-wrap .blog-contents h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    border-width: 2px;
  }
}

.blog-wrap .blog-contents h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .blog-wrap .blog-contents h4 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.blog-wrap .blog-contents h4::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  left: 0;
  border-radius: 50%;
  background-color: #3377FD;
}

.blog-wrap .blog-contents h5 {
  color: #3377FD;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .blog-wrap .blog-contents h5 {
    font-size: 1.6rem;
  }
}

.blog-wrap .blog-contents h6 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.blog-wrap .blog-contents *:not(h1, h2, h3, h4, h5) + h6 {
  margin-top: 24px;
}

.blog-wrap .blog-contents *:not(h1, h2, h3, h4, h6) + h5 {
  margin-top: 24px;
}

.blog-wrap .blog-contents *:not(h1, h2, h3, h5, h6) + h4 {
  margin-top: 32px;
}

.blog-wrap .blog-contents *:not(h1, h2, h4, h5, h6) + h3 {
  margin-top: 40px;
}

.blog-wrap .blog-contents *:not(h1, h3, h4, h5, h6) + h2 {
  margin-top: 56px;
}

.blog-wrap .blog-contents *:not(h2, h3, h4, h5, h6) + h1 {
  margin-top: 56px;
}

.blog-wrap .blog-contents p {
  line-height: 2;
}

.blog-wrap .blog-contents a {
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 0.25em;
}

.blog-wrap .blog-contents a::after {
  content: none;
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 10px 5px;
  margin: auto 8px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  display: inline-block;
}

.blog-wrap .blog-contents a[target=_blank]:not([href$=".pdf" i])::after {
  content: "";
  background-image: url(/assets/images/icn_blank.svg);
  background-size: 24px 22px;
  border: none;
  width: 24px;
  height: 22px;
  background-repeat: no-repeat;
  margin-bottom: -0.4em;
  margin-left: 4px;
}

.blog-wrap .blog-contents a[href$=".pdf" i]::after {
  content: "PDF";
}

.blog-wrap .blog-contents ul {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
}

.blog-wrap .blog-contents li {
  display: flex;
  flex-direction: column;
}

/*.blog-contents ul li:has(> a) {
  padding-left: 0;
}
.blog-contents ul li:has(> a)::before {
  content: none;
}*/
.blog-contents s {
  text-decoration: line-through;
}

.blog-contents strong {
  font-weight: bold;
}

.blog-contents hr {
  border-width: 1px;
  border-color: #3377FD;
  margin: 32px 0;
}

.blog-contents blockquote {
  margin-top: 32px;
  padding-left: 16px;
  border-left: 2px solid #3377FD;
}

.blog-contents ul {
  margin-top: 20px;
}

.blog-contents ul li {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
}

.blog-contents ul li + li {
  margin-top: 8px;
}

.blog-contents ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  left: 0;
  background-color: #3377FD;
  border-radius: 50%;
}

.blog-contents ol {
  margin-top: 32px;
  counter-reset: listnum;
}

.blog-contents ol li {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.blog-contents ol li + li {
  margin-top: 12px;
}

.blog-contents ol li:before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  color: #3377FD;
  font-weight: 500;
}

.blog-contents p + p {
  margin-top: 16px;
}

.blog-contents p:has(> img) + p {
  margin-top: 20px;
}

.blog-contents p:has(> img) + p:has(> img) {
  margin-top: 32px;
}

.blog-contents em {
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .blog-wrap .inner-wrap .detail-wrap {
    padding: 20px;
  }
  .blog-wrap .inner-wrap .detail-wrap .ttl-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    padding-left: 20px;
    gap: 5px;
  }
  .blog-wrap .inner-wrap .detail-wrap .ttl-wrap .ttl {
    font-size: 1.5rem;
  }
  .blog-wrap .inner-wrap .detail-wrap .ttl-wrap p {
    font-size: 1.5rem;
  }
}
/* recruitment */
.txt-emphasis {
  color: #FF0000;
}

p + .note {
  margin-top: 20px;
}

.notice-box {
  background-color: #EAF4FF;
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 40px;
}

.notice-box .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}

.notice-box .ttl:has(+ p) {
  margin-bottom: 10px;
}

.notice-box .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .notice-box .pdf-btn:hover {
    opacity: 1;
  }
  .notice-box .pdf-btn:hover span {
    text-decoration: none;
  }
}

.attention-content {
  background-color: #FCF0F0;
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.attention-content p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #E63C3C;
}

.employ-search-wrap {
  margin-top: 50px;
}

.employ-search-wrap .cmn-h2-ttl {
  text-align: center;
  display: block;
  margin-bottom: 40px;
}

.employ-search-wrap .employ-search {
  background-color: #F5F7F8;
  border-radius: 12px;
  padding: 35px;
  padding-bottom: 60px;
}

.employ-search-wrap .employ-search .select-ttl {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 25px;
  margin-bottom: 30px;
}

.employ-search-wrap .employ-search .select-ttl p + p {
  margin-top: 10px;
}

.error-text {
  color: #E63C3C;
  display: none;
}

.checkbox-list-wrap {
  display: flex;
}

.checkbox-list-wrap .checkbox-list .check-head {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}

.checkbox-list-wrap .checkbox-list:has(.check-head) {
  flex: 1;
  width: 18%;
}

.checkbox-list-wrap .checkbox-list:nth-child(2) {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
  flex-wrap: wrap;
  width: 82%;
}

.checkbox-list-wrap .checkbox-list.subject {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
  flex-wrap: wrap;
  width: 100%;
}

.checkbox-list-wrap .checkbox-list li {
  margin-bottom: 35px;
}

.checkbox-list-wrap .checkbox-list.subject li {
  margin-bottom: 20px;
}

.checkbox-list-wrap .checkbox-list label {
  font-size: 1.6rem;
  display: flex;
  gap: 10px;
  align-items: end;
}

.checkbox-list-wrap .checkbox-list label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

.checkbox-list-wrap .checkbox-list label input[type=checkbox]::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
}

.checkbox-list-wrap .checkbox-list label input[type=checkbox]:checked::after {
  content: "";
  background-image: url(/assets/images/icn_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 0;
}

.notes-list {
  margin-bottom: 50px;
}

.notes-list li {
  display: flex;
  gap: 20px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.employ-search .employ-search-btn .btn-cmn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #3377FD;
  width: 240px;
  padding: 1.3em;
  gap: 16px;
  margin-inline: auto;
}

.employ-search .employ-search-btn .btn-cmn.arrow::after {
  background-color: #fff;
  background-image: url(/assets/images/icn_arrow_blue.svg);
}

.employ-search .employ-search-btn .btn-cmn.arrow:hover::after {
  background-color: #A1A7B9;
}

.search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #BCBCBC;
  padding: 10px 30px;
  margin-top: 50px;
}

.search-result .result-item-l {
  display: flex;
  align-items: center;
  gap: 60px;
}

.search-result .result-item-l .cmn-h2-ttl {
  margin-bottom: 0;
}

.search-result .result-item-r {
  display: flex;
  gap: 10px;
}

.search-result .result-item-r .category {
  background-color: #F7F7F7;
  border: 1px solid #BCBCBC;
  border-radius: 6px;
  padding: 10px;
  min-width: 155px;
  text-align: center;
  font-size: 1.4rem;
}

.detail-wrap.search-content {
  display: block;
  background-color: #EAF4FF;
}

.detail-wrap.search-content .search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-bottom: 0;
}

.detail-wrap.search-content .search-item:has(+ .txt-wrap) {
  border-bottom: 1px dashed #BCBCBC;
  padding-bottom: 15px;
  align-items: start;
}

.detail-wrap.search-content .search-item .subject-label {
  display: flex;
  align-items: start;
  gap: 15px;
}

.detail-wrap.search-content .search-item .subject-label p.ttl {
  padding: 10px 0;
}

.detail-wrap.search-content .search-item .subject-label p {
  font-weight: bold;
}

.search-item .subject-label .subject-label-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 630px;
  gap: 10px;
}

.search-item .subject-label .subject-label-content p {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 12px;
}

.detail-wrap.search-content .search-item .time-list {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.detail-wrap.search-content .txt-wrap {
  background-color: #F7FBFF;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.result-wrap {
  display: none;
}

.no-result {
  display: none;
  margin-top: 24px;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 767px) {
  .attention-content {
    padding: 15px;
    gap: 10px;
    margin-top: 25px;
  }
  .checkbox-list-wrap {
    flex-direction: column;
  }
  .checkbox-list-wrap .checkbox-list:has(.check-head),
  .checkbox-list-wrap .checkbox-list:nth-child(2),
  .checkbox-list-wrap .checkbox-list.subject {
    width: 100%;
  }
  .checkbox-list-wrap:has(+ .select-ttl) .checkbox-list li {
    margin-bottom: 40px;
  }
  .checkbox-list-wrap .checkbox-list li {
    margin-bottom: 20px;
  }
  .checkbox-list-wrap .checkbox-list:nth-child(2) {
    margin-bottom: 30px;
  }
  .employ-search-wrap .cmn-h2-ttl {
    margin-bottom: 25px;
  }
  .employ-search-wrap .employ-search {
    padding: 25px 15px;
  }
  .notes-list {
    margin-bottom: 25px;
  }
  .notes-list li {
    gap: 10px;
    font-size: 1.2rem;
  }
  .search-result {
    flex-direction: column;
    padding: 10px;
    align-items: baseline;
  }
  .search-result .result-item-l {
    gap: 20px;
    margin-bottom: 10px;
  }
  .search-result .result-item-l p {
    flex: 1;
  }
  .search-result .result-item-r {
    flex-wrap: wrap;
  }
  .search-result .result-item-r .category {
    min-width: inherit;
    font-size: 1.4rem;
  }
  .detail-wrap.search-content .search-item {
    flex-direction: column;
    padding: 20px 0;
    padding-bottom: 0;
    gap: 10px;
    align-items: baseline;
  }
  .detail-wrap.search-content .search-item:has(+ .txt-wrap) {
    padding-bottom: 20px;
  }
  .detail-wrap.search-content .search-item .subject-label {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
    width: 100%;
  }
  .detail-wrap.search-content .search-item .subject-label p:not(.ttl) {
    font-size: 1.4rem;
    padding: 10px;
  }
  .detail-wrap.search-content .search-item .subject-label .ttl {
    margin-bottom: 10px;
  }
  .detail-wrap.search-content .search-item .time-list {
    flex-direction: column;
    gap: 0;
  }
}
/*==========================================================================================================
768px - 1400px
==========================================================================================================*/
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .tab-wrap > label {
    width: 23%;
  }
}
@media screen and (max-width: 850px) {
  .tab-wrap > label {
    font-size: 1.45rem;
  }
  header .btn-wrap {
    top: 40px;
  }
  header .btn-wrap .btn-cmn {
    width: 120px;
    height: 40px;
    font-size: 1.2rem;
    gap: 4px;
    padding: 0.5em;
  }
  header .btn-wrap .btn-cmn.arrow::after {
    background-size: 10px 10px;
    width: 14px;
    min-width: 14px;
    height: 14px;
  }
  footer .link-list {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .information-wrap {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
/* journal */
main.journal .mv {
  background-image: url(/assets/images/bg_mv_journal.png);
  background-color: #21C06B;
}

.detail-wrap.journal {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 32px;
  gap: 10px;
}
.detail-wrap.journal .txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.detail-wrap.journal .sub-ttl {
  font-size: 1.4rem;
}
.detail-wrap.journal .date-wrap {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.detail-wrap.journal .date-wrap .date {
  min-width: 220px;
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
}
.detail-wrap.journal .date-wrap .sub-ttl {
  font-size: 1.4rem;
}
.detail-wrap.journal .category-wrap {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .detail-wrap.journal .category-wrap {
    flex-direction: column;
    align-items: start;
  }
}
.detail-wrap.journal .category-wrap .category {
  font-weight: 700;
  background-color: #4569E0;
  padding: 5px;
  border-radius: 5px;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
}
.detail-wrap.journal .category-wrap .ttl {
  font-size: 1.8rem;
  font-weight: 700;
}

.selectbox-wrap {
  display: flex;
  justify-content: start;
  gap: 10px 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: unset !important;
}

.selectbox::after {
  position: absolute;
  right: 10px;
  width: 10px;
  height: 7px;
  background-color: #7A7A89;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.selectbox select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 152px;
  padding: 0.5em calc(0.5em + 30px) 0.5em 0.5em;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .training .inner-wrap .explain-txt, .blog .inner-wrap .explain-txt, .research .inner-wrap .explain-txt, .journal .inner-wrap .explain-txt {
    margin-top: 20px;
  }
  .detail-wrap.journal {
    gap: 0;
  }
  .publications-wrap {
    min-height: 80px;
  }
  .publications-wrap .pc-only {
    display: none !important;
  }
  .publications-wrap .flex.pc-only {
    display: none !important;
  }
  .btn-wrap.flex {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .publications-wrap .txt-wrap .category-wrap {
    display: contents;
  }
  .publications-wrap .txt-wrap .date-wrap {
    flex-direction: column;
    align-items: start;
  }
  .publications-wrap .txt-wrap .category {
    font-size: 1.5rem !important;
  }
  .publications-wrap .txt-wrap .ttl {
    font-size: 1.5rem;
  }
  .publications-wrap .txt-wrap .date {
    font-size: 1.3rem !important;
    min-width: unset;
  }
  .publications-wrap .txt-wrap .sub-ttl {
    font-size: 1.3rem;
    padding-left: 0;
  }
}
/* message */
.about.message .about-message {
  margin-bottom: 40px;
}
.about.message .about-message p {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about.message .about-message p {
    font-size: 1.6rem;
  }
}
.about.message .about-message p span {
  color: #4569E0;
}
.about.message .fl-box {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .about.message .fl-box {
    flex-direction: column;
    gap: 25px;
  }
}
.about.message .fl-box .txt-wrap .txt {
  margin-bottom: 15px;
}
.about.message .fl-box .img figure {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about.message .fl-box .img figure img {
    width: 100%;
    height: auto;
  }
}
.about.message .fl-box .img figcaption {
  font-size: 1.6rem;
}
.about.message .fl-box .img figcaption span {
  font-size: 1.8rem;
  font-weight: bold;
}

/* project */
@media screen and (max-width: 767px) {
  .about.project .mv .inner-wrap .txt-wrap .sub-ttl {
    line-height: 1.3;
  }
}
.about.project .blog-contents {
  margin-top: 30px;
  margin-bottom: 40px;
}
.about.project .blog-contents:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about.project .blog-contents {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.about.project .blog-contents ul {
  margin-top: 0;
}
.about.project .blog-contents ul li {
  margin-bottom: 25px;
}
.about.project .blog-contents ul li::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .about.project .blog-contents ul li {
    margin-bottom: 10px;
  }
}
.about.project .blog-wrap .inner-wrap .detail-wrap .ttl-wrap::before {
  top: calc(50% - 25px);
  height: 50px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .about.project .blog-wrap .inner-wrap .detail-wrap .ttl-wrap::before {
    top: calc(50% - 23px);
    height: 46px;
  }
}

/* access */
.about.access .access-content .link-wrap {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about.access .access-content .link-wrap {
    margin-bottom: 25px;
  }
}
.about.access .access-content .link-wrap .pdf-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}
.about.access .access-content .link-wrap .pdf-btn::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.about.access .access-content .link-wrap .pdf-btn[href$=".pdf"]::after {
  content: "PDF";
}
.about.access .access-content .link-wrap .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .about.access .access-content .link-wrap .pdf-btn:hover {
    opacity: 1;
  }
  .about.access .access-content .link-wrap .pdf-btn:hover span {
    text-decoration: none;
  }
}
.about.access .access-content .fl-box {
  display: flex;
  gap: 65px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about.access .access-content .fl-box {
    flex-direction: column;
    gap: 35px;
  }
}
.about.access .access-content .fl-box .map-wrap img {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about.access .access-content .fl-box .map-wrap img {
    width: 100%;
    height: auto;
  }
}
.about.access .access-content .fl-box .map-wrap .map-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  align-items: center;
  justify-content: right;
}
.about.access .access-content .fl-box .map-wrap .map-btn::before {
  background: url(../images/icn_map.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 13px;
  height: 19px;
  vertical-align: middle;
}
.about.access .access-content .fl-box .map-wrap .map-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .about.access .access-content .fl-box .map-wrap .map-btn:hover {
    opacity: 1;
  }
  .about.access .access-content .fl-box .map-wrap .map-btn:hover span {
    text-decoration: none;
  }
}
.about.access .access-content .fl-box .access-item .address {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .about.access .access-content .fl-box .access-item .address {
    margin-bottom: 30px;
  }
}
.about.access .access-content .fl-box .access-item .access-ttl {
  color: #3377FD;
  padding: 5px 0;
  border-radius: 100px;
  border: 1px solid #3377FD;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
  max-width: 143px;
  width: 100%;
  text-align: center;
}
.about.access .access-content .fl-box .access-item dd {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.about.access .access-content .fl-box .access-item dd:last-child {
  margin-bottom: 0;
}

/* organization */
@media screen and (max-width: 767px) {
  .about.organization .mv .inner-wrap .txt-wrap h1 {
    font-size: 4.8rem;
  }
}
.about.organization .link-wrap {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about.organization .link-wrap {
    margin-bottom: 25px;
  }
}
.about.organization .link-wrap .pdf-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}
.about.organization .link-wrap .pdf-btn::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.about.organization .link-wrap .pdf-btn[href$=".pdf"]::after {
  content: "PDF";
}
.about.organization .link-wrap .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .about.organization .link-wrap .pdf-btn:hover {
    opacity: 1;
  }
  .about.organization .link-wrap .pdf-btn:hover span {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .about.organization .img-wrap img {
    width: 100%;
    height: auto;
  }
}

/* profile */
.about.profile .link-wrap {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about.profile .link-wrap {
    margin-bottom: 25px;
  }
}
.about.profile .link-wrap .pdf-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}
.about.profile .link-wrap .pdf-btn::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.about.profile .link-wrap .pdf-btn[href$=".pdf"]::after {
  content: "PDF";
}
.about.profile .link-wrap .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .about.profile .link-wrap .pdf-btn:hover {
    opacity: 1;
  }
  .about.profile .link-wrap .pdf-btn:hover span {
    text-decoration: none;
  }
}
.about.profile .profile-content {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content {
    margin-bottom: 40px;
  }
}
.about.profile .profile-content dl {
  display: flex;
  border-bottom: 2px solid #E9EBF1;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content dl {
    flex-direction: column;
    padding: 20px 0;
  }
}
.about.profile .profile-content dl:has(.group) {
  display: block;
}
.about.profile .profile-content dl:last-child {
  border-bottom: none;
}
.about.profile .profile-content dl dt, .about.profile .profile-content dl dd {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.about.profile .profile-content dl dt {
  color: #3377FD;
  width: 15%;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.about.profile .profile-content dl dd {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content dl dd {
    width: 100%;
  }
}
.about.profile .profile-content dl dd ul li {
  display: flex;
  gap: 5px;
}
@media (any-hover: hover) {
  .about.profile .profile-content dl dd a:hover {
    text-decoration: underline;
    opacity: 1;
  }
}
.about.profile .profile-content dl .group dl {
  border-bottom: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content dl .group dl:first-child {
    padding-bottom: 10px;
  }
}
.about.profile .profile-content dl .group dl dd .txt-indent {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .about.profile .profile-content dl .group dl dd .txt-indent {
    flex-direction: column;
    gap: 0;
    margin-bottom: 5px;
  }
  .about.profile .profile-content dl .group dl dd .txt-indent:last-child {
    margin-bottom: 0;
  }
}
.about.profile .profile-content dl .group dl dd .txt-indent .fl-w {
  max-width: 64px;
  width: 100%;
}
.about.profile .profile-content dl .group dl dd .txt-indent span img {
  padding-bottom: 3.5px;
}
.about.profile .profile-item .profile-list {
  margin-bottom: 30px;
}
.about.profile .profile-item .profile-list:last-child {
  margin-bottom: 0;
}
.about.profile .profile-item .profile-list dt, .about.profile .profile-item .profile-list dd {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.about.profile .profile-item .profile-list .ttl {
  color: #3377FD;
  padding: 5px 0;
  border-radius: 100px;
  border: 1px solid #3377FD;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
  max-width: 143px;
  width: 100%;
  text-align: center;
}
.about.profile .profile-item .profile-list dd ul li {
  color: #3377FD;
}
.about.profile .profile-item .profile-list dd ul li:has(+ li) {
  margin-bottom: 5px;
}
.about.profile .profile-item .profile-list dd ul li p {
  padding-left: 16px;
  font-size: 1.4rem;
  color: #3B3B4A;
}

/* history */
.about.history .link-wrap {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about.history .link-wrap {
    margin-bottom: 25px;
  }
}
.about.history .link-wrap .pdf-btn {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
}
.about.history .link-wrap .pdf-btn::after {
  color: #7A7A89;
  border: 1px solid #A1A7B9;
  border-radius: 4px;
  padding: 0 5px;
  line-height: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.about.history .link-wrap .pdf-btn[href$=".pdf"]::after {
  content: "PDF";
}
.about.history .link-wrap .pdf-btn span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .about.history .link-wrap .pdf-btn:hover {
    opacity: 1;
  }
  .about.history .link-wrap .pdf-btn:hover span {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .about.history ul {
    width: 90%;
    margin-left: auto;
  }
}
.about.history ul li {
  display: grid;
  grid-template-columns: 105px 1fr;
  -moz-column-gap: 55px;
       column-gap: 55px;
  min-height: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about.history ul li {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    min-height: inherit;
  }
}
.about.history ul li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 132px;
  width: 1px;
  height: 100%;
  background-color: #3377FD;
}
@media screen and (max-width: 767px) {
  .about.history ul li::after {
    left: -25px;
  }
}
.about.history ul li:last-child::after {
  display: none;
}
.about.history ul li:last-child .timeline-txt {
  padding-bottom: 0;
}
.about.history ul li time {
  color: #3377FD;
  position: relative;
  font-size: 1.6rem;
  white-space: nowrap;
}
.about.history ul li time::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -33.5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #3377FD;
}
@media screen and (max-width: 767px) {
  .about.history ul li time::before {
    right: 0;
    left: -30.5px;
  }
}
.about.history ul li .timeline-txt {
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .about.history ul li .timeline-txt {
    padding-bottom: 35px;
  }
}
.about.history ul li .timeline-txt img {
  padding-bottom: 3.5px;
}