@charset "UTF-8";


/* 共通　ページネーション */

.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.archive-pagination__number,
.archive-pagination__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  font-size: 16px;
  line-height: 1;
  color:#000;
  transition:0.3s;
}

.archive-pagination__dots{
  border:none;
}

.archive-pagination__number:hover{
  background:#00a0aa;
  color:#fff;
  border-color: #00a0aa;
}

.archive-pagination__number.is-current {
  background: #00a0aa;
  border-color: #00a0aa;
  color: #fff; 
}

.archive-pagination__arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.archive-pagination__arrow::before {
  transform: translateY(-50%);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  top: 50%;
}

.archive-pagination__arrow.archive-pagination__arrow--prev::before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 9px solid #000;
  border-left: 0;
  left: 4px;
  transition:0.3s;
}

.archive-pagination__arrow.archive-pagination__arrow--next::before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #000;
  border-right: 0;
  right: 4px;
}


@media screen and (max-width: 1300px) {
  .archive-pagination {
    gap: 0.92vw;
    margin-top: 5.38vw;
  }

  .archive-pagination__number,
  .archive-pagination__dots {
    min-width: 2.92vw;
    height: 2.92vw;
    font-size: 1.23vw;
  }

  .archive-pagination__arrow {
    width: 1.54vw;
    height: 1.54vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--prev::before {
    border-top: 0.62vw solid transparent;
    border-bottom: 0.62vw solid transparent;
    border-right: 0.69vw solid #000;
    left: 0.31vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--next::before {
    border-top: 0.62vw solid transparent;
    border-bottom: 0.62vw solid transparent;
    border-left: 0.69vw solid #000;
    right: 0.31vw;
  }
}


@media screen and (max-width: 768px) {
  .archive-pagination {
    gap: 1.44vw;
    margin-top: 8.4vw;
  }

  .archive-pagination__number,
  .archive-pagination__dots {
    min-width: 4.56vw;
    height: 4.56vw;
    font-size: 1.92vw;
  }

  .archive-pagination__arrow {
    width: 2.4vw;
    height: 2.4vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--prev::before {
    border-top: 0.96vw solid transparent;
    border-bottom: 0.96vw solid transparent;
    border-right: 1.08vw solid #000;
    left: 0.48vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--next::before {
    border-top: 0.96vw solid transparent;
    border-bottom: 0.96vw solid transparent;
    border-left: 1.08vw solid #000;
    right: 0.48vw;
  }
}

@media screen and (max-width: 480px) {
  .archive-pagination {
    gap: 2.667vw;
    margin-top: 12.444vw;
  }

  .archive-pagination__number,
  .archive-pagination__dots {
    min-width: 8.444vw;
    height: 8.444vw;
    font-size: 3vw;
  }

  .archive-pagination__arrow {
    width: 4.444vw;
    height: 4.444vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--prev::before {
    border-top: 1.778vw solid transparent;
    border-bottom: 1.778vw solid transparent;
    border-right: 2vw solid #000;
    left: 0.889vw;
  }

  .archive-pagination__arrow.archive-pagination__arrow--next::before {
    border-top: 1.778vw solid transparent;
    border-bottom: 1.778vw solid transparent;
    border-left: 2vw solid #000;
    right: 0.889vw;
  }
}

.post-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.post-pager a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-pager__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
}

.post-pager__back {
  font-size: 18px;
  line-height: 1;
}

.post-pager__arrow {
  display: inline-block;
  width: 10px;
  height: 16px;
  transition: 0.3s ease;
}

.post-pager__arrow--prev {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  background: #000;
}

.post-pager__arrow--next {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #000;
}

.post-pager__link:hover,
.post-pager__back:hover {
  color: #00a0aa;
}

.post-pager__link:hover .post-pager__arrow,
.post-pager__back:hover + .post-pager__arrow,
.post-pager__link:hover .post-pager__arrow--prev,
.post-pager__link:hover .post-pager__arrow--next {
  background: #00a0aa;
}


.post-pager__placeholder {
  min-width: 86px;
}

@media screen and (max-width: 1300px) {
  .post-pager {
    gap: 3.462vw;
  }

  .post-pager__link {
    gap: 0.923vw;
    font-size: 1.385vw;
  }

  .post-pager__back {
    font-size: 1.385vw;
  }

  .post-pager__arrow {
    width: 0.769vw;
    height: 1.231vw;
  }

  .post-pager__placeholder {
    min-width: 6.615vw;
  }
}

@media screen and (max-width: 768px) {
  .post-pager {
    gap: 5.4vw;
  }

  .post-pager__link {
    gap: 1.44vw;
    font-size: 2.16vw;
  }

  .post-pager__back {
    font-size: 2.16vw;
  }

  .post-pager__arrow {
    width: 1.2vw;
    height: 1.92vw;
  }

  .post-pager__placeholder {
    min-width: 10.32vw;
  }
}

@media screen and (max-width: 480px) {
  .post-pager {
    gap: 6.667vw;
    flex-wrap: wrap;
  }

  .post-pager__link {
    gap: 2.667vw;
    font-size: 3.6vw;
  }

  .post-pager__back {
    font-size: 3.6vw;
  }

  .post-pager__arrow {
    width: 1.778vw;
    height: 2.844vw;
  }

  .post-pager__placeholder {
    min-width: 15.111vw;
  }
}


/* コラム 男性器治療の知識 */

#column {
  font-size: 16px;
}

#column .column-layout,
#single-column .column-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6.3%;
}

#column .column-main,
#single-column .column-main {
  width: 65.7%;
}

#column .column-sidebar,
#single-column .column-sidebar {
  width: 28%;
}


/* 左：記事一覧 */
#column .column-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#column .column-card:first-child {
  padding: 0 0 50px;
}

#column .column-card:not(:first-child) {
  padding: 50px 0;
}

#column .column-card__link {
  display: flex;
  align-items: center;
  gap: 4.2%;
}

#column .column-card__image {
  width: 32.4%;
  flex-shrink: 0;
}

#column .column-card__image img {
  width: 100%;
  height: 12.3vw;
  max-height: 160px;
  object-fit: cover;
}

#column .column-card__body {
  width: 63.4%;
}

#column .column-card__category{
margin-bottom: 20px;
display:flex;
flex-wrap: wrap;;
gap:10px;
}

#column .column-card__category span {
  display: inline-block;
  padding: 6px 12px;
  background: #00a0aa;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

#column .column-card__title {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.75;
  transition: 0.3s;
  color: #000;
  font-weight:400;
}

#column .column-card__link:hover .column-card__title {
  color: #00a0aa;
}



