@layer reset, mix, components, top, utilities;

@layer reset {
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, img {
    margin: 0;
    padding: 0;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
  }

  ol, ul {
    list-style: none;
  }
a{
  text-decoration: none;
}
  

  img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  picture {
    display: block;
  }

  button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    /* outline: none; */
    appearance: none;
  }

  @view-transition {
    navigation: auto;
  }
  
}

@layer mix {
  :root {
    --font-en-bold: "SST W20 Bold", Arial, "Helvetica Neue", sans-serif;
    --font-en-regular: "SST W20 Roman", Arial, "Helvetica Neue", sans-serif;
    --font-ja-bold: "SST W20 Bold", "SST W55 Bold",  Arial, "Helvetica Neue", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
    --font-ja-regular: "SST W20 Roman","SST W55 Regular", Arial, "Helvetica Neue", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
    --font-ja-light: "SST W20 Roman","SST W55 Regular", Arial, "Helvetica Neue", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
    --color-base: #000;
    --color-muted: #656565;
    --color-link-hover: #3865e0;
    --color-bg-gray: #E7E7E7;
    --color-bg-gray-light: #EFEFEF;

    --color-people:#D63C50;
    --color-society:#867700;
    --color-earth:#008549;
    --color-other:#003366;
    --color-other-sub:#595959;
    --color-gov:#6E4E9E;
    --color-databook:#2E6B78;
    --color-related:#4A4A6A;
    --base-size: 16;

    --rem-10: calc((10 / var(--base-size)) * 1rem);
    --rem-12: calc((12 / var(--base-size)) * 1rem);
    --rem-13: calc((13 / var(--base-size)) * 1rem); 
    --rem-14: calc((14 / var(--base-size)) * 1rem);
    --rem-15: calc((15 / var(--base-size)) * 1rem);
    --rem-16: calc((16 / var(--base-size)) * 1rem);
    --rem-18: calc((18 / var(--base-size)) * 1rem); 
    --rem-20: calc((20 / var(--base-size)) * 1rem);
    --rem-22: calc((22 / var(--base-size)) * 1rem);
    --rem-23: calc((23 / var(--base-size)) * 1rem);
    --rem-24: calc((24 / var(--base-size)) * 1rem);
    
    --rem-30: calc((30 / var(--base-size)) * 1rem);
    --rem-32: calc((32 / var(--base-size)) * 1rem);
    --rem-34: calc((34 / var(--base-size)) * 1rem);
    --rem-36: calc((36 / var(--base-size)) * 1rem);
    --rem-38: calc((38 / var(--base-size)) * 1rem);
    --rem-40: calc((40 / var(--base-size)) * 1rem);
    --rem-42: calc((42 / var(--base-size)) * 1rem);
    --rem-44: calc((44 / var(--base-size)) * 1rem);
    --rem-46: calc((46 / var(--base-size)) * 1rem);

    --fz-X-large: var(--rem-30);
    --fz-large: var(--rem-24);
    --fz-middle: var(--rem-16);
    --fz-middle_side: var(--rem-14);
    --fz-middle_side_in: var(--rem-13);
    --fz-small: var(--rem-12);
    --fz-X-small: var(--rem-10);
    --fz-XX-small: var(--rem-10);
  }

  @media screen and (max-width: 640px) {
    :root {
      --fz-X-large: var(--rem-20);
    }
  }
}
@layer utilities {
  .pc{
    display: none;
    @media (min-width: 641px) {
      display: block;
    }
  }
  .sp{
    display: block;
    @media (min-width: 641px) {
      display: none;
    }
  }
  .mt_0{
    margin-top: 0;
  }
  .mb_25{
    margin-bottom: 25px;
  }
  .txt_cen{
    text-align: center;
  }
}
@layer components {
  @media (max-width: 640px) {
    .sus_main [id] {
      scroll-margin-top: 160px;
    }
  }

@media (min-width: 641px) {
    .sus_main [id] {
      scroll-margin-top: 270px;
    }
  }
  .tx_b{
    font-weight: bold;
  }
  .ss_t{
    font-size: var(--rem-12);
    vertical-align: top;
  }
  .contents_outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1190px;
    margin: 74px auto;
    font-family: var(--font-ja-regular);
    position: relative;
    background-color: #fff;
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      display: inline-block;

      &:focus-visible {
        position: static;
        width: auto;
        height: auto;
        padding: revert;
        margin: revert;
        overflow: revert;
        clip: revert;
        white-space: revert;
        outline: 2px solid #333;
        outline-offset: 2px;
      }
    }

    @media screen and (max-width: 640px) {
      width: 100%;
      margin: 0 auto;
    }
  }

  @media screen and (min-width: 641px) {
    .sus_side_nav {
      flex-basis: 260px;
      position: relative;
      align-self: stretch; 

      .nav_toggle_btn_outer {
        display: none;
      }

      .sus_side_nav_inner {
        display: block !important;
        position: static;
        box-shadow: none;
        max-height: none !important;
        opacity: 1 !important;
        padding: 0 !important;
        overflow: visible !important;
        visibility: visible !important;
        width: 260px;

        &.is-fixed {
          position: sticky;
          top: calc(var(--total-offset, 40px) + 40px); 
          z-index: 10;
          max-height: calc(100vh - var(--total-offset, 40px) - 20px);
          overflow-y: auto;
        }

        &.is-stopped {
          position: absolute !important;
          left: 0;
          bottom: 40px !important; 
          top: auto !important;
          z-index: 10;
        }
      }
    }
  }

  @media screen and (max-width: 640px) {
    body.nav-lock {
      overflow: hidden;
      height: 100%;
    }

    .sus_side_nav {
      flex-basis: 100%;
      position: relative;
      z-index: 45;
      background-color: #fff;
      width: 100%;
      color: #000;
      .nav_toggle_btn_outer {
        position: relative;
        width: 100%;
        z-index: 45; 
        background-color: #DCDCDC;

        &.is-floating {
          position: fixed;
          left: 0;
          width: 100%;
          z-index: 102; 
          top: var(--floating-height); 
          animation: burgerSlideDown 0.4s ease-in-out forwards;
        }

        &.is-leaving {
          position: fixed;
          left: 0;
          width: 100%;
          z-index: 102; 
          top: var(--floating-height); 
          animation: burgerSlideUp 0.4s ease-in-out forwards;
        }

        .nav_toggle_btn {
          display: block;
          visibility: visible;
          width: 44px;
          height: 44px;
          position: relative;
          background: none;
          border: none;
          cursor: pointer;
          overflow: hidden;
          &:focus-visible{
            outline-offset: -1px;
            outline: auto;
          }
          &::before,
          &::after {
            content: "";
            position: absolute;
            left: 12px;
            width: 20px;
            height: 2px;
            background-color: #333;
            transition: transform 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
          }

          &::before {
            top: 14px;
            box-shadow: 0 7px 0 #333;
          }

          &::after {
            top: 28px;
          }

          &.open {
            &::before {
              top: 21px;
              box-shadow: 0 0 0 transparent;
              transform: rotate(-45deg);
            }

            &::after {
              top: 21px;
              transform: rotate(45deg);
            }
          }
        }
      }

      .sus_side_nav_inner {
        position: absolute !important;   
        top: 100% !important;           
        left: 0 !important;
        width: 100% !important;
        z-index: 101 !important;
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        padding: 0 30px !important;
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out, visibility 0s 0.4s;

        & > li {
          margin-bottom: 10px;

          &:last-of-type {
            margin-bottom: 0;
          }
        }
      }

      &:has(.nav_toggle_btn_outer.is-floating),
      &:has(.nav_toggle_btn_outer.is-leaving) {
        .sus_side_nav_inner {
          position: fixed !important;
          top: calc(var(--floating-height) + 44px) !important;
        }
      }

      &.menu-open {
        display: block;
        position: relative;
        width: 100%;

        .sus_side_nav_inner {
          position: absolute !important;   
          top: 100% !important;           
          left: 0 !important;
          width: 100% !important;
          max-height: calc(100dvh - var(--floating-height) - 180px) !important; 
          opacity: 1 !important;
          visibility: visible !important;
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch;
          padding: 20px 30px 100px !important;
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
          transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out, visibility 0s 0s;
        }

        &:has(.nav_toggle_btn_outer.is-floating),
        &:has(.nav_toggle_btn_outer.is-leaving) {
          .sus_side_nav_inner {
            position: fixed !important;   
            top: calc(var(--floating-height) + 44px) !important; 
            max-height: calc(100dvh - var(--floating-height) - 60px) !important;
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch;
          }
        }
      }
    }

    @keyframes burgerSlideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    @keyframes burgerSlideUp {
      from { transform: translateY(0); }
      to { transform: translateY(-100%); }
    }
  }

  .sus_side_nav_inner {
    & *.cal {
      font-weight: bold;
      font-family: var(--font-ja-bold);
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    & .other {
      a {
        &:hover, &.cal {
          border-left: 2px solid var(--color-other);
        }
      }
    }
    & .other_sub {
      a {
        &:hover, &.cal {
          border-left: 2px solid var(--color-other-sub);
        }
      }
    }
    & .people {
      a {
        &:hover, &.cal {
          border-left: 2px solid var(--color-people);
        }
      }
    }

    & .society {
      a {
        &:hover, &.cal {
          border-left: 2px solid var(--color-society);
        }
      }
    }

    & .earth {
      a {
        &:hover, &.cal {
          border-left: 2px solid var(--color-earth);
        }
      }
    }

    & .other_link {
      a {
        margin-bottom: 10px;
        font-size: var(--fz-middle_side);
        position: relative;
        text-align: left;
        min-height: 44px;
        padding: 10px 25px 10px 20px;
        border-radius: 35px;
        line-height: 1.2;
        display: flex;
        align-items: center;

        &:hover, &:focus-visible {
          background-color: #DADADA;
        }
      }
    }

    li {
      position: relative;
      display: flow-root;

      ul {
        padding-left: 15px;
      }

      a {
        display: block;
        border-left: 2px solid transparent;
        padding: 0 12px;
      }

      & .sec_d_outer {
        display: none;
        max-height: 0;
        overflow: hidden;
        will-change: max-height; 
        box-sizing: border-box;
        transition: max-height 0.3s ease-out;
        padding-top: 0;
        padding-bottom: 0;

        & .sec_d {
          border-left: 1px solid #4D4D4D;
          list-style: none;
          margin: 16px 0 16px 32px;
          padding-top: 5px;
          padding-bottom: 5px;
          transition: max-height 0.3s ease-out;
          font-size: var(--fz-middle_side_in);

          & > li {
            margin-bottom: 10px;

            &:nth-last-of-type(1) {
              margin-bottom: 0;
            }
          }

          ul {
            li {
              margin: 10px 0;
            }
          }

          &.open {
            display: block;
            opacity: 1;

            @starting-style {
              height: 0;
              opacity: 0;
            }
          }

          & li a {
            padding: 3px 10px;
            margin-right: 3px;
          }
        }
      }
    }
  }

  .nav_b {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: var(--fz-middle_side);
    position: relative;
    text-align: left;
    min-height: 44px;
    padding: 7px 50px 7px 20px;
    border-radius: 35px;
    line-height: 1.4;
    color: #000;

    &:hover, &:focus-visible {
      background-color: #DADADA;
    }
    &:is(.people){
      &:active {
        background-color: #FF7D7D;
      }
    }
    &:is(.people)[aria-expanded="true"] {
      background-color: #FFD0CE;
      &:active {
        background-color: #FF7D7D;
      }
    }
    &:is(.earth){
      &:active {
        background-color: #4FD398;
      }
    }
    &:is(.earth)[aria-expanded="true"] {
      background-color: #DEFFEF;
      &:active {
        background-color: #4FD398;
      }
    }
    &:is(.society){
       &:active {
        background-color: #FBE754;
      }
    }
    &:is(.society)[aria-expanded="true"] {
      background-color: #FFF7BA;
      &:active {
        background-color: #FBE754;
      }
    }
    &:is(.other){
       &:active{
        background-color: #81A5C9;
      }
    }
    &:is(.other)[aria-expanded="true"] {
      background-color: #E5EBF0;
       &:active {
        background-color: #81A5C9;
      }
    }
    &:is(.other_sub){
       &:active{
        background-color: #B2B2B2;
      }
    }
    &:is(.other_sub)[aria-expanded="true"] {
      background-color: #EAEAEA;
       &:active {
        background-color: #B2B2B2;
      }
    }
    &.other .nav_drop_b {
      background-color: var(--color-other);
    }
    &.other_sub .nav_drop_b {
      background-color: var(--color-other-sub);
    }
    &.people .nav_drop_b {
      background-color: var(--color-people);
    }

    &.society .nav_drop_b {
      background-color: var(--color-society);
    }

    &.earth .nav_drop_b {
      background-color: var(--color-earth);
    }

    &:is(.people, .society, .earth) {
      /* max-width: 148px; */
      width: 100%;
    }

    &:is(.other, .other_sub) {
      width: 100%;
    }
  }

  .nav_drop_b {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;

    &::after, &::before {
      content: "";
      position: absolute;
      background-color: #fff;
      border-radius: 2px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &.open::after {
      width: 12px;
      height: 2px;
    }
  }

  .nav_drop_b::before {
    width: 12px;
    height: 2px;
  }

  .nav_drop_b::after {
    width: 2px;
    height: 12px;
  }

  .sus_main {
    max-width: 840px;
    width: 100%;
    color: #656565;
    a{
      color: #2D61BF;
      &:hover{
        text-decoration: underline;
        figcaption{
          text-decoration: underline;
        }
      }
    }
    @media screen and (max-width:640px) {
      padding: 32px 15px;
    }
    * + .con_table_outer{
        margin-top: 20px;
      }
    &:is(.other) {
      .con_anc {
        & .con_anc_inner {
          & li {
            & a {
              background-color: #E5EBF0;
              &:hover,&:focus-visible {
                background-color: #7199BF;
                text-decoration: none;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #003366;
                  }
                  &::after {
                    border-right: 2px solid #003366;
                    border-bottom: 2px solid #003366;
                  }
                }
              }
              &:active{
                background-color: #003366;
                color: #fff;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #003366;
                  }
                  &::after {
                    border-right: 2px solid #003366;
                    border-bottom: 2px solid #003366;
                  }
                }
              }
              & .icon_arrow {
                background-color: #003366;
              }
            }
          }
        }
      }
      .h1_outer {
        background-color: #81A5C9;
      }
      .con_h2{
        color: #003366;
        border-bottom: 1px solid #003366;
      }
      .con_h3{
        color: #003366;
      }

      thead{
        th{
          background-color: #E5EBF0;
          color: #000;
        }
        td{
          background-color: #E5EBF0;
          color: #000;
          line-height: 1;
        }
      }
      .table_cat{
        background-color: #E5EBF0;
      }
    }

    &:is(.other_sub) {
      .con_anc {
        & .con_anc_inner {
          & li {
            & a {
              background-color: #EAEAEA;
              &:hover,&:focus-visible {
                background-color: #949494;
                text-decoration: none;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #595959;
                  }
                  &::after {
                    border-right: 2px solid #595959;
                    border-bottom: 2px solid #595959;
                  }
                }
              }
              &:active{
                background-color: #595959;
                color: #fff;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #595959;
                  }
                  &::after {
                    border-right: 2px solid #595959;
                    border-bottom: 2px solid #595959;
                  }
                }
              }
              & .icon_arrow {
                background-color: #595959;
              }
            }
          }
        }
      }
      .h1_outer {
        background-color: #B2B2B2;
      }
      .con_h2{
        color: #414141;
        border-bottom: 1px solid #414141;
      }
      .con_h3{
        color: #414141;
      }

      thead{
        th{
          background-color: #ECEFF1;
          color: #000;
        }
        td{
          background-color: #ECEFF1;
          color: #000;
          line-height: 1;
        }
      }
      .table_cat{
        background-color: #ECEFF1;
      }
    }

    &:is(.people) {
      .con_anc {
        & .con_anc_inner {
          & li {
            & a {
              background-color: #FFD0CE;
              &:hover,&:focus-visible {
                background-color: #FF7D7D;
                text-decoration: none;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #D63C50;
                  }
                  &::after {
                    border-right: 2px solid #D63C50;
                    border-bottom: 2px solid #D63C50;
                  }
                }
              }
              &:active{
                background-color: #D63C50;
                color: #fff;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #D63C50;
                  }
                  &::after {
                    border-right: 2px solid #D63C50;
                    border-bottom: 2px solid #D63C50;
                  }
                }
              }
              & .icon_arrow {
                background-color: #D63C50;
              }
            }
          }
        }
      }
      .h1_outer {
        background-color: #FF7D7D;
      }
      .con_h2{
        color: #D63C50;
        border-bottom: 1px solid #D63C50;
      }
      .con_h3{
        color: #D63C50;
      }

      thead{
        th{
          background-color: #FCD0BF;
          color: #000;
        }
        td{
          background-color: #FCD0BF;
          color: #000;
          line-height: 1;
        }
      }
      .table_cat{
        background-color: #FCD0BF;
      }
    }

    &:is(.society) {
      .con_anc {
        & .con_anc_inner {
          & li {
            & a {
              background-color: #FFF7BA;
              &:hover,&:focus-visible {
                background-color: #A69412;
                text-decoration: none;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #867700;
                  }
                  &::after {
                    border-right: 2px solid #867700;
                    border-bottom: 2px solid #867700;
                  }
                }
              }
              &:active{
                background-color: #867700;
                color: #fff;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #867700;
                  }
                  &::after {
                    border-right: 2px solid #867700;
                    border-bottom: 2px solid #867700;
                  }
                }
              }
              & .icon_arrow {
                background-color: #867700;
              }
            }
          }
        }
      }
      .h1_outer {
        background-color: #FBE754;
      }
      .con_h2{
        color: #867700;
        border-bottom: 1px solid #867700;
      }
      .con_h3{
        color: #867700;
      }

      thead{
        th{
          background-color: #FFFAD6;
          color: #000;
        }
        td{
          background-color: #FFFAD6;
          color: #000;
          line-height: 1;
        }
      }
      .table_cat{
        background-color: #FFFAD6;
      }
    }

    &:is(.earth) {
      .con_anc {
        & .con_anc_inner {
          & li {
            & a {
              background-color: #DEFFEF;
              &:hover,&:focus-visible {
                background-color: #14A966;
                text-decoration: none;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #008549;
                  }
                  &::after {
                    border-right: 2px solid #008549;
                    border-bottom: 2px solid #008549;
                  }
                }
              }
              &:active{
                background-color: #008549;
                color: #fff;
                & .icon_arrow {
                  background-color: #fff;
                  &::before {
                    background-color: #008549;
                  }
                  &::after {
                    border-right: 2px solid #008549;
                    border-bottom: 2px solid #008549;
                  }
                }
              }
              & .icon_arrow {
                background-color: #008549;
              }
            }
          }
        }
      }
      .h1_outer {
        background-color: #4FD398;
      }
      .con_h2{
        color: #008549;
        border-bottom: 1px solid #008549;
      }
      .con_h3{
        color: #008549;
      }

      thead{
        th{
          background-color: #DEFFEF;
          color: #000;
        }
        td{
          background-color: #DEFFEF;
          color: #000;
          line-height: 1;
        }
      }
      .table_cat{
        background-color: #DEFFEF;
      }
    }

    .h1_outer {
      font-family: var(--font-ja-bold);
      font-weight: bold;
      width: 100%;
      height: 220px;
      padding: 0 0 0 60px;
      box-sizing: border-box;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      color: #000;
      
      @media screen and (max-width:640px) {
        padding: 34px 24px;
        min-height: 120px;
        height: auto;
      }

      & span {
        order: 1;
        margin-bottom: 4px;
        font-size: var(--rem-18);
        @media screen and (max-width:640px) {
          font-size: var(--rem-16);
        }
        &:empty {
          display: none;
        }
      }

      & h1 {
        order: 2;
        margin: 0;
        line-height: 1.2;
        font-size: var(--fz-X-large);
        @media screen and (max-width:640px) {
          font-size: var(--rem-22);
        }
      }

      &:not(:has(span)),
      &:has(span:empty) {
        & h1 {
          margin: 0;
        }
      }

      & time {
        position: absolute;
        bottom: 25px;
        right: 40px;
        font-size: var(--fz-middle_side);
        line-height: 1;
        @media screen and (max-width:640px) {
          font-size: var(--rem-12);
          bottom: 8px;
          right: 16px;
        }
      }

      &:has(img) {
        display: grid;
        align-items: center;
        grid-template-rows: auto auto; 
        grid-template-columns: auto 1fr;
        column-gap: 20px;
        row-gap: 2px; 
        align-content: center;

        & img {
          grid-column: 1;
          grid-row: 1 / span 2;
          max-width: 80px;
          width: auto;
          height: auto;
          object-fit: contain;
          @media screen and (max-width:640px) {
            max-width: 56px;
          }
        }

        & span {
          grid-column: 2;
          grid-row: 1;
          align-self: end;
          margin-bottom: 0;
        }

        & h1 {
          grid-column: 2;
          grid-row: 2;
          align-self: start;
          margin: 0;
        }

        &:not(:has(span)),
        &:has(span:empty) {
          grid-template-rows: 1fr;
          & img {
            grid-row: 1;
          }
          & h1 {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
          }
        }
      }
    }

    .con_block {
      line-height: 2;
      & + .con_block {
        margin-top: 120px;
        @media screen and (max-width:640px) {
          margin-top: 60px;
        }
      }
    }

    .con_anc + .con_block {
      h2 {
        margin-top: 0;
      }
    }

    .h1_outer + .con_block {
      & > :first-child:not(.con_txt):not(.con_h2):not(.con_anc) {
        margin-top: 0;
      }
    }

    .h1_outer + .con_block + .con_block {
      margin-top: 0;
    }

    .con_block:has(> .con_anc) {
      & + .con_block {
        margin-top: 0;
        h2 {
          margin-top: 0;
        }
      }
    }
    .con_block + .con_block:has(> .con_anc) {
      margin-top: 0;
    }

    .con_txt {
      font-size: var(--fz-middle);
      line-height: 2;
      margin-top: 24px;

      @media screen and (max-width:640px) {
        font-size: var(--rem-16);
        + .con_txt{
          margin-top: 20px;
        }
      }
    }

    .con_h2 {
      font-family: var(--font-ja-bold);
      font-weight: bold;
      padding-bottom: 16px;
      font-size: var(--rem-22);
      line-height: 1.2;
      margin-top: 60px;

      & + .con_txt {
        margin-top: 40px;
        @media screen and (max-width:640px) {
          margin-top: 32px;
        }
      }
    }

    .con_h3 {
      font-family: var(--font-ja-bold);
      font-size: var(--rem-20);
      line-height: 1;
      margin-top: 60px;
      @media screen and (max-width:640px) {
        margin-top: 40px;
      }
    }

    .con_h4 {
      font-family: var(--font-ja-bold);
      font-size: var(--rem-18);
      line-height: 1;
      margin-top: 60px;
      @media screen and (max-width:640px) {
        margin-top: 40px;
      }
    }

    .con_h5 {
      font-family: var(--font-ja-bold);
      font-size: var(--rem-16);
      line-height: 1;
      margin-top: 60px;
      @media screen and (max-width:640px) {
        margin-top: 40px;
      }
    }

    .con_h6 {
      font-family: var(--font-ja-bold);
      font-size: var(--rem-14);
      line-height: 1;
      margin-top: 60px;

    }

    .con_li_dis {
      font-size: var(--fz-middle);
      margin-top: 20px;
      padding-left: 20px;
      @media screen and (max-width:640px) {
        font-size: var(--rem-16);
        margin-top: 40px;
      }
      li {
        list-style: disc;
      }
    }
    .con_li_cau{
      font-size: var(--fz-small);
      margin-top: 20px;
      span{
        margin-right: var(--rem-10);
      }
    }
    .con_link_li{
      margin-top: 24px;
      &.arrow{
        padding-left: 1rem;
        li{
          list-style: "→";
          color: #000000;
          text-align: left;
          padding-left: 10px;
          &:has(a){
            color: #2D61BF;
          }
          a{
            display: block;
            @media screen and (max-width:640px) {
              font-size: var(--rem-14);
            }
          }
        }
      }
    }
    .text_small {
      font-size: var(--rem-14);
      @media screen and (max-width:640px) {
        font-size: var(--rem-14);
      }
    }
    
    .con_anc {
      position: relative;
      width: 100%;
      box-sizing: border-box;
      min-height: 90px; 
      margin-top: 20px;

      .con_anc_inner {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        list-style: none;
        padding: 15px 0 80px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        background-color: #ffffff;
        transition: none; 

        &.is-fixed {
          position: fixed;
          top: var(--fixed-menu-top, 0px); 
          z-index: 10;
          padding: 15px 0 80px;
          transform: translateY(-150%); 
          box-shadow: none; 
          transition: none;
        }

        &.is-fixed.is-show {
          transform: translateY(0);
          transition: transform 0.3s ease-in-out; 
        }

        & li {
          width: calc((100% - (1 * 16px)) / 2); 
          box-sizing: border-box;
          @media screen and (max-width:640px) {
            width: 100%; 
          }
          & a {
            line-height: 1.3;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px; 
            color: #000000;
            font-size: var(--rem-13); 
            font-family: var(--font-ja-regular);
            text-align: left;
            border: none;
            min-height: 56px;
            padding: 10px 8px 10px 16px; 
            border-radius: 50px;
            box-sizing: border-box;
            box-shadow: none; 
            transition: background-color 0.3s ease;
            width: 100%;

            & .icon_arrow {
              display: block;
              position: relative;
              width: 26px;
              height: 26px;
              border-radius: 50%;
              flex-shrink: 0;
              transition-duration: 0.3s;
              &::before {
                content: "";
                position: absolute;
                top: 6px;
                bottom: 7px;
                left: calc(50% - 0.75px); 
                width: 1.5px;
                border-radius: 1px;
                background-color: #FFFFFF;
              }
              &::after {
                content: "";
                position: absolute;
                bottom: 5px;
                left: calc(25% - 3.5px);
                width: 10px;
                height: 10px;
                border-right: 2px solid rgb(255, 255, 255);
                border-bottom: 2px solid rgb(255, 255, 255);
                border-bottom-right-radius: 1px; 
                transform: rotate(45deg);
                transform-origin: bottom right; 
                box-sizing: border-box;
              }
            }
          }
        }

        @media (min-width: 641px) {
          gap: 12px;
          justify-content: flex-start;

          &.is-fixed {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 0px, rgba(255, 255, 255, 1.00) 80%, rgba(255, 255, 255, 0.85) 85%, rgba(255, 255, 255, 0.10) 92%, rgba(255, 255, 255, 0.00) 100% );
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
          }

          & li {
            width: calc((100% - (3 * 12px)) / 4);
            max-width: 198px;
            & a {
              font-size: var(--rem-13);
              padding: 9px 10px 9px 24px;
              gap: 12px;
              box-shadow: none; 
            }
          }
        }
      }
    }

    @media (max-width: 640px) {
      .con_anc {
        min-height: 150px; 
      }
    }
  }
  .con_img{
    max-width: 680px;
    margin:40px auto 0;
    &.wide,
    &.w510,
    &.w340{
      figure{
        width: fit-content;
        margin: 0 auto;
        & > img,
        & > picture > img{
          width: auto;
          max-width: 100%;
        }
      }
    }
    &.wide{
      max-width: 100%;
    }
    &.w510{
      max-width: 510px;
    }
    &.w340{
      max-width: 340px;
    }
    @media screen and (max-width:640px) {
      &.w510,
      &.w340{
        max-width: 100%;
      }
    }
    figure{
      figcaption{
        margin-top: 16px;
        font-size: var(--rem-12);
        position: relative;
        line-height: 1.5;
        display: inline-block;
        img{
          position: absolute;
          top:25%;
          right: 5px;
          max-width: 16px;
        }
      }
    }
    &:has(a){
      max-width: 100%;
      figure{
        figcaption{
          padding-right: 30px;
          margin-top: 16px;
          font-size: var(--rem-16);
        }
      }
    }
  }
  .cul_2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    .con_img{
      flex-basis: 47%;
      margin: 40px 0 0;
      figure{
        figcaption{
          text-align: left;
          display: block;
          margin-top: 10px;
        }
      }
      @media (max-width: 640px) {
        flex-basis: 100%;
      }
    }
  }
  .cul_3{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    .con_img{
      flex-basis: 30%;
      margin: 40px 0 0;
      figure{
        figcaption{
          text-align: left;
          display: block;
          margin-top: 10px;
        }
      }
      @media (max-width: 640px) {
        flex-basis: 100%;
      }
    }
  }
  .cul_4{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
    @media (max-width: 640px) {
      flex-wrap: wrap;
      justify-content: space-between;
      gap: inherit;
    }
    .con_img{
      flex-basis: auto;
      
      min-width: 0;
      margin: 40px 0 0;
      figure{
        figcaption{
          text-align: left;
          display: block;
          margin-top: 10px;
        }
      }
      @media (min-width: 641px) {
        flex: 1 1 auto;
      }
      @media (max-width: 640px) {
        flex-basis: 48%;
      }
    }
  }
  .con_table_outer {
    width: 100%;
    overflow-x: auto;
    position: relative;
    margin-bottom: 20px;

    .con_table {
      width: 100%;
      border-collapse: collapse;
      font-size: var(--rem-14);
      table-layout: fixed;
      &.table_sc{
        min-width: 1000px;
        th.table_cat {
          position: sticky;
        }
        th {
          &:first-child {
              position: sticky;
          }
        }
      }
      &.table_sc2{
        min-width: 1000px;
      }
      thead{
        height: 36px;
        text-align: center;
        @media (max-width: 640px) {
          height: 53px;
        }
        th{
          text-align: center;
          line-height: 1;
          font-weight: normal;
        }
      }
      th {
          border: 1px solid #cccccc;
          padding: 5px 16px;
          
          text-align: left;
          position: relative;
          z-index: 1;

          &:first-child {
              left: 0;
              z-index: 3;
          }
      }
      
      td, th.table_cat {
          border-bottom: 1px solid #cccccc;
          padding: 11px;
          vertical-align: top;
          font-weight: normal;
          border: 1px solid #cccccc;
          vertical-align: middle;
          &:has(img){
            text-align: center;
          }
          > * {
            &:last-child{
              margin-bottom: 0;
            }
          }
          *:not(li,a){
            margin-bottom: 12px;
          }
      }

      th.table_cat {
          color: #000;
          text-align: left;
          left: 0;
          z-index: 2;
          font-size: var(--rem-14);

      }

      ul {
        margin: 0;
        padding-left: 20px;

        li {
            list-style-type: disc;

            &:last-child {
                margin-bottom: 0;
            }
        }
      }
    }
  }
}
@layer top {
  @media screen and (max-width: 640px) {
    .sus_rep_mv {
      order: 2;
    }
    .sus_main { 
      order: 3;
    }
    .sus_side_nav {
      order: 1;
    }
  }
  .sus_rep_mv{
    min-height: 478px;
    display: flex;
    text-align: center;
    position: relative;
    overflow: hidden;
    @media screen and (min-width: 641px) {
      min-width: 1190px;


    }
    img{
      /* width: auto; */
      height: 211px;
      max-width: none;
      position: absolute;
        top: 0;
        z-index: 0;
        left: 50%;
        transform: translateX(-50%);
      @media (min-width: 641px) {
        min-width: 1190px;
        width: auto;
        height: 478px;
        max-width: none;
        
      }
    }
      @media screen and (max-width: 640px) {
        max-height: 211px;
        min-height: 211px;
        width: auto;
      }
      .sus_rep_mv_outer{
        min-width: 1190px;
        margin: 0px auto;
        @media screen and (max-width: 640px) {
            min-height: 211px;
            /* min-width:auto; */
        }
        .sus_rep_mv_inner{
          display: flex;
          align-items: center;
          min-height: 478px;
          max-width: 1190px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
          @media screen and (max-width: 640px) {
            min-height: 211px;
            padding: 15px;
          }
          h1{
            font-size: 70px;
            font-family: var(--font-ja-regular);
            color: #fff;
            @media screen and (max-width: 640px) {
              font-size: var(--rem-30);
            }
          }
          .mv_btn{
            position: absolute;
            bottom: 5%;
            right: 1%;
            
            @media screen and (max-width: 640px) {
              display: none;
            }
            a{
              min-width: 240px;
              display: inline-flex;
              align-items: center;
              justify-content: space-between;
              color: #2C2C2C;
              text-decoration: none;
              background-color: #81A5C9;
              height: 44px;
              border-radius: 35px;
              padding: 0 15px 0 30px;
              transition: background-color 0.3s, color 0.3s;
              & .icon_arrow {
                display: block;
                position: relative;
                width: 26px;
                height: 26px;
                border-radius: 50%;
                flex-shrink: 0;
                transition-duration: 0.3s;
                background-color: #fff;
                &::before {
                  content: "";
                  position: absolute;
                  top: 12px;
                  right: calc(50% - 5px);
                  width: 12px;
                  height: 1.3px;
                  border-radius: 1px;
                  background-color: #626262;
                  transition: background-color 0.3s;
                }
                &::after {
                  content: "";
                  position: absolute;
                  right: 5px;
                  top: calc(25% - 1.5px);
                  width: 8px;
                  height: 8px;
                  border-right: 2px solid #626262;
                  border-bottom: 2px solid #626262;
                  border-bottom-right-radius: 1px;
                  transform: rotate(-40deg);
                  transform-origin: bottom right;
                  box-sizing: border-box;
                  transition: border-color 0.3s;
                }
              }
              &:hover, &:focus-visible {
                background-color: #2C2C2C;
                color: #fff;
                & .icon_arrow {
                  background-color: #81A5C9;
                  &::before {
                    background-color: #2C2C2C;
                  }
                  &::after {
                    border-right-color: #2C2C2C;
                    border-bottom-color: #2C2C2C;
                  }
                }
              }
            }
          }
        }
      }
  }
  .top_h2{
    text-align: center;
    font-size: var(--rem-42);
    line-height: 1.6;
    color: #000;
    font-family: var(--font-ja-regular);
    span{
      display: block;
      font-size: var(--rem-20);
    }
    @media screen and (max-width: 640px) {
      font-size: var(--rem-24);
      span{
        margin-top: 8px;
        font-size: var(--rem-13);
      }
    }
  }
  .top_h2 + *{
    margin-top: 40px;
    @media screen and (max-width: 640px) {
      margin-top: 35px;
    }
  }
  .tp_main {
    & .con_block {
      & + .con_block {
        margin-top: 80px;
      }
    }
    & .con_txt.mb_25 {
      @media screen and (max-width: 640px) {
        text-align: center;
      }
    }
  }

  @media screen and (min-width: 641px) {
    .m-carousel,
    .m-carousel-controls {
      width: 840px !important;
    }
    .m-carousel-controls > div,
    .m-carousel-items {
      width: 840px !important;
    }
    .m-carousel-item {
      width: 840px !important;
    }
  }

  .tp_topics {
    .m-carousel-items{
      overflow: clip !important;
    }
    .m-carousel-wrapper{
      align-items: center;
    }
    .m-carousel-controls{
      @media screen and (max-width: 640px) {
        padding-bottom: 0 !important;
      }
    }
    .m-carousel-item{
      flex-direction: row !important;
      align-items: center;
      gap: 40px;
      background-color: transparent;
      padding: 24px;
      box-sizing: border-box;
      @media screen and (max-width: 640px) {
        flex-direction: column !important;
        gap: 24px;
        text-align: center;
      }
      &:hover{
        text-decoration: none !important;
        img{
          opacity: 1 !important;
        }
      }
    }
    .tp_topics_ov_img{
      flex-shrink: 0;
      width: 220px !important;
      height: 220px !important;
      margin-bottom: 0 !important;
      border-radius: 50%;
      overflow: hidden;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      @media screen and (min-width: 641px) {
        width: 281px !important;
        height: 281px !important;
      }
      img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      &::after{
        display: none !important;
      }
    }
    .tp_topics_ov_detail{
      flex-direction: column !important;
      color: #000 !important;
      background: transparent !important;
      width: 100%;
    }
    .tp_topics_card{
      background-color: #fff;
      border-radius: 12px;
    }
    .tp_topics_card_img{
      order: -1;
      flex-shrink: 0;
      width: 220px !important;
      height: 220px !important;
      margin-bottom: 0 !important;
      border-radius: 50%;
      overflow: hidden;
      @media screen and (min-width: 641px) {
        width: 281px !important;
        height: 281px !important;
      }
      img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      &::after{
        display: none !important;
      }
    }
    .tp_topics_card_detail{
      flex-direction: column !important;
      color: #000 !important;
      background: transparent !important;
      width: 100%;
    }
  }
  .tp_topics_card_label{
    font-family: var(--font-ja-regular);
    font-size: var(--rem-30);
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #000;
  }
  .tp_topics_card_lead{
    margin-top: 8px;
    font-family: var(--font-ja-bold);
    font-size: var(--rem-16);
    line-height: 1.4;
    color: #4B4B4B;
  }

  .tp_topics_card_panel{
    margin-top: 24px;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    &.tp_topics_card_panel--people{ background-color: #FFD0CE; }
    &.tp_topics_card_panel--society{ background-color: #F7EC94; }
    &.tp_topics_card_panel--earth{ background-color: #7FEABA; }
  }
  .tp_topics_card_title{
    font-family: var(--font-ja-bold);
    font-size: var(--rem-24);
    color: #000;
    text-align: left;
    @media screen and (max-width: 640px) {
      text-align: center;
    }
  }
  .tp_topics_card_text{
    margin-top: 12px;
    font-size: var(--rem-16);
    line-height: 1.8;
    color: #000;
    text-align: left;
    @media screen and (max-width: 640px) {
      text-align: center;
    }
  }
  .tp_topics_card_btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 258px;
    height: 44px;
    padding: 0 15px;
    border-radius: 35px;
    border: 1px solid transparent;
    margin-top: 16px;
    background-color: rgba(65, 65, 65, 0.8);
    color: #fff;
    font-size: var(--rem-15);
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    .icon_arrow{
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: #fff;
      transition: background-color 0.3s;
      &::before{
        content: "";
        position: absolute;
        top: 12px;
        right: calc(50% - 5px);
        width: 12px;
        height: 1.3px;
        border-radius: 1px;
        background-color: #414141;
        transition: background-color 0.3s;
      }
      &::after{
        content: "";
        position: absolute;
        right: 5px;
        top: calc(25% - 1.5px);
        width: 8px;
        height: 8px;
        border-right: 2px solid #414141;
        border-bottom: 2px solid #414141;
        border-bottom-right-radius: 1px;
        transform: rotate(-40deg);
        transform-origin: bottom right;
        box-sizing: border-box;
        transition: border-color 0.3s;
      }
    }
    &:hover, &:focus-visible{
      background-color: #fff;
      border-color: #414141;
      color: #414141;
      .icon_arrow{
        background-color: #414141;
        &::before{
          background-color: #fff;
        }
        &::after{
          border-right-color: #fff;
          border-bottom-color: #fff;
        }
      }
    }
  }
  .tp_topics_ov_list{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .tp_topics_ov_head{
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    @media screen and (max-width: 640px) {
      justify-content: center;
    }
  }
  .tp_topics_ov_label{
    font-family: var(--font-ja-regular);
    font-size: var(--rem-30);
    color: #000;
  }
  .tp_topics_ov_tag{
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    font-family: var(--font-ja-bold);
    font-size: var(--rem-23);
    color: #2C2C2C;
    &.tp_topics_ov_tag--people{ background-color: #F4867E; }
    &.tp_topics_ov_tag--society{ background-color: #F5E14D; }
    &.tp_topics_ov_tag--earth{ background-color: #6FE0A6; }
  }
  .tp_topics_ov_text{
    margin-top: 8px;
    font-size: var(--rem-16);
    line-height: 1.7;
    color: #000;
    text-align: left;
    @media screen and (max-width: 640px) {
      text-align: center;
    }
  }
  .tp_topics_cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 258px;
    height: 44px;
    padding: 0 15px;
    border-radius: 35px;
    border: 1px solid transparent;
    background-color: rgba(65, 65, 65, 0.8);
    color: #fff;
    text-decoration: none;
    font-size: var(--rem-15);
    margin-top: 0;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    .icon_arrow{
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: #fff;
      transition: background-color 0.3s;
      &::before{
        content: "";
        position: absolute;
        top: 12px;
        right: calc(50% - 5px);
        width: 12px;
        height: 1.3px;
        border-radius: 1px;
        background-color: #414141;
        transition: background-color 0.3s;
      }
      &::after{
        content: "";
        position: absolute;
        right: 5px;
        top: calc(25% - 1.5px);
        width: 8px;
        height: 8px;
        border-right: 2px solid #414141;
        border-bottom: 2px solid #414141;
        border-bottom-right-radius: 1px;
        transform: rotate(-40deg);
        transform-origin: bottom right;
        box-sizing: border-box;
        transition: border-color 0.3s;
      }
    }
    &:hover, &:focus-visible{
      background-color: #fff;
      border-color: #414141;
      color: #414141;
      .icon_arrow{
        background-color: #414141;
        &::before{
          background-color: #fff;
        }
        &::after{
          border-right-color: #fff;
          border-bottom-color: #fff;
        }
      }
    }
  }


  .tp_photo{
    position: relative;
    img{
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
  }
  .tp_photo_btn{
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 258px;
    height: 44px;
    padding: 0 15px;
    border-radius: 35px;
    border: 1px solid transparent;
    background-color: rgba(65, 65, 65, 0.8);
    color: #fff;
    text-decoration: none;
    font-size: var(--rem-15);
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    @media screen and (max-width: 640px) {
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
    }
    .icon_arrow{
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: #fff;
      transition: background-color 0.3s;
      &::before{
        content: "";
        position: absolute;
        top: 12px;
        right: calc(50% - 5px);
        width: 12px;
        height: 1.3px;
        border-radius: 1px;
        background-color: #414141;
        transition: background-color 0.3s;
      }
      &::after{
        content: "";
        position: absolute;
        right: 5px;
        top: calc(25% - 1.5px);
        width: 8px;
        height: 8px;
        border-right: 2px solid #414141;
        border-bottom: 2px solid #414141;
        border-bottom-right-radius: 1px;
        transform: rotate(-40deg);
        transform-origin: bottom right;
        box-sizing: border-box;
        transition: border-color 0.3s;
      }
    }
    &:hover, &:focus-visible{
      background-color: #fff;
      border-color: #414141;
      color: #414141;
      .icon_arrow{
        background-color: #414141;
        &::before{
          background-color: #fff;
        }
        &::after{
          border-right-color: #fff;
          border-bottom-color: #fff;
        }
      }
    }
  }

  .tp_msg{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 360px;
    @media screen and (max-width: 640px) {
      min-height: 460px;
    }
  }
  .tp_msg_bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .tp_msg_body{
    position: relative;
    z-index: 1;
    max-width: 55%;
    box-sizing: border-box;
    padding: 32px;
    @media screen and (max-width: 640px) {
      max-width: 100%;
      width: 100%;
      padding: 24px;
    }
  }
  .tp_msg_name{
    font-family: var(--font-ja-bold);
    font-weight: bold;
    font-size: var(--fz-large);
    color: #000;
  }
  .tp_msg_role{
    margin-top: 8px;
    font-size: var(--fz-middle_side);
    line-height: 1.7;
    color: #000;
  }
  .tp_msg_btns{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    @media screen and (max-width: 640px) {
      align-items: center;
    }
  }
  .tp_msg_btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 258px;
    height: 44px;
    padding: 0 15px;
    border-radius: 35px;
    border: 1px solid transparent;
    background-color: rgba(65, 65, 65, 0.8);
    color: #fff;
    text-decoration: none;
    font-size: var(--rem-15);
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    .icon_arrow{
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      background-color: #fff;
      transition: background-color 0.3s;
      &::before{
        content: "";
        position: absolute;
        top: 12px;
        right: calc(50% - 5px);
        width: 12px;
        height: 1.3px;
        border-radius: 1px;
        background-color: #414141;
        transition: background-color 0.3s;
      }
      &::after{
        content: "";
        position: absolute;
        right: 5px;
        top: calc(25% - 1.5px);
        width: 8px;
        height: 8px;
        border-right: 2px solid #414141;
        border-bottom: 2px solid #414141;
        border-bottom-right-radius: 1px;
        transform: rotate(-40deg);
        transform-origin: bottom right;
        box-sizing: border-box;
        transition: border-color 0.3s;
      }
    }
    &:hover, &:focus-visible{
      background-color: #fff;
      border-color: #414141;
      color: #414141;
      .icon_arrow{
        background-color: #414141;
        &::before{
          background-color: #fff;
        }
        &::after{
          border-right-color: #fff;
          border-bottom-color: #fff;
        }
      }
    }
  }

  .tp_effort{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .tp_effort_row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    @media screen and (max-width: 640px) {
      grid-template-columns: 1fr;
    }
  }
  .tp_effort_item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding: 35px 33px 35px 50px;
    border-radius: 12px;
    box-sizing: border-box;
    &.tp_effort_item--people{ background-color: #FFD0CE; }
    &.tp_effort_item--society{ background-color: #FFF7BA; }
    @media screen and (max-width: 640px) {
      padding: 24px 15px 21px;
    }
    > .tp_effort_btn{
      margin-top: auto;
    }
  }
  .tp_effort_label{
    font-family: var(--font-ja-regular);
    font-size: var(--rem-16);
    color: #000;
    margin-bottom: 20px;
    @media screen and (max-width: 640px) {
      font-size: var(--rem-14);
    }
  }
  .tp_effort_item > .tp_effort_text{
    margin-bottom: 30px;
  }
  .tp_effort_wide{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "text img"
      "btn  img";
    align-items: center;
    column-gap: 24px;
    padding: 35px 33px 35px 50px;
    border-radius: 12px;
    box-sizing: border-box;
    &.tp_effort_wide--earth{ background-color: #DEFFEF; }
    &.tp_effort_wide--ethics{ background-color: #E5EBF0; }
    > .tp_effort_btn{
      grid-area: btn;
    }
    @media screen and (max-width: 640px) {
      grid-template-areas:
        "text img"
        "btn  btn";
      padding: 24px 15px 21px;
      column-gap: 12px;
    }
  }
  .tp_effort_wide_text{
    grid-area: text;
    min-width: 0;
    .tp_effort_text{
      margin-bottom: 30px;
      @media screen and (max-width: 640px) {
        margin-bottom: 15px;
      }
    }
  }
  .tp_effort_wide_img{
    grid-area: img;
    flex-shrink: 0;
    width: 244px;
    height: auto;
    justify-self: center;
    @media screen and (max-width: 640px) {
      width: 98px;
      height: 98px;
    }
  }
  .tp_effort_text{
    font-family: var(--font-ja-regular);
    font-size: var(--rem-36);
    line-height: 1.3;
    color: #000;
    @media screen and (max-width: 640px) {
      font-size: var(--rem-18);
    }
  }
  .tp_effort_note{
    margin-top: 12px;
    margin-bottom: 5px;
    font-size: var(--rem-14);
    line-height: 1.6;
    color: #000;
    @media screen and (max-width: 640px) {
      font-size: var(--rem-12);
      margin-bottom: 0;
    }
  }
  .tp_effort_btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 258px;
    height: 44px;
    margin-top: 20px;
    padding: 0 15px;
    border-radius: 35px;
    border: 1px solid transparent;
    background-color: rgba(65, 65, 65, 0.8);
    color: #fff;
    font-size: var(--rem-15);
    text-decoration: none;
    box-sizing: border-box;
    @media screen and (max-width: 640px) {
      align-self: center;
    }
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    .icon_arrow{
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      background-color: #fff;
      transition: background-color 0.3s;
      &::before{
        content: "";
        position: absolute;
        top: 12px;
        right: calc(50% - 5px);
        width: 12px;
        height: 1.3px;
        border-radius: 1px;
        background-color: #414141;
        transition: background-color 0.3s;
      }
      &::after{
        content: "";
        position: absolute;
        right: 5px;
        top: calc(25% - 1.5px);
        width: 8px;
        height: 8px;
        border-right: 2px solid #414141;
        border-bottom: 2px solid #414141;
        border-bottom-right-radius: 1px;
        transform: rotate(-40deg);
        transform-origin: bottom right;
        box-sizing: border-box;
        transition: border-color 0.3s;
      }
    }
    &:hover, &:focus-visible{
      background-color: #fff;
      border-color: #414141;
      color: #414141;
      .icon_arrow{
        background-color: #414141;
        &::before{
          background-color: #fff;
        }
        &::after{
          border-right-color: #fff;
          border-bottom-color: #fff;
        }
      }
    }
  }

  .tp_index{
    line-height: 1.2;
  }
  .tp_index_row{
    display: flex;
    flex-direction: column;
    gap: 32px;
    & + .tp_index_row{
      margin-top: 32px;
    }
    @media screen and (min-width: 641px) {
      display: grid;
      grid-template-columns: repeat(4, 200px);
      justify-content: space-between;
      gap: 0;
      align-items: flex-start;
    }
  }
  .tp_index_col{
    width: 100%;
    @media screen and (min-width: 641px) {
      width: 200px;
      min-width: 0;
    }
  }
  .tp_index_tag{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 47px;
    box-sizing: border-box;
    padding: 0 9px;
    border-radius: 16px;
    text-align: center;
    font-family: var(--font-ja-bold);
    font-size: var(--rem-13);
    line-height: 1.2;
    color: #000000;
    background-color: #81A5C9;
    &.tp_index_tag--other{ background-color: #81A5C9; }
    &.tp_index_tag--people{ background-color: #FF7D7D; }
    &.tp_index_tag--society{ background-color: #FBE754; }
    &.tp_index_tag--earth{ background-color: #4FD398; }
    &.tp_index_tag--grey{ background-color: #B2B2B2; }
  }
  .tp_index_li{
    margin-top: 23px;
    li{
      margin-top: 20px;
      line-height: 1.3;
      font-size: var(--rem-14);
      color: #000;
      &:first-child{
        margin-top: 0;
      }
    }
    a{
      display: block;
      font-size: var(--rem-14);
      color: #000;
    }
  }
  .tp_index_li_sec{
    margin-top: 10px;
    padding-left: 1.5em;
    font-size: var(--rem-12);
    li{
      margin-bottom: 15px;
      list-style: disc;
      color: #000000;
      &:last-child{
        margin-bottom: 0;
      }
    }
    a{
      display: inline;
      line-height: 1;
    }
  }
}
