@charset "UTF-8";
body {
  background-color: #00C46F;
  position: relative; }

.anchor {
  position: relative;
  margin: -80px 0 0 0;
  padding: 80px 0 0 0;
  z-index: -999;
  pointer-events: none;
  display: block; }

/************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: opacity 0.5s ease; }

header.hide {
  opacity: 0; }

.toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  margin: 0 0 0 auto;
  z-index: 888; }
  .toggle span {
    transition: .3s;
    display: block;
    width: 36px;
    border-radius: 25px;
    height: 6px;
    background-color: #00C46F;
    position: absolute;
    left: 50%; }
    .toggle span:nth-of-type(1) {
      top: 34%;
      transform: translate(-50%, -50%); }
    .toggle span:nth-of-type(2) {
      top: 50%;
      transform: translate(-50%, -50%); }
    .toggle span:nth-of-type(3) {
      top: 67%;
      transform: translate(-50%, -50%); }
  .toggle.active span {
    background-color: #fff; }
    .toggle.active span:nth-of-type(1) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(35deg); }
    .toggle.active span:nth-of-type(2) {
      top: 50%;
      opacity: 0;
      transform: translate(-50%, -50%); }
    .toggle.active span:nth-of-type(3) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(-35deg); }

.header_mid {
  position: relative;
  width: 375px;
  margin: 0 auto; }
  .header_mid .ttl {
    position: absolute;
    left: 25px;
    top: 20px;
    background: url("../images/common/ikonilgo_color.svg") left center no-repeat;
    background-size: contain;
    display: block;
    width: 200px;
    height: 50px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    transition: .3s; }

@media (max-width: 1024px) {
  .header_left,
  .header_right {
    display: none; }

  .header_mid {
    width: 100%;
    max-width: 480px;
    margin: 0 auto; } }
/*max-width:768px*/
/*max-width:480px*/
/************************/
nav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100dvh;
  overflow-y: auto;
  z-index: -999;
  pointer-events: none;
  opacity: 0;
  transition: .3s;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }
  nav .header_mid {
    background-color: #00A651;
    width: 100%;
    max-width: 375px;
    min-height: 100dvh;
    height: auto;
    box-sizing: border-box;
    padding: clamp(70px, 6vh, 80px) 0 clamp(60px, 10vh, 100px); }
  nav.active {
    z-index: 777;
    pointer-events: all;
    opacity: 1; }
  nav::-webkit-scrollbar {
    display: none; }