@media screen and (max-width: 1300px) {
  #column {
    font-size: 1.231vw;
  }

  #column .column-card {
    border-bottom: 0.077vw solid rgba(0, 0, 0, 0.3);
  }

  #column .column-card:first-child {
    padding: 0 0 3.846vw;
  }

  #column .column-card:not(:first-child) {
    padding: 3.846vw 0;
  }

    #column .column-card__category{
    margin-bottom: 1.538vw;
    gap:0.7vw;
    }

  #column .column-card__category span{
    padding: 0.462vw 0.923vw;
    font-size: 1.231vw;
  }

  #column .column-card__title {
    margin-bottom: 0.923vw;
    font-size: 1.231vw;
  }
}

@media screen and (max-width: 768px) {
  #column {
    font-size: 1.92vw;
  }

  #column .column-layout,
  #single-column .column-layout {
    display: block;
  }

  #column .column-main,
  #column .column-sidebar,
  #single-column .column-main,
  #single-column .column-sidebar {
    width: 100%;
  }

  #column .column-sidebar,
  #single-column .column-sidebar {
    margin-top: 10.8vw;
  }

  #column .column-card:first-child {
    padding: 0 0 6vw;
  }

  #column .column-card:not(:first-child) {
    padding: 6vw 0;
  }

  #column .column-card__image img {
    height: 18.5vw;
    max-height: 1000px;
  }

    #column .column-card__category{
      margin-bottom: 2.4vw;
      gap:1vw 0.7vw;
    }

  #column .column-card__category span {
    padding: 0.72vw 1.44vw;
    font-size: 1.92vw;
  }

  #column .column-card__title {
    margin-bottom: 1.44vw;
    font-size: 1.92vw;
  }
}

@media screen and (max-width: 480px) {
  #column {
    font-size: 4vw;
  }

  #column .column-sidebar,
  #single-column .column-sidebar {
    margin-top: 16vw;
  }

  #column .column-card:first-child {
    padding: 0 0 5vw;
  }

  #column .column-card:not(:first-child) {
    padding: 5vw 0;
  }

  #column .column-card__link {
    gap: 5%;
    align-items: flex-start;
  }

  #column .column-card__image {
    width: 35%;
  }

  #column .column-card__body {
    width: 60%;
  }

  #column .column-card__image {
    margin-bottom: 4.444vw;
  }

  #column .column-card__image img {
    height: 30vw;
    max-height: 1000px;
  }

    #column .column-card__category {
      margin-bottom: 3.555vw;
      gap:0.8vw 0.5vw;
    }

  #column .column-card__category span {
    padding: 1.333vw 2.667vw;
    font-size: 3.3vw;
  }

  #column .column-card__title {
    margin-bottom: 2.667vw;
    font-size: 4vw;
  }
}




/* 右：共通ウィジェット */
.column-widget {
  padding: 30px;
  background: #fafaf5;
}

.column-widget+.column-widget,
.column-widget+.column-banner,
.column-banner+.column-banner {
  margin-top: 30px;
}

.column-widget__title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #00a0aa;
  color: #00a0aa;
  font-size: 16px;
  line-height: 1.5;
}


/* 検索 */
.column-search {
  position: relative;
}

input[type="text"].column-search__input {
  width: 100%;
  height: 45px;
  padding: 0 16px 0 45px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  font-size: 16px;
  border-radius:0;
}

.column-search__button {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  transform: translateY(-50%);
  cursor: pointer;
}

input[type="text"].column-search__input::placeholder {
  color: #c8c8c8;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}




/* カテゴリー */
.column-category-list__item+.column-category-list__item {
  margin-top: 20px;
}

.column-category-list__item a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.3;
  transition: 0.3s;
  color:#000;
}

.column-category-list__item a::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00a0aa;
  transform: translateY(-50%);
}

.column-category-list__item a:hover {
  color: #00a0aa;
}


/* 人気記事・新着記事 */
.sidebar-post+.sidebar-post {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.sidebar-post__link {
  display: flex;
  align-items: center;
  gap: 9%;
}

.sidebar-post__image {
  width: 33%;
  
}

.sidebar-post__image img {
  width: 100%;
  height:5.4vw;
  object-fit: cover;
  max-height:70px;
}

.sidebar-post__body {
  width: 58%;
}

.sidebar-post__title {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  transition: 0.3s;
  color: #000;
}

.sidebar-post__link:hover .sidebar-post__title {
  color: #00a0aa;
}

/* バナー */
.column-banner a {
  display: block;
}

.column-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


@media screen and (max-width: 1300px) {
  .column-widget {
    padding: 2.308vw;
  }

  .column-widget+.column-widget,
  .column-widget+.column-banner,
  .column-banner+.column-banner {
    margin-top: 2.308vw;
  }

  .column-widget__title {
    margin-bottom: 2.3vw;
    padding-bottom: 0.769vw;
    border-bottom: 0.077vw solid #00a0aa;
    font-size: 1.231vw;
  }

    input[type="text"].column-search__input {
    height: 3.462vw;
    padding: 0 1.231vw 0 3.462vw;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 1.231vw;
  }

  .column-search__button {
    left: 0.769vw;
    width: 1.846vw;
    height: 1.846vw;
  }

  .column-category-list__item+.column-category-list__item {
    margin-top: 1.538vw;
  }

  .column-category-list__item a {
    padding-left: 1.538vw;
    font-size: 1.231vw;
  }

  .column-category-list__item a::before {
    width: 0.769vw;
    height: 0.769vw;
  }

  .sidebar-post+.sidebar-post {
    margin-top: 1.538vw;
    padding-top: 1.538vw;
    border-top: 0.077vw solid rgba(0, 0, 0, 0.15);
  }

  .sidebar-post__title {
    font-size: 1.077vw;
  }
}

@media screen and (max-width: 768px) {
  .column-widget {
    padding: 3.6vw;
  }

  .column-widget+.column-widget,
  .column-widget+.column-banner,
  .column-banner+.column-banner {
    margin-top: 3.6vw;
  }

  .column-widget__title {
    margin-bottom: 2.4vw;
    padding-bottom: 1.2vw;
    font-size: 1.92vw;
  }

    input[type="text"].column-search__input {
    height: 5.4vw;
    padding: 0 1.92vw 0 5.4vw;
    font-size: 1.92vw;
  }

  .column-search__button {
    left: 1.2vw;
    width: 2.88vw;
    height: 2.88vw;
  }


  .column-category-list__item+.column-category-list__item {
    margin-top: 2vw;
  }


  .column-category-list__item a {
    padding-left: 2.4vw;
    font-size: 1.9vw;
  }

  .column-category-list__item a::before {
    width: 1.2vw;
    height: 1.2vw;
  }

  .sidebar-post+.sidebar-post {
    margin-top: 2.4vw;
    padding-top: 2.4vw;
  }

  .sidebar-post__link {
    gap: 5%;
  }


  .sidebar-post__image img {
    height: 18.5vw;
max-height: 500px;
  }

  .sidebar-post__title {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 480px) {
  .column-widget {
    padding: 5.333vw;
  }

  .column-widget+.column-widget,
  .column-widget+.column-banner,
  .column-banner+.column-banner {
    margin-top: 5.333vw;
  }

  .column-widget__title {
    margin-bottom: 3.555vw;
    padding-bottom: 1.778vw;
    font-size: 4.5vw;
  }

    input[type="text"].column-search__input {
    height: 10vw;
    padding: 0 3vw 0 10vw;
    font-size: 3.2vw;
  }

  .column-search__button {
    left: 2.222vw;
    width: 4.444vw;
    height: 4.444vw;
  }

  .column-category-list__item,
  .column-category-list__item:nth-child(even) {
    width: 100%;
    float: none;
  }

  .column-category-list__item:nth-child(n + 3) {
    margin-top: 0;
  }

  .column-category-list__item+.column-category-list__item {
    margin-top: 3.555vw;
  }

  .column-category-list__item a {
    padding-left: 3.556vw;
    font-size: 3.6vw;
  }

  .column-category-list__item a::before {
    width: 1.778vw;
    height: 1.778vw;
  }

  .sidebar-post+.sidebar-post {
    margin-top: 3.555vw;
    padding-top: 3.555vw;
  }

  .sidebar-post__image img {
    height: 23vw;
  }

  .sidebar-post__title {
    font-size: 3.6vw;
  }
}


/* news 新着情報 */

#news .news-layout {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

#news .news-category {
  width: 18%;
}

#news .news-archive {
  width: 77%;
}


