@charset "UTF-8";
/*!
 * 重要なお知らせ
 */
/* =========================================================
.topImportant
========================================================= */
.topImportant {
  padding-top: 30px;
  padding-bottom: 60px;
}
.topImportant-inner {
  position: relative;
}
.topImportant .topImportantList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  box-shadow: 5px 5px 10px #e8e7e2, -5px -5px 10px #ffffff;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--wp--preset--color--base);
}
.topImportant .topImportantCard {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
.topImportant .topImportantCard + .topImportantCard {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.topImportant .topImportantCard-txtArea {
  position: relative;
  display: grid;
  line-height: 1.6;
  grid-template-columns: 1em 1fr;
  gap: 5px;
}
.topImportant .topImportantCard-txtArea__icon {
  color: #fff;
  position: relative;
}
.topImportant .topImportantCard-txtArea__icon i {
  color: red;
}
.topImportant .topImportantCard-txtArea__txt a, .topImportant .topImportantCard-txtArea__txt span {
  color: var(--wp--preset--color--contrast);
  font-weight: bold;
}
.topImportant .topImportantCard-txtArea__txt a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

:root {
  --section-padding-top:30px;
  --section-padding-bottom:30px;
}
@media screen and (min-width: 768px ) {
  :root {
    --section-padding-top:70px;
    --section-padding-bottom:70px;
  }
}

.btn-main {
  background: var(--wp--preset--color--primary);
  background: linear-gradient(45deg, var(--wp--preset--color--primary), var(--wp--preset--color--secondary), var(--wp--preset--color--tertiary), var(--wp--preset--color--quaternary));
  background-size: 300% 100%;
  border-radius: 3em;
  padding: 1em 2.5em;
  display: inline-block;
  color: #fff;
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.btn-main::after {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 1.13rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0a9";
  display: inline-block;
  line-height: inherit;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}
.btn-main:hover {
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  background-position: 100% 0;
  color: #fff;
}

/* =========================================================
.topHero
========================================================= */
.topHero {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px ) {
  .topHero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.topHero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px ) {
  .topHero-inner {
    gap: 30px;
    flex-direction: row;
    align-items: stretch;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
  }
}
.topHero-txtArea {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  background: rgb(143, 230, 254);
  background: linear-gradient(180deg, rgb(143, 230, 254) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 768px ) {
  .topHero-txtArea {
    padding-top: 0px;
    padding-bottom: 0px;
    width: 40%;
    background: none;
  }
}
.topHero-txtArea-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  align-items: center;
}
@media screen and (min-width: 768px ) {
  .topHero-txtArea-inner {
    align-items: stretch;
    flex: 1;
    gap: 1rem;
    position: absolute;
    left: 5vw;
    width: 40vw;
    z-index: 2;
  }
}
.topHero-slideArea {
  width: 100%;
  max-width: 1200px;
  position: relative;
}
@media screen and (min-width: 768px ) {
  .topHero-slideArea {
    width: auto;
    width: 60%;
    padding: clamp(12px, 2vw, 30px);
  }
}
.topHero-slideArea::before {
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 15%;
  height: auto;
  padding-top: 15%;
  content: "";
  display: block;
  background-color: var(--wp--preset--color--primary);
}
.topHero-slideArea::after {
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
  height: auto;
  padding-top: 15%;
  content: "";
  display: block;
  background-color: var(--wp--preset--color--quaternary);
}
.topHero-slideArea.active::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.topHero-slideArea.active::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.topHero-slider {
  --swiper-theme-color:var(--wp--preset--color--primary);
  overflow: hidden;
}
@media screen and (min-width: 768px ) {
  .topHero-slider {
    border-radius: clamp(0.63rem, 1.34vw + 0.31rem, 1.25rem);
  }
}
.topHero-titleMain {
  width: 70%;
}
@media screen and (min-width: 768px ) {
  .topHero-titleMain {
    width: 100%;
  }
}
.topHero-titleMain .topHero-title-parts {
  display: inline-block;
}
.topHero-titleMain .topHero-title-parts + .topHero-title-parts {
  -webkit-margin-before: 6px;
          margin-block-start: 6px;
}
@media screen and (min-width: 768px ) {
  .topHero-titleMain .topHero-title-parts + .topHero-title-parts {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}
.topHero-titleMain img {
  -webkit-filter: drop-shadow(1px 1px 3px #ffffff) drop-shadow(-1px -1px 3px #ffffff) drop-shadow(1px -1px 3px #ffffff) drop-shadow(-1px 1px 3px #ffffff);
          filter: drop-shadow(1px 1px 3px #ffffff) drop-shadow(-1px -1px 3px #ffffff) drop-shadow(1px -1px 3px #ffffff) drop-shadow(-1px 1px 3px #ffffff);
}
@media screen and (min-width: 768px ) {
  .topHero-titleMain img {
    -webkit-filter: drop-shadow(1px 1px 0 var(--wp--preset--color--base)) drop-shadow(-1px -1px 0 var(--wp--preset--color--base)) drop-shadow(1px -1px 0 var(--wp--preset--color--base)) drop-shadow(-1px 1px 0 var(--wp--preset--color--base));
            filter: drop-shadow(1px 1px 0 var(--wp--preset--color--base)) drop-shadow(-1px -1px 0 var(--wp--preset--color--base)) drop-shadow(1px -1px 0 var(--wp--preset--color--base)) drop-shadow(-1px 1px 0 var(--wp--preset--color--base));
  }
}
.topHero-titleSub {
  font-size: clamp(1rem, 1.17vw + 0.71rem, 1.88rem);
  text-align: center;
}
@media screen and (min-width: 768px ) {
  .topHero-titleSub {
    text-align: left;
  }
}
.topHero-titleSub img {
  -webkit-filter: drop-shadow(1px 1px 0 var(--wp--preset--color--base)) drop-shadow(-1px -1px 0 var(--wp--preset--color--base)) drop-shadow(1px -1px 0 var(--wp--preset--color--base)) drop-shadow(-1px 1px 0 var(--wp--preset--color--base));
          filter: drop-shadow(1px 1px 0 var(--wp--preset--color--base)) drop-shadow(-1px -1px 0 var(--wp--preset--color--base)) drop-shadow(1px -1px 0 var(--wp--preset--color--base)) drop-shadow(-1px 1px 0 var(--wp--preset--color--base));
}
.topHero-img {
  --aspect-ratio: 6/4;
  position: relative;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1) {
  .topHero-img::before {
    float: left;
    padding-top: calc(1 / (var(--aspect-ratio)) * 100%);
    content: "";
  }
  .topHero-img::after {
    display: block;
    content: "";
    clear: both;
  }
}
.topHero-img img {
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@supports not (aspect-ratio: 1) {
  .topHero-img img {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* =========================================================
ロード前非表示
========================================================= */
.topHero-title-parts, .topHero-titleSub, .topHero-slider {
  opacity: 0;
}

.topHero-slider {
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
}

/* =========================================================
.topAbout
========================================================= */
.topAbout {
  position: relative;
  padding-top: calc(var(--section-padding-top) + 7vw);
  padding-bottom: var(--section-padding-bottom);
}
@media screen and (min-width: 768px ) {
  .topAbout {
    padding-top: var(--section-padding-top);
  }
}
.topAbout-title {
  font-size: clamp(1.25rem, 1.49vw + 0.9rem, 2rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: relative;
  -webkit-margin-after: 2.8em;
          margin-block-end: 2.8em;
}
.topAbout-title span {
  position: relative;
}
.topAbout-title:before {
  content: attr(data-eng-text);
  top: 50%;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  font-family: var(--wp--preset--font-family--english-font);
  color: #fff;
  font-weight: bold;
  font-size: 26vw;
  line-height: 0.8;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px ) {
  .topAbout-title:before {
    line-height: 0.5;
    font-size: clamp(5rem, 15vw + 0.49rem, 15rem);
  }
}
.topAbout-midashi {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: clamp(1.13rem, 1.36vw + 0.78rem, 1.88rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}
.topAbout-midashi span {
  display: inline-block;
}
.topAbout-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px ) {
  .topAbout-row {
    flex-direction: row;
  }
}
.topAbout-txtArea {
  width: 100%;
}
@media screen and (min-width: 768px ) {
  .topAbout-txtArea {
    width: 50%;
  }
}
.topAbout-txtArea p + p {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}
.topAbout-imgArea {
  width: 100%;
}
@media screen and (min-width: 768px ) {
  .topAbout-imgArea {
    width: 50%;
  }
}
.topAbout-points {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 768px ) {
  .topAbout-points {
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(30px, 3vw, 50px);
  }
}
.topAbout .pointCard {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 15px;
  align-content: flex-start;
}
@media screen and (min-width: 768px ) {
  .topAbout .pointCard {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.topAbout .pointCard .imgArea {
  border-radius: 50%;
  overflow: hidden;
  --aspect-ratio: 1/1;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1) {
  .topAbout .pointCard .imgArea::before {
    float: left;
    padding-top: calc(1 / (var(--aspect-ratio)) * 100%);
    content: "";
  }
  .topAbout .pointCard .imgArea::after {
    display: block;
    content: "";
    clear: both;
  }
}
.topAbout .pointCard .imgArea img {
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@supports not (aspect-ratio: 1) {
  .topAbout .pointCard .imgArea img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.topAbout .pointCard .txtArea h4 {
  font-size: clamp(1.13rem, 0.25vw + 1.07rem, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  color: var(--wp--preset--color--primary);
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}
@media screen and (min-width: 768px ) {
  .topAbout .pointCard .txtArea h4 {
    text-align: center;
  }
}
.topAbout .pointCard + .pointCard {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-top: 15px;
}
@media screen and (min-width: 768px ) {
  .topAbout .pointCard + .pointCard {
    border-top: initial;
    padding-top: initial;
  }
}
.topAbout-endTxt {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  font-size: clamp(1.13rem, 0.28vw + 1.06rem, 1.25rem);
  text-align: center;
  font-weight: bold;
}
.topAbout-endTxt span {
  display: inline-block;
}
.topAbout-endTxt span.kyocho {
  color: var(--wp--preset--color--primary);
}
.topAbout-btnArea {
  text-align: center;
}

/* =========================================================
.topSpend
========================================================= */
.topSpend {
  padding-top: calc(var(--section-padding-top) + 7vw);
  padding-bottom: var(--section-padding-bottom);
}
@media screen and (min-width: 768px ) {
  .topSpend {
    padding-top: var(--section-padding-top);
  }
}
.topSpend-title {
  font-size: clamp(1.25rem, 1.49vw + 0.9rem, 2rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: relative;
  -webkit-margin-after: 2.8em;
          margin-block-end: 2.8em;
}
.topSpend-title span {
  position: relative;
}
.topSpend-title:before {
  content: attr(data-eng-text);
  top: 50%;
  position: absolute;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  font-family: var(--wp--preset--font-family--english-font);
  color: #fff;
  font-weight: bold;
  font-size: 26vw;
  line-height: 0.8;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px ) {
  .topSpend-title:before {
    line-height: 0.5;
    font-size: clamp(5rem, 15vw + 0.49rem, 15rem);
  }
}
.topSpend .topSpendCardList {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 3vw, 50px);
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpendCardList {
    grid-template-columns: 1fr 1fr;
  }
}
.topSpend .topSpendCard {
  --spend-color-main:var(--wp--preset--color--primary);
  --spend-color-sub:var(--wp--preset--color--secondary);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  background: var(--spend-color-main);
  background: linear-gradient(45deg, var(--spend-color-main) 0%, var(--spend-color-sub) 100%);
}
.topSpend .topSpendCard.card-work {
  --spend-color-main:var(--wp--preset--color--primary);
  --spend-color-sub:var(--wp--preset--color--secondary);
}
.topSpend .topSpendCard.card-program {
  --spend-color-main:var(--wp--preset--color--tertiary);
  --spend-color-sub:var(--wp--preset--color--quaternary);
}
.topSpend .topSpendCard .imgArea {
  --aspect-ratio: 6/4;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1) {
  .topSpend .topSpendCard .imgArea::before {
    float: left;
    padding-top: calc(1 / (var(--aspect-ratio)) * 100%);
    content: "";
  }
  .topSpend .topSpendCard .imgArea::after {
    display: block;
    content: "";
    clear: both;
  }
}
.topSpend .topSpendCard .imgArea img {
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@supports not (aspect-ratio: 1) {
  .topSpend .topSpendCard .imgArea img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.topSpend .topSpendCard .txtArea {
  flex: 1;
  padding-top: clamp(0.94rem, 2.08vw + 0.42rem, 1.88rem);
  padding-left: clamp(0.94rem, 2.08vw + 0.42rem, 1.88rem);
  padding-right: clamp(0.94rem, 2.08vw + 0.42rem, 1.88rem);
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpendCard .txtArea {
    padding: 30px;
  }
}
.topSpend .topSpendCard .txtArea .label {
  color: var(--spend-color-main);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-margin-before: -2em;
          margin-block-start: -2em;
  width: 10em;
  font-size: clamp(1.38rem, 0.83vw + 1.17rem, 1.75rem);
  background-color: #fff;
  padding: 0.5em;
  line-height: 1;
  text-align: center;
}
.topSpend .topSpendCard .txtArea .midashi {
  font-size: clamp(1.25rem, 0.83vw + 1.04rem, 1.63rem);
  text-align: center;
  line-height: 1.4;
}
.topSpend .topSpendCard .txtArea .midashi span {
  display: inline-block;
}
.topSpend .topSpendCard .btnArea {
  margin-top: auto;
  text-align: center;
}
.topSpend .topSpendCard .btnArea a {
  color: var(--spend-color-main);
  position: relative;
  display: inline-block;
  min-width: 240px;
  padding: 1em 2.5em;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3em;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.topSpend .topSpendCard .btnArea a:hover {
  background-color: var(--spend-color-main);
  color: #fff;
  border: 1px solid #fff;
}
.topSpend .topSpendCard .btnArea a::before {
  position: absolute;
  right: 1em;
  top: 50%;
  font-size: inherit;
  font-weight: 900 !important;
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  line-height: inherit;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}
.topSpend .topSpend-soudan {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  background: var(--wp--preset--color--base-shade);
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpend-soudan {
    padding: 30px;
    gap: 30px;
  }
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpend-soudan {
    flex-direction: row;
  }
}
.topSpend .topSpend-soudan .imgArea {
  width: 100%;
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpend-soudan .imgArea {
    width: 35%;
  }
}
.topSpend .topSpend-soudan .imgArea img {
  max-width: initial;
  width: 100%;
}
.topSpend .topSpend-soudan .txtArea {
  align-self: center;
  flex: 1;
}
.topSpend .topSpend-soudan .midashi {
  font-size: clamp(1.25rem, 0.83vw + 1.04rem, 1.63rem);
  text-align: center;
  line-height: 1.4;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}
@media screen and (min-width: 768px ) {
  .topSpend .topSpend-soudan .midashi {
    text-align: left;
  }
}
.topSpend .topSpend-soudan .midashi span {
  display: inline-block;
}
/* =========================================================
.white-wrap-row
========================================================= */
.white-wrap-row {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3vw, 50px);
}
@media screen and (min-width: 1120px ) {
  .white-wrap-row {
    flex-direction: row;
  }
}
.white-wrap-row .topNews,
.white-wrap-row .topSns {
  border-radius: 10px;
  background-color: #fff;
  padding-top: 20px;
  padding-left: clamp(0.94rem, 2.08vw + 0.42rem, 1.88rem);
  padding-right: clamp(0.94rem, 2.08vw + 0.42rem, 1.88rem);
  padding-bottom: 20px;
}
@media screen and (min-width: 1120px ) {
  .white-wrap-row .topNews,
  .white-wrap-row .topSns {
    padding-bottom: 30px;
  }
}
.white-wrap-row .topNews {
  width: 100%;
}
@media screen and (min-width: 1120px ) {
  .white-wrap-row .topNews {
    width: 65%;
  }
}
.white-wrap-row .topSns {
  width: 100%;
}
@media screen and (min-width: 1120px ) {
  .white-wrap-row .topSns {
    width: 35%;
  }
}

/* =========================================================
.topNews
========================================================= */
.topNews-title {
  font-size: clamp(1.25rem, 0.56vw + 1.11rem, 1.5rem);
  font-weight: bold;
  line-height: 1.2;
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}
.topNews-btnArea {
  text-align: center;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}

.newsList {
  list-style: none !important;
  -webkit-padding-start: 0 !important;
          padding-inline-start: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* =========================================================
.topSns
========================================================= */
.topSns-title {
  font-size: clamp(1.25rem, 0.56vw + 1.11rem, 1.5rem);
  font-weight: bold;
  line-height: 1.2;
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}
.topSns .bnrList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 480px ) {
  .topSns .bnrList {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1120px ) {
  .topSns .bnrList {
    grid-template-columns: 1fr;
  }
}
.topSns .bnrList a:hover {
  opacity: 0.7;
}
.topSns .bnrList img {
  max-width: initial;
  width: 100%;
}

/* =========================================================
.topBlog
========================================================= */
.topBlog, .topLab {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background-color: var(--wp--preset--color--base-shade);
}
.topBlog-inner, .topLab-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 10px;
  justify-items: center;
}
.topBlog-title, .topLab-title {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 480px ) {
  .topBlog-title, .topLab-title {
    flex-direction: row;
  }
}
.topBlog-title .title, .topLab-title .title {
  font-size: clamp(1.25rem, 1.39vw + 0.9rem, 1.88rem);
  line-height: 1.4;
}
.topBlog-subTitle, .topLab-subTitle {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: clamp(1rem, 0.909rem + 0.34vw, 1.125rem);
}
.topBlog-btnArea, .topLab-btnArea {
  text-align: center;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}

/* =========================================================
.topLab
========================================================= */
.topLab {
  background-color: #fff;
}/*# sourceMappingURL=top.css.map */