.nav_list {
  max-width: 300px;
  margin: 0 auto 60px;
  width: 100%;
  flex: 1; }
  .nav_list li {
    font: 1.6rem/1em "Noto Sans JP", sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #fff; }
    .nav_list li > a,
    .nav_list li > span {
      color: #fff;
      position: relative;
      display: block;
      text-decoration: none;
      padding: 15px 30px 16px 0; }
    .nav_list li span {
      cursor: pointer; }
      .nav_list li span:before {
        position: absolute;
        content: "";
        display: block;
        width: 14px;
        height: 2px;
        right: 2px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff; }
      .nav_list li span:after {
        position: absolute;
        content: "";
        display: block;
        width: 2px;
        height: 15px;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff;
        transition: .3s; }
      .nav_list li span.active::after {
        opacity: 0;
        transform: translateY(-50%) rotate(-90deg); }
    .nav_list li > a:before {
      position: absolute;
      content: "";
      display: block;
      background: url("../images/common/mini_arrow.svg") center center no-repeat;
      background-size: 14px 13px;
      width: 14px;
      height: 13px;
      right: 2px;
      top: 50%;
      transform: translateY(-50%); }
    .nav_list li .sub {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease; }
      .nav_list li .sub .inner_sub {
        padding: 16px 0 19px;
        border-top: dashed #fff 2px; }
      .nav_list li .sub a {
        display: block;
        margin: 0 0 15px;
        padding: 0 0 0 20px;
        font: 1.35rem/1em "Noto Sans JP", sans-serif;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        position: relative; }
        .nav_list li .sub a:before {
          position: absolute;
          content: "";
          display: block;
          background: url("../images/common/footer_arrow.svg") center center no-repeat;
          background-size: cover;
          width: 12px;
          height: 10px;
          left: 0;
          top: 2px; }
        .nav_list li .sub a:last-of-type {
          margin: 0; }

.nav_sns.sns_list {
  width: 100%;
  max-width: 145px;
  margin: 0 auto 30px; }
  .nav_sns.sns_list a {
    width: 35px; }

.nav_address {
  width: 100%;
  max-width: 300px;
  font: 1.2rem/1.8em "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  margin: 0 auto; }
  .nav_address a {
    text-decoration: none; }

@media (hover: hover) {
  .nav_list li > a:hover,
  .nav_list li > span:hover {
    color: yellow; }
  .nav_list li .sub a:hover {
    color: yellow; } }
@media (max-width: 1024px) {
  nav .header_mid {
    max-width: 480px; } }
/*max-width:768px*/
/*max-width:480px*/
/************************/
.content_all {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start; }

.content_bg {
  position: fixed;
  background-image: url("../images/common/all_bg.png");
  background-position: center bottom -130px;
  background-repeat: no-repeat;
  background-size: 1920px;
  width: 100%;
  height: 660px;
  z-index: -1;
  bottom: 0; }

/* footer直前 */
.content_bg.stop {
  position: absolute;
  bottom: 0;
  top: auto; }

/************************/
.aside {
  position: sticky;
  top: 0;
  width: calc((100% - 375px)/2);
  transition: .3s; }

@media (max-width: 1024px) {
  .aside.side_left, .aside.side_right {
    display: none; } }
/*max-width:768px*/
/*max-width:480px*/
/************************/
.side_left .scroll_area {
  height: 100%; }
.side_left .inner {
  min-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  max-width: 455px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) 0 clamp(20px, 3vh, 30px); }
.side_left .ttl {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../images/common/ikoni_logo_yoko.svg") center center no-repeat;
  background-size: contain;
  aspect-ratio: 350 / 87;
  width: clamp(200px, 22vw, 350px);
  /* 横も少し可変 */
  height: auto;
  margin: 0 auto clamp(25px, 4vh, 50px);
  /* ←これも重要 */ }
.side_left address {
  font: 1.4rem/1.8em "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff; }
  .side_left address a {
    text-decoration: none; }
.side_left ul {
  margin-bottom: clamp(40px, 4vh, 60px); }
.side_left li {
  font: clamp(1.6rem, 1.3vw, 2rem)/1em "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /*span{
    cursor: pointer; 
    br{
      display: none;
    }
    &:before{
      position: absolute;
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      right: 2px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
    }
    &:after{
      position: absolute;
      content: "";
      display: block;
      width: 2px;
      height: 21px;
      right: 11px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
      transition: .3s;
    }
    &.active::after{
      opacity: 0;
      transform: translateY(-50%) rotate(-90deg);
    }
  }*/ }
  .side_left li.current > a,
  .side_left li.current > span {
    color: yellow; }
  .side_left li > a,
  .side_left li > span {
    display: block;
    color: #fff;
    position: relative;
    display: block;
    text-decoration: none;
    padding: clamp(18px, 2.2vh, 24px) 30px clamp(16px, 2vh, 20px) 0; }
  .side_left li > a {
    width: 100%; }
    .side_left li > a.inner_link {
      width: calc(100% - 30px); }
      .side_left li > a.inner_link:before {
        display: none; }
  .side_left li .inner_btn {
    display: block;
    cursor: pointer;
    position: relative; }
    .side_left li .inner_btn:before {
      position: absolute;
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      right: 2px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff; }
    .side_left li .inner_btn:after {
      position: absolute;
      content: "";
      display: block;
      width: 2px;
      height: 21px;
      right: 11px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
      transition: .3s; }
    .side_left li .inner_btn.active::after {
      opacity: 0;
      transform: translateY(-50%) rotate(-90deg); }
  .side_left li > a:before {
    position: absolute;
    content: "";
    display: block;
    background: url("../images/common/footer_arrow.svg") center center no-repeat;
    background-size: 22px;
    width: 22px;
    height: 17px;
    right: 2px;
    top: 50%;
    transform: translateY(-50%); }
  .side_left li .sub {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; }
    .side_left li .sub .inner_sub {
      padding: 16px 0 19px;
      border-top: dashed #fff 2px; }
    .side_left li .sub a {
      margin: 0 15px 0 0;
      padding: 0 0 0 20px;
      font: 1.35rem/1em "Noto Sans JP", sans-serif;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      position: relative; }
      .side_left li .sub a:before {
        position: absolute;
        content: "";
        display: block;
        background: url("../images/common/footer_arrow.svg") center center no-repeat;
        background-size: cover;
        width: 12px;
        height: 10px;
        left: 0;
        top: 6px; }
      .side_left li .sub a:last-of-type {
        margin: 0; }
      .side_left li .sub a.current {
        color: yellow; }
  .side_left li .sub.no-transition {
    transition: none !important; }

.side_right > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 300px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) 0 clamp(20px, 3vh, 30px); }
.side_right p {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  aspect-ratio: 200 / 660;
  width: auto;
  height: min(660px, calc(100vh - 190px));
  margin: 0 auto clamp(40px, 8vh, 120px);
  background: url("../images/common/Top_Background_typo.svg") center center/contain no-repeat; }
.side_right .sns_list {
  width: 100%; }
  .side_right .sns_list a {
    width: 60px; }

@media (hover: hover) {
  .side_left li > a:hover,
  .side_left li > span:hover {
    color: yellow; }
  .side_left li .inner_btn:hover {
    cursor: pointer; }
    .side_left li .inner_btn:hover:before {
      background-color: yellow; }
    .side_left li .inner_btn:hover:after {
      background-color: yellow; }
  .side_left li .sub a:hover {
    color: yellow; } }
@media (max-width: 1470px) {
  .side_left li .sub a {
    display: block;
    margin: 0 0 15px;
    padding: 0 0 0 20px;
    font: clamp(1.2rem, 1.8vw, 1.4rem)/1em "Noto Sans JP", sans-serif;
    font-weight: 500; }
    .side_left li .sub a:before {
      left: 0;
      top: 2px; } }
@media (max-width: 1280px) {
  .side_left .inner {
    width: calc(100% - 50px); }
  .side_left li {
    /*font: 1.8rem/1.5em $go;
    font-weight: 700;*/ }
    .side_left li span {
      cursor: pointer; }
      .side_left li span:before {
        transform: scale(0.85) translateY(-50%);
        transform-origin: center center; }
      .side_left li span:after {
        top: 49%;
        transform: scale(0.85) translateY(-50%);
        transform-origin: center center; }
      .side_left li span.active::after {
        opacity: 0;
        transform: translateY(-50%) rotate(-90deg); }
    .side_left li > a:before {
      transform: scale(0.85) translateY(-50%);
      transform-origin: center center; }

  .side_right > div {
    width: calc(100% - 50px); }
  .side_right p {
    height: min(600px, calc(100vh - 190px)); }
  .side_right .sns_list {
    max-width: 230px; }
    .side_right .sns_list a {
      width: 60px; } }
/*max-width:1280px*/
@media (max-width: 1100px) {
  .side_left li span {
    cursor: pointer; }
    .side_left li span.none {
      display: none; } }
/*max-width:1024px*/
/*max-width:1024px*/
/*max-width:768px*/
/*max-width:480px*/
/************************/
main {
  position: relative;
  max-width: 375px;
  width: 100%;
  background: url("../images/common/bg_top.svg") top right no-repeat #F7F9F8;
  margin: 0 auto;
  padding-bottom: 115px; }
  main:after {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    bottom: -15px;
    background: url("../images/common/character_n2.svg") left 200px top no-repeat;
    width: 50px;
    height: 91px;
    transition: .3s; }

main::before {
  content: "";
  position: absolute;
  top: 285px;
  left: 0;
  width: 100%;
  height: calc(100% - 285px);
  background-image: url("../images/common/bg_grid.svg");
  background-position: right top;
  background-repeat: repeat-y;
  pointer-events: none; }

.main_content {
  position: relative; }

@media (max-width: 1024px) {
  main {
    position: relative;
    max-width: 480px; }

  main::before {
    content: "";
    position: absolute;
    top: 285px;
    left: 0;
    width: 100%;
    height: calc(100% - 285px);
    background-image: url("../images/common/bg_grid.svg");
    background-position: center top;
    background-repeat: repeat-y;
    pointer-events: none; } }
/*max-width:768px*/
@media (max-width: 480px) {
  main {
    position: relative;
    max-width: 480px; } }
/*max-width:480px*/
/************************/
.sns_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto; }
  .sns_list li a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1; }
  .sns_list li img {
    width: 100%; }