/* 左カテゴリ */
#news .news-category__heading {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px;
  background: #00a0aa;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

#news .news-category__item+.news-category__item {
  margin-top: 25px;
}

#news .news-category__item a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition: 0.3s;
  color: #000;
}

#news .news-category__item a:hover {
  color: #00a0aa;
}

#news .news-category__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00a0aa;
  transform: translateY(-50%);
}


/* 右記事一覧 */
#news .news-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#news .news-item__link {
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 4%;
}


/* アイキャッチ：18% */
#news .news-item__thumb {
  width: 18%;
  flex-shrink: 0;
}
#news .news-item__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f4f4;
}


/* 日付＆カテゴリ：22% */
#news .news-item__meta {
  display: flex;
  align-items: center;
  /* gap: 4%; */
  gap: 20px;
  width: 22%;
  flex-shrink: 0;
}

#news .news-item__date,
#news .news-item__category {
  width: 48%;
  white-space: nowrap;
}

#news .news-item__date {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

#news .news-item__category {
  display: block;
  padding: 7px;
  background: #00a0aa;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.14em;
}


/* タイトル＆矢印：残り */
#news .news-item__content {
  display: flex;
  align-items: center;
  gap: 8.5%;
  width: 100%;
}

#news .news-item__title {
  width: 87%;
  font-size: 16px;
  line-height: 1.75;
  transition: 0.3s;
  color: #000;
}

#news .news-item__arrow {
  position: relative;
  width: 4.5%;
  aspect-ratio: 1 / 1;
  max-width: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #00a0aa;
  flex-shrink: 0;
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  color: #fff;
  transition:0.3s;
  border: 1px solid #00a0aa;
}

#news .news-item__link:hover .news-item__title {
  color: #00a0aa;
}

#news .news-item__link:hover .news-item__arrow{
  background:#fff;
  color:#00a0aa;
}


@media screen and (max-width: 1300px) {
  #news .news-category__heading {
    margin-bottom: 2.308vw;
    padding: 0.769vw;
    font-size: 1.231vw;
  }

  #news .news-category__item+.news-category__item {
    margin-top: 1.923vw;
  }

  #news .news-category__item a {
    padding-left: 1.538vw;
    font-size: 1.231vw;
  }

  #news .news-category__item a::before {
    width: 0.769vw;
    height: 0.769vw;
  }

  #news .news-item {
    border-bottom: 0.077vw solid rgba(0, 0, 0, 0.3);
  }

  #news .news-item__link {
    padding: 3.077vw 0;
    gap: 5%;
  }

  #news .news-item__date {
    font-size: 1.231vw;
  }

  #news .news-item__category {
    padding: 0.538vw;
    font-size: 1.231vw;
  }

  #news .news-item__title {
    font-size: 1.231vw;
  }

  #news .news-item__arrow {
    max-width: 2.154vw;
    min-width: 2.154vw;
    line-height: 2.154vw;
    font-size: 1vw;
  }
}

@media screen and (max-width: 768px) {
  #news .news-layout {
    gap: 4%;
  }

  #news .news-category {
    width: 22%;
  }

  #news .news-archive {
    width: 74%;
  }

  #news .news-category__heading {
    margin-bottom: 3.6vw;
    padding: 1.2vw;
    font-size: 1.92vw;
  }

  #news .news-category__item+.news-category__item {
    margin-top: 3vw;
  }

  #news .news-category__item a {
    padding-left: 2.4vw;
    font-size: 1.92vw;
    line-height: 1.4;
  }

  #news .news-category__item a::before {
    width: 1.2vw;
    height: 1.2vw;
  }

  #news .news-item__link {
    display: block;
    padding: 4.8vw 0;
  }

  #news .news-item__meta {
    width: 100%;
    gap: 2.4vw;
    margin-bottom: 2.4vw;
  }

  #news .news-item__date,
  #news .news-item__category {
    width: auto;
  }

  #news .news-item__date {
    font-size: 1.92vw;
  }

  #news .news-item__category {
    padding: 0.84vw 1.44vw;
    font-size: 1.92vw;
  }

  #news .news-item__content {
    gap: 3.6vw;
  }

  #news .news-item__title {
    width: 100%;
    font-size: 1.92vw;
  }

  #news .news-item__arrow {
    width: 4.2vw;
    max-width: 4.2vw;
    min-width: 4.2vw;
    line-height: 4.2vw;
    font-size: 1.8vw;
  }

}

