@charset "UTF-8";
/*!
Theme Name: AGAクリニックブログ-中国語
Version: 1.0.2
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0px;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul[class],
ol[class] {
  list-style: none;
}

#root, #__next {
  isolation: isolate;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 2.5rem;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background: white url(images/chevron-right.svg) center/0.7rem no-repeat;
  box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  text-indent: 2.5rem;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);
}

.slick-prev {
  left: 0.7rem;
  background-image: url(images/chevron-left.svg);
}

.slick-next {
  right: 0.7rem;
}

html {
  font-size: 2.67vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: min(0.77vw, 10px);
  }
}

body {
  background: white;
  color: #000;
  line-height: 1.5;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
body > * {
  flex-shrink: 0;
}

.footer {
  margin-top: auto;
}

a {
  text-decoration: none;
  transition: 0.25s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  color: #de4b42;
}

svg {
  max-width: 100%;
  max-height: 100%;
}

iframe {
  max-width: 100%;
}

.nowrap {
  display: inline-block;
}

.center,
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .pc-hidden {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  clip-path: polygon(0 0, 0 0);
}

.wrapper {
  padding: 0 2rem 5rem;
}
@media screen and (min-width: 768px) {
  .wrapper {
    display: grid;
    align-items: start;
    justify-content: center;
    grid-template-columns: 82rem 35rem;
    gap: 3rem;
    padding: 0 0 10rem;
  }
}

.sidebar {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .sidebar {
    margin-top: 0;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  border: none;
  border-radius: 0.6rem;
  padding: 0.5em 1em;
  background: #de4b42;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.16);
  color: white;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.button:hover {
  background-color: rgb(228.6, 111, 103.8);
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 2.8rem;
  }
}

.searchform {
  display: flex;
  overflow: hidden;
  border: 0.3rem solid #070E3F;
  border-radius: 2.7rem;
  padding-right: 0.4rem;
  background-color: #070E3F;
}
.searchform:hover {
  border-color: #082977;
  background-color: #082977;
}
.searchform input {
  flex: auto;
  border: none;
  border-radius: 2.4rem;
  padding: 1rem 2rem;
  background-color: white;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  outline: none;
}
.searchform button {
  width: 4.8rem;
  border: none;
  background: transparent url(images/search.svg) center/3rem no-repeat;
  cursor: pointer;
}

.breadcrumbs {
  width: 33.5rem;
  margin: 1rem auto;
  font-size: 1.2rem;
  font-family: serif;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    width: 120rem;
    font-size: 1.5rem;
    overflow: hidden;
  }
}
.breadcrumbs::-webkit-scrollbar {
  height: 1px;
}
.breadcrumbs::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.breadcrumbs::-webkit-scrollbar-thumb {
  background: #bbb;
}
.breadcrumbs-list {
  display: flex;
  gap: 0.5em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .breadcrumbs-list {
    flex-wrap: wrap;
  }
}
.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin: 0;
}
.breadcrumbs-item + li::before {
  content: "";
  flex: 0 0 0.5em;
  margin-left: auto;
  height: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.breadcrumbs-item a {
  color: #000;
}
.breadcrumbs-item a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.linkList {
  display: block;
  position: relative;
  border-bottom: 1px solid #707070;
  padding: 0 1.2rem 0.5rem 0;
  color: #545454;
}
.linkList:before, .linkList:after {
  content: "";
  display: block;
  position: absolute;
}
.linkList:before {
  bottom: -2px;
  left: 0;
  width: 8rem;
  height: 3px;
  background-color: #070E3F;
  transition: width 0.25s ease-in-out;
}
.linkList:after {
  top: 0.5em;
  right: 0.2rem;
  width: 0.4rem;
  height: 0.6rem;
  background: url(images/chevron-right.svg) center/contain no-repeat;
}
.linkList:hover:before {
  width: 100%;
}

.blogcard {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  margin: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .blogcard {
    grid-template-columns: 8rem 1fr;
    margin: 6rem 4.5rem;
  }
}
.blogcard span {
  color: #082977;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .blogcard span {
    font-size: 1.6rem;
  }
}
.blogcard a {
  width: fit-content;
  padding-right: 2.2rem;
  background: url(images/icon-open.svg) 100% 50% no-repeat;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .blogcard a {
    margin-top: 0.2rem;
    font-size: 1.4rem;
  }
}
.blogcard a:hover {
  color: #082977;
  text-decoration: none;
}

.header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  padding: 0 0.7rem 0 1rem;
  background-color: white;
  box-shadow: inset 0 -0.2rem 0.2rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .header {
    position: static;
    display: grid;
    grid-template-columns: 120rem;
    justify-content: center;
    padding: 0 0 0 2rem;
    box-shadow: none;
  }
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 3.8rem 3.8rem;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr 40rem auto 16.8rem;
    gap: 1.4rem 1.6rem;
    padding: 1.4rem 0 0.8rem;
  }
}
.header-h1 {
  grid-column: 1/5;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .header-h1 {
    grid-column: 1/3;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .header-logo {
    grid-column: 1;
    grid-row: 2;
    margin-right: 5.4rem;
  }
}
.header-search {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-search {
    display: block;
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 768px) {
  .header-tel {
    grid-column: 3;
    grid-row: 1/3;
    margin: 0 0 0 0.8rem;
  }
}
.header-tel p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media screen and (min-width: 768px) {
  .header-tel p {
    gap: 0.8rem;
  }
}
.header-tel p:before {
  content: "";
  width: 5.7rem;
  height: 1.3rem;
  background: url(images/cn-header-tel-sp.webp) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .header-tel p:before {
    content: "电话接线服务";
    width: auto;
    height: auto;
    padding: 0.1rem 0.9rem;
    background: #070E3F;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
}
.header-tel p span {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transform: scale(0.8);
  transform-origin: left;
}
@media screen and (min-width: 768px) {
  .header-tel p span {
    font-size: 1.2rem;
    transform: none;
  }
}
.header-tel a {
  display: block;
  color: #070E3F;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .header-tel a {
    margin-top: 0.2rem;
    padding-left: 3rem;
    background: url(images/header-tel.svg) 0.2rem 100%/2.5rem no-repeat;
    font-size: 3rem;
  }
}
.header-form {
  height: 3.8rem;
  border-radius: 0.5rem;
  background: url(images/header-form.svg) center/2.4rem no-repeat, linear-gradient(#070E3F, #154678);
}
@media screen and (min-width: 768px) {
  .header-form {
    grid-column: 4;
    grid-row: 1/3;
    height: 5rem;
    padding: 1.1rem 0 0 8.6rem;
    background-position: 3.7rem 50%, 0 0;
    background-size: 3.6rem, cover;
  }
  .header-form:hover {
    opacity: 0.9;
  }
}
.header-form span {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-form span {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
}
.header-button {
  grid-column: 4;
  height: 3.8rem;
  border: none;
  background: url(images/header-button.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .header-button {
    display: none;
  }
}
.header-nav {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  grid-template-rows: 3.8rem 1fr;
  gap: 1.5rem;
  padding: 2.7rem 0;
  background-color: white;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header-nav {
    grid-column: 1/5;
    position: static;
    display: block;
    margin-top: 0.8rem;
    padding: 0;
    transform: none;
  }
}
.header-nav._show {
  transform: translateX(0%);
}
.header-nav .btn {
  width: 3.8rem;
  height: 3.8rem;
  margin: 0 0.7rem 0 auto;
  border: none;
  background: url(images/header-close.svg) center/3.7rem no-repeat;
}
@media screen and (min-width: 768px) {
  .header-nav .btn {
    display: none;
  }
}
.header-nav-inner {
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .header-nav-inner {
    overflow: visible;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
}
.header-nav-cats > span {
  display: block;
  padding: 1rem 2rem 1rem 4rem;
  background: #F3F7FF linear-gradient(#082977, #082977) 2rem 0.5rem/0.6rem 3rem no-repeat;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .header-nav-cats > span {
    padding: 1rem;
    background: none;
    color: #989898;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .header-nav-cats > span:hover {
    color: #082977;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-cats:hover .cats {
    display: block;
  }
}
.header-nav-cats .cats {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .header-nav-cats .cats {
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 0;
    padding: 1.5rem;
    background-color: white;
  }
}
.header-nav-cats .cats ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1rem;
}
@media screen and (min-width: 768px) {
  .header-nav-cats .cats ul {
    gap: 1rem 1.4rem;
  }
}
.header-nav-cats .cats ul a {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .header-nav-cats .cats ul a {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .header-menu {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
}
.header-menu > li {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header-menu > li {
    margin-top: 0;
  }
}
.header-menu > li > a {
  display: block;
  padding: 1rem 2rem 1rem 4rem;
  background: #F3F7FF linear-gradient(#082977, #082977) 2rem 0.5rem/0.6rem 3rem no-repeat;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .header-menu > li > a {
    padding: 1rem;
    background: none;
    color: #989898;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .header-menu > li > a:hover {
    color: #082977;
  }
}

.spacer {
  height: 8.2rem;
}
@media screen and (min-width: 768px) {
  .spacer {
    display: none;
  }
}

.footer {
  display: grid;
  gap: 2rem;
  padding: 5rem 2rem 2rem;
  background-color: #070E3F;
}
@media screen and (min-width: 768px) {
  .footer {
    grid-template-columns: 40rem 70rem;
    justify-content: center;
    gap: 8rem 10rem;
    padding-bottom: 4rem;
  }
}
.footer-logo img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-logo img {
    margin: 0;
  }
}
.footer-name {
  margin: 3rem 0;
  color: white;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.footer-office {
  margin-top: 1.5rem;
}
.footer-office dt {
  width: fit-content;
  margin-bottom: 0.5rem;
  border: 1px solid white;
  padding: 0.2rem 1.5rem;
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
.footer-office dd {
  color: white;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer-office dd {
    font-size: 1.4rem;
  }
}
.footer-office .tel {
  padding-left: 1.5em;
  background: url(images/icon-phone-w.svg) 0 100%/1.35em no-repeat;
  font-size: 125%;
}
@media screen and (min-width: 768px) {
  .footer-menu {
    width: fit-content;
  }
}
.footer-menu li {
  border-bottom: 1px solid white;
}
.footer-menu li + li {
  margin-top: 1rem;
}
.footer-menu li a {
  display: block;
  padding: 0.6rem 2.5rem 0.6rem 0;
  background: url(images/chevron-right-w.svg) right 0.8rem center/0.5rem no-repeat;
  color: white;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer-menu li a {
    font-size: 1.6rem;
  }
  .footer-menu li a:hover {
    background-position: right 0.4rem center;
  }
}
.footer-cat-title {
  width: calc(100% + 4rem);
  margin: 3rem -2rem 1rem;
  border-bottom: 1px solid white;
  padding: 0 2rem 0.6rem;
  color: white;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer-cat-title {
    width: auto;
    margin: 2rem 0 1rem;
    padding: 0 0 0.6rem;
    font-size: 1.6rem;
  }
}
.footer-cat-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer-cat-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 5rem;
  }
}
.footer-cat-items li {
  display: grid;
}
.footer-cat-items li a {
  width: fit-content;
  padding-right: 0.8rem;
  background: url(images/chevron-right-w.svg) right center/0.4rem no-repeat;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer-cat-items li a {
    padding-right: 1.2rem;
    background-position: right 0.4rem center;
    font-size: 1.2rem;
  }
  .footer-cat-items li a:hover {
    background-position: right center;
  }
}
.footer-copyright {
  margin-top: 2rem;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    grid-column: span 2;
    font-size: 1.2rem;
  }
}

.sidebar-clinic {
  display: block;
  margin-bottom: 3rem;
}
.sidebar-clinic:hover {
  opacity: 0.9;
}
.sidebar-ad a:hover {
  opacity: 0.9;
}
.sidebar-ad img {
  margin: 2rem auto;
}
.sidebar-selfcheck {
  display: block;
  margin-bottom: 4rem;
}
.sidebar-selfcheck:hover {
  opacity: 0.9;
}
.sidebar-selfcheck img {
  filter: drop-shadow(0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.16));
}
.sidebar-title {
  margin-top: 3rem;
  padding: 1.9rem 2.5rem 1.8rem;
  background-color: #070E3F;
}
.sidebar-title .en,
.sidebar-title .enr {
  display: block;
  margin-bottom: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.2rem solid #AFC2DC;
  color: #AFC2DC;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.sidebar-title .enr {
  padding-left: 2.3rem;
  background: url(images/ranking-crown.svg) 0 0.3rem no-repeat;
}
.sidebar-title .ja {
  display: block;
  color: white;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
}
.sidebar:has(.sidebar-toc) {
  align-self: stretch;
  position: static;
}
.sidebar-toc {
  position: sticky;
  top: 2rem;
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .sidebar-toc {
    display: block;
  }
}
.sidebar-toc-inner {
  padding: 1.8rem;
  background-color: #F3F7FF;
}
.sidebar-toc-inner ul {
  list-style: none;
}
.sidebar-toc-inner ul li a {
  color: #545454;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.sidebar-toc-inner ul li a._active {
  color: #070E3F;
}
.sidebar-toc-inner ul li.toc-h2 {
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.sidebar-toc-inner ul li.toc-h2:nth-child(n+2) {
  border-top: 1px solid #d1d1d1;
  padding-top: 1rem;
}
.sidebar-toc-inner ul li.toc-h3 {
  margin: 0.8rem 0;
  font-size: 1.4rem;
}
.sidebar-recent a {
  display: grid;
  grid-template-columns: 15.9rem 1fr;
  gap: 0.5rem 0.8rem;
  align-items: start;
  border-bottom: 1px solid #D1D1D1;
  padding: 2rem 0 1.5rem;
  color: #070E3F;
}
.sidebar-recent a:hover {
  color: #082977;
}
.sidebar-recent a .image {
  grid-row: 1/3;
}
.sidebar-recent a .image img {
  width: 100%;
  aspect-ratio: 15/9;
  object-fit: cover;
}
.sidebar-recent a .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.9rem;
}
.sidebar-recent a .meta .num1,
.sidebar-recent a .meta .num2,
.sidebar-recent a .meta .num3 {
  padding-left: 2.2rem;
  background: url(images/ranking-first.svg) 0 0.3rem no-repeat;
  color: #D90D0D;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.sidebar-recent a .meta .num2 {
  background-image: url(images/ranking-second.svg);
  color: #02B1D1;
}
.sidebar-recent a .meta .num3 {
  background-image: url(images/ranking-third.svg);
  color: #E0AA00;
}
.sidebar-recent a .meta .time {
  color: #ABABAB;
  font-size: 1.1rem;
}
.sidebar-recent a .meta .time.updated {
  padding-left: 1.3rem;
  background: url(images/reflesh.webp) 0 50%/0.9rem no-repeat;
}
.sidebar-recent a h4 {
  min-height: 4lh;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.sidebar-recent a time {
  width: fit-content;
  margin-left: auto;
  padding-right: 0.9rem;
  color: #000;
  font-size: 1.2rem;
}
.sidebar-recent a time.updated {
  padding-left: 1.4rem;
  background: url(images/reflesh.webp) 0 50%/1rem no-repeat;
}

.subnav {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: 3.8rem 1fr;
  gap: 1.5rem;
  width: 100%;
  max-height: 100%;
  padding: 2.7rem 0;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.25s ease-in-out;
}
.subnav-open {
  position: fixed;
  z-index: 9;
  top: 8.7rem;
  right: 0.7rem;
  line-height: 2.5rem;
  width: fit-content;
  border: 1px solid #070E3F;
  padding: 0 1.5rem;
  background-color: white;
  color: #070E3F;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .subnav-open {
    position: static;
    z-index: 0;
    line-height: 3rem;
    margin: 1rem auto 0 calc(50% - 60rem);
    font-size: 1.4rem;
  }
  .subnav-open ~ .breadcrumbs {
    margin-top: -2.6rem;
    padding-left: 12rem;
  }
}
@media screen and (min-width: 1920px) {
  .subnav-open {
    display: none;
  }
  .subnav-open ~ .breadcrumbs {
    margin-top: 1rem;
    padding-left: 0;
  }
}
.subnav-open:hover {
  background-color: #fcfcfc;
}
.subnav-spacer {
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .subnav-spacer {
    display: none;
  }
}
.subnav._show {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .subnav {
    width: 45rem;
  }
}
@media screen and (min-width: 1920px) {
  .subnav {
    inset: 0 calc(50% + 62rem) 0 0;
    grid-template-rows: 100%;
    width: auto;
    padding: 0;
    transform: translateX(0);
  }
}
.subnav-close {
  width: 3.8rem;
  height: 3.8rem;
  margin: 0 0.7rem 0 auto;
  border: none;
  background: url(images/header-close.svg) center/3.7rem no-repeat;
  cursor: pointer;
}
@media screen and (min-width: 1920px) {
  .subnav-close {
    display: none;
  }
}
.subnav-inner {
  overflow-y: auto;
}
.subnav-inner ul {
  list-style: none;
}
.subnav-inner > ul > li + li {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1920px) {
  .subnav-inner {
    width: 30rem;
    margin-left: auto;
  }
  .subnav-inner > ul {
    margin: 20rem 0 2rem;
  }
}
.subnav-cat {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem 2rem 1rem 4rem;
  background: #F3F7FF linear-gradient(#082977, #082977) 2rem 0.5rem/0.6rem 3rem no-repeat;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .subnav-cat {
    padding: 1.2rem 3rem 1.2rem 5rem;
    background-position: 3rem 50%;
    background-size: 0.6rem 3.5rem;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .subnav-cat:hover {
    color: #082977;
  }
}
.subnav-cat:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  aspect-ratio: 1/1;
  background: url(images/chevron-right.svg) center/0.6rem no-repeat;
  transform: rotate(90deg);
}
.subnav-cat._active:after {
  transform: rotate(-90deg);
}
.subnav-items {
  display: none;
  padding: 1.4rem 2rem 0;
}
.subnav-items:has(._active) {
  display: block;
}
.subnav-items ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1.2rem 1rem;
}
@media screen and (min-width: 768px) {
  .subnav-items ul {
    gap: 1rem 1.4rem;
  }
}
.subnav-items ul a {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .subnav-items ul a {
    font-size: 1.3rem;
  }
}
.subnav-items ul a._active {
  pointer-events: none;
  color: #16509A;
}
.subnav-items ul a._active:before {
  width: 100%;
  background-color: #16509A;
}

body:not(:has(.form)) .grecaptcha-badge {
  visibility: hidden;
}

.form {
  font-size: max(16px, 1.6rem);
}
@media screen and (min-width: 768px) {
  .form {
    font-size: 1.8rem;
  }
}
.form table,
.form tbody,
.form tr,
.form th,
.form td {
  display: block;
}
@media screen and (min-width: 768px) {
  .form table,
  .form tbody,
  .form tr,
  .form th,
  .form td {
    display: revert;
  }
}
.form th,
.form td {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .form th,
  .form td {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.form th {
  text-align: left;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .form th {
    width: 14em;
  }
}
.form .required {
  display: inline-block;
  width: 4rem;
  height: 2.4rem;
  margin-left: 1.5rem;
  border-radius: 0.3rem;
  background-color: #f06060;
  line-height: 2.4rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form .required {
    float: right;
    margin-left: 0;
  }
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=url],
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #545454;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
}
.form input[type=date] {
  border: 1px solid #545454;
  border-radius: 0.5rem;
  padding: 1rem 0;
  background-color: #fff;
  text-align: center;
}
.form select[name=pref],
.form input[name=address] {
  margin-top: 1rem;
}
.form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form .wpcf7-radio > span {
  margin: 0;
}
.form input[type=radio],
.form input[type=checkbox] {
  display: none;
}
.form input[type=radio] + span,
.form input[type=checkbox] + span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  border: 1px solid #545454;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: white;
  transition: 0.2s ease-in-out;
}
.form input[type=radio] + span:before,
.form input[type=checkbox] + span:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-color: white;
  border: 2px solid #000;
}
.form input[type=radio]:checked + span,
.form input[type=checkbox]:checked + span {
  border-color: #000;
}
.form input[type=radio] + span:before {
  border-radius: 50%;
}
.form input[type=radio]:checked + span:before {
  background-image: radial-gradient(#000 49%, white 51%);
}
.form input[type=checkbox] + span:before {
  border-radius: 0.4rem;
}
.form input[type=checkbox]:checked + span:before {
  background: white url(images/check-solid.svg) center/90% no-repeat;
}
.form-date {
  display: flex;
  align-items: center;
}
.form-date input[type=text] {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-date input[type=text] {
    flex-grow: 0;
    width: auto;
  }
}
.form-date select {
  width: auto;
  margin-left: 0.8rem;
}
.form .wpcf7-acceptance label span {
  background-color: rgb(248.4, 219, 217.2);
}
.form .wpcf7-acceptance label :checked + span {
  background-color: white;
}
.form span[data-name=your-consent] {
  display: block;
  text-align: center;
}
.form-privacy {
  margin-top: 1.5rem;
}
.form-privacy a {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  gap: 0.4em;
  padding: 0 0.3em;
  border-bottom: 1px solid;
  color: #000;
  font-size: 1.4rem;
}
.form-privacy a:after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #000;
  mask: url(images/external-link.svg) center/contain no-repeat;
}
.form .button {
  width: 30rem;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .form .button {
    width: 50rem;
    margin-top: 5rem;
  }
}
.form .button[disabled] {
  pointer-events: none;
  opacity: 0.6;
}
.form-note {
  width: fit-content;
  margin: 0 auto;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 120%;
}
@media screen and (min-width: 768px) {
  .wpcf7 form .wpcf7-response-output {
    padding: 1.5rem 3rem;
  }
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #dc3232;
}

.categories-title {
  margin-bottom: 1.4rem;
  padding: 1.2rem 0;
  background: linear-gradient(#070E3F, #16509A);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .categories-title {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    font-size: 2rem;
  }
}
.categories-items ul {
  list-style: none;
  display: grid;
  gap: 1.2rem 3rem;
}
@media screen and (min-width: 768px) {
  .categories-items ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .categories-items ul li {
    display: grid;
  }
}
.categories-items ul li a {
  font-size: 1.4rem;
}

.faq-title {
  margin: 4rem 0 1rem;
  border-bottom: 1px solid #082977;
  padding-bottom: 1rem;
  color: #082977;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .faq-title {
    margin-top: 5rem;
    font-size: 2.4rem;
  }
}
.faq-item {
  margin-top: 0.5rem;
  background-color: #F3F7FF;
}
@media screen and (min-width: 768px) {
  .faq-item {
    margin-top: 1rem;
  }
}
.faq-item dt {
  position: relative;
  padding: 1.5rem 3.6rem 1.5rem 4.9rem;
  background: url(images/faq-q.svg) 1.3rem 50%/2.1rem no-repeat;
  color: #082977;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.38;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-item dt {
    padding: 2.8rem 8.5rem 2.8rem 5.4rem;
    background-position: 1.7rem 50%;
    font-size: 1.7rem;
  }
}
.faq-item dt .tgl {
  display: block;
  position: absolute;
  inset: 0 1.3rem 0 auto;
  width: 1.4rem;
  height: 0.2rem;
  margin: auto;
  border-radius: 0.3rem;
  background-color: #082977;
}
@media screen and (min-width: 768px) {
  .faq-item dt .tgl {
    inset: 0 1.7rem 0 auto;
  }
}
.faq-item dt .tgl:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background-color: #082977;
  transform: rotate(90deg);
}
.faq-item dt._opened .tgl:after {
  transform: rotate(0);
}
.faq-item dd {
  display: none;
  padding: 0 2rem 2rem 4.9rem;
  background: url(images/faq-a.svg) 1.3rem 0/2.1rem no-repeat;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .faq-item dd {
    padding: 0.4rem 4rem 2.4rem 9.4rem;
    background-position: 5.4rem 0.6rem;
    font-size: 1.6rem;
  }
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
.page-nav:empty {
  margin: 0;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: white;
  color: #707070;
  font-size: 1.4rem;
  font-weight: bold;
}
.page-numbers:not(.current):hover {
  color: #16509A;
}
.page-numbers.current {
  background-color: #082977;
  color: white;
}
.page-numbers.prev, .page-numbers.next {
  background-color: #16509A;
  mask: url(images/chevron-right.svg) center/0.7rem no-repeat;
  overflow: hidden;
  font-size: 0;
  white-space: nowrap;
  text-indent: 10rem;
}
.page-numbers.prev:hover, .page-numbers.next:hover {
  background-color: #082977;
}
.page-numbers.prev {
  transform: rotate(180deg);
}

.cta {
  width: calc(100% + 4rem);
  margin: 4rem -2rem;
}
@media screen and (min-width: 768px) {
  .cta {
    width: auto;
    margin: 5rem 0;
  }
}
.cta-head {
  width: 35rem;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .cta-head {
    width: auto;
  }
}
.cta-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, 15rem);
  justify-content: center;
  gap: 2.5rem;
  width: 35rem;
  margin: 1rem auto 0;
  border-radius: 1.5rem;
  padding: 1.5rem 1.1rem 2rem;
  background-color: #F3F7FF;
}
@media screen and (min-width: 768px) {
  .cta-body {
    grid-template-columns: repeat(3, auto);
    gap: 2.9rem;
    width: auto;
    margin-top: 2rem;
    border-radius: 2.5rem;
    padding: 2.6rem 0 2.3rem;
  }
}
.cta-tel, .cta-line, .cta-form {
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta-tel, .cta-line, .cta-form {
    padding-bottom: 1rem;
  }
}
.cta-tel:before, .cta-line:before, .cta-form:before {
  content: "";
  display: block;
  position: absolute;
  background: url(images/dot.svg) center/0.5rem;
}
.cta-tel h3, .cta-line h3, .cta-form h3 {
  margin: 0 auto;
  width: fit-content;
  border: 0.1rem solid white;
  border-radius: 3rem;
  padding: 0.3rem 1.7rem;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.16);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.14;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta-tel h3, .cta-line h3, .cta-form h3 {
    padding: 0.8rem 3rem;
    font-size: 1.5rem;
  }
  .cta-tel h3 br, .cta-line h3 br, .cta-form h3 br {
    display: none;
  }
}
.cta-tel .btn, .cta-line .btn, .cta-form .btn {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .cta-tel .btn, .cta-line .btn, .cta-form .btn {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .cta-tel .btn:before, .cta-line .btn:before, .cta-form .btn:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #F3F7FF;
    transform: rotateY(90deg);
    transform-origin: left;
    transition: 0.25s ease-in-out;
  }
  .cta-tel .btn:hover:before, .cta-line .btn:hover:before, .cta-form .btn:hover:before {
    transform: rotateX(0);
  }
}
.cta-tel .btn:after, .cta-line .btn:after, .cta-form .btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0.9rem;
  height: 100%;
  mask: url(images/double-chevron.svg) center/contain no-repeat;
}
.cta-tel {
  grid-column: span 2;
}
@media screen and (min-width: 768px) {
  .cta-tel {
    grid-column: span 1;
    order: 3;
  }
}
.cta-tel:before {
  bottom: -1.7rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cta-tel:before {
    bottom: 0;
    left: -1.5rem;
    width: 0.5rem;
    height: 100%;
  }
}
.cta-tel h3 {
  width: 17.7rem;
  padding: 0.5rem 0;
  background-color: #082977;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta-tel h3 {
    padding: 0.8rem 3rem;
  }
}
.cta-tel .num-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta-tel .num-pc {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
    padding-left: 4.4rem;
    background: url(images/icon-tel.svg) 0 50%/3.4rem no-repeat;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 3.3rem;
    font-weight: bold;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}
.cta-tel small {
  display: block;
  margin-top: 0.7rem;
  color: #808080;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta-tel small {
    margin: -0.1rem 0 0 4.4rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .cta-tel a {
    display: none;
  }
}
.cta-tel a .num {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0.1rem auto 0;
  padding-right: 3.4rem;
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}
.cta-tel a .num img {
  display: block;
  width: 4.2rem;
  position: absolute;
  top: -1.4rem;
  right: -2rem;
  filter: drop-shadow(0.2rem 0.2rem 0.6rem rgba(0, 0, 0, 0.16));
  transform: rotate(15deg);
}
.cta-tel a .btn {
  margin: 0.9rem auto 0;
  padding: 0 1.9rem 0.1rem 0;
  color: #082977;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.cta-tel a .btn:after {
  right: 0.5rem;
  background-color: #082977;
}
@media screen and (min-width: 768px) {
  .cta-line {
    order: 1;
    width: 21.2rem;
  }
}
.cta-line h3 {
  background-color: #165631;
}
.cta-line .txt {
  width: fit-content;
  margin: 1.6rem auto 1.1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta-line .txt {
    width: fit-content;
    margin: 1.1rem auto 0.8rem;
    padding: 0.9rem 1.6rem 1.2rem 4.8rem;
    background: url(images/icon-line.svg) 0 0/4rem no-repeat;
    font-size: 1.3rem;
  }
}
.cta-line .btn {
  padding: 0 1.7rem 0.3rem 3.1rem;
  background: url(images/icon-line.svg) 0 0/2.3rem no-repeat;
  color: #165631;
  letter-spacing: 0.02em;
  line-height: 2.3rem;
}
@media screen and (min-width: 768px) {
  .cta-line .btn {
    padding: 0 1.8rem 0 0.2rem;
    background: none;
    letter-spacing: 0.1em;
    line-height: inherit;
  }
}
.cta-line .btn:after {
  top: -0.2rem;
  right: 0;
  background-color: #165631;
}
@media screen and (min-width: 768px) {
  .cta-line .btn:after {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .cta-form {
    order: 2;
    width: 25.5rem;
  }
}
.cta-line + .cta-form:before {
  top: 0;
  left: -1.5rem;
  width: 0.5rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .cta-line + .cta-form:before {
    left: -1.7rem;
  }
}
.cta-form h3 {
  background-color: #7F0407;
}
.cta-form .txt {
  margin: 1.6rem 0 1.5rem -0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .cta-form .txt {
    width: fit-content;
    margin: 1.4rem auto 0.9rem;
    padding-left: 4.5rem;
    background: url(images/icon-mail.svg) 0 0.5rem/3.2rem no-repeat;
    letter-spacing: 0;
    line-height: 1.38;
  }
}
.cta-form .txt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta-form .txt br {
    display: block;
  }
}
.cta-form .btn {
  padding: 0 1.7rem 0.7rem 2.5rem;
  background: url(images/icon-mail.svg) 0 0.1rem/1.8rem no-repeat;
  color: #7F0407;
}
@media screen and (min-width: 768px) {
  .cta-form .btn {
    padding: 0 1.8rem 0 0.2rem;
    background: none;
    letter-spacing: 0.1em;
  }
}
.cta-form .btn:after {
  top: -0.4rem;
  right: 0;
  background-color: #7F0407;
}
@media screen and (min-width: 768px) {
  .cta-form .btn:after {
    top: 0;
  }
}

.author {
  position: relative;
  margin-top: 9.1rem;
  border-top: 3px solid #070E3F;
  border-bottom: 0.3rem solid #070E3F;
  padding: 2.5rem 2rem;
  background: url(images/author-back.webp) 70%/cover no-repeat;
  color: #070E3F;
}
@media screen and (min-width: 768px) {
  .author {
    margin-top: 10.2rem;
    padding: 1.7rem 30rem 2.1rem 4rem;
    background-position: 0;
  }
}
.author:after {
  content: "";
  display: block;
  position: absolute;
  top: -6.1rem;
  right: 0.4rem;
  width: 16.5rem;
  aspect-ratio: 165/221;
  background: url(images/author-doctor.webp) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .author:after {
    top: auto;
    bottom: 0;
    right: 3rem;
    width: 26.9rem;
  }
}
.author h2 {
  width: fit-content;
  border: 1px solid #070E3F;
  padding: 0.5rem 1.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .author h2 {
    font-size: 1.5rem;
  }
}
.author .name {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.3rem 0 0.8rem 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .author .name {
    flex-direction: row;
    align-items: baseline;
    gap: 2.6rem;
    margin: 0.2rem 0 1.2rem;
    font-size: 1.5rem;
  }
  .author .name br {
    display: none;
  }
}
.author .name span {
  font-size: 2.5rem;
}
.author .text {
  margin-left: 0.5rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .author .text {
    margin-left: 0;
  }
}

.top-hero img {
  margin: 0 auto;
}
.top-patient {
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .top-patient {
    margin: 4rem 0;
  }
}
.top-patient .txt {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-patient .txt {
    font-size: 2.5rem;
    letter-spacing: 0.3em;
  }
}
.top-patient ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 0.9rem;
  justify-content: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-patient ul {
    gap: 2rem;
    margin-top: 2.2rem;
  }
}
.top-patient ul li {
  position: relative;
  width: 11.5rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .top-patient ul li {
    width: 20rem;
  }
}
.top-patient ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .top-patient ul li img {
    box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.16);
  }
}
.top-patient ul li span {
  display: block;
  position: absolute;
  inset: auto 0 0.7rem;
  padding: 0.1rem 0;
  background-color: white;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.09;
}
@media screen and (min-width: 768px) {
  .top-patient ul li span {
    padding: 0.6rem 0;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.22;
  }
}
.top .categories-title {
  width: calc(100% + 4rem);
  margin: 4rem -2rem 1.4rem;
}
@media screen and (min-width: 768px) {
  .top .categories-title {
    width: auto;
    margin: 5rem 0 2rem;
  }
}
.top-news-title {
  margin-top: 2rem;
  padding: 0.4rem 2.2rem;
  background: linear-gradient(225deg, white 2.5rem, #070E3F 2.5rem);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .top-news-title {
    width: 29rem;
    margin-top: -1rem;
    padding: 1rem 1.5rem 1rem 0;
    background: linear-gradient(240deg, white 2.8rem, #070E3F 2.8rem);
    font-size: 2.5rem;
    text-align: center;
  }
}
.top-news-tab {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-news-tab {
    margin-top: -3.6rem;
  }
}
.top-news-tab ul {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 0.2rem solid #070E3F;
}
@media screen and (min-width: 768px) {
  .top-news-tab ul {
    justify-content: end;
    gap: 0.3rem;
  }
}
.top-news-tab ul li {
  list-style: none;
}
.top-news-tab button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 10rem;
  height: 4.5rem;
  border: 0.2rem solid #e3e3e3;
  border-bottom: 0.1rem solid white;
  border-radius: 0;
  background-color: #e3e3e3;
  padding: 0.4rem 1rem 0;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.42;
}
@media screen and (min-width: 768px) {
  .top-news-tab button {
    min-width: 13rem;
    height: 5rem;
    border-bottom: 0;
    padding: 0 1rem;
    font-size: 1.6rem;
  }
  .top-news-tab button br {
    display: none;
  }
  .top-news-tab button:hover {
    color: #16509A;
  }
  .top-news-tab button:hover._active {
    color: inherit;
  }
}
.top-news-tab button._active {
  position: relative;
  border-color: #070E3F;
  border-bottom: 0;
  background-color: white;
}
.top-news-tab button._active:after {
  content: "";
  display: block;
  position: absolute;
  inset: auto 0 -0.2rem;
  border-bottom: 0.2rem solid white;
}
.top-news-body {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-news-body {
    margin-top: 2.2rem;
  }
}
.top-news-items {
  display: none;
}
.top-news-items._active {
  display: block;
}
.top-news-item {
  display: grid;
  grid-template-columns: 100%;
  gap: 0.9rem;
}
@media screen and (min-width: 768px) {
  .top-news-item {
    grid-template-columns: 30rem 1fr;
    gap: 2rem 1.6rem;
  }
}
.top-news-item a {
  display: grid;
  grid-template-columns: 8.9rem 1fr;
  gap: 0.8rem;
  border-bottom: 1px dotted #707070;
  padding-bottom: 0.3rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .top-news-item a {
    display: block;
    padding-bottom: 0.6rem;
  }
  .top-news-item a:hover {
    color: #16509A;
  }
  .top-news-item a:first-child {
    grid-row: span 4;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .top-news-item a:first-child .text time {
    margin-top: 0.5rem;
    text-align: left;
  }
  .top-news-item a:nth-child(n+2) {
    grid-column: 2;
  }
  .top-news-item a:nth-child(n+2) .image {
    display: none;
  }
  .top-news-item a:nth-child(n+2) .text h3 {
    height: 2lh;
  }
  .top-news-item a:nth-child(n+2) .text time {
    margin-top: -1rem;
  }
}
.top-news-item a .image {
  height: 6.5rem;
}
@media screen and (min-width: 768px) {
  .top-news-item a .image {
    height: 18rem;
    margin-bottom: 1.1rem;
  }
}
.top-news-item a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-news-item a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-news-item a .text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .top-news-item a .text h3 {
    font-size: 1.6rem;
    font-weight: normal;
  }
}
.top-news-item a .text time {
  width: fit-content;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .top-news-item a .text time {
    font-size: 1.2rem;
  }
}
.top-news-item a .text time.updated {
  padding-left: 1.4rem;
  background: url(images/reflesh.webp) 0 50%/1rem no-repeat;
}
@media screen and (min-width: 768px) {
  .top-news-item a .text time.updated {
    padding-left: 1.9rem;
    background-size: 1.3rem;
  }
}
.top-news-link {
  display: block;
  width: fit-content;
  margin: 0.6rem 0 0 auto;
  padding-right: 1rem;
  background: url(images/chevron-right.svg) 100% 50%/0.5rem no-repeat;
  color: #16509A;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .top-news-link {
    padding-right: 1.2rem;
    background-size: 0.7rem;
    font-size: 1.5rem;
  }
}
.top-news-link:hover {
  color: #070E3F;
}
.top .categories-title {
  width: calc(100% + 4rem);
  margin: 4rem -2rem 1.4rem;
}
@media screen and (min-width: 768px) {
  .top .categories-title {
    width: auto;
    margin: 4.7rem 0 2rem;
  }
}
.top-posts-title {
  position: relative;
  margin: 2.2rem 0 1.5rem 2.5rem;
  border-bottom: 2px solid #070E3F;
  padding: 0 0.4rem;
  color: #070E3F;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top-posts-title {
    margin: 3.5rem 0 2.5rem 3.6rem;
    padding: 0 0 0.4rem;
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    line-height: 1.35;
  }
}
.top-posts-title:before {
  content: "";
  display: block;
  position: absolute;
  left: -3.2rem;
  top: 0;
  width: 2.5rem;
  height: 3.5rem;
  background: url(images/tag.svg) 0 0/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .top-posts-title:before {
    left: -3.6rem;
  }
}
.top-posts-items ul {
  list-style: none;
  display: grid;
  gap: 1.2rem 3rem;
}
@media screen and (min-width: 768px) {
  .top-posts-items ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .top-posts-items ul li {
    display: grid;
  }
}
.top-posts-items ul li a {
  font-size: 1.4rem;
}
.top-recommend-title {
  margin: 6.5rem 0 1.8rem;
  color: #070E3F;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-recommend-title {
    margin: 7rem 0 1.8rem;
    font-size: 2.5rem;
  }
}
.top-recommend-items {
  width: calc(100% + 4rem);
  margin: 0 -2rem;
  padding-bottom: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-recommend-items {
    width: auto;
    margin: 0;
  }
}
.top-recommend-items .slick-list {
  overflow: visible;
}
.top-recommend-items .slick-track {
  display: flex;
}
.top-recommend-items a {
  display: flex !important;
  height: auto;
  flex-flow: column;
  margin: 0 1rem;
  padding-bottom: 1.5rem;
  background-color: white;
  color: #000;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .top-recommend-items a {
    margin: 0 1.5rem;
  }
  .top-recommend-items a:hover {
    color: #082977;
  }
}
.top-recommend-items a .cat {
  width: fit-content;
  margin: 1rem;
  padding: 0.4rem 0.7rem;
  background-color: #F3F7FF;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-recommend-items a .cat {
    font-size: 1.3rem;
  }
}
.top-recommend-items a .ttl {
  margin: 1.2rem 1rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .top-recommend-items a .ttl {
    font-size: 1.6rem;
  }
}
.top-recommend-items a time {
  margin: auto 1rem 0;
  font-size: 1.2rem;
}
.top-recommend-items a time.updated {
  padding-left: 1.4rem;
  background: url(images/reflesh.webp) 0 50%/1rem no-repeat;
}
.top-trouble-title {
  width: calc(100% + 4rem);
  margin: 6rem -2rem 0;
  padding: 1.4rem 0;
  background: linear-gradient(105deg, #0B0505, #464646, #0B0505);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-trouble-title {
    width: auto;
    margin: 5rem 0 0;
    padding: 2rem 0;
    font-size: 2rem;
  }
  .top-trouble-title br {
    display: none;
  }
}
.top-trouble-list {
  width: calc(100% + 4rem);
  margin: 0 -2rem;
  padding: 3.5rem 2rem 2.7rem;
  background: url(images/trouble-sp.webp) top/100% auto no-repeat;
}
@media screen and (min-width: 768px) {
  .top-trouble-list {
    width: 88.4rem;
    margin: 0;
    padding: 4.1rem 5rem 5.2rem;
    background-image: url(images/trouble-pc.webp);
  }
}
.top-trouble-list ul {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-trouble-list ul {
    gap: 2.1rem;
    width: 71rem;
  }
}
.top-trouble-list ul li {
  list-style: none;
  width: fit-content;
  padding: 0.9rem 2rem 0.9rem 4rem;
  background: rgba(0, 0, 0, 0.85) url(images/trouble-check.svg) 0.7rem 0.7rem/2.5rem no-repeat;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-trouble-list ul li {
    background-position: 0.7rem 0;
    background-size: 3.7rem;
    font-size: 1.7rem;
  }
  .top-trouble-list ul li br {
    display: none;
  }
}
.top-strengths-title {
  width: calc(100% + 4rem);
  margin: 5rem -2rem 0;
  padding: 1.7rem 0 1.2rem 5.5rem;
  background: url(images/cn-strength-k.webp), linear-gradient(#070E3F, #16509A);
  background-position: 1.7rem 50%, 0 0;
  background-size: 3.4rem, cover;
  background-repeat: no-repeat;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top-strengths-title {
    width: auto;
    margin: 5rem 0 2rem;
    padding: 1.5rem 0 1.5rem 23rem;
    background-position: 18.5rem 1.4rem, 0 0;
    font-size: 2rem;
    letter-spacing: 0.3em;
  }
}
.top-strengths-items {
  display: grid;
  gap: 1.3rem;
  width: calc(100% + 4rem);
  margin: 0 -2rem;
  padding: 32.6rem 2rem 0;
  background: url(images/cn-strength.webp) 50% -9rem/85.6rem no-repeat;
}
@media screen and (min-width: 768px) {
  .top-strengths-items {
    grid-template-columns: repeat(3, 25rem);
    justify-content: center;
    gap: 0 2.5rem;
    width: auto;
    margin: 0;
    padding: 34.3rem 0 0;
  }
}
.top-strengths-item {
  padding: 1.8rem;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .top-strengths-item {
    grid-row: span 2;
    display: grid;
    grid-template-rows: subgrid;
    padding: 2.1rem 1.8rem 2.8rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.16);
  }
}
.top-strengths-item h3 {
  border-bottom: 1px solid #082977;
  padding: 0 0 0.7rem 4.9rem;
  background: url(images/icon-k.webp) 0.6rem 0.9rem/2.9rem no-repeat;
}
@media screen and (min-width: 768px) {
  .top-strengths-item h3 {
    padding-left: 3.4rem;
    background-position: 0.4rem 1.5rem;
  }
}
.top-strengths-item h3 span {
  display: block;
  border-bottom: 1px solid #082977;
  padding: 0 0 0.2rem 2rem;
  color: #082977;
  font-family: serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .top-strengths-item h3 span {
    padding: 0 0 0.2rem;
    font-size: 3rem;
    letter-spacing: 0.2em;
    text-align: center;
  }
}
.top-strengths-item p {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .top-strengths-item p {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.top-message {
  width: calc(100% + 4rem);
  margin: 5rem -2rem 0;
  border-top: 2px solid #070E3F;
  border-bottom: 2px solid #070E3F;
}
@media screen and (min-width: 768px) {
  .top-message {
    display: grid;
    grid-template-columns: 1fr 35rem;
    align-items: center;
    gap: 3rem;
    width: auto;
    margin: 6rem 0 0;
    padding: 1.2rem 0;
  }
}
.top-message img {
  width: 35rem;
  height: 28rem;
  object-fit: cover;
  margin: 0.3rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-message img {
    grid-column: 2;
    height: 35rem;
  }
}
.top-message p {
  margin: 1.1rem 2rem;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .top-message p {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 1.6rem;
  }
}
.top-adbar {
  margin-top: 3rem;
}

.archive-category {
  width: calc(100% + 4rem);
  margin: 1.5rem -2rem;
  padding: 1.8rem 2rem;
  background-color: #AFC2DC;
}
@media screen and (min-width: 768px) {
  .archive-category {
    width: auto;
    margin: 2rem 0;
    padding: 2.6rem 2rem 3rem;
  }
}
.archive-category label {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .archive-category label {
    font-size: 1.5rem;
  }
}
.archive-category input {
  display: block;
  width: fit-content;
  min-width: 27.5rem;
  margin-top: 0.6rem;
  border: 1px solid #919FB9;
  padding: 0.5rem 5rem 0.5rem 0.8rem;
  background: white url(images/chevron-bl-down.svg) right 0.8rem center/1rem no-repeat;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  outline: none;
}
@media screen and (min-width: 768px) {
  .archive-category input {
    min-width: 60rem;
    margin-top: 1.1rem;
    padding: 0.5rem 10rem 0.5rem 0.8rem;
    background-position: right 1.2rem center;
    font-size: 1.8rem;
  }
}
.archive-category ul {
  display: none;
  position: absolute;
  min-width: 27.5rem;
  list-style: none;
  border: 1px solid #919FB9;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .archive-category ul {
    min-width: 60rem;
  }
}
.archive-category ul li a {
  display: block;
  padding: 0.5rem 0.8rem;
  color: #000;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .archive-category ul li a {
    font-size: 1.8rem;
  }
}
.archive-category ul li a:hover {
  background-color: #F3F7FF;
}
.archive-title {
  margin: 1.6rem 0 3.7rem;
  padding: 1.9rem 2.5rem 1.8rem;
  background-color: #070E3F;
}
.archive-title .en {
  display: block;
  margin-bottom: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.2rem solid #AFC2DC;
  color: #AFC2DC;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.archive-title .ja {
  display: block;
  color: white;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.archive-items {
  display: grid;
  grid-template-columns: repeat(2, 16rem);
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .archive-items {
    grid-template-columns: repeat(3, 26rem);
    gap: 0.7rem;
  }
}
.archive-items a {
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  padding-bottom: 1.5rem;
  background-color: white;
  color: #000;
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .archive-items a {
    padding-bottom: 2rem;
  }
}
.archive-items a:nth-child(n+3) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .archive-items a:nth-child(n+3) {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-items a:nth-child(3) {
    margin-top: 0;
  }
}
.archive-items a:hover {
  color: #082977;
}
.archive-items a .image {
  aspect-ratio: 16/12;
  background-color: #545454;
}
.archive-items a .image:empty {
  height: 0;
}
.archive-items a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-items a time {
  margin: 0 0.5rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .archive-items a time {
    margin: 0 0.8rem;
    font-size: 1.6rem;
  }
}
.archive-items a time.updated {
  padding-left: 1.4rem;
  background: url(images/reflesh.webp) 0 50%/1rem no-repeat;
}
@media screen and (min-width: 768px) {
  .archive-items a time.updated {
    padding-left: 1.9rem;
    background-size: 1.3rem;
  }
}
.archive-items a .cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .archive-items a .cat {
    margin: 0.8rem 0.8rem 0;
  }
}
.archive-items a .cat li {
  border-radius: 2rem;
  padding: 0.2rem 0.7rem;
  background-color: #070E3F;
  color: white;
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  .archive-items a .cat li {
    font-size: 1.4rem;
  }
}
.archive-items a .title {
  margin: 0.3rem 0.5rem 0;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .archive-items a .title {
    margin: 0.5rem 0.8rem 0;
    font-size: 1.8rem;
  }
}
.archive-none {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive-none {
    font-size: 1.8rem;
  }
}
.archive .categories-title {
  width: calc(100% + 4rem);
  margin: 3rem -2rem 1.4rem;
}
@media screen and (min-width: 768px) {
  .archive .categories-title {
    width: auto;
    margin: 10rem 0 2rem;
  }
}

.post-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .post-title {
    margin: 3rem 0;
    font-size: 3rem;
  }
}
.post-time {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .post-time {
    margin-bottom: 1.3rem;
    font-size: 1.6rem;
  }
}
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .post-categories {
    gap: 1rem;
  }
}
.post-categories li a {
  display: block;
  padding: 0.4rem 0.7rem;
  background-color: #F3F7FF;
  color: #000;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .post-categories li a {
    font-size: 1.6rem;
  }
}
.post-thumbnail {
  width: calc(100% + 4rem);
  margin: 1rem -2rem 0;
}
@media screen and (min-width: 768px) {
  .post-thumbnail {
    width: auto;
    margin: 0.8rem 0 0;
  }
}
.post-thumbnail img {
  margin: 0 auto;
}
.post-point-title {
  width: 20.4rem;
  margin: 4rem 0 0 -0.8rem;
  padding: 0.5rem 2.4rem;
  background-color: #070E3F;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  clip-path: polygon(0 0, 18rem 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .post-point-title {
    width: 29.3rem;
    margin: 7rem 0 0;
    padding: 1rem 3rem;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    clip-path: polygon(0 0, 26.4rem 0, 100% 100%, 0 100%);
  }
}
.post-point-items {
  width: calc(100% + 1.6rem);
  margin: 0 -0.8rem;
  border: 2px solid #070E3F;
  padding: 2.4rem 0.8rem;
  background-color: #F3F7FF;
}
@media screen and (min-width: 768px) {
  .post-point-items {
    width: auto;
    margin: 0;
    padding: 4.2rem 2.2rem;
  }
}
.post-point-items ul {
  list-style: none;
}
.post-point-items ul li {
  padding-left: 3rem;
  background: url(images/point-check.svg) 0 50%/2.4rem no-repeat;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .post-point-items ul li {
    padding-left: 5.6rem;
    background-size: 3.7rem;
    font-size: 2rem;
  }
}
.post-point-items ul li + li {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .post-point-items ul li + li {
    margin-top: 2rem;
  }
}
.post-content {
  margin-top: 3rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .post-content {
    font-size: 1.5rem;
  }
}
.post-content p:empty {
  display: none;
}
.post-toc {
  width: calc(100% + 3.2rem);
  margin: 5rem -1.6rem 4rem;
  padding: 3rem 1.6rem;
  background-color: #F3F7FF;
}
@media screen and (min-width: 768px) {
  .post-toc {
    width: auto;
    margin: 5rem 0 4rem;
    padding: 4rem 5rem 3rem;
  }
}
.post-toc-button {
  width: fit-content;
  margin: 0 auto;
  border-bottom: 0.2rem dotted #070E3F;
  padding: 0 0 0.3rem 0.5rem;
  color: #070E3F;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .post-toc-button {
    font-size: 2.5rem;
  }
}
.post-toc-button:after {
  content: "［显示］";
  display: inline-block;
  width: 7rem;
  margin-left: -0.5rem;
  color: #979797;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .post-toc-button:after {
    width: 10rem;
    font-size: 1.8rem;
  }
}
.post-toc-button._show:after {
  content: "［隐藏］";
}
.post-toc-button:hover::after {
  color: #082977;
}
.post-toc-items {
  display: none;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .post-toc-items {
    margin-top: 4rem;
  }
}
.post-toc-items ul {
  list-style: none;
}
.post-toc-items ul li {
  margin-left: 0;
}
.post-toc-items ul li a {
  display: block;
  color: #070E3F;
  letter-spacing: 0.05em;
}
.post-toc-items ul li.toc-h2 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .post-toc-items ul li.toc-h2 {
    margin-top: 2.5rem;
    font-size: 1.8rem;
  }
}
.post-toc-items ul li.toc-h2 a {
  padding-left: 1.8rem;
  background: url(images/toc-triangle.svg) 0 50% no-repeat;
}
@media screen and (min-width: 768px) {
  .post-toc-items ul li.toc-h2 a {
    padding-left: 2.2rem;
    background-size: 1.9rem;
  }
}
.post-toc-items ul li.toc-h3 {
  margin-top: 0.5rem;
  padding-left: 1.8rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .post-toc-items ul li.toc-h3 {
    padding-left: 4.2rem;
    font-size: 1.5rem;
  }
}
.post-footer {
  width: calc(100% + 4rem);
  margin: 3rem -2rem 0;
}
@media screen and (min-width: 768px) {
  .post-footer {
    width: auto;
    margin: 9rem 0 0;
  }
}
.post-footer .post-categories {
  min-height: 8rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  background-color: #F3F7FF;
}
.post-footer .post-categories a {
  background-color: white;
}
.post-footer .cta {
  width: 100%;
  margin: 3rem 0 0;
}
.post-footer .categories-title {
  margin: 3.3rem 2rem 1rem;
  background: #082977 linear-gradient(white, white) 0.8rem 50%/0.3rem 3.4rem no-repeat;
  padding-left: 3.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .post-footer .categories-title {
    margin: 5rem 0 2.5rem;
  }
}
.post-footer .categories-items {
  margin: 0 3.2rem;
}
@media screen and (min-width: 768px) {
  .post-footer .categories-items {
    margin: 0 4.5rem;
  }
}
.post-related {
  margin: 4rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .post-related {
    margin: 4rem 0 0;
  }
}
.post-related h2 {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #082977;
  padding-bottom: 0.8rem;
  color: #082977;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .post-related h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-size: 2.4rem;
  }
}
.post-related ul {
  list-style: none;
}
.post-related ul li + li {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .post-related ul li + li {
    margin-top: 1.5rem;
  }
}
.post-related ul li a {
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .post-related ul li a {
    font-size: 1.5rem;
  }
  .post-related ul li a:hover {
    color: #082977;
  }
}

:where(.post-content) a:hover {
  text-decoration: underline;
}
:where(.post-content) h2,
:where(.post-content) h3,
:where(.post-content) h4,
:where(.post-content) h5,
:where(.post-content) h6 {
  margin: 1.3rem 0;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  :where(.post-content) h2,
  :where(.post-content) h3,
  :where(.post-content) h4,
  :where(.post-content) h5,
  :where(.post-content) h6 {
    margin: 1.5rem 0;
  }
}
:where(.post-content) h2 {
  margin-top: 3rem;
  border-bottom: 1px solid #082977;
  padding-bottom: 0.6rem;
  color: #070E3F;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  :where(.post-content) h2 {
    margin-top: 4rem;
    padding-bottom: 0.7rem;
    font-size: 2.4rem;
  }
}
:where(.post-content) h3 {
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #082977;
}
@media screen and (min-width: 768px) {
  :where(.post-content) h3 {
    font-size: 1.9rem;
  }
}
h2 + :where(.post-content) h3 {
  margin-top: 0;
}
:where(.post-content) h4 {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  color: #082977;
}
@media screen and (min-width: 768px) {
  :where(.post-content) h4 {
    font-size: 1.8rem;
  }
}
h3 + :where(.post-content) h4 {
  margin-top: 0;
}
:where(.post-content) h5 {
  color: #082977;
}
:where(.post-content) p {
  margin: 1.3rem 0;
  letter-spacing: 0.05em;
  line-height: 1.67;
}
@media screen and (min-width: 768px) {
  :where(.post-content) p {
    margin: 2rem 0;
    line-height: 2;
  }
}
:where(.post-content) li {
  margin-left: 2em;
}
:where(.post-content) table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0.3rem;
}
@media screen and (min-width: 768px) {
  :where(.post-content) table {
    width: auto;
    margin: 5rem;
    border-spacing: 0.5rem;
  }
  :where(.post-content) table[style*=width] {
    margin-left: 0;
    margin-right: 0;
  }
}
:where(.post-content) th {
  padding: 1.5rem;
  background-color: #082977;
  color: white;
}
@media screen and (min-width: 768px) {
  :where(.post-content) th {
    padding: 2rem;
    font-size: 1.3rem;
  }
}
:where(.post-content) td {
  min-width: 9rem;
  padding: 0.8rem;
  background-color: #f6f6f6;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  :where(.post-content) td {
    padding: 1.3rem 2rem;
    font-size: 1.4rem;
  }
}
:where(.post-content) .gmap {
  margin: 2.5em 0;
}
:where(.post-content) .gmap iframe {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 480px) {
  :where(.post-content) .gmap iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 768px) {
  :where(.post-content) .gmap iframe {
    aspect-ratio: 2/1;
  }
}/*# sourceMappingURL=style.css.map */