@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  position: relative;
  background: #fff4cf;
  border: solid 10px #ff6801;
  min-height: 100vh;
}
@media screen and (max-width: 800px) {
  body {
    border-width: 5px;
  }
}

.shapes {
  width: 100%;
  height: 62vw;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@keyframes shapes {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.shapes img {
  position: absolute;
  animation: shapes 0.4s both;
}
.shapes img:nth-child(1) {
  width: 50vw;
  top: -25vw;
  right: -2vw;
  animation-delay: 0.2s;
}
.shapes img:nth-child(2) {
  width: 50vw;
  top: 3vw;
  left: -6vw;
  animation-delay: 0.3s;
}
.shapes img:nth-child(3) {
  width: 50vw;
  top: 18vw;
  right: -2vw;
  animation-delay: 0.4s;
}

.corner img {
  position: absolute;
  animation: corner 0.5s both;
}
.corner img:nth-child(1) {
  top: 0px;
  left: 0px;
  transform: rotate(-90deg);
}
.corner img:nth-child(2) {
  top: 0px;
  right: 0px;
}
.corner img:nth-child(3) {
  right: 0px;
  bottom: 0px;
  transform: rotate(90deg);
}
.corner img:nth-child(4) {
  left: 0px;
  bottom: 0px;
  transform: rotate(180deg);
}
@keyframes corner {
  0% {
    width: 0;
  }
  100% {
    width: 40px;
  }
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
main article {
  flex: 1;
  border-radius: 10px;
  background: #fff;
  padding: 80px clamp(20px, 4vw, 80px);
}
main article .article_header .inner {
  background: #fff5d4;
  border-radius: 20px;
  padding: 40px 20px 40px 150px;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  main article .article_header .inner {
    padding: 20px;
    padding-top: 70px;
  }
}
main article .article_header .inner .illust {
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -10px;
}
@media (max-width: 800px) {
  main article .article_header .inner .illust {
    width: -moz-fit-content;
    width: fit-content;
    height: 120px;
    left: 0;
    right: 0;
    top: -60px;
    margin: 0 auto;
  }
}
main article .article_header .inner .illust img {
  width: auto;
  height: 100%;
}
main article .article_header .inner h1 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  color: #ff6801;
  margin-bottom: 0.2em;
}
main article .article_header .inner .description {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}
main article .article_reading {
  text-align: right;
  font-size: clmap(12px, 1.3vw, 14px);
  line-height: 1.8;
}
main article .article_inner h1 {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 600;
  color: #ff6801;
  padding: 2em 0 1em 0;
}
main article .article_inner h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: #ff6801;
  padding: 3em 0 1em 0;
}
main article .article_inner h2:first-child {
  padding-top: 0;
}
main article .article_inner h3 {
  font-size: 20px;
  padding-top: 2em;
  font-weight: 500;
  padding-bottom: 0.4em;
  padding-left: 0.2em;
  margin-bottom: 1em;
  border-bottom: 2px solid #ff6801;
}
main article .article_inner h4 {
  margin: 2em 0 0.5em;
  font-size: 18px;
  font-weight: 500;
}
main article .article_inner img {
  border-radius: 10px;
}
main article .article_inner p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 1em;
}
main article .article_inner p b,
main article .article_inner p strong {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #fff597 40%);
  padding: 0 0.2em;
}
main article .article_inner ul {
  margin-bottom: 1em;
  padding: 20px;
  border: solid 1px #ff6801;
  border-radius: 10px;
}
main article .article_inner ul li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.5em;
}
main article .article_inner ul li::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  background: #2ab45c;
  position: absolute;
  left: 0;
  top: 0.8em;
  border-radius: 50%;
}
main article .article_inner .summary {
  background-color: #fffbdc;
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px #844230;
  margin: 40px 0 80px;
}
main article .article_inner .summary .title {
  background-color: #844230;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 0.8em 1em;
}
main article .article_inner .summary .summary_inner {
  padding: 20px 30px;
  border-radius: 10px;
  gap: 20px;
  flex: 1;
}
main article .article_inner .summary .summary_inner div {
  position: relative;
  font-size: clamp(14px, 1.5vw, 15px);
  padding: 0.3em 0 0.3em 2em;
  line-height: 1.8;
}
main article .article_inner .summary .summary_inner div:before {
  content: "";
  display: block;
  width: 1.5em;
  aspect-ratio: 1/1;
  background-image: url("../../assets/img/article/check.svg");
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0.5em;
}
main article .article_inner .talk .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
main article .article_inner .talk .item .icon {
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 600px) {
  main article .article_inner .talk .item .icon {
    width: 50px;
  }
}
main article .article_inner .talk .item .txt {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.8;
  background: #eee;
  position: relative;
  padding: 20px;
  border-radius: 10px;
}
main article .article_inner .talk .item .txt:before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-color: #eee;
  position: absolute;
  left: -8px;
  top: 25px;
  transform: rotate(45deg);
  border-bottom-left-radius: 4px;
}
main article .article_inner .link_article a {
  display: block;
  border-radius: 5px;
  border: solid 1px #ccc;
  text-decoration: none;
  padding: 20px 80px 20px 30px;
  position: relative;
  transition: 0.3s;
}
main article .article_inner .link_article a:hover {
  background: #fff8e1;
}
main article .article_inner .link_article a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/common/icon/allow.svg");
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
main article .article_inner .link_article a span {
  display: block;
}
main article .article_inner .link_article a span.title {
  font-size: 20px;
  color: #ff6801;
  font-weight: 500;
  margin-bottom: 0.2em;
}
main article .article_inner .link_article a span.description {
  font-size: 16px;
  color: #666;
}
main article .article_inner .table_box {
  margin: 2em 0;
}
main article .article_inner .table_box .table_inner {
  width: 100%;
  border: solid 1px #ff6801;
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: hidden;
}
main article .article_inner .table_box .table_inner table {
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
main article .article_inner .table_box .table_inner table tr {
  border-bottom: solid 1px #ff6801;
}
main article .article_inner .table_box .table_inner table tr:last-child {
  border-bottom: none;
}
main article .article_inner .table_box .table_inner table tr th,
main article .article_inner .table_box .table_inner table tr td {
  padding: 1em;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  text-align: left;
  border-right: solid 1px #ff6801;
}
main article .article_inner .table_box .table_inner table tr th:last-child,
main article .article_inner .table_box .table_inner table tr td:last-child {
  border-right: none;
}
main article .article_inner .table_box .table_inner table tr th {
  font-weight: 600;
  color: #ff6801;
  background: #fff5d4;
  text-align: center;
}

.sidebar {
  width: 350px;
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1200px) {
  .sidebar {
    display: none;
  }
}
.sidebar .table-of-contents {
  border-radius: 10px;
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar .table-of-contents ul {
  padding: clamp(15px, 1.8vw, 20px) clamp(15px, 1.8vw, 20px);
  font-size: 14px;
}
.sidebar .table-of-contents ul li {
  padding: 0.4em 0 0;
  font-weight: 500;
}
.sidebar .table-of-contents ul li.toc_h3 {
  padding: 0 0 0 1.2em;
  font-size: 13px;
  font-weight: 400;
}
.sidebar .table-of-contents ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 0.3em;
}
.sidebar .table-of-contents ul li a:hover {
  opacity: 0.6;
}
.sidebar .tel {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.sidebar .tel span {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5em;
  display: block;
}
.sidebar .tel a {
  display: block;
  background: #25862d;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  border-radius: 10px;
  font-weight: 500;
  padding: 0.5em;
}

.page_top .mainvisual {
  padding: 100px 20px;
}
.page_top .mainvisual .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.page_top .mainvisual .inner .txt {
  width: 60%;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt {
    width: 100%;
  }
}
.page_top .mainvisual .inner .txt .logo {
  max-width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt .logo {
    max-width: 250px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt .logo img.pc {
    display: none;
  }
}
.page_top .mainvisual .inner .txt .logo img.sp {
  display: none;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt .logo img.sp {
    display: block;
  }
}
.page_top .mainvisual .inner .txt .copy {
  max-width: 500px;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt .copy {
    margin: 0 auto 40px;
  }
}
.page_top .mainvisual .inner .txt .illust_sp {
  display: none;
  width: 70%;
  margin: 0 auto 40px;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .txt .illust_sp {
    display: block;
  }
}
.page_top .mainvisual .inner .txt p {
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 1em;
  text-align: justify;
}
.page_top .mainvisual .inner .illust_pc {
  max-width: 400px;
  flex: 1;
}
@media (max-width: 800px) {
  .page_top .mainvisual .inner .illust_pc {
    display: none;
  }
}
.page_top .mainvisual .inner .illust_pc img {
  width: 100%;
}

.post {
  max-width: 1200px;
  margin: 0 auto 100px;
}
.post ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .post ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.post ul li {
  border-radius: 10px;
  background: #fff;
  position: relative;
  padding: 10px;
}
.post ul li a {
  text-decoration: none;
}
.post ul li .thumbnail {
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: 10px;
}
.post ul li .thumbnail img {
  aspect-ratio: 1200/630;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.post ul li .title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  padding: 0.5em;
}

footer {
  background: #25862d;
  padding: 80px 10px;
}
footer .inner {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  margin: 0 auto;
  border: solid 1px rgba(255, 255, 255, 0.3);
  padding: 40px clamp(15px, 4vw, 80px);
  display: flex;
}
@media (max-width: 1000px) {
  footer .inner {
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 1000px) {
  footer .inner .clinic {
    border-right: solid 1px rgba(255, 255, 255, 0.3);
    padding-right: clamp(20px, 4vw, 80px);
    margin-right: clamp(20px, 4vw, 80px);
  }
}
footer .inner .clinic .item {
  display: flex;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding: 20px 0;
  font-size: 16px;
}
footer .inner .clinic .item .title {
  width: 60px;
}
footer .inner .clinic .item .txt a {
  color: #fff;
}
footer .inner .logo {
  text-align: center;
}
footer .inner .logo span {
  display: block;
  font-size: 20px;
  margin-bottom: 0.3em;
  font-weight: 500;
}
footer .inner .logo img {
  max-width: 300px;
}
footer .inner .annotation ul li {
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.4em;
}
footer .inner .annotation ul li::before {
  content: "※";
  font-size: 12px;
  margin-right: 0.2em;
  position: absolute;
  top: 0;
  left: 0;
}
footer .inner table {
  width: -moz-fit-content;
  width: fit-content;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
footer .inner table tr {
  border-bottom: 1px solid #fff;
}
footer .inner table tr:first-child th,
footer .inner table tr:first-child td {
  font-weight: 400;
}
footer .inner table tr th,
footer .inner table tr td {
  font-size: clamp(14px, 1.6vw, 18px);
  text-align: center;
  position: relative;
  padding: 0.5em;
}
footer .inner table tr th img,
footer .inner table tr td img {
  width: 1em;
}

.related-articles {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 2px solid #eee;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .related-articles {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.related-articles .item a {
  text-decoration: none;
}
.related-articles .item a .thumbnail {
  width: 100%;
}
.related-articles .item a .thumbnail img {
  width: 100%;
  aspect-ratio: 1200/630;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.related-articles .item a .title {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.copyright {
  background: #254e28;
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 1em;
}/*# sourceMappingURL=style.css.map */