@media screen and (max-width: 480px) {
  #news .news-layout {
    display: block;
  }

  #news .news-category,
  #news .news-archive {
    width: 100%;
  }

  #news .news-archive {
    margin-top: 8.889vw;
  }

  #news .news-category__heading {
    margin-bottom: 5.333vw;
    padding: 2vw 4vw;
    font-size: 3vw;
  }

  #news .news-category__item+.news-category__item {
    margin-top: 0;
  }

  .news-category__list {
    display: flex;
    gap: 3vw;
    flex-wrap: wrap;
  }

  #news .news-category__item a {
    padding-left: 3.556vw;
    font-size: 3vw;
  }

  #news .news-category__item a::before {
    width: 1.778vw;
    height: 1.778vw;
  }

  #news .news-item__link {
    padding: 7.111vw 0;
  }

  #news .news-item__meta {
    gap: 3.556vw;
    margin-bottom: 3.556vw;
    flex-wrap: wrap;
  }

  #news .news-item__date {
    font-size: 3.2vw;
  }

  #news .news-item__category {
    padding: 1vw 1.5vw;
    font-size: 3.2vw;
  }

  #news .news-item__content {
    gap: 4.444vw;
  }

  #news .news-item__title {
    font-size: 4vw;
  }

  #news .news-item__arrow {
    width: 7.111vw;
    max-width: 7.111vw;
    min-width: 7.111vw;
    line-height: 7.111vw;
    font-size: 2.667vw;
  }

}

/* シェアボタン */
.news-share,
.column-share{
  margin-top:20px;
}

.news-share__list,
.case-share__list{
  display:flex;
  gap:12px;
  align-items: center;
  width:fit-content;
  justify-content: flex-end;
  margin-left:auto;
}

.news-share__list a,
.case-share__list a{
  display: block;
  max-height:30px;
}

.news-share__list a img,
.case-share__list a img{
  height:100%;
  width:auto;
  max-height: 30px;
}

@media screen and (max-width: 1300px) {

  .news-share,
  .column-share {
    margin-top: 1.538vw;
  }

  .news-share__list,
  .case-share__list {
    gap: 0.923vw;
  }

}

@media screen and (max-width: 768px) {

  .news-share,
  .column-share {
    margin-top: 2.4vw;
  }

  .news-share__list,
  .case-share__list {
    gap: 1.44vw;
  }

}

@media screen and (max-width: 480px) {

  .news-share,
  .column-share {
    margin-top: 3.556vw;
  }

  .news-share__list,
  .case-share__list {
    gap: 2.667vw;
  }

}


/* 症例 case */

/* #case img {
  display: block;
  width: 100%;
  height: auto;
} */

#case ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#case h2,
#case p {
  margin: 0;
}


/* カテゴリ一覧 */
#case .case-category {
  margin-bottom: 90px;
}

#case .case-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.8%;
}

#case .case-category__item {
  width: 15%;
}

#case .case-category__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  line-height: 1.3;
  color:#000;
}

#case .case-category__item.is-current a,
#case .case-category__item a:hover {
  background: #00a0aa;
  color: #fff;
}


/* 記事一覧 */
#case .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.7%;
  row-gap: 50px;
}

#case .case-card {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  background: #fff;
}

#case .case-card__link {
  display: block;
  height: 100%;
}

#case .case-card__image {
  position: relative;
  overflow: hidden;
}

#case .case-card__image img {
  width: 100%;
  height: 18.5vw;
  object-fit: cover;
  max-height: 240px;
}

#case .case-card__mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#case .case-card__link:hover .case-card__mask {
  opacity: 1;
  visibility: visible;
}

#case .case-card__mask-text {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}

#case .case-card__mask-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
}

#case .case-card__mask-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#case .case-card__body {
  padding: 24px 22px 20px;
}

#case .case-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  width: 90%;
}

#case .case-card__category {
  display: inline-block;
  padding: 5px;
  background: #00a0aa;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

#case .case-card__title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color:#000;
}

@media screen and (max-width: 1300px) {
  #case .case-category {
    margin-bottom: 6.9vw;
  }

  #case .case-category__list {
    gap: 1.538vw 1.8%;
  }

  #case .case-category__item a {
    height: 5vw;
    font-size: 1.231vw;
  }

  #case .case-grid {
    row-gap: 3.846vw;
  }

  #case .case-card {
    box-shadow: 0 0 0.462vw rgba(0, 0, 0, 0.15);
  }

  #case .case-card__mask-text {
    margin-bottom: 1.077vw;
    font-size: 1.385vw;
  }

  #case .case-card__mask-arrow {
    width: 2.308vw;
    height: 2.308vw;
    border: 1px solid #fff;
  }

  #case .case-card__mask-arrow::before {
    width: 0.538vw;
    height: 0.538vw;
    border-top: 0.077vw solid #fff;
    border-right: 0.077vw solid #fff;
  }

  #case .case-card__body {
    padding: 1.846vw 1.692vw 1.538vw;
  }

  #case .case-card__categories {
    gap: 0.615vw;
    margin-bottom: 1.385vw;
  }

  #case .case-card__category {
    padding: 0.385vw;
    font-size: 1.231vw;
  }

  #case .case-card__title {
    font-size: 1.385vw;
  }
}

@media screen and (max-width: 768px) {
  #case .case-category {
    margin-bottom: 8vw;
  }

  #case .case-category__list {
    gap: 2.4vw 2%;
  }

  #case .case-category__item {
    width: 32%;
  }

  #case .case-category__item a {
    height: 7.8vw;
    font-size: 1.92vw;
  }

  #case .case-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4%;
    row-gap: 6vw;
  }

  #case .case-card__image img {
    height: 31.2vw;
    max-height: none;
  }

  #case .case-card__mask-text {
    margin-bottom: 1.8vw;
    font-size: 2.16vw;
  }

  #case .case-card__mask-arrow {
    width: 3.6vw;
    height: 3.6vw;
    border: 1px solid #fff;
  }

  #case .case-card__mask-arrow::before {
    width: 0.84vw;
    height: 0.84vw;
    border-top: 0.13vw solid #fff;
    border-right: 0.13vw solid #fff;
  }

  #case .case-card__body {
    padding: 2.88vw 2.64vw 2.4vw;
  }

  #case .case-card__categories {
    gap: 0.96vw;
    margin-bottom: 2.16vw;
    width: 80%;
  }

  #case .case-card__category {
    padding: 0.6vw;
    font-size: 1.92vw;
  }

  #case .case-card__title {
    font-size: 2.16vw;
  }
}

