@charset "UTF-8";
/* フェードイン（ユーティリティ） */
.u-fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .u-fade-in {
  opacity: 0;
  transform: translateY(40px);
}

.js-enabled .u-fade-in.is-inview,
.js-enabled .u-fade-in.fade-in {
  opacity: 1;
  transform: none;
}

header {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 80px);
  padding: 16px 40px;
  background-color: white;
  border-bottom: 1px solid #EEEEEE;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header #logo {
  height: 27px;
  width: auto;
  cursor: pointer;
}
header ul {
  margin: 0;
  display: flex;
  gap: 40px;
}
header ul li {
  list-style: none;
  cursor: pointer;
  padding: 4px 8px;
  background-color: #fff;
}
header ul li:hover {
  color: #fff;
  background-color: #000;
  transition: 0.2s;
}
header .menu-container {
  display: none;
  position: relative;
}
header .menu-container .menu-toggle {
  cursor: pointer;
  padding: 10px;
  color: #000;
  position: fixed;
  top: 6px;
  right: 16px;
  z-index: 1000;
}
header .menu-container .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 998;
  pointer-events: none;
}
header .menu-container .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: "wght" 600;
}
header .menu-container .side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid #EEEEEE;
  color: #000;
  transition: right 0.3s ease;
  z-index: 999;
}
header .menu-container .side-menu ul {
  list-style: none;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
header .menu-container .side-menu ul li a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  header > ul {
    display: none;
  }
  header .menu-container {
    display: block;
  }
}

footer {
  background-color: #000000;
}
footer p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 8px;
  text-align: center;
}

html[lang=ja] {
  font-family: "Noto Sans JP", "Montserrat", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  margin: 60px 0 0 0;
  letter-spacing: 1px;
}

.mons {
  font-family: "Montserrat";
}
.mons-900 {
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 1.5px;
}

.content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.content .content-body {
  width: 100%;
  max-width: 1120px;
}
@media (max-width: 768px) {
  .content {
    gap: 40px !important;
  }
}

.liner {
  width: 1px;
  height: 100px;
  background-color: #000000;
  position: relative;
}
.liner__black::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #000000;
  position: absolute;
  top: 91px;
  left: -4px;
}
.liner__white::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #fff;
  border: 1px solid #000000;
  position: absolute;
  top: 93px;
  left: -3px;
  box-sizing: border-box;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(40px); /* 下から10px移動 */
  transition: opacity 1s, transform 1.5s; /* フェードインと移動の効果 */
}
@media (max-width: 768px) {
  .fade-in-element {
    transition: opacity 1s, transform 1s !important;
  }
}

.first-fade-in {
  opacity: 0;
  transform: translateY(24px); /* 下から10px移動 */
  transition: opacity 1s, transform 1s; /* フェードインと移動の効果 */
}

.fade-in {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}

.hover-effect {
  transition: transform 0.4s ease; /* アニメーションの設定 */
  position: relative;
}

.hover-effect:hover {
  transform: scale(1.06); /* ホバー時に10%大きくする */
  cursor: pointer;
}

.u-fade-in {
  opacity: 1;
  transform: none;
}

.js-enabled .u-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .u-fade-in.fade-in,
.js-enabled .u-fade-in.is-inview {
  opacity: 1;
  transform: none;
}

