:root {
  --color-green: #07805d;
}

#contents {
  background-color: #F3FAF7;
}

.contents-main {
  background-color: #ffffff;
  border-radius: 80px 80px 0 0;
  padding: clamp(48px, 10vw, 120px) 0 clamp(88px, 10vw, 120px);
}
@media screen and (max-width: 1240px) {
  .contents-main {
    border-radius: 40px 40px 0 0;
  }
}

.contents-header-inner-wrap,
.contents-main-inner-wrap,
.contents-other-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .contents-header-inner-wrap,
  .contents-main-inner-wrap,
  .contents-other-inner-wrap {
    padding: 0 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .contents-header-inner-wrap {
    padding: 0 20px 20px;
  }
}

#contents .contents-header-inner-wrap .bread-crumb {
  padding: 1em 20px 0 0;
  max-width: 1200px;
}

#contents header.contents-header {
  position: relative;
  height: clamp(324px, 26.8333333333vw, 322px);
}
@media screen and (max-width: 470px) {
  #contents header.contents-header {
    height: auto;
  }
}

#contents header.contents-header .header-title {
  display: grid;
  width: 100%;
  height: 100%;
  inset: 0 0 auto auto;
  place-items: center;
  font-weight: 600;
  font-size: clamp(22px, 2.6666666667vw, 32px);
  margin-top: clamp(8px, 1vw, 12px);
}
#contents header.contents-header .header-title span {
  max-width: 1200px;
  margin: 0 auto;
}

.main-view {
  margin-bottom: clamp(42px, 5.3333333333vw, 64px);
}
.main-view figure {
  max-width: 1000px !important;
  margin-right: auto;
  margin-left: auto;
}
.main-view figure img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .main-view figure img {
    border-radius: 20px;
  }
}

.badge-area, .tag-badge-area {
  margin-top: clamp(20px, 2vw, 24px);
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .badge-area, .tag-badge-area {
    flex-direction: column;
  }
}

.padding-top64 {
  padding-top: clamp(40px, 5.3333333333vw, 64px);
}

.useful-list {
  border: 1px solid #64D1A1;
  border-radius: 12px;
}
.useful-list .useful-list-title {
  background-color: #64D1A1;
  border-radius: 10px 0 12px 0;
  color: #ffffff;
  font-weight: bold;
  padding: 0.5em 1.7em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .useful-list .useful-list-title {
    display: block;
    border-radius: 12px 12px 0 0;
  }
}

.related-card {
  position: relative;
  box-shadow: 0 0 0 1px #E2E7E9 inset;
  border-radius: 30px;
  overflow-y: hidden;
  min-height: 200px;
}
.related-card:hover .related-card-text .related-title {
  color: #07825D;
}
.related-card:hover .related-card-body::after {
  right: 0.9375rem;
  animation-name: animation-hover-arrow;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.related-card-body {
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .related-card-body {
    flex-direction: column;
  }
}
.related-card-body figure {
  width: 325px;
  height: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .related-card-body figure {
    width: 100%;
    aspect-ratio: auto;
    height: 200px;
  }
}
.related-card-body figure img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.related-card-body::after {
  content: "";
  width: 18px;
  height: 16px;
  color: transparent;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.7,14.4l6.4-6.4L7.7,1.5" style="fill:none; stroke:%2307805d; stroke-width:2px;"/><path d="M0,7.9h14.2" style="fill:none; stroke:%2307805d; stroke-width:2px;"/></svg>') no-repeat left top/contain;
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  transition: all 0.5s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .related-card-body::after {
    bottom: 1.25rem;
  }
}

.related-card-text {
  padding: clamp(20px, 1.6666666667vw, 20px) clamp(24px, 3.3333333333vw, 40px);
  position: relative;
  width: 100%;
}
.related-card-text .related-title {
  color: #212121;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.6 !important;
  margin-top: 4px;
}
.related-card-text .public-update {
  margin-top: 0;
}
.related-card-text .category-badge {
  margin-top: clamp(12px, 1.3333333333vw, 16px);
  pointer-events: none;
}
.related-card-text .category-badge span {
  display: block;
}
.related-card-text .category-badge li {
  padding: 2px 8px 4px;
  border-radius: 4px;
}

.card-link {
  position: relative;
}

.contents-other {
  padding-bottom: 130px;
}

.related-list > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .related-list > ul {
    grid-template-columns: 1fr;
  }
}
.related-list > ul li {
  background: #ffffff;
  border-radius: 20px;
}