@media screen and (max-width: 480px) {
  #case .case-category {
    margin-bottom: 10vw;
  }

  #case .case-category__list {
    gap: 1.5vw 2%;
  }

  #case .case-category__item {
    width: 48%;
  }

  #case .case-category__item a {
    height: 16vw;
    font-size: 3.6vw;
  }

  #case .case-grid {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0%;
    row-gap: 7vw;
  }

  #case .case-card__image img {
    height: 48vw;
  }

  #case .case-card__mask-text {
    margin-bottom: 2.667vw;
    font-size: 4vw;
  }

  #case .case-card__mask-arrow {
    width: 5.333vw;
    height: 5.333vw;
    border: 1px solid #fff;
  }

  #case .case-card__mask-arrow::before {
    width: 1.244vw;
    height: 1.244vw;
    border-top: 0.208vw solid #fff;
    border-right: 0.208vw solid #fff;
  }

  #case .case-card__body {
    padding: 3vw;
  }

  #case .case-card__categories {
    gap: 1vw;
    margin-bottom: 3.2vw;
    width:100%;
  }

  #case .case-card__category {
    padding: 1.111vw;
    font-size: 3.6vw;
  }

  #case .case-card__title {
    font-size: 4vw;
  }
}



/* ページ 共通*/

#single-column .column-post-content a,
#single-news .news-post-content a,
#single-case .case-post-content a{
  color:#00a0aa;
  transition:0.3s;
  border-bottom:1px solid #00a0aa;
}

#single-column .column-post-content a:hover,
#single-news .news-post-content a:hover,
#single-case .casw-post-content a:hover{
  color: #000;
border-bottom: 1px solid #000;;
}


/* 目次 */

.article-toc{
  background:#f5f5f5;
  width:100%;
  padding:50px;
}


.article-toc .article-toc__head .article-toc__title{
  font-size:20px; 
  letter-spacing:0.08em;
  position:relative;
  padding-left:35px;
}


.article-toc .article-toc__head .article-toc__title::before{
  content:"";
  width:30px;
  height:30px;
  background-image:url(../img/toc-icon.png);
  background-repeat: no-repeat;
  background-size:contain;
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
}

.article-toc__list {
  counter-reset: toc-number;
}

.article-toc__item {
  counter-increment: toc-number;
  padding-left:20px;
  position:relative;
  font-size:16px;
  line-height: 1.3;
}

.article-toc__item::before{
  content:"";
  width:10px;
  height:1px;
  background:rgba(0,0,0,0.5);
  position:absolute;
  left:0;
  top:10px;
}

.article-toc__item + .article-toc__item{
  margin-top:15px;
}

.article-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition:0.3s;
}

.article-toc__link:hover{
  color:#00a0aa;
}


.article-toc__link::before {
  content:counter(toc-number, decimal-leading-zero);
  flex-shrink: 0;
  line-height: 1.3;
  transition: 0.3s;
}

.article-toc__link:hover::before{
  color:#00a0aa;
}

.article-toc__body{
  margin-top:30px;
}


@media screen and (max-width: 1300px) {
  .article-toc {
    padding: 3.846vw;
  }

  .article-toc .article-toc__head .article-toc__title {
    font-size: 1.538vw;
    padding-left: 2.692vw;
  }

  .article-toc .article-toc__head .article-toc__title::before {
    width: 2.308vw;
    height: 2.308vw;
  }

  .article-toc__item {
    padding-left: 1.538vw;
    font-size: 1.231vw;
  }

  .article-toc__item::before {
    width: 0.769vw;
    height: 0.077vw;
    top: 0.769vw;
  }

  .article-toc__item+.article-toc__item {
    margin-top: 1.154vw;
  }

  .article-toc__link {
    gap: 0.769vw;
  }

  .article-toc__body {
    margin-top: 2.308vw;
  }
}

@media screen and (max-width: 768px) {
  .article-toc {
    padding: 6vw;
  }

  .article-toc .article-toc__head .article-toc__title {
    font-size: 2.4vw;
    padding-left: 4.2vw;
  }

  .article-toc .article-toc__head .article-toc__title::before {
    width: 3.6vw;
    height: 3.6vw;
  }

  .article-toc__item {
    padding-left: 2.4vw;
    font-size: 1.92vw;
  }

  .article-toc__item::before {
    width: 1.2vw;
    height: 0.13vw;
    top: 1.2vw;
  }

  .article-toc__item+.article-toc__item {
    margin-top: 1.8vw;
  }

  .article-toc__link {
    gap: 1.2vw;
  }

  .article-toc__body {
    margin-top: 3.6vw;
  }
}

@media screen and (max-width: 480px) {
  .article-toc {
    padding: 8.889vw 5.333vw;
  }

  .article-toc .article-toc__head .article-toc__title {
    font-size: 4.5vw;
    padding-left: 6.222vw;
  }

  .article-toc .article-toc__head .article-toc__title::before {
    width: 5.333vw;
    height: 5.333vw;
  }

  .article-toc__item {
    padding-left: 3.556vw;
    font-size: 3vw;
  }

  .article-toc__item::before {
    width: 1.778vw;
    height: 0.208vw;
    top: 1.778vw;
  }

  .article-toc__item+.article-toc__item {
    margin-top: 2.667vw;
  }

  .article-toc__link {
    gap: 1.778vw;
    font-size:4vw;
  }

  .article-toc__body {
    margin-top: 5.333vw;
  }
}

/* postdata */

.post-data{
  display:flex;
  gap:20px;
  align-items: center;
  margin-bottom:30px;
}

.post-data span{
  display: inline-block;
  font-size:16px;
}

.post-data .date{
  font-weight:300;
}

.post-data .cat{
  background:#00a0aa;
  color:#fff;
  line-height:1;
  padding:6px;
}

.post-data .cat + .cat{
  margin-left:-10px;
}

@media screen and (max-width: 1300px) {
  .post-data{
    gap:1.538vw;
    margin-bottom:2.308vw;
  }

  .post-data span{
    font-size:1.231vw;
  }

  .post-data .cat{
    padding:0.462vw;
  }

  .post-data .cat+.cat {
    margin-left: -0.7vw;
  }
}

@media screen and (max-width: 768px) {
  .post-data{
    gap:2.4vw;
    margin-bottom:3.6vw !important;
  }

  .post-data span{
    font-size:1.92vw;
  }

  .post-data .cat{
    padding:0.72vw;
  }

    .post-data .cat+.cat {
      margin-left: -1.5vw;
    }


}

@media screen and (max-width: 480px) {
  .post-data{
    gap:2vw;
    margin-bottom:5.333vw !important;
    flex-wrap:wrap;
  }

  .post-data span{
    font-size:3.6vw;
  }

  .post-data .cat{
    padding:1.111vw;
  }

     .post-data .cat+.cat {
       margin-left: -0.5vw;
     }
}

/* コラムページ */

#single-column .column-post-head .post-title{
  font-size:22px;
  line-height:1.6;
  margin-bottom:30px;
}


#single-column .copyright-info{
  display:flex;
  background:#f5f5f5;
  padding:25px;
  gap:3%;
  align-items:top;
}

#single-column .copyright-info .info-img{
  width:15.3%;
  overflow: hidden;
}

#single-column .copyright-info .info-img img{
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}