@media (hover: hover) {
  .sns_list a:hover {
    transform: rotate(10deg); } }
/************************/
footer {
  position: relative;
  padding: 155px 0 100px 0; }

.footer_box {
  max-width: 1680px;
  width: calc(100% - 100px);
  margin: 0 auto; }

.footer_flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch; }
  .footer_flex .left {
    width: 420px; }
    .footer_flex .left img {
      display: block;
      max-width: 175px;
      margin: 0 auto 118px; }
    .footer_flex .left address {
      font: 1.4rem/1.8em "Noto Sans JP", sans-serif;
      font-weight: 500;
      color: #fff; }
      .footer_flex .left address br.num2 {
        display: none; }
    .footer_flex .left a {
      text-decoration: none; }
  .footer_flex .right {
    padding: 40px 0 0 0;
    width: calc(100% - 450px);
    max-width: 785px; }
    .footer_flex .right .top {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 46px; }
      .footer_flex .right .top li span {
        display: inline-block;
        font: 1.2rem/1 "Noto Sans JP", sans-serif;
        font-weight: 500;
        margin-bottom: 30px;
        color: #fff; }
      .footer_flex .right .top li a {
        color: #fff;
        text-decoration: none;
        display: inline-block;
        font: 1.4rem/1em "Noto Sans JP", sans-serif;
        font-weight: 500;
        margin-bottom: 20px;
        position: relative;
        padding: 0 0 0 20px;
        background: url("../images/common/footer_arrow.svg") top 4px left no-repeat; }
    .footer_flex .right .btm {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end; }
      .footer_flex .right .btm > p {
        width: 100%;
        height: 30px;
        background-color: #fff;
        color: #00C46F;
        text-align: center;
        font: 1.4rem/28px "Noto Sans JP", sans-serif;
        font-weight: 500;
        margin: 0 0 30px; }
      .footer_flex .right .btm > a {
        color: #fff;
        width: calc(100% - 195px);
        max-width: 555px;
        display: block;
        text-decoration: none;
        font: 5.2rem/1em "Noto Sans JP", sans-serif;
        font-weight: 700; }
        .footer_flex .right .btm > a small {
          display: inline-block;
          font: 3rem/1em "Noto Sans JP", sans-serif;
          font-weight: 700; }
          .footer_flex .right .btm > a small:nth-of-type(1) {
            margin: 0 8px 0 0; }
          .footer_flex .right .btm > a small:nth-of-type(2) {
            margin: 0 0 0 2px; }
        .footer_flex .right .btm > a .br {
          padding: 7px 0 0;
          display: block;
          font: 1.4rem/1.5em "Noto Sans JP", sans-serif;
          font-weight: 500; }
          .footer_flex .right .btm > a .br br {
            display: none; }
      .footer_flex .right .btm .sns_list {
        margin: 0;
        width: 195px; }
        .footer_flex .right .btm .sns_list a {
          width: 52px; }

@media (hover: hover) {
  .footer_flex .right .top li a:hover {
    color: yellow; } }
@media (max-width: 1280px) {
  footer {
    position: relative;
    padding: 100px 0 150px; }

  .footer_box {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto; }

  .footer_flex {
    display: block; }
    .footer_flex .left {
      width: 415px;
      margin: 0 auto 100px; }
      .footer_flex .left img {
        display: block;
        margin: 0 auto 50px; }
      .footer_flex .left address {
        font: 1.4rem/1.8em "Noto Sans JP", sans-serif;
        font-weight: 500;
        color: #fff; }
    .footer_flex .right {
      padding: 0;
      width: calc(100% - 80px);
      max-width: 768px;
      margin: 0 auto; }
      .footer_flex .right .btm > a .br br {
        display: block; } }
@media (max-width: 1024px) {
  .footer_flex .right .btm {
    display: block; }
    .footer_flex .right .btm > a {
      width: 100%;
      max-width: 480px;
      margin: 0 auto 50px; }
    .footer_flex .right .btm .sns_list {
      margin: 0 auto; } }
@media (max-width: 768px) {
  footer {
    padding: 60px 0 100px 0; }

  .footer_box {
    max-width: 375px;
    width: calc(100% - 40px);
    margin: 0 auto; }

  .footer_flex {
    max-width: 300px;
    margin: 0 auto; }
    .footer_flex .left {
      width: 100%;
      margin: 0 auto 30px; }
      .footer_flex .left img {
        display: block;
        margin: 0 auto 20px;
        width: 100px; }
    .footer_flex .right {
      padding: 0;
      width: 100%;
      max-width: 785px;
      margin-bottom: 0; }
      .footer_flex .right .top {
        margin-bottom: 70px; }
        .footer_flex .right .top ul:nth-of-type(1),
        .footer_flex .right .top ul:nth-of-type(2) {
          width: 100%;
          margin-bottom: 40px; }
        .footer_flex .right .top li span {
          display: inline-block;
          font: 1.2rem/1 "Noto Sans JP", sans-serif;
          font-weight: 500;
          margin-bottom: 30px;
          color: #fff; }
        .footer_flex .right .top li a {
          color: #fff;
          text-decoration: none;
          display: inline-block;
          font: 1.4rem/1em "Noto Sans JP", sans-serif;
          font-weight: 500;
          margin-bottom: 20px;
          position: relative;
          padding: 0 0 0 20px;
          background: url("../images/common/footer_arrow.svg") top 4px left no-repeat; }
      .footer_flex .right .btm > p {
        margin: 0 0 15px;
        border-radius: 25px; }
      .footer_flex .right .btm > a {
        text-align: left;
        color: #fff;
        text-decoration: none;
        font: 3.4rem/1em "Noto Sans JP", sans-serif;
        font-weight: 700;
        margin-bottom: 30px; }
        .footer_flex .right .btm > a small {
          font: 1.4rem/1em "Noto Sans JP", sans-serif;
          font-weight: 700; }
        .footer_flex .right .btm > a .block {
          display: block;
          padding: 0 0 0 5.6rem; }
      .footer_flex .right .btm .sns_list {
        width: 145px; }
        .footer_flex .right .btm .sns_list a {
          width: 35px; } }
/*max-width:768px*/
/*max-width:480px*/
.fade {
  position: relative;
  top: 100px;
  transition: 1s;
  opacity: 0; }
  .fade.fade_in {
    opacity: 1;
    top: 0; }

main.stop:after {
  background: url("../images/common/character_n2.svg") left 0 top no-repeat; }

/************************/
.index_contact {
  padding: 90px 0 0;
  position: relative; }
  .index_contact:before {
    position: absolute;
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: #00C46F;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%); }
  .index_contact h2 {
    text-align: center;
    font: 2.8rem/1em "Noto Sans JP", sans-serif;
    font-weight: 700;
    margin: 0 auto 35px;
    padding: 85px 0 0;
    background: url("../images/index/icon_index_contact.svg") top center no-repeat; }
  .index_contact > p {
    width: fit-content;
    margin: 0 auto 75px;
    font: 2rem/2em "Noto Sans JP", sans-serif;
    font-weight: 700; }
  .index_contact > a {
    position: relative;
    display: block;
    width: 302px;
    height: 54px;
    margin: 0 auto 30px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    .index_contact > a.mail {
      background: url("../images/index/mail_contact.svg") center center no-repeat; }
    .index_contact > a.line {
      background: url("../images/index/line_contact.svg") center center no-repeat; }
  .index_contact .tel {
    background: url("../images/index/tel_contact.svg") center center no-repeat;
    height: 191px;
    width: 302px;
    margin: 0 auto;
    padding: 63px 0 0; }
    .index_contact .tel a {
      text-align: center;
      display: block;
      width: 263px;
      margin: 0 auto 10px;
      font: 2.8rem/1em "Noto Sans JP", sans-serif;
      font-weight: 700;
      text-decoration: none;
      color: #fff; }
      .index_contact .tel a small {
        display: inline-block;
        font: 1.4rem/1em "Noto Sans JP", sans-serif;
        font-weight: 700; }
        .index_contact .tel a small:nth-of-type(1) {
          margin-right: 6px; }
        .index_contact .tel a small:nth-of-type(2) {
          margin-left: 6px; }
    .index_contact .tel p {
      color: #fff;
      width: 263px;
      margin: 0 auto;
      font: 1.4rem/1.55em "Noto Sans JP", sans-serif;
      font-weight: 700; }
      .index_contact .tel p span {
        display: block;
        padding: 0 0 0 5.6rem; }

@media (hover: hover) {
  .index_contact > a:hover {
    top: -5px; }
  .index_contact .tel a:hover {
    color: yellow; } }
/************************/
.page_head {
  padding: 185px 0 0;
  position: relative;
  max-width: 302px;
  width: 100%;
  margin: 0 auto 60px; }
  .page_head h1 {
    position: relative;
    font: 2.8rem/1em "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #00C46F; }
  .page_head span {
    font: 1.2rem/1em "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #4A4A4A;
    position: absolute;
    bottom: 50px;
    left: 0; }