.related-list-card {
  position: relative;
}
.related-list-card:hover .related-card-text .related-title {
  color: #07825D;
}

.related-list-card-body {
  display: flex;
  flex-direction: row;
  padding: 20px clamp(24px, 1.3333333333vw, 16px);
}
@media screen and (max-width: 1240px) {
  .related-list-card-body {
    flex-direction: column;
  }
}
.related-list-card-body figure {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 160/90;
  border-radius: 12px;
}
@media screen and (max-width: 1240px) {
  .related-list-card-body figure {
    width: 100%;
    aspect-ratio: auto;
    height: 170px;
  }
}
.related-list-card-body figure img {
  width: 100%;
  height: 100%;
  max-height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.related-list-card-body .related-card-text {
  padding: 0 0 0 16px;
}
@media screen and (max-width: 1240px) {
  .related-list-card-body .related-card-text {
    padding: 18px 0 0 0;
  }
}
.related-list-card-body .related-card-text .related-title {
  color: #212121;
  font-size: clamp(16px, 1.25vw, 15px);
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.6 !important;
}
.related-list-card-body .related-card-text .public-update {
  font-size: 12px;
}
.related-list-card-body:hover::after {
  right: 0.9375rem;
}

.category-area {
  margin-top: clamp(16px, 2vw, 24px);
}

.category-area-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
@media screen and (max-width: 767px) {
  .category-area-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-area-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #ffffff;
  box-shadow: 0 0 0 1px #06825D inset;
  border-radius: 6px;
  color: #06825D;
  font-size: clamp(12px, 1.25vw, 15px);
}
@media screen and (max-width: 767px) {
  .category-area-list li {
    height: 40px;
  }
}
.category-area-list li a {
  color: #06825D;
}
.category-area-list li:hover {
  background: #C3EFDD;
  box-shadow: 0 0 0 1px transparent inset;
  transition: 0.5s;
}
.category-area-list li.current-btn {
  background: #06825D;
  box-shadow: 0 0 0 1px transparent inset;
  color: #ffffff;
}
.category-area-list li.current-btn a {
  color: #ffffff;
}
.category-area-list li.current-btn:hover {
  background: #06825D;
  cursor: pointer;
}

.cv-bnr-area figure {
  margin-left: auto;
  margin-right: auto;
}
.cv-bnr-area figure img {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .cv-bnr-area figure img {
    border-radius: 20px;
  }
}

.share-box {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-radius: 30px;
  box-shadow: 0 0 0 1px #64D1A1 inset;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .share-box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
  }
}
.share-box .share-box-title {
  color: #64D1A1;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.share-box .share-box-list {
  display: flex;
  gap: 48px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .share-box .share-box-list {
    gap: 24px;
    margin: 0;
  }
}
.share-box .share-box-list li {
  width: 48px;
  height: 48px;
}
.share-box .share-box-list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #E6E6E6;
  transition: opacity 0.3s;
}
.share-box .share-box-list li a:hover {
  opacity: 0.7;
}
.share-box .share-box-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.share-box .share-box-list li button {
  width: 48px;
  border-radius: 50%;
  border: none;
  background: none;
}
.share-box .share-box-list li button:hover {
  cursor: pointer;
  opacity: 0.7;
}

#footer {
  margin-top: 0 !important;
}

.font-size-32 {
  font-size: clamp(30px, 3.6vw, 36px);
}

.font-size-15 {
  font-size: clamp(13.95px, 1.155vw, 15px);
}

.color-deep-blue-gray {
  color: #597B88;
}

.color-green {
  color: var(--color-green);
}

.mt20 {
  margin-top: 20px;
}

.mt0 {
  margin-top: 0 !important;
}