#single-column .copyright-info .info{
  display: inline-block;
  width:81.7%;
}

#single-column .copyright-info .info-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
}

#single-column .copyright-info .info-head span{
  font-size: 16px;
  font-weight: 300;
  display:inline-block;
  line-height:1;
}

#single-column .copyright-info .info-head .label{
  padding:7px 12px;
  border:1px solid rgba(0,0,0,0.3);
}

#single-column .copyright-info .info-txt{
  font-size: 14px;
    font-weight: 300;
    line-height:1.85;
}

#single-column .thumbnail{
  margin-bottom:50px;
}

#single-column .column-intro,
#single-column .column-txt{
  font-size:16px;
  font-weight:300;
  line-height:1.85;
}


#single-column .column-txt{
  margin-top:50px;
}

.article-txt .big{
  font-size:2rem;
}

.article-txt .marker{
  background: #f8ec00;
  background-size:102% 104%;
}

#single-column .column-post-content .img{
  margin-top:50px;
}


#single-column h3{
  display:block;
  width:100%;
  background:#00a0aa;
  color:#fff;
  font-size:20px;
  font-weight:500;
  letter-spacing:0.12em;
  padding:9px 15px;
  margin-top:100px;
  margin-bottom: 20px;
}

.column-post-content {
  counter-reset: heading-number;
  padding: 50px 0 0;
}

.article-txt:not(.a-blur-photo__lead):not(.a-blur-photo__box .text-area .article-txt){
  margin-top:50px;
}

/* .column-post-content img:not(.a-blur-photo__img, .blur-icon), */
.column-post-content .a-blur-photo,
.news-post-content img:not(.a-blur-photo__img,.blur-icon),
.news-post-content .a-blur-photo,
.case-post-content img:not(.a-blur-photo__img,.blur-icon),
.case-post-content .a-blur-photo
 {
  margin-top: 50px;
}


.column-post-content h3 {
  counter-increment: heading-number;
}

.column-post-content h3::before {
  content: counter(heading-number, decimal-leading-zero);
  padding-right:10px;
}

@media screen and (max-width: 1300px) {
  #single-column .column-post-head .post-title{
    font-size:1.692vw;
    margin-bottom:2.308vw;
  }

  #single-column .copyright-info{
    padding:1.923vw;
  }

  #single-column .copyright-info .info-head{
    gap:0.769vw;
    margin-bottom:1.538vw;
  }

  #single-column .copyright-info .info-head span{
    font-size:1.231vw;
  }

  #single-column .copyright-info .info-head .label{
    padding:0.538vw 0.923vw;
    border:1px solid rgba(0,0,0,0.3);
  }

  #single-column .copyright-info .info-txt{
    font-size:1.077vw;
  }

  #single-column .thumbnail{
    margin-bottom:3.846vw;
  }

  #single-column .column-intro,
  #single-column .column-txt{
    font-size:1.231vw;
  }

  #single-column .column-txt{
    margin-top:3.846vw;
  }

  #single-column .column-post-content .img{
    margin-top:3.846vw;
  }

  #single-column h3{
    font-size:1.538vw;
    padding:0.692vw 1.154vw;
    margin-top:7.692vw
  }

  .column-post-content h3::before {
    padding-right:0.769vw;
  }

.article-txt:not(.a-blur-photo__lead):not(.a-blur-photo__box .text-area .article-txt) {
    margin-top: 3.846vw;
  }
.column-post-content img:not(.a-blur-photo__img, .blur-icon),
.column-post-content .a-blur-photo,
.news-post-content img:not(.a-blur-photo__img, .blur-icon),
.news-post-content .a-blur-photo,
.case-post-content img:not(.a-blur-photo__img, .blur-icon),
.case-post-content .a-blur-photo
{
      margin-top: 3.846vw;
    }
}

@media screen and (max-width: 768px) {
  #single-column .column-post-head .post-title{
    font-size:2.64vw;
    margin-bottom:3.6vw;
  }

  #single-column .copyright-info{
    padding:3.6vw;
  }

  #single-column .copyright-info .info-head{
    gap:1.2vw;
    margin-bottom:2.4vw;
  }

  #single-column .copyright-info .info-head span{
    font-size:1.92vw;
  }

  #single-column .copyright-info .info-head .label{
    padding:0.84vw 1.44vw;
  }

  #single-column .copyright-info .info-txt{
    font-size:1.68vw;
  }

  #single-column .thumbnail{
    margin-bottom:6vw;
  }

  #single-column .column-intro,
  #single-column .column-txt{
    font-size:1.92vw;
  }

  #single-column .column-txt{
    margin-top:6vw;
  }

  #single-column .column-post-content .img{
    margin-top:6vw;
  }

  #single-column h3{
    font-size:2.4vw;
    padding:1.08vw 1.8vw;
    margin-top:12vw;
  }

  .column-post-content h3::before {
    padding-right:1.2vw;
  }

.article-txt:not(.a-blur-photo__lead):not(.a-blur-photo__box .text-area .article-txt) {
    margin-top: 6vw;
  }
.column-post-content img:not(.a-blur-photo__img, .blur-icon),
.column-post-content .a-blur-photo,
.news-post-content img:not(.a-blur-photo__img, .blur-icon),
.news-post-content .a-blur-photo,
.case-post-content img:not(.a-blur-photo__img, .blur-icon),
.case-post-content .a-blur-photo
{
      margin-top: 6vw;
    }

}

@media screen and (max-width: 480px) {
  #single-column .column-post-head .post-title{
    font-size:3.911vw;
    margin-bottom:5.333vw;
  }

  #single-column .copyright-info{
    padding:5.333vw;
    align-items:flex-start;
    gap:3%;
  }

  #single-column .copyright-info .info-img{
    width:32%;
    margin:0 auto 4.444vw;
  }

  #single-column .copyright-info .info{
    width:65%;
  }

  #single-column .copyright-info .info-head{
    gap:1.3vw;
    margin-bottom:2vw;
    flex-wrap:wrap;
  }

  #single-column .copyright-info .info-head span{
    font-size:3.6vw;
  }

  #single-column .copyright-info .info-head .label{
    padding:1.3vw;
  }

  #single-column .copyright-info .info-txt{
    font-size:3.6vw;
  }

  #single-column .thumbnail{
    margin-bottom:8.889vw;
  }

  #single-column .column-intro,
  #single-column .column-txt{
    font-size:4vw;
  }

  #single-column .column-txt{
    margin-top:8.889vw;
  }

  #single-column .column-post-content .img{
    margin-top:8.889vw;
  }

  #single-column h3{
    font-size:4.3vw;
    padding:2.8vw 3.2vw;
    margin-top:17.778vw;
    line-height:1.35;
  }

  .column-post-content h3::before {
    padding-right:1.778vw;
  }

  .article-txt:not(.a-blur-photo__lead):not(.a-blur-photo__box .text-area .article-txt){
    margin-top: 8.889vw;
    font-size:4vw;
  }

    .article-txt .big{
      font-size:5vw;
    }
  
