@charset "utf-8";
:root {
  --pinkBack-color: #ed86b3;
  --yellow-color: #ffff00;
  --pinkDark-color: #522830;
  --pinkPale-color: #f3aecc;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  width: 100%;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
html.no-scroll {
  overflow-y: hidden;
}
/* hamburger menu */
.hamburger {
  width: 0;
  height: 0;
}
/* 表示された時用のCSS */
.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
}
.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}
.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
}
/* toTopscrollボタン */
.toTopAnime {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.showTopScroll {
  opacity: 1;
  visibility: visible;
}
.showTopScroll:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}

#toTop {
  display: block;
  transform: translateY(15%);
}
@media screen and (max-width: 1024px) {
  #toTop {
    display: none;
  }
}

/* ヘッダー */
.headerpc {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.headcontainer {
  width: 100%;
  max-width: 1280px;
  height: 70px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.area_logo_header {
  align-items: center;
}
.area_logo_header > a {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.area_logo_header > a:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}

.official {
  width: 150px;
  height: 55px;
  background-color: var(--pinkDark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-left: 10px;
  line-height: 1.3;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 5px 5px 0px var(--pinkPale-color);
}
@media screen and (max-width: 768px) {
  .official {
    width: 120px;
    height: 50px;
    font-size: 15px;
  }
}
/* ヘッダーナビ */
.nav_header {
  height: 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .nav_header {
    display: none;
  }
}
.list_nav_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  flex-wrap: nowrap;
}

.list_nav_header > li {
  padding: 0 15px;
  letter-spacing: 0.3em;
}
.nav1 {
  color: var(--yellow-color);
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
.nav1::after {
  content: " ";
  position: absolute;
  left: 5%;
  bottom: -2px;
  width: 90%;
  height: 2px;
  background: var(--yellow-color);
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.nav1:hover::after {
  transform: scale(1, 1);
}
.fblink > img {
  width: 40px;
  height: 40px;
  opacity: 1;
}
.fblink:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
/* headersp-------------------- */
.headersp {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh) * 100);
  overflow-y: auto;
  background: var(--pinkBack-color);
  z-index: 10;
}
.nav_headersp {
  width: 80%;
  margin: 100px auto;
}
@media screen and (max-width: 1024px) {
  .headersp {
    display: block;
    right: -100%;
    transition: right 0.2s ease-out;
  }
  .headersp.nav-open {
    right: 0;
  }
  .headersp.nav-open::after {
    position: fixed;
    opacity: 1;
  }
  /* ハンバーガーメニュー　----------- */
  .hamburger {
    position: fixed;
    right: 15px;
    top: 13px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 300;
    border-radius: 5px;
    background: var(--pinkBack-color);
  }
  .hamburger_border {
    position: absolute;
    left: 12px;
    width: 26px;
    height: 3px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  .hamburger_border_top {
    top: 17px;
  }
  .hamburger_border_center {
    top: 25px;
  }
  .hamburger_border_bottom {
    top: 33px;
  }
  .nav_headersp .list_nav_header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav_headersp a {
    display: block;
    margin: 1em auto;
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .nav_headersp a {
    font-size: 16px;
  }
}
/* トップビュー */
.area_top_view {
  width: 100%;
  background: url(img/p01.svg) no-repeat center bottom / 200% auto,
    linear-gradient(to bottom, #ed86b3 90%, #f3aecc 90%);
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .area_top_view {
    background: url(img/p01.svg) no-repeat center bottom / auto 70%,
      linear-gradient(to bottom, #ed86b3 90%, #f3aecc 90%);
  }
}
.topcontainer {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topimage {
  width: 60%;
  max-width: 680px;
  position: relative;
}

.topimage > img {
  display: block;
  width: 100%;
  height: auto;
}
.toptitle {
  width: 30%;
}
.toptitle img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .topcontainer {
    flex-direction: column;
  }
  .topimage {
    width: 60%;
    padding-bottom: 5px;
  }
  .toptitle {
    width: 50%;
    z-index: 3;
  }
}
@media screen and (max-width: 500px) {
  .topimage {
    padding-top: 30px;
    width: 70%;
  }
  .toptitle {
    width: 60%;
  }
}
@media screen and (max-width: 400px) {
  .topimage {
    padding-top: 30px;
    width: 80%;
  }
  .toptitle {
    width: 70%;
  }
}

/* policy section-------------------------------------------- */

.area_policy {
  width: 100%;
  background-image: url("./img/petal.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: 150%, auto;
}
.policy-title {
  width: 100%;
  background-color: var(--pinkPale-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.policy-title > p {
  padding: 0.5em 0 0.3em 0;
  margin-left: 7vw;
  color: var(--yellow-color);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 80px;
  font-size: clamp(35px, 12.14px + 3.57vw, 80px);
}
@media screen and (max-width: 1200px) {
  .policy-title {
    align-items: flex-end;
  }
  .policy-title > p {
    /* padding: 2em 0 0 1em; */
    margin-left: 5vw;
  }
}
@media screen and (max-width: 640px) {
  .policy-title > p {
    font-size: 30px;
    padding: 1em 0 0 0;
    margin-bottom: -0.5em;
    position: relative;
    z-index: 4;
  }
}
/* SVG Shape Dividers Creator------------------- */
.shapedividers_com-3840 {
  overflow: hidden;
  position: relative;
  height: 100px;
}
@media screen and (max-width: 1200px) {
  .shapedividers_com-3840 {
    height: 80px;
  }
}

.shapedividers_com-3840::before {
  content: "";
  font-family: "shape divider from ShapeDividers.com";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 90px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23f3aecc"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23f3aecc"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23f3aecc"/></svg>');
}

@media (min-width: 2100px) {
  .shapedividers_com-3840::before {
    background-size: 100% calc(2vw + 90px);
  }
}

.policy-copy01 {
  margin-top: -1.5em;
  color: var(--pinkBack-color);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10vw;
  font-size: clamp(20px, 10vw, 150px);
  position: relative;
  text-align: right;
  z-index: 3;
  text-shadow: 0.05em 0.05em 0.1em rgba(116, 116, 116, 0.8);
  margin-bottom: 0.7em;
}

.policy-box {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}
.policy-ttl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
}
@media screen and (max-width: 1024px) {
  .policy-ttl-box {
    font-size: 60px;
  }
}
@media screen and (max-width: 640px) {
  .policy-ttl-box {
    font-size: 45px;
  }
  .policy-box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 500px) {
  .policy-ttl-box {
    font-size: 35px;
  }
  .policy-box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 300px) {
  .policy-ttl-box {
    font-size: 27px;
  }
  .policy-box {
    margin-bottom: 25px;
  }
}
.policy-ttl-box.left {
  margin-left: 5vw;
  margin-right: auto;
}
.policy-ttl-box.right {
  margin-right: 5vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .policy-ttl-box.right {
    margin-left: 5vw;
    margin-right: auto;
  }
}
.policy-ttl-number {
  background: var(--pinkBack-color);
  padding: 0.2em 0.6em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
  margin-right: 0.2em;
}
.policy-ttl-number > p {
  transform: skewX(-20deg);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.ttl {
  color: var(--pinkBack-color);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.57em;
  margin-right: 0.5em;
  line-height: 1.4;
}
.policy-box-img {
  width: 1.5em;
}
.policy-box-img.bi03 {
  width: 2.2em;
}
.policy-box-img > img {
  width: 100%;
  height: auto;
  display: block;
}
.animetarget {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: 3s;
}
.p_container {
  position: relative;
  font-size: 25px;
  width: 100vw;
  width: calc(100vw - 10vw);
  line-height: 1.6;
  margin-top: 2em;
  margin-bottom: 3em;
  padding: 1em 2em;
  background-color: #fff;
  border-radius: 0.2em;
  background-image: url(img/graph.png);
  background-repeat: repeat;
  box-shadow: 5px 5px 20px gray;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .p_container {
    font-size: 20px;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .p_container {
    box-shadow: 3px 3px 10px gray;
    font-size: 17px;
  }
}
@media screen and (max-width: 500px) {
  .p_container {
    font-size: 16px;
    padding: 0.7em 1.3em;
    width: calc(100vw - 6vw);
  }
}
.p_container.right {
  margin-left: 10vw;
}
.p_container.left {
  margin-right: 10vw;
  flex-direction: row-reverse;
}
.p_container_tt {
  width: 70%;
  display: block;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}
.p_container.right > .p_container_tt {
  margin-right: auto;
}
.p_container.left > .p_container_tt {
  margin-left: auto;
}
.p_container_img {
  width: 28%;
  margin-top: auto;
}
.p_container_img > img {
  height: auto;
  width: 100%;
  display: block;
}
.start {
  opacity: 1;
  transform: translateY(0);
}

.policy-copy02 {
  margin-bottom: -0.5em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 8vw;
  font-size: min(8vw, 130px);
  position: relative;
  text-align: right;
  z-index: 5;
  text-shadow: 0.05em 0.05em 0.1em rgba(51, 51, 51, 0.8);
}
@media screen and (max-width: 1024px) {
  .p_container.left {
    flex-direction: column;
  }
  .p_container_tt {
    width: 100%;
    margin-bottom: 1em;
  }
  .p_container_img {
    width: 50%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .p_container.right {
    margin-left: 5vw;
  }
  .p_container.left {
    margin-right: 5vw;
  }
  .policy-copy02 {
    margin-bottom: -2em;
    font-size: 7vw;
  }
}
/* SVG Shape Dividers Creator */

.shapedividers_com-5529 {
  overflow: hidden;
  position: relative;
  height: 100px;
}

.shapedividers_com-5529::before {
  content: "";
  font-family: "shape divider from ShapeDividers.com";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 90px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23f3aecc"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23f3aecc"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23f3aecc"/></svg>');
}

@media (min-width: 2100px) {
  .shapedividers_com-5529::before {
    background-size: 100% calc(2vw + 90px);
  }
}
@media screen and (max-width: 768px) {
  .shapedividers_com-5529::before {
    background-size: 100% 50px;
  }
}
/* council section --------------------- */
.area_council {
  background-color: var(--pinkPale-color);
  width: 100%;
}
.council-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 5em;
}
@media screen and (max-width: 640px) {
  .council-container {
    padding-bottom: 3em;
  }
}
.ttl2 {
  color: var(--yellow-color);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 40px;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .ttl2 {
    padding: 50px 0;
  }
}
.ttl2-under {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 2em;
  line-height: 1.4;
}
.council-boxlist li {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid var(--pinkDark-color);
  padding: 1em 0;
  font-size: 25px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .ttl2-under {
    font-size: 20px;
  }
  .council-boxlist li {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .council-boxlist li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 500px) {
  .ttl2-under {
    font-size: 18px;
  }
  .council-boxlist li {
    font-size: 18px;
  }
}
.council-img {
  width: 30%;
}
.council-img > img {
  width: 100%;
  height: auto;
}
.council-tt {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.council-tt-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-weight: bold;
  color: var(--pinkDark-color);
  margin-bottom: 1em;
  margin-left: 1em;
}
.council-tt-tt {
  font-size: 0.85em;
  line-height: 1.6;
  margin-left: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .council-img {
    width: 100%;
  }
  .council-tt {
    margin-top: 1em;
    width: 100%;
  }
  .council-tt-title {
    margin-left: 0;
  }
  .council-tt-tt {
    margin-left: 0;
    margin-bottom: 1em;
  }
}

.council-tt > a {
  text-align: center;
  line-height: 1;
  margin: 0 2em;
  padding: 1em 2em;
  border-radius: 1em;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.64em;
  margin-top: auto;
  font-weight: bold;
  color: #fff;
  background-color: var(--pinkDark-color);
}
@media screen and (max-width: 768px) {
  .council-tt > a {
    padding: 0.5em 1em;
  }
}
.council-tt > a:hover {
  background-color: rgb(175, 61, 109);
  transition: background-color 0.2s ease-out;
}
.triangle {
  vertical-align: -2px;
  margin-right: 0.2em;
  display: inline-block;
  background: #fff;
  height: 16px;
  width: calc(tan(60deg) * 16px / 2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* profile ------------------------------- */
/* responsiveは別ファイルにあります */
.area_profile {
  background: url(img/p05.svg) no-repeat center top / auto,
    url(img/p06.svg) no-repeat center bottom / auto,
    linear-gradient(to bottom, #c7e8fa 98%, var(--pinkDark-color) 98%);
}

.head_profile {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.subtitle_box {
  display: flex;
  justify-content: center;
  align-items: start;
}

.body_profile {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.body_profile > p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 2;
  margin: 100px 20px;
}

.list_profile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.list_profile li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 340px;
}

.list_profile h3 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin: 10px 0;
}

.list_profile hr {
  width: 275px;
  border: solid 2px #505ba6;
}

.list_profile p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin: 10px;
  width: 275px;
  height: 200px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
}

.list_profile {
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: 2s;
}

.start4 {
  opacity: 1;
  transform: translateY(0);
}

.foot_profile {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 270px;
}
.fp_comment {
  width: 695px;
}
.fp_comment > p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.fb_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-decoration: none;
  width: 516px;
  height: 119px;
  background-color: #f3aecc;
  border-radius: 10px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 30px;
  margin-right: 50px;
  transition: 0.2s;
}

button:hover {
  transform: scale(1.1);
  background-color: #f7c3d9;
}

.start {
  opacity: 1;
  transform: translateY(0);
}

/* address */

.area_address {
  background-color: #522830;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.a_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 90%;
  margin: 50px 0 100px 0;
  max-width: 1300px;
}

.a_text_container {
  display: flex;
  flex-direction: column;
  padding-right: 2em;
  max-width: 700px;
}
.footer_header {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
.footer_header > h3 {
  font-size: 1.3em;
}
.footer_header > hr {
  border: solid 1px #fff;
}

.footer-tel {
  color: lightblue;
}
.footer-tel:hover {
  color: var(--pinkPale-color);
  transition: color 0.2s ease-out;
}

.support {
  margin: 1.5em 0 0.8em 0;
  color: var(--pinkPale-color);
  font-size: 1.3em;
}
.petal-icon {
  background: var(--pinkPale-color);
  vertical-align: -0.1em;
  display: inline-block;
  height: 1em;
  width: 1em;
  border-top-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  margin: 0 0.2em;
}
.support-tt {
  margin-bottom: 1em;
}
.footer_header .support-form {
  display: inline-block;
  background-color: var(--pinkBack-color);
  padding: 0.5em 1em;
  border-radius: 1em;
  color: #000;
}
.footer_header .support-form:hover {
  background-color: var(--pinkPale-color);
  transition: background-color 0.2s ease-out;
}
.support-form .triangle {
  background: #000;
}
.footer-img {
  width: 314px;
  height: auto;
}
.footer-img > img {
  width: 100%;
  height: auto;
  display: block;
}
.area_address > p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin: 20px;
}