.pf {
  /* 改行ユーティリティ */
  /* 769〜1024px */
  /* 481〜768px */
  /* 〜480px*/
}
.pf .pf__section-title {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  max-width: 1200px;
  padding: 4px 12px;
  padding-left: 24px;
  margin: 0 auto 80px auto;
}
.pf .pf__section-title::after {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 8px;
  height: 80%;
  background-color: #2C5F9C;
}
@media (max-width: 768px) {
  .pf .pf__section-title {
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 48px;
  }
}
.pf .br-xs, .pf .br-sm, .pf .br-md, .pf .br-lg {
  display: none;
  width: 100%;
  height: 0;
  line-height: 0;
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .pf .br-lg {
    display: inline-block;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pf .br-md {
    display: inline-block;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .pf .br-sm {
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .pf .br-xs {
    display: inline-block;
  }
}
.pf .firstview {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #2C5F9C;
  color: #fff;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf .firstview .pf__content-body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: none;
}
.pf .firstview .pf__content-body img {
  width: 800px;
  height: auto;
}
.pf .firstview .pf__content-body .pf__right {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  gap: 16px;
}
.pf .firstview .pf__content-body .pf__right .sub-text {
  font-size: 24px;
}
.pf .firstview .pf__content-body .pf__right .title {
  width: 500px;
}
.pf .firstview .pf__content-body .pf__right .day-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.pf .firstview .pf__content-body .pf__right .day-wrap .tool-icon {
  width: 36px;
  height: auto;
}
.pf .firstview .pf__content-body .pf__right .day-wrap__day {
  margin-left: 8px;
}
@media (max-width: 1360px) {
  .pf .firstview {
    position: relative;
  }
  .pf .firstview .pf__content-body {
    display: inline-block;
    width: 100%;
  }
  .pf .firstview .pf__content-body > img {
    position: absolute;
    top: -150px;
    left: 0;
    z-index: -1;
  }
  .pf .firstview .pf__content-body .pf__right {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 40px;
    background-color: rgba(44, 95, 156, 0.7);
  }
}
@media (max-width: 800px) {
  .pf .firstview .pf__content-body {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 16px;
  }
  .pf .firstview .pf__content-body > img {
    position: unset;
    width: 100%;
    height: auto;
  }
  .pf .firstview .pf__content-body .pf__right {
    margin: 0 32px;
  }
  .pf .firstview .pf__content-body .pf__right .sub-text {
    font-size: 16px;
    margin-bottom: 0;
  }
  .pf .firstview .pf__content-body .pf__right .title {
    width: 100%;
    height: auto;
  }
  .pf .firstview .pf__content-body .pf__right .day-wrap .tool-icon {
    width: 30px;
  }
}
.pf .intro-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.pf .intro-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .intro-contents .pf__content-body .pf__section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
.pf .intro-contents .pf__content-body .pf__section__img {
  max-width: 800px;
  width: 100%;
}
.pf .intro-contents .pf__content-body .pf__section .pf__text {
  font-size: 24px;
  line-height: 1 !important;
  text-align: center;
  font-weight: 600;
}
.pf .intro-contents .pf__content-body .pf__section .pf__text-sp {
  display: none;
  max-width: 500px;
}
@media (max-width: 768px) {
  .pf .intro-contents .pf__content-body .pf__section {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .pf .intro-contents .pf__content-body .pf__section .pf__text {
    font-size: 18px;
    line-height: 1.7;
  }
  .pf .intro-contents .pf__content-body .pf__section .pf__text-sp {
    display: block;
  }
}
.pf .BG-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .BG-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .BG-contents .pf__content-body .pf__section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.pf .BG-contents .pf__content-body .pf__section__img {
  width: 300px;
  height: auto;
}
.pf .BG-contents .pf__content-body .pf__section .pf__right {
  max-width: 740px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 56px;
}
.pf .BG-contents .pf__content-body .pf__section .pf__right .pf__text--lg {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pf .BG-contents .pf__content-body .pf__section .pf__right .pf__text--md {
  color: #616161;
}
@media (max-width: 768px) {
  .pf .BG-contents {
    padding: 64px 0;
  }
  .pf .BG-contents .pf__content-body .pf__section {
    flex-direction: column;
    gap: 40px;
  }
  .pf .BG-contents .pf__content-body .pf__section .pf__right {
    padding: 0 16px;
    gap: 40px;
  }
}
.pf .approach-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.pf .approach-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .approach-contents .pf__content-body .pf__section {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  max-width: 940px;
  margin: 0 auto;
}
.pf .approach-contents .pf__content-body .pf__section .main-text {
  font-size: 24px;
  line-height: 42px;
  font-weight: bold;
  display: inline-block;
  background-color: rgba(44, 95, 156, 0.04);
  color: #2C5F9C;
}
@media (max-width: 910px) {
  .pf .approach-contents .pf__content-body .pf__section .main-text {
    max-width: 560px;
    text-align: center;
  }
}
.pf .approach-contents .pf__content-body .pf__section .pf__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-right: auto;
}
.pf .approach-contents .pf__content-body .pf__section .pf__item__reverce {
  margin-right: 0 !important;
  margin-left: auto;
  flex-direction: row-reverse;
}
.pf .approach-contents .pf__content-body .pf__section .pf__item .pf__text {
  max-width: 500px;
}
.pf .approach-contents .pf__content-body .pf__section .pf__item .pf__text--lg {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pf .approach-contents .pf__content-body .pf__section .pf__item .pf__text--md {
  color: #616161;
}
.pf .approach-contents .pf__content-body .pf__section .pf__item__img {
  width: 100px;
  height: auto;
}
@media (max-width: 600px) {
  .pf .approach-contents .pf__content-body .pf__section {
    margin: 0 16px;
  }
  .pf .approach-contents .pf__content-body .pf__section .pf__item {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .pf .approach-contents .pf__content-body .pf__section .pf__item__img {
    width: 80px;
  }
}
.pf .ut-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .ut-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .ut-contents .pf__content-body .pf__section {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.pf .ut-contents .pf__content-body .pf__section .abst {
  font-size: 20px;
  text-align: center;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item img {
  width: 32px;
  height: 32px;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item .pf__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item .pf__text__title {
  font-size: 20px;
  font-weight: bold;
}
.pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item .pf__text__abst {
  font-size: 16px;
}
@media (max-width: 600px) {
  .pf .ut-contents .pf__content-body .pf__section .abst {
    font-size: 18px;
  }
  .pf .ut-contents .pf__content-body .pf__section .task-wrap {
    padding: 24px;
  }
  .pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item {
    align-items: start;
    gap: 12px;
  }
  .pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item img {
    margin-top: 8px;
  }
  .pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item .pf__text__title {
    font-size: 18px;
  }
  .pf .ut-contents .pf__content-body .pf__section .task-wrap .pf__item .pf__text__abst {
    font-size: 14px;
  }
}
.pf .ov-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.pf .ov-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .ov-contents .pf__content-body .pf__section {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
.pf .ov-contents .pf__content-body .pf__section .pf__item {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 80px;
}
.pf .ov-contents .pf__content-body .pf__section .pf__item__text-wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  width: 360px;
  line-height: 2;
}
.pf .ov-contents .pf__content-body .pf__section .pf__item__text-wrap__title {
  font-size: 20px;
  font-weight: bold;
}
.pf .ov-contents .pf__content-body .pf__section .pf__item img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
}
@media (max-width: 1100px) {
  .pf .ov-contents .pf__content-body .pf__section {
    gap: 120px;
  }
  .pf .ov-contents .pf__content-body .pf__section .pf__item {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .pf .ov-contents .pf__content-body .pf__section .pf__item__text-wrap {
    gap: 16px;
    width: 100%;
    max-width: 600px;
  }
}
.pf .kus-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .kus-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .kus-contents .pf__content-body .pf__section {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item {
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: calc(100% - 80px);
  width: 100%;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item__title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 38px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  background-image: linear-gradient(#D4E2FF, #D4E2FF);
  background-repeat: no-repeat;
  background-size: 100% 12px;
  background-position: 0 100%;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main img {
  width: 100%;
  max-width: 600px;
  border: 1px solid #ddd;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main__text {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 32px;
  color: #2C5F9C;
  padding: 0 8px;
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main .text-sp {
  display: none;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .point {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .point__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 80px) / 3);
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .point__item__title-wrap {
  display: flex;
  gap: 12px;
}
.pf .kus-contents .pf__content-body .pf__section .pf__item .point__item__title-wrap__title {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1135px) {
  .pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main {
    flex-direction: column;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main__text {
    display: none;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main .text-sp {
    display: block;
    max-width: 600px;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .point {
    flex-direction: column;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .point__item {
    width: 100%;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .pf .kus-contents .pf__content-body .pf__section .pf__item__title {
    font-size: 20px;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main {
    gap: 24px;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .pf__main__text {
    font-size: 18px;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .point {
    margin-top: 0;
  }
  .pf .kus-contents .pf__content-body .pf__section .pf__item .point__item {
    width: 100%;
    gap: 8px;
  }
}
.pf .SUI-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .SUI-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .SUI-contents .pf__content-body .pf__section {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 160px;
  margin: 0 auto;
  padding-top: 40px;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 80px;
  margin-right: auto;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item__reverce {
  margin-right: 0 !important;
  margin-left: auto;
  flex-direction: row-reverse;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .image-wrap__img {
  width: 280px;
  height: auto;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding-top: 40px;
  gap: 80px;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item {
  gap: 80px;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__title {
  color: #2C5F9C;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px;
  letter-spacing: 4px;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__title .br-hidden {
  display: none;
}
.pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__text {
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 600px;
  padding: 0 8px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .pf .SUI-contents .pf__content-body .pf__section {
    margin: 0 16px;
    gap: 100px;
    padding-top: 0;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-right: 0;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item__reverce {
    margin-left: 0;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item .image-wrap__img {
    width: auto;
    height: 260px;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text {
    gap: 40px;
    padding-top: 24px;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__title .br-visible {
    display: none;
  }
  .pf .SUI-contents .pf__content-body .pf__section .pf__item .pf__text__item__title .br-hidden {
    display: block;
  }
}
.pf .UID-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.pf .UID-contents .pf__content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.pf .UID-contents .pf__content-body .pf__section {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pf .UID-contents .pf__content-body .pf__section .ui-img {
  width: 100%;
  height: auto;
}
.pf .UID-contents .pf__content-body .pf__section .link-figma {
  max-width: 400px;
  width: 100%;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-decoration: none;
  color: #000;
  color: #2C5F9C;
  border-color: #2C5F9C;
  transition: background-color 0.1s ease;
}
.pf .UID-contents .pf__content-body .pf__section .link-figma:hover {
  background-color: rgba(44, 95, 156, 0.04);
}
.pf .UID-contents .pf__content-body .pf__section .link-figma__text {
  font-weight: 500;
}
.pf .hidden {
  opacity: 0; /* 非表示時の不透明度 */
}
.pf .visible {
  opacity: 1;
}
.pf #contents-wrapper {
  transition: opacity 0.5s ease; /* フェードインのアニメーション */
}/*# sourceMappingURL=proflow.css.map */