#key_visual {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  overflow: hidden;
  z-index: 0;
}
.key_visual_container {
  position: relative;
  flex-shrink: 0;
  width: 1040px;
  height: 490px;
  margin: 0 auto;
}
.key_visual_catch_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 626px;
  height: 323px;
  background-image: url(/images/catch_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  line-height: 1.685;
  left: 0;
  top: 30px;
  z-index: 1;
}
.key_visual_supervisor {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--primary);
  font-size: var(--font-size-lg);
}
.key_visual_supervisor_label {
  width: fit-content;
  color: #fff;
  font-size: var(--font-size-xl);
  background-color: var(--primary);
  padding: 7px 30px 6px;
  border-radius: 20px;
}
.key_visual_supervisor_name {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--font-size-xl);
  padding-left: 8px;
}
.key_visual_catch img {
  vertical-align: text-top;
}
.key_visual_catch {
  font-size: var(--font-size-title-xxl);
  color: #fff;
  word-break: keep-all;
  text-align: center;
}
.key_visual_wrapper {
  position: absolute;
  right: 0;
  top: 50px;
  &:before,
  &:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
}
.key_visual_img {
  display: block;
  width: 408px;
  height: auto;
}
@media screen and (max-width: 723px) {
  #key_visual {
    padding: 10px;
  }
  .key_visual_container {
    width: 100%;
    height: auto;
  }
  .key_visual_wrapper {
    width: fit-content;
    position: static;
    margin-inline: auto;
  }
  .key_visual_catch_container {
    position: static;
    transform: none;
    width: 100%;
    height: 191px;
  }
  .key_visual_img {
    width: 300px;
    margin-top: -30px;
  }
  .key_visual_catch {
    font-size: var(--font-size-xl);
  }
  .key_visual_catch img {
    width: 161px;
  }
  .key_visual_supervisor {
    position: static;
    margin-left: 20px;
    font-size: var(--font-size-sm);
  }
  .key_visual_supervisor_label {
    font-size: var(--font-size-sm);
    padding: 4px 20px 6px;
    margin-top: 12px;
  }
  .key_visual_supervisor_name {
    font-size: var(--font-size-md);
  }
}
.TopSectionLink {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 28px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  outline: 2px solid white;
  outline-offset: -6px;
  background: var(--primary);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.TopSectionLink_left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.TopSectionLink_icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 50%;
}
.TopSectionLink_icon img {
  object-fit: contain;
}
.TopSectionLink_label {
  font-size: var(--font-size-title-sm);
  font-weight: 600;
  color: #fff;
}
.TopSectionLink_arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.TopSectionLink_arrow img {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  filter: var(--white-icon-filter);
}
@media screen and (max-width: 723px) {
  .TopSectionLink {
    width: 100%;
    padding: 12px 16px 12px 20px;
    box-sizing: border-box;
  }
  .TopSectionLink_icon,
  .TopSectionLink_icon img {
    width: 60px;
    height: 60px;
  }
  .TopSectionLink_label {
    font-size: var(--font-size-lg);
  }
  .TopSectionLink_arrow {
    width: 24px;
    height: 24px;
  }
  .TopSectionLink_arrow img {
    width: 10px;
    height: 10px;
  }
}
.TopSectionHeading {
  display: flex;
  align-items: center;
  gap: 40px;
}
.TopSectionHeading_icon {
  width: 200px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.TopSectionHeading_title {
  flex-grow: 1;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 28px;
  margin: 0;
}
.TopSectionHeading_title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  border-radius: 4px;
  background: var(--primary);
}
@media screen and (max-width: 723px) {
  .TopSectionHeading {
    gap: 10px;
  }
  .TopSectionHeading_icon {
    width: 90px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
  .TopSectionHeading_title {
    font-size: var(--font-size-title-xs);
    padding-bottom: 24px;
  }
}
.TopSectionLinkItem {
  width: 510px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 30px;
  outline: 2px dashed;
  outline-offset: -10px;
  text-decoration: none;
}
.TopSectionLinkItem_left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.TopSectionLinkItem_icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
.TopSectionLinkItem_label {
  font-size: var(--font-size-title-sm);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.6;
  word-break: keep-all;
}
.TopSectionLinkItem_arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--primary);
}
.TopSectionLinkItem_arrow img {
  margin-left: 3px;
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: var(--white-icon-filter);
}
.TopSectionLinkItem--molluscum {
  background-color: var(--secondary);
}
.TopSectionLinkItem--ycanth {
  background: var(--thirtary);
}
@media screen and (max-width: 723px) {
  .TopSectionLinkItem {
    width: 100%;
    height: auto;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 20px;
    outline-offset: -8px;
  }
  .TopSectionLinkItem_icon {
    width: 60px;
    height: 60px;
  }
  .TopSectionLinkItem_label {
    font-size: var(--font-size-lg);
  }
  .TopSectionLinkItem_arrow {
    width: 24px;
    height: 24px;
  }
  .TopSectionLinkItem_arrow img {
    margin-left: 2px;
    width: 10px;
    height: 10px;
  }
}
.TopPage_contentsContainer {
  background-color: var(--secondary);
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
}
.TopPage_contentsWrapper {
  width: 1280px;
  background-color: #fff;
  padding-inline: 120px;
  padding-top: 40px;
  padding-bottom: 80px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 64px;
}
.TopPage_toc {
  width: 1040px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.TopPage_section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.TopPage_sectionLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 723px) {
  .TopPage_contentsContainer {
    padding-top: 30px;
    padding-bottom: 64px;
    padding-inline: 10px;
  }
  .TopPage_contentsWrapper {
    width: 100%;
    margin-inline: 10px;
    padding-inline: 10px;
    gap: 40px;
    padding-bottom: 64px;
    padding-top: 20px;
  }
  .TopPage_toc {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .TopPage_section {
    gap: 16px;
  }
  .TopPage_sectionLinks {
    gap: 10px;
  }
}

.mg10{
	margin: 10px 0 0; 
}
.mg20{
	margin: 20px 0 0; 
}
.mg30{
	margin: 30px 0 0; 
}
.mg40{
	margin: 40px 0 0; 
}
.mg50{
	margin: 50px 0 0; 
}
.mg60{
	margin: 60px 0 0; 
}
.mg70{
	margin: 70px 0 0; 
}
.txt01{
	font-weight: bold;
	margin-top: 10px;
}
.mgt{
	margin-top: 70px;
}
@media screen and (max-width: 723px){
.mgt{
	margin-top: 0; 
	}
}

	.txt02{
	font-size: 14px;
	text-decoration: underline 1px #4a0563;
	margin-top: 10px;
}