.column-post-content img:not(.a-blur-photo__img, .blur-icon),
.column-post-content .a-blur-photo,
.news-post-content img:not(.a-blur-photo__img, .blur-icon),
.news-post-content .a-blur-photo,
.case-post-content img:not(.a-blur-photo__img, .blur-icon),
.case-post-content .a-blur-photo{
    margin-top: 8.889vw;
  }
}

.related-posts {
  padding: 50px;
  background: #f5f5f5;
}

.related-posts * {
  box-sizing: border-box;
}

.related-posts img {
  display: block;
  width: 100%;
  height: auto;
}

.related-posts a {
  color: inherit;
  text-decoration: none;
}

.related-posts h2,
.related-posts p {
  margin: 0;
}

.related-posts__head {
  margin-bottom: 20px;
  padding-bottom:5px;
  border-bottom: 1px solid #00a0aa;
  position: relative;
}

.related-posts__title {
  padding-left: 20px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.related-posts__head::before {
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  width: 10px;
  height: 30px;
  background: #00a0aa;
}

.related-posts__item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.related-posts__link {
  display: flex;
  align-items: center;
  gap: 6%;
}

.related-posts__image {
  width: 34%;
  flex-shrink: 0;
}

.related-posts__image img {
  width: 100%;
  height: 10.8vw;
  max-height: 140px;
  object-fit: cover;
}

.related-posts__body {
  width: 60%;
}

.related-posts__category {
  display: inline-block;
  padding: 5px;
  background: #00a0aa;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
  margin-bottom:3px;
}

.related-posts__item-title {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #000;
  transition: color 0.3s ease;
margin-top: 12px;
}

.related-posts__link:hover .related-posts__item-title {
  color: #00a0aa;
}


@media screen and (max-width: 1300px) {
  .related-posts {
    padding: 3.846vw;
  }

  .related-posts__head {
    margin-bottom: 1.538vw;
    padding-bottom: 0.385vw;
    border-bottom: 0.077vw solid #00a0aa;
  }

  .related-posts__title {
    padding-left: 1.538vw;
    font-size: 1.538vw;
  }

  .related-posts__head::before {
    width: 0.769vw;
    height: 2.308vw;
  }

  .related-posts__item {
    padding: 2.308vw 0;
    border-bottom: 0.077vw solid rgba(0, 0, 0, 0.3);
  }

  .related-posts__image img {
    height: 10.8vw;
    max-height: 10.769vw;
  }

  .related-posts__category {
    padding: 0.385vw;
    font-size: 1.231vw;
  }

  .related-posts__item-title {
    font-size: 1.231vw;
margin-top: 1.154vw;
  }
}

@media screen and (max-width: 768px) {
  .related-posts {
    padding: 6vw;
  }

  .related-posts__head {
    margin-bottom: 2.4vw;
    padding-bottom: 0.6vw;
  }

  .related-posts__title {
    padding-left: 2.4vw;
    font-size: 2.4vw;
  }

  .related-posts__head::before {
    width: 1.2vw;
    height: 3.6vw;
  }

  .related-posts__link{
    gap:5%;
align-items: flex-start;
  }

  .related-posts__item {
    padding: 3.6vw 0;
  }

  .related-posts__image img {
    height: 18.5vw;
    max-height: none;
  }

  .related-posts__category {
    padding: 0.6vw;
    font-size: 1.92vw;
  }

  .related-posts__item-title {
    font-size: 1.92vw;
margin-top: 1.8vw;
  }
}

@media screen and (max-width: 480px) {
  .related-posts {
    padding: 8.889vw 5.333vw;
  }

  .related-posts__head {
    margin-bottom: 3.556vw;
    padding-bottom: 0.889vw;
  }

  .related-posts__title {
    padding-left: 3.556vw;
    font-size: 4.2vw;
    line-height: 1.3;
  }

  .related-posts__head::before {
    width: 1.778vw;
    height: 5.333vw;
  }

  .related-posts__item {
    padding: 5.333vw 0;
  }

.related-posts__link {
  align-items: flex-start;
}

  .related-posts__image{
    width:33%;
  }
  
  .related-posts__body {
    width: 58%;
  }

  .related-posts__image img {
    height: 23vw;
  }

  .related-posts__category {
    padding: 1.111vw;
    font-size: 2.8vw;
  }

  .related-posts__item-title {
    font-size: 4vw;
margin-top: 1.5vw;
  }
}


/* single-case */

#single-case .case-layout,
#single-news .news-layout{
  width:65.7%;
  margin:0 auto;
}

#single-case .case-post-head .post-title,
#single-news .news-post-head .post-title{
  font-size:25px;
  line-height:1.75;
  letter-spacing:0.12em;
  margin-bottom:50px;
}

#single-case .case-post-head .post-data,
#single-news .news-post-head .post-data{
  margin-bottom:20px;
}

#single-case .case-post-content .case-txt,
#single-news .news-post-content .news-txt{
  font-size:16px;
  font-weight:300;
  line-height:2.2;
  margin-top:50px;
}

#single-case .case-post-content .img,
#single-news .news-post-content .img{
  margin-top:100px;
}

#single-news .copyright-info,
#single-case .copyright-info {
  display: flex;
  background: #f5f5f5;
  padding: 30px;
  gap: 4%;
  align-items: flex-start;
}

#single-news .copyright-info .info-img,
#single-case .copyright-info .info-img {
  width: 15%;
}

#single-news .copyright-info .info-img img,
#single-case .copyright-info .info-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#single-news .copyright-info .info,
#single-case .copyright-info .info {
  width: 81%;
}

#single-news .copyright-info .info-head,
#single-case .copyright-info .info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

#single-news .copyright-info .info-head span,
#single-case .copyright-info .info-head span {
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  line-height: 1;
}

#single-news .copyright-info .info-head .label,
#single-case .copyright-info .info-head .label {
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#single-news .copyright-info .info-txt,
#single-case .copyright-info .info-txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
}

@media screen and (max-width: 1300px) {
  #single-case .case-layout,
  #single-news .news-layout{
    width:65.7%;
  }

  #single-case .case-post-head .post-title,
  #single-news .news-post-head .post-title{
    font-size:1.923vw;
    margin-bottom:3.846vw;
  }

  #single-case .case-post-head .post-data,
  #single-news .news-post-head .post-data{
    margin-bottom:1.538vw;
  }

  #single-case .case-post-content .case-txt,
  #single-news .news-post-content .news-txt{
    font-size:1.231vw;
    margin-top:3.846vw;
  }

  #single-case .case-post-content .img,
  #single-news .case-post-content .img{
    margin-top:7.692vw;
  }

