@charset "UTF-8";

/* 共通設定 */
:root{
  /* メインカラー*/
  --pcy-pc: #5151D3;
  --pcy-ac-o: #FF8C00;
  --pcy-ac-b: #5192D3;
  --pcy-ac-g: #39C2B8;
  --pcy-ac-y: #F8ED5A;
  --pcy-bg-w: #fff;
  --pcy-bg-y: #FAF8F2;
  --pcy-tx: #000;
  --pcy-tx-sb: #43495B;
  --pcy-border: #E2E4E9;
  --pcy-white-80: rgba(255, 255, 255, 0.8);
  

  /* フォントウェイト */
  --pcy-bold: 700;
  --pcy-medium: 500;

  /* ボタン */
  --pcy-orange-10: rgba(255, 140, 0, 0.1);
  --pcy-orange-20: rgba(255, 140, 0, 0.2);
  --pcy-orange-50: rgba(255, 140, 0, 0.5);
  --pcy-white-30: rgba(255, 255, 255, 0.3);
  --pcy-btn-gr:#999999;
  --pcy-cta: #FF4C70;
  --pcy-cta-gr: #00B30F;

  /* アニメーションの設定 */
  --pcy-transition-speed: 0.5s;
  --pcy-easing: cubic-bezier(0.25, 1, 0.5, 1);
}

/* アクセシビリティ用ユーティリティ */
.pcy-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* フォントの設定 */

.pcy-wrapper{
  font-family: 'Poppins','Zen Kaku Gothic New',sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: var(--pcy-medium);
  color: var(--pcy-tx);
  letter-spacing: 0.03em;
  background-color: var(--pcy-bg-w);
}

/* リセットの設定 */
.pcy-wrapper ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.pcy-wrapper section a,
.pcy-wrapper section a:visited,
.pcy-wrapper section a:hover {
  color: inherit;
  text-decoration: none !important;
}

.pcy-wrapper .pcy-follow-btn a,
.pcy-wrapper .pcy-follow-btn a:visited,
.pcy-wrapper .pcy-follow-btn a:hover {
  text-decoration: none !important;
}

.pcy-wrapper h1, .pcy-wrapper h2, .pcy-wrapper h3, .pcy-wrapper h4{
  margin: 0 auto;
  padding: 0;
  scroll-margin-top: 80px;
}

.pcy-wrapper p{
  margin: 0;
  padding: 0;
}

.pcy-wrapper *,
.pcy-wrapper *::before,
.pcy-wrapper *::after {
  box-sizing: border-box;
}

/* 余白設定 */
.pcy-wrapper section{
  padding: 48px 24px;
  background-color: var(--pcy-bg-w);
  box-sizing: border-box;
}
.pcy-wrapper.pcy-article section{
  padding: 24px 0;
}
@media screen and (min-width: 769px){
  .pcy-wrapper section .pcy-section__inner{
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 0;
  }
}

.pcy-wrapper img{
  width: 100%;
}

/* アニメーション設定 */
/* 浮かび上がる */
.pcy-wrapper .pcy-fade-up{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--pcy-transition-speed) var(--pcy-easing),
  transform var(--pcy-transition-speed) var(--pcy-easing);
}

.pcy-wrapper .pcy-fade-up.is-active, details[open] .pcy-fade-up{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
/* 強調 */
.pcy-wrapper .bounce {
  opacity: 1; 
}

.pcy-wrapper .bounce.is-active {
  animation: bounce 2s ease-out infinite;
}

@keyframes bounce {
  0%, 40%, 60%, 80%, 100% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}



/* KV */
.pcy-wrapper .pcy-kv .pcy-kv_txt-wrapper{
  padding: 24px 24px 0;
  text-align: center;
  font-size: 22px;
}

.pcy-wrapper .pcy-kv .pcy-kv_txt-wrapper .pcy-kv_lead-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.pcy-wrapper .pcy-kv .pcy-kv_txt-wrapper .pcy-kv_target img{
  width: 100%;
}

.pcy-wrapper .pcy-kv .pcy-kv_txt-wrapper .pcy-kv_sub-text{
  white-space: nowrap;
}
.pcy-wrapper .pcy-kv .pcy-kv_main-logo svg{
  width: 100%;
  padding: 8px 16px;
}

/* 2608改修 */
.pcy-wrapper section.pcy-kv{
  background-color: var(--pcy-bg-y);
}

.pcy-kv__carousel{
  height: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pcy-carousel-track{
  display: flex;
  gap: 16px;
  margin: 16px 0 0 0 ;
  padding-left: calc(50% - 150px);
  transition: transform var(--pcy-transition-speed) var(--pcy-easing);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.pcy-carousel-track.is-dragging{
  transition: none;
  cursor: grabbing;
}

.pcy-carousel-track .pcy-news-card{
  width: 300px;
  flex-shrink: 0;
}

/* ページャー（ドット） */
.pcy-carousel__pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
button.pcy-carousel__pager-item{
  width: 8px;
  height: 8px;
  background-color: var(--pcy-btn-gr);
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--pcy-transition-speed) var(--pcy-easing);
  padding: 0;
}
button.pcy-carousel__pager-item.active{
  width: 16px;
  height: 16px;
  border: 3px solid var(--pcy-btn-gr);
  background-color: transparent;
}

.pcy-carousel__button{
  display: flex;
  justify-content: center;
}

/* KV終了 */

/* CTAセクション */
.pcy-wrapper .pcy-cta-section{
  background-image: url("https://m3-pharmacist-prod.s3.ap-northeast-1.amazonaws.com/uploads/uploaded_image/pharmacist_news/16419/cta__bg--pink.png?1786001988");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;

  color: var(--pcy-cta);
  text-align: center;
  padding: 32px 16px ;
}

.pcy-wrapper .pcy-cta-section .pcy-h2{
  margin: 0 auto;
}

.pcy-cta-section .pcy-h2 span.pcy-h2__sm{
  font-size: 15px;
  color: var(--pcy-tx);
  margin-bottom: 4px;
  text-align: start;
}

.pcy-cta-section .pcy-h2 span.pcy-h2__st{
  font-size: 28px;
  line-height: 1;
  background-color: var(--pcy-bg-w);
  padding: 8px 8px;
  width: fit-content;
}

.pcy-cta-section  p{
  font-size: 13px;
  color: var(--pcy-tx);
}


/* ボタン */
.pcy-button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  height: 64px;
  position: relative;
  padding: 8px 8px 8px 24px;
  border-radius: 9999px;
  background-color: var(--pcy-cta);

  /* 文字 */
  color: var(--pcy-bg-w);
  font-size: 15px;
  font-weight: var(--pcy-bold);
  text-decoration: none;
  text-align: center;

  /* アニメーション */
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcy-button:hover{
  opacity: 0.7;
  transform: translateY(-5px);
  color: var(--pcy-bg-w);
}

.pcy-button > div{
  display: flex;
  gap: 8px;
  text-align: center;
  justify-content: baseline;
}

.pcy-button .pcy-button-badge{
  border: 2px solid var(--pcy-cta);
  border-radius: 2px;
  padding: 2px 8px 0;
  font-size: 14px;
  white-space: nowrap;
  height: fit-content;
}

.pcy-button .pcy-button-icon{
  position: absolute;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--pcy-white-30);
  color: var(--pcy-bg-w);
}

.pcy-button span.pcy-button-text{
  color: var(--pcy-bg-w);
  display: block;
  text-align: center;
  margin-right: 24px;
}

/* CTA色違い（マイページ） */
.pcy-wrapper .pcy-cta-section.cta-gr{
  background-image: url(https://m3-pharmacist-prod.s3.ap-northeast-1.amazonaws.com/uploads/uploaded_image/pharmacist_news/16418/cta__bg--green.png?1786001980);
  color: var(--pcy-cta-gr);
}

.pcy-cta-section.cta-gr  .pcy-button{
  background-color: var(--pcy-cta-gr);
}
/* CTA色違い（実績） */

.pcy-button.pcy-button--orange{
  height: 44px;
  border: 1px solid var(--pcy-ac-o);
  background-color: var(--pcy-orange-10);
}

.pcy-button--orange .pcy-button-icon{
  width: 32px;
  height: 32px;
  background-color: var(--pcy-orange-50);
}

.pcy-button--orange span.pcy-button-text{
  color: var(--pcy-ac-o);
}

.pcy-button--orange .pcy-button-arrow{
  width: 16px;
}


/* 矢印CSS ジェネレーターよりコピー */
.pcy-button-arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 7.1px 0;
  border-radius: 9999px;
  background-color: #fff;
}

.pcy-button-arrow::before,
.pcy-button-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.pcy-button-arrow::before {
  transform: rotate(45deg);
}

.pcy-button-arrow::after {
  transform: rotate(-45deg);
}
/* 矢印ここまで */

/* h2見出し */
.pcy-wrapper .pcy-h2{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 32px;
}

.pcy-wrapper .pcy-h2 .pcy-h2__eng{
  font-size:  32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto;
}

.pcy-wrapper .pcy-h2 .pcy-h2__jp{
  font-size: 14px;
  font-weight: var(--pcy-bold);
  color: var(--pcy-pc);
}
.pcy-wrapper .pcy-h2 .pcy-h2__jp.pcy-h2__jp--ac-b{
  color: var(--pcy-ac-b);
}
.pcy-wrapper .pcy-h2 .pcy-h2__jp.pcy-h2__jp--ac-o{
  color: var(--pcy-ac-o);
}
.pcy-wrapper .pcy-h2 .pcy-h2__jp.pcy-h2__jp--p{
  color: var(--pcy-cta);
}

.pcy-wrapper section.pcy-new-arrival,
.pcy-wrapper section.pcy-message,.pcy-wrapper section.pcy-faq{
  background-color: var(--pcy-bg-y);
}

.pcy-wrapper section.pcy-new-arrival .pcy-section__inner,
.pcy-wrapper section.pcy-message .pcy-section__inner,
.pcy-wrapper section.pcy-flow .pcy-section__inner,
.pcy-wrapper section.pcy-faq .pcy-section__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pcy-wrapper .pcy-new-arrival__card-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 新着カード */
.pcy-wrapper .pcy-news-card{
  background-color: var(--pcy-bg-w);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 32px;
  max-width: 400px;
  box-shadow: 0px 6px 12px -3px #3333401a, 0px 2px 28px -1px #3333401f;
}

.pcy-wrapper .pcy-news-card .pcy-news-card__img-wrapper{
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #d9d9d9;
}

.pcy-wrapper .pcy-news-card .pcy-news-card__img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcy-wrapper .pcy-news-card .pcy-news-card__category{
  position: absolute;
  left: 24px;
  top: -15px;
  background-color: var(--pcy-pc);
  font-weight:var(--pcy-bold) ;
  padding: 0 16px;
  border-radius: 9999px;
  color: var(--pcy-bg-w);
  z-index: 100;
}

.pcy-wrapper .pcy-news-card .pcy-news-card__category.pcy-news-card__category--g{
  background-color: var(--pcy-ac-g);
}

.pcy-wrapper .pcy-news-card .pcy-news-card__body{
  position: relative;
  padding: 24px;
}

.pcy-wrapper .pcy-news-card h3{
  font-weight: var(--pcy-bold);
  font-size:  16px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.pcy-wrapper .pcy-news-card .pcy-news-card__date{
  display: block;
  font-size:  14px;
  color: var(--pcy-tx-sb);
}

.pcy-wrapper .pcy-card-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 転職事例カード */
.pcy-wrapper .pcy-case-card{
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background-color: var(--pcy-bg-y);
  flex-direction: column;
  border-radius: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__balloon{
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  background-color: var(--pcy-ac-o);
  color: var(--pcy-bg-w);
  font-weight: var(--pcy-bold);
  font-size: 17px;
  border-radius: 4px;
  position: relative;
  height: 50px;
  width: 100%;
  line-height: 1;
  white-space: nowrap;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__balloon::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 15%;
  border: 8px solid transparent;
  border-top-color: var(--pcy-ac-o);
}

.pcy-wrapper .pcy-case-card .pcy-case-card__balloon span{
  font-size: 22px;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content{
  display: flex;
  gap: 16px;
  width: 100%;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__image{
  flex: 1;
  aspect-ratio: 1 / 1;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info{
  flex: 3;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 8px;
  justify-content: center;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info,.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info .divider{
  font-size: 14px;
  margin-left: 4px;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info span{
  font-size: 22px;
  margin-right: 2px;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info ul li{
  white-space: nowrap;
  opacity: 0.5;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison{
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__box{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-weight: var(--pcy-bold);
  font-size: 14px;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__box .pcy-case-card__label{
  width: 100%;
  margin: 2px 8px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--pcy-ac-b);
  color: var(--pcy-ac-b);
  background-color: var(--pcy-bg-w);
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__box .pcy-case-card__label.pcy-case-card__label--after{
  color: var(--pcy-bg-w);
  background-color: var(--pcy-ac-b);
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__label-info{
  font-size: 14px;
  display: flex;
  align-items: baseline;
  line-height: 1;
  gap: 2px;
  height: 32px;
  padding: 8px;
  white-space: nowrap;
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__label-info span{
  font-size: 22px;
}

.pcy-case-card__label.pcy-case-card__label--after ~ .pcy-case-card__label-info {
  color: var(--pcy-ac-b);
}

.pcy-wrapper .pcy-case-card .pcy-case-card__comparison .pcy-case-card__label.pcy-case-card__label--after ~ .pcy-case-card__label-info span{
  font-size: 28px;
}

.pcy-wrapper .pcy-support{
  background: url("https://m3-pharmacist-prod.s3.ap-northeast-1.amazonaws.com/uploads/uploaded_image/pharmacist_news/15844/noise.png?1777281659"),linear-gradient(94deg, #2A5BD7 1.26%, #003EC3 98.04%);
  background-blend-mode: multiply;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pcy-wrapper .pcy-support h2.pcy-support__h2{
  color: var(--pcy-bg-w);
  padding: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--pcy-bg-w);
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  line-height: 1;
  font-size: 22px;
}

.pcy-wrapper .pcy-support h2.pcy-support__h2 span{
  font-size: 16px;
}

.pcy-wrapper .pcy-support__txt-group{
  text-align: center;
  color: var(--pcy-bg-w);
  margin-bottom: 32px;
}

.pcy-wrapper .pcy-support .pcy-support-card{
  flex: 1;
  border-radius: 16px;
  background-color: var(--pcy-bg-w);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  margin-bottom: 32px;
  position: relative;
}
.pcy-wrapper .pcy-support .pcy-support-card p{
  margin: 0;
  color: var(--pcy-tx);
}


.pcy-wrapper .pcy-support .pcy-support-card::before{
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 69px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.pcy-wrapper .pcy-support .pcy-support-card--01::before{
  background-image: url('data:image/svg+xml;utf8,<svg width="55" height="45" viewBox="0 0 55 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.5" d="M38.0608 10.4404V0.900391H54.6808V44.7004H44.0008V10.4404H38.0608Z" fill="%23DCDCF6"/><path opacity="0.5" d="M0 22.2C0 15.32 1.32 9.9 3.96 5.94C6.64 1.98 10.94 0 16.86 0C22.78 0 27.06 1.98 29.7 5.94C32.38 9.9 33.72 15.32 33.72 22.2C33.72 29.16 32.38 34.62 29.7 38.58C27.06 42.54 22.78 44.52 16.86 44.52C10.94 44.52 6.64 42.54 3.96 38.58C1.32 34.62 0 29.16 0 22.2ZM23.64 22.2C23.64 18.16 23.2 15.06 22.32 12.9C21.44 10.7 19.62 9.6 16.86 9.6C14.1 9.6 12.28 10.7 11.4 12.9C10.52 15.06 10.08 18.16 10.08 22.2C10.08 24.92 10.24 27.18 10.56 28.98C10.88 30.74 11.52 32.18 12.48 33.3C13.48 34.38 14.94 34.92 16.86 34.92C18.78 34.92 20.22 34.38 21.18 33.3C22.18 32.18 22.84 30.74 23.16 28.98C23.48 27.18 23.64 24.92 23.64 22.2Z" fill="%23DCDCF6"/></svg>');
  right: 0;
}

.pcy-wrapper .pcy-support .pcy-support-card--02::before{
    background-image: url('data:image/svg+xml;utf8,<svg width="69" height="45" viewBox="0 0 69 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.5" d="M38.7806 36.54C40.1406 35.46 40.7606 34.96 40.6406 35.04C44.5606 31.8 47.6406 29.14 49.8806 27.06C52.1606 24.98 54.0806 22.8 55.6406 20.52C57.2006 18.24 57.9806 16.02 57.9806 13.86C57.9806 12.22 57.6006 10.94 56.8406 10.02C56.0806 9.1 54.9406 8.64 53.4206 8.64C51.9006 8.64 50.7006 9.22 49.8206 10.38C48.9806 11.5 48.5606 13.1 48.5606 15.18H38.6606C38.7406 11.78 39.4606 8.94 40.8206 6.66C42.2206 4.38 44.0406 2.7 46.2806 1.62C48.5606 0.54 51.0806 0 53.8406 0C58.6006 0 62.1806 1.22 64.5806 3.66C67.0206 6.1 68.2406 9.28 68.2406 13.2C68.2406 17.48 66.7806 21.46 63.8606 25.14C60.9406 28.78 57.2206 32.34 52.7006 35.82H68.9006V44.16H38.7806V36.54Z" fill="%23DCDCF6"/><path opacity="0.5" d="M0 22.2596C0 15.3796 1.32 9.95957 3.96 5.99957C6.64 2.03957 10.94 0.0595703 16.86 0.0595703C22.78 0.0595703 27.06 2.03957 29.7 5.99957C32.38 9.95957 33.72 15.3796 33.72 22.2596C33.72 29.2196 32.38 34.6796 29.7 38.6396C27.06 42.5996 22.78 44.5796 16.86 44.5796C10.94 44.5796 6.64 42.5996 3.96 38.6396C1.32 34.6796 0 29.2196 0 22.2596ZM23.64 22.2596C23.64 18.2196 23.2 15.1196 22.32 12.9596C21.44 10.7596 19.62 9.65957 16.86 9.65957C14.1 9.65957 12.28 10.7596 11.4 12.9596C10.52 15.1196 10.08 18.2196 10.08 22.2596C10.08 24.9796 10.24 27.2396 10.56 29.0396C10.88 30.7996 11.52 32.2396 12.48 33.3596C13.48 34.4396 14.94 34.9796 16.86 34.9796C18.78 34.9796 20.22 34.4396 21.18 33.3596C22.18 32.2396 22.84 30.7996 23.16 29.0396C23.48 27.2396 23.64 24.9796 23.64 22.2596Z" fill="%23DCDCF6"/></svg>');
}

.pcy-wrapper .pcy-support .pcy-support-card--03::before{
  background-image: url('data:image/svg+xml;utf8,<svg width="70" height="46" viewBox="0 0 70 46" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.5" d="M39.5007 13.38C39.6607 9.1 41.0607 5.8 43.7007 3.48C46.3407 1.16 49.9207 0 54.4407 0C57.4407 0 60.0007 0.52 62.1207 1.56C64.2807 2.6 65.9007 4.02 66.9807 5.82C68.1007 7.62 68.6607 9.64 68.6607 11.88C68.6607 14.52 68.0007 16.68 66.6807 18.36C65.3607 20 63.8207 21.12 62.0607 21.72V21.96C64.3407 22.72 66.1407 23.98 67.4607 25.74C68.7807 27.5 69.4407 29.76 69.4407 32.52C69.4407 35 68.8607 37.2 67.7007 39.12C66.5807 41 64.9207 42.48 62.7207 43.56C60.5607 44.64 57.9807 45.18 54.9807 45.18C50.1807 45.18 46.3407 44 43.4607 41.64C40.6207 39.28 39.1207 35.72 38.9607 30.96H48.9207C48.9607 32.72 49.4607 34.12 50.4207 35.16C51.3807 36.16 52.7807 36.66 54.6207 36.66C56.1807 36.66 57.3807 36.22 58.2207 35.34C59.1007 34.42 59.5407 33.22 59.5407 31.74C59.5407 29.82 58.9207 28.44 57.6807 27.6C56.4807 26.72 54.5407 26.28 51.8607 26.28H49.9407V17.94H51.8607C53.9007 17.94 55.5407 17.6 56.7807 16.92C58.0607 16.2 58.7007 14.94 58.7007 13.14C58.7007 11.7 58.3007 10.58 57.5007 9.78C56.7007 8.98 55.6007 8.58 54.2007 8.58C52.6807 8.58 51.5407 9.04 50.7807 9.96C50.0607 10.88 49.6407 12.02 49.5207 13.38H39.5007Z" fill="%23DCDCF6"/><path opacity="0.5" d="M0 22.3191C0 15.4391 1.32 10.0191 3.96 6.05914C6.64 2.09914 10.94 0.119141 16.86 0.119141C22.78 0.119141 27.06 2.09914 29.7 6.05914C32.38 10.0191 33.72 15.4391 33.72 22.3191C33.72 29.2791 32.38 34.7391 29.7 38.6991C27.06 42.6591 22.78 44.6391 16.86 44.6391C10.94 44.6391 6.64 42.6591 3.96 38.6991C1.32 34.7391 0 29.2791 0 22.3191ZM23.64 22.3191C23.64 18.2791 23.2 15.1791 22.32 13.0191C21.44 10.8191 19.62 9.71914 16.86 9.71914C14.1 9.71914 12.28 10.8191 11.4 13.0191C10.52 15.1791 10.08 18.2791 10.08 22.3191C10.08 25.0391 10.24 27.2991 10.56 29.0991C10.88 30.8591 11.52 32.2991 12.48 33.4191C13.48 34.4991 14.94 35.0391 16.86 35.0391C18.78 35.0391 20.22 34.4991 21.18 33.4191C22.18 32.2991 22.84 30.8591 23.16 29.0991C23.48 27.2991 23.64 25.0391 23.64 22.3191Z" fill="%23DCDCF6"/></svg>');
}


.pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__title{
  font-weight: var(--pcy-bold);
  line-height: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: baseline;
  z-index: 1;
  flex-direction: column;
  color: var(--pcy-tx);
  white-space: nowrap;
}

.pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__title p{
  font-size:  18px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__title span{
  padding:  4px 8px;
  color: var(--pcy-bg-w);
  background-color: var(--pcy-ac-o);
  font-size:  20px;
  border-radius: 4px;
  white-space: nowrap;
}
.pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__image,.pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__image img{
  width: 100%;
}

/* 申し込み */
.pcy-wrapper .pcy-flow-group{
  display: flex;
  gap: 16px;
  justify-content: center;
}

.pcy-wrapper .pcy-flow-group .pcy-flow__image{
  max-width: 150px;
}


.pcy-wrapper .pcy-flow-group .pcy-flow__image img{
  width: 100%;
  aspect-ratio: 1 / 1 ;
}

.pcy-wrapper .pcy-flow-group .pcy-flow__txt-group{
  margin-top:  4px;
  flex: 3;
  font-size: 13px;
}

.pcy-wrapper .pcy-flow-group .pcy-flow__txt-group h3{
  font-size: 15px;
  font-weight: var(--pcy-bold);
}

.pcy-wrapper .pcy-flow-group .pcy-flow__txt-group a{
  text-decoration: underline !important;
  color: var(--pcy-pc);
}

.pcy-wrapper .pcy-flow__icon-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  margin-bottom: 16px;
}

.pcy-wrapper .pcy-flow__dotted-arrow{
 display: flex;
 flex-direction: column;
 align-items: center;
}

.pcy-wrapper .pcy-flow__dots{
 width: 0;
 height: 24px;
 border-left: 3px dotted var(--pcy-ac-g);
}

.pcy-flow__triangle{
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--pcy-ac-g);
  margin-top: -8px;
  border-radius: 4px;
}

.pcy-yell .pcy-yell__h2{
  font-size: 24px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcy-yell .pcy-yell__h2 span{
  display: flex;
  align-items: center;
}

.pcy-yell .pcy-yell__h2 span svg{
  width: 100%;
  max-width: 300px;
  padding: 16px 16px 16px 0;
}

.pcy-yell .pcy-yell__message{
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  white-space: nowrap;
}

/* 非表示設定 */
.pcy-is-pc{
  display: none;
}

.pcy-is-tablet{
  display: none;
}

/* 追従 */
.pcy-follow-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  padding: 10px;
  margin: 0 auto;
  text-align: center;

  display: block !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(100%);
}

.pcy-follow-btn .pcy-button{
  color: var(--pcy-bg-w);
  background-color: var(--pcy-cta);
  max-height: 56px;
}

.pcy-wrapper .pcy-follow-btn .pcy-button:hover{
  opacity: 0.7;
  transform: translateY(-5px);
  text-decoration: none;
}

.pcy-follow-btn .pcy-button .pcy-button-icon{
  width: 44px;
  height: 44px;
}

.pcy-follow-btn .pcy-button-arrow{
  width: 12px;
  height: 2px;
  margin: 3.05px 0;
}

.pcy-follow-btn .pcy-button-arrow::before,
.pcy-follow-btn .pcy-button-arrow::after {
  width: 8px;
  height: 2px;
}

.pcy-follow-btn.is-active {
  transform: translateX(0);
}

.pcy-follow-btn > div{
  display: flex;
  justify-content: center;
}

/* 悩み */
.pcy-worry{
  background-image: url(https://m3-pharmacist-prod.s3.ap-northeast-1.amazonaws.com/uploads/uploaded_image/pharmacist_news/16420/Container__sp.png?1786006547);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--pcy-white-80);
  text-align: center;
}

.pcy-worry__image-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcy-worry__image-wrapper img{
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 338 / 123; 
  object-fit: contain;
}

.pcy-worry h2{
  font-size: 27px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.pcy-worry__text-group{
 margin-top: 24px;
 font-size: 20px;
}

.pcy-worry__text-group span{
  color: var(--pcy-ac-b);
  background-color: var(--pcy-bg-w);
  padding: 4px 8px;
  font-weight: var(--pcy-bold);
  font-size: 24px;
  margin-right: 4px;
}

/* お約束 */
.pcy-wrapper section.pcy-promise{
  background-color: var(--pcy-bg-y);
}

.pcy-promise .pcy-promise__inner{
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pcy-promise .pcy-promise__card{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcy-promise .pcy-promise__card-text{
  font-size: 14px;
  padding: 0 16px;
}

.pcy-promise__card-text h3{
  font-size: 21px;
  margin-bottom: 4px;
}

/* FAQ全体 */
.pcy-faq__inner {
  width: 100%;
  font-size: 14px;
  line-height: 2;
}

.pcy-faq__inner svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-item{
  margin-bottom: 16px;
  background-color: var(--pcy-bg-w);
}

summary.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--pcy-orange-20);
  cursor: pointer;
  padding-right: 16px; 
}

summary.faq-question::-webkit-details-marker {
  display: none;
}
summary.faq-question::marker {
  display: none;
}

.faq-head-left {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.question-text {
  font-weight: bold;
}

/* FAQ右側プラス・マイナスアイコン */
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pcy-tx);
  transform: translateY(-50%);
}

.faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--pcy-tx);
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

details[open] .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer-inner {
  padding: 16px 20px;
  display: flex;
  gap: 8px;
  width: 100%;
}

.faq-answer-inner svg{
  margin-top: 8px;
}

/* インタビュー記事 */
.pcy-wrapper .pcy-related-articles{
  flex-direction: column;
}

/* ボタン下線調整 */
.pcy-cta__wrapper .pcy-cta-section a:hover,
.pcy-cta__wrapper .pcy-cta-section button:hover {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.pcy-cta__wrapper .pcy-cta-section a:focus,
.pcy-cta__wrapper .pcy-cta-section button:focus {
  outline: none;
  box-shadow: none;
}


/****************************************************

                    タブレットサイズ 

****************************************************/


@media screen and (min-width: 769px){

    /* 非表示設定 */
  .pcy-is-pc{
    display: block;
  }

  .pcy-is-tablet{
    display: none;
  }

  .pcy-is-sp{
    display: none;
  }

  /* 新着記事 */
  .pcy-wrapper .pcy-new-arrival__card-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  /* 成功事例 */
  .pcy-wrapper .pcy-card-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .pcy-wrapper .pcy-case-card{
    margin: 0;
    max-width: 600px;
  }

  /* サポート */
  .pcy-wrapper .pcy-support{
    align-items: center;
  }
  .pcy-wrapper .pcy-support .pcy-support-card-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
  }
  .pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__title{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .pcy-wrapper .pcy-support .pcy-support-card{
    flex: 1;
    width: 100%;
  }
  .pcy-wrapper .pcy-support .pcy-support-card .pcy-support-card__title{
    justify-content: flex-start;
  }

  /* フロー */
  .pcy-wrapper section.pcy-flow{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* メッセージ */
  .pcy-wrapper section.pcy-yell{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


    /* 追従 */
  .pcy-wrapper .pcy-follow-btn a:hover {
    opacity: 0.7;
    color: inherit;
    transform: translateY(-5px);
    text-decoration: none !important;
  }
  .pcy-follow-btn{
    padding: 24px;
  }
  .pcy-follow-btn > div{
    justify-content: right;
  }

  .pcy-follow-btn .pcy-button{
    color: var(--pcy-bg-w);
    background-color: var(--pcy-cta);
    max-height: 100%;
    font-size: 17px;
  }

  .pcy-follow-btn .pcy-button .pcy-button-icon{
    width: 56px;
    height: 56px;
  }

  .pcy-follow-btn .pcy-button-arrow{
    width: 20px;
    height: 2px;
    margin: 7.1px 0;
  }

  .pcy-follow-btn .pcy-button-arrow::before,
  .pcy-follow-btn .pcy-button-arrow::after {
    width: 16px;
    height: 2px;
  }

  /* 基本設定 */
    .pcy-wrapper .pcy-pc-br{
    display: inline;
  }

  .pcy-wrapper .pcy-sp-br{
    display: none;
  }


  .pcy-wrapper .pcy-main-visual {
    max-width: 800px;
    padding-top: 40px;
    margin: 0 auto;
    height: fit-content;
  }

  .pcy-wrapper .pcy-article {
    padding: 40px 0;
  }

    /* 余白設定 */
  .pcy-wrapper .pcy-article .pcy-article__space{
    padding: 0px;
  }

  .pcy-wrapper h1.pcy-article__title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .pcy-wrapper .pcy-index__item {
    font-size: 14px;
  }

  .pcy-wrapper.pcy-article .pcy-news__h2{
    font-size: 24px;
    padding: 24px;
    margin-bottom: 32px;
  }

  .pcy-wrapper.pcy-article .pcy-news__h3{
    font-size: 20px;
    margin-bottom: 16px;
  }


  .pcy-wrapper.pcy-article .pcy-article-image {
    padding: 24px 120px;
  }

  .pcy-wrapper .pcy-related-articles{
    flex-direction: row;
    gap: 32px;
  }

  .pcy-wrapper .pcy-related-articles .pcy-news-card {
    flex: 1;
  }

  /* 新規CTA */
  .pcy-cta__wrapper{
    display: flex;
    justify-content: center;
    padding: 48px 24px;
    background-color: var(--pcy-bg-w);
  }

  .pcy-cta__inner{
    display: flex;
    width: 100%;
    gap: 24px;
    max-width: 960px;
  }
  .pcy-article .pcy-cta__inner{
    min-width: 960px;
  }

  .pcy-cta-section{
    width: 100%;
    border-radius: 24px;
  }

  /* お悩み */
  .pcy-worry{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background-image: url('https://m3-pharmacist-prod.s3.ap-northeast-1.amazonaws.com/uploads/uploaded_image/pharmacist_news/16458/Container__pc.png?1786353886');
    background-size: cover;
  }
  .pcy-worry__image-wrapper{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 960px;
  }

  .pcy-worry__image-wrapper img{
    width: calc(50% - 24px);
    height: max-content;
  }

  .pcy-worry h2{
    font-size: 32px;
  }

  .pcy-worry p{
    font-size: 32px;
  }

  /* お約束 */
  .pcy-promise{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pcy-promise .pcy-promise__inner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    max-width: 960px;
  }

  /* 転職実績 */
  .pcy-wrapper .pcy-case-card {
    width: calc(50% - 8px);
    max-width: 480px;
  }

  /* KV */
  .pcy-kv__carousel .pcy-news-card{
    width: 520px;
    transition: transform var(--pcy-transition-speed) var(--pcy-easing), width var(--pcy-transition-speed) var(--pcy-easing), opacity var(--pcy-transition-speed) var(--pcy-easing);
    transform: scale(0.9);
    max-width: none;
  }

  .pcy-kv__carousel .pcy-news-card .pcy-news-card__title{
    font-size: 22px;
  }

  .pcy-carousel-track .pcy-news-card.is-active {
    width: 640px;
    opacity: 1;
    transform: scale(1);
  }

  .pcy-carousel-track {
    padding-left: calc(50% - 320px) !important;
    height: max-content;
  }

  .pcy-wrapper .pcy-kv .pcy-kv_txt-wrapper {
    display: flex;
    padding: 0;
    margin-bottom: 24px;
  }

  .pcy-article .pcy-cta__inner{
    min-width: 400px;
  }
}




/****************************************************

                    パソコンサイズ

****************************************************/

@media screen and (min-width: 1025px){

  /* 非表示設定 */
  .pcy-is-pc{
    display: block;
  }

  .pcy-is-tablet{
    display: block;
  }

  /* テキスト設定 */
  .pcy-wrapper{
    font-size: 16px;
  }

  /* 成功 */

  .pcy-wrapper .pcy-case-card .pcy-case-card__content .pcy-case-card__info ul{
    font-size: 14px;
  }


  /* サポート */
  .pcy-wrapper .pcy-support .pcy-support-card-wrapper{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    max-width: 100%;
  }

  .pcy-wrapper .pcy-support .pcy-support-card-wrapper.pcy-support-card {
    width: 0%;
  }

  .pcy-support-card__description {
    flex: 1 !important;
  }

  /* 　フロー */

  .pcy-flow-wrapper{
    display: flex;
    gap: 24px;
    justify-content: center;
  }

  .pcy-flow-wrapper .pcy-flow-group{
    flex-direction: column;
  }

  .pcy-flow-wrapper .pcy-flow__icon-group{
    flex-direction: row;
    gap: 16px;
    height: fit-content;
    margin: 0;
  }

  .pcy-flow-wrapper .pcy-flow__icon-group .pcy-flow__image{
    width: 150px;
    height: fit-content;
  }

  .pcy-flow-wrapper .pcy-flow__icon-group .pcy-flow__image img{
    width: 100%;
  }

  .pcy-flow__txt-group{
    width: 150px;
  }

  .pcy-flow-wrapper .pcy-flow__icon-group .pcy-flow__dotted-arrow{
    transform: rotate(-90deg);
  }

  .pcy-wrapper .pcy-flow-group .pcy-flow__txt-group{
    margin: 0;
  }

  /* メッセージ */
  .pcy-wrapper section.pcy-yell .pcy-section__inner{
    display: flex;
    flex-direction: row;
    gap: 48px;
  }

  .pcy-yell .pcy-yell__tex-wrapper,.pcy-yell .pcy-yell__images{
    flex: 1;
  }
}

/* アニメーション */
.pcy-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.pcy-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/**********************************
ニュースページ
**********************************/
.pcy-wrapper .pcy-main-visual {
  margin: 0 auto;
}

.pcy-wrapper .pcy-main-visual img{
  width: 100%;
  height: auto
}

.pcy-wrapper .pcy-article {
  max-width: 800px;
  margin: 0 auto;
}

/* 余白設定 */
.pcy-wrapper .pcy-article .pcy-article__space{
  padding: 16px 24px;
}

.pcy-wrapper h1.pcy-article__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 24px;
}

.pcy-wrapper .pcy-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pcy-wrapper .pcy-badge-interview {
  background-color: var(--pcy-pc);
  color: var(--pcy-bg-w);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.pcy-wrapper .pcy-post-date {
  color: var(--pcy-tx-sb);
  font-size: 14px;
}

/* 目次 */
.pcy-wrapper .pcy-index {
  background-color: var(--pcy-bg-y);
  border-radius: 16px;
  padding: 40px 24px 32px;
  position: relative;
  margin-top: 32px;
}

.pcy-wrapper .pcy-index__label {
  background-color: var(--pcy-ac-y);
  display: inline-block;
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 30px;
  color: var(--pcy-pc);
}

.pcy-wrapper .pcy-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pcy-wrapper .pcy-index__item {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: var(--pcy-bold);
}

.pcy-wrapper .pcy-index__list :last-child{
  margin-bottom: 0;
}

.pcy-wrapper .pcy-index__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--pcy-tx);
  border-radius: 50%;
}
/* 本文セクション */
.pcy-wrapper .pcy-news-section {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcy-wrapper .pcy-news-section .pcy-news__txt {
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
  line-height: 1.88;
}

.pcy-wrapper .pcy-news-section .pcy-news__txt--pcy-bold {
  font-weight: var(--pcy-bold);
}

/* 追従ボタン */
.pcy-wrapper.pcy-article .pcy-follow-btn {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
  opacity: 1;
}

.pcy-wrapper.pcy-article .pcy-follow-btn:not(.is-active) {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

/* 見出し */
.pcy-wrapper.pcy-article .pcy-news__h2{
  font-weight: var(--pcy-bold);
  font-size: 20px;
  padding: 16px 24px;
  line-height: 1.4;
  border-left:  5px solid var(--pcy-pc);
  position: relative;
  margin-bottom: 8px;
  background-color: var(--pcy-bg-y);
  width: 100%;
}

.pcy-wrapper.pcy-article .pcy-news__h3{
  font-weight: var(--pcy-bold);
  font-size: 18px;
  margin: 8px 0 16px;
  padding: 16px 0;
  line-height: 1.4;
  border-bottom: 3px solid var(--pcy-border);
  position: relative;
}

.pcy-wrapper.pcy-article .pcy-news__h3::after{
  content: "";
  position: absolute;
  display: block;
  border-bottom: solid 3px var(--pcy-pc);
  bottom: -3px;
  width: 20%;
}

.pcy-wrapper.pcy-article .pcy-article-image{
  margin: 0 auto;
}

.pcy-wrapper.pcy-article .pcy-article-image img {
  display: block;
}

.pcy-wrapper .pcy-news__cards-wrapper{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcy-wrapper .pcy-news__card{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-color: var(--pcy-bg-y);
  border-radius: 16px;
}

.pcy-wrapper .pcy-news__card-header{
  display: flex;
  gap: 4px;
  align-items: center;
}

.pcy-wrapper .pcy-news__card-header h4{
  width: 100%;
}

.pcy-wrapper .pcy-button-section{
  text-align: center;
  margin-bottom: 32px;
}
.pcy-wrapper .pcy-button-back{
  border: 2px solid var(--pcy-pc);
  background-color: var(--pcy-bg-w);
  color: var(--pcy-pc);
  justify-content: center;
  padding: 16px;
  margin: 0 auto;
}

.pcy-button-back span.pcy-button-text{
 color: var(--pcy-pc);
 margin: 0;
}

.pcy-wrapper .pcy-button-back:hover{
  text-decoration: none;
  opacity: 0.7;
  transform: translateY(-5px);
  color: var(--pcy-bg-w);
}

.pcy-wrapper .pcy-related-articles{
  display: flex;
  gap: 16px;
}

.pcy-wrapper .pcy-related-articles .pcy-news-card{
  background-color: var(--pcy-bg-y);
}