#single-news .copyright-info,
#single-case .copyright-info {
  padding: 2.308vw;
}

#single-news .copyright-info .info-head,
#single-case .copyright-info .info-head {
  gap: 0.769vw;
  margin-bottom: 1.154vw;
}

#single-news .copyright-info .info-head span,
#single-case .copyright-info .info-head span {
  font-size: 1.231vw;
}

#single-news .copyright-info .info-head .label,
#single-case .copyright-info .info-head .label {
  padding: 0.538vw 0.923vw;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#single-news .copyright-info .info-txt,
#single-case .copyright-info .info-txt {
  font-size: 1.077vw;
}
}

@media screen and (max-width: 768px) {
  #single-case .case-layout,
  #single-news .news-layout{
    width:90%;
  }

  #single-case .case-post-head .post-title,
  #single-news .news-post-head .post-title{
    font-size:3vw;
    margin-bottom:6vw;
  }

  #single-case .case-post-head .post-data,
  #single-news .news-post-head .post-data{
    margin-bottom:2.4vw;
  }

  #single-case .case-post-content .case-txt,
  #single-news .news-post-content .news-txt{
    font-size:1.92vw;
    margin-top:6vw;
  }

  #single-case .case-post-content .img,
  #single-news .news-post-content .img{
    margin-top:12vw;
  }

#single-news .copyright-info,
#single-case .copyright-info {
  padding: 3.6vw;
}

#single-news .copyright-info .info-head,
#single-case .copyright-info .info-head {
  gap: 0.769vw;
  margin-bottom: 1.538vw;
}

#single-news .copyright-info .info-head span,
#single-case .copyright-info .info-head span {
  font-size: 1.92vw;
}

#single-news .copyright-info .info-head .label,
#single-case .copyright-info .info-head .label {
  padding: 0.84vw 1.44vw;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#single-news .copyright-info .info-txt,
#single-case .copyright-info .info-txt {
  font-size: 1.68vw;
}
}

@media screen and (max-width: 480px) {
  #single-case .case-layout,
  #single-news .news-layout{
    width:100%;
  }

  #single-case .case-post-head .post-title,
  #single-news .news-post-head .post-title{
    font-size:4.5vw;
    margin-bottom:8.889vw;
  }

  #single-case .case-post-head .post-data,
  #single-news .news-post-head .news-data{
    margin-bottom:3.556vw;
  }

  #single-case .case-post-content .case-txt,
  #single-news .news-post-content .news-txt{
    font-size:3vw;
    margin-top:8.889vw;
  }

  #single-case .case-post-content .img,
  #single-news .news-post-content .img{
    margin-top:17.778vw;
  }

#single-news .copyright-info,
#single-case .copyright-info {
  padding: 5.333vw;
  align-items: flex-start;
  gap: 3%;
}

#single-news .copyright-info .info-img,
#single-case .copyright-info .info-img {
  width: 32%;
  margin: 0 auto 4.444vw;
}

#single-news .copyright-info .info,
#single-case .copyright-info .info {
  width: 65%;
}

#single-news .copyright-info .info-head,
#single-case .copyright-info .info-head {
  gap: 1.3vw;
  margin-bottom: 2vw;
  flex-wrap: wrap;
}

#single-news .copyright-info .info-head span,
#single-case .copyright-info .info-head span {
  font-size: 3.6vw;
}

#single-news .copyright-info .info-head .label,
#single-case .copyright-info .info-head .label {
  padding: 1.3vw;
}

#single-news .copyright-info .info-txt,
#single-case .copyright-info .info-txt {
  font-size: 3.6vw;
}
}

/* sns */

.sns-links{
  background:#f5f5f5;
  padding:50px;
}

.sns-links .wrap{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:2%;
}

.sns-links .sns-head{
  font-size:20px;
  letter-spacing:0.1em;
  margin-bottom:35px !important;
}

.sns-links .wrap a{
  display:block;
  background:#fff;
  padding:25px 0;
  transition:0.3s;
}

.sns-links .wrap a img{
  width:45%;
  margin:0 auto;
  display:block;
}

.sns-links .wrap a span{
  display:block;
  width:fit-content;
  margin:0 auto;
  margin-top:15px;
  color:#000;
  font-size:16px;
  transition:0.3s;
}

.sns-links .wrap a:hover{
  background:#00a0aa;
}

.sns-links .wrap a:hover span{
  color:#fff;
}


@media screen and (max-width: 1300px) {
  .sns-links{
    padding:3.846vw;
  }

  .sns-links .sns-head{
    font-size:1.538vw;
    margin-bottom:2.692vw !important;
  }

  .sns-links .wrap a{
    padding:1.923vw 0;
  }

  .sns-links .wrap a span{
    margin-top:1.154vw;
    font-size:1.231vw;
  }
}

@media screen and (max-width: 768px) {
  .sns-links{
    padding:6vw;
  }

  .sns-links .sns-head{
    font-size:2.4vw;
    margin-bottom:4.2vw !important;
  }

  .sns-links .wrap{
    grid-template-columns:repeat(2, 1fr);
    gap:3%;
  }

  .sns-links .wrap a{
    padding:3vw 0;
  }

  .sns-links .wrap a span{
    margin-top:1.8vw;
    font-size:1.92vw;
  }
}

@media screen and (max-width: 480px) {
  .sns-links{
    padding:5.333vw;
  }

  .sns-links .sns-head{
    font-size:4.2vw;
    margin-bottom:5.333vw !important;
  }

  .sns-links .wrap{
    gap:3%;
  }

  .sns-links .wrap a{
    padding:2vw 0;
  }

  .sns-links .wrap a img{
    width:55%;
  }

  .sns-links .wrap a span{
    margin-top:2.667vw;
    font-size:3vw;
  }
}


#single-news .news-post-head .post-title{
  padding-bottom:20px;
  border-bottom:1px solid #00a0aa;
}

@media screen and (max-width: 1300px) {
  #single-news .news-post-head .post-title{
    padding-bottom:1.538vw;
    border-bottom:0.077vw solid #00a0aa;
  }
}

@media screen and (max-width: 768px) {
  #single-news .news-post-head .post-title{
    padding-bottom:2.4vw;
  }
}

@media screen and (max-width: 480px) {
  #single-news .news-post-head .post-title{
    padding-bottom:3.556vw;
  }
}

.case-empty{
  text-align: center;
}