  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --blue: #4DA1C3;
    --blue-dark: #2B7FBF;
    --orange: #E39031;
    --green: #8FC13A;
    --pink: #EC86A2;
    --gray-light: #F5F5F5;
    --gray-mid: #E5E5E5;
    --gray-text: #6C6C6C;
    --text: #212121;
    --white: #fff;
  }

  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  img {
    display: block;
    max-width: 100%;
  }

  /* ============ MV ============ */

  .mv {
    /* height: 18vw; */
    background: url(../img/bg_mv.jpg) no-repeat center;
    background-size: auto 100%;
  }

  .mv .mv_inner {
    position: relative;
    z-index: 500;

    height: 100%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .mv img {
    vertical-align: middle;
  }

  /* ============ MAIN LAYOUT ============ */
  .main-wrapper {
    max-width: 1135px;
    margin: 75px auto 54px auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  @media (max-width: 768px) {
    .main-wrapper {
      margin: 45px auto 12px auto;
    }
  }

  .main-content {
    width: calc(93% - 280px);
  }

  @media screen and (max-width: 768px) {
    .main-content {
      width: 100%;
    }
  }

  /* ============ NEWS ============ */
  .news-section {
    margin: 0 0 7.7rem 0;
  }

  @media (max-width: 768px) {
    .news-section {
      margin: 0 0 4.4rem 0;
    }
  }

  .news-list {
    list-style: none;
  }


  @media (max-width: 768px) {
    .news-list {
      margin: 0 0 0.8rem 0;
    }
  }

  .news-list li {
    display: flex;
    column-gap: 16px;
    padding: 10px 0 13px 0;
    border-bottom: 1px solid var(--gray-mid);
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  @media (max-width: 768px) {
    .news-list li {
      padding: 12px 0 9px 0;
    }
  }

  .news-list li:last-child {
    border-bottom: 0px;
  }

  .news-list li .date {
    color: var(--gray-text);
    white-space: nowrap;
    display: block;
    width: 100%;
  }

  @media (max-width: 768px) {
    .news-list li span {
      font-size: 12px;
      margin: 0 0 4px 0;
    }
  }

  .news-list li a {
    font-size: 1.5rem;
  }

  .news-list li a:hover {
    color: var(--blue);
    transition: all 300ms 0s ease;
  }

  .btn-more {
    display: block;
    width: 330px;
    margin: 5.6px auto 0;
    padding: 13.2px 0;
    text-align: center;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 30px;
    font-size: 14px;
    position: relative;
    max-width: 90%;
    font-weight: bold;
  }

  .btn-more span {
    font-size: 14px;
  }

  .btn-more:hover {
    background: var(--blue);
    color: var(--white);
    transition: all 300ms 0s ease;
  }

  .btn-more .btn-arrow {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%);
  }

  /* ============ INFORMATION ============ */
  .info-section {}

  .info-block {
    margin: 0 0 1.4rem 0;
    padding: 0 0 1.3rem 0;
    border-bottom: 1px solid #E5E5E5;
    box-sizing: border-box;
  }

  .info-block:last-child {
    border-bottom: 0px solid #E5E5E5;
  }


  .info-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .info-block h3 span {
    font-size: 18px;
  }

  .info-block h3 img {
    flex-shrink: 0;
  }

  .info-block-content {}

  .badge-am {
    background: #8FC13A;
    color: var(--white);
    padding: 0px 4px;
    border-radius: 4px;
    margin: 0 0.9rem 0 0;
    font-size: 12px;
  }

  .badge-pm {
    background: #E39031;
    color: var(--white);
    padding: 0px 4px;
    border-radius: 4px;
    margin: 0 0.9rem 0 0;
    font-size: 12px;
  }

  .info-text {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin: 0 1.5rem 0 0;
    letter-spacing: 1px;
  }

  @media (max-width: 768px) {
    .info-text {
      margin: 0 0 0 0;
    }
  }

  .info-block p {
    font-size: 14px;
    line-height: 1.6;
  }

  .info-block-2 p {
    font-size: 14px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .info-block-2 p {
      line-height: 1.3;
    }
  }



  .info-block p .note {
    font-size: 12px;
    color: var(--gray-text);
  }


  /* ============ SIDEBAR ============ */
  /* ============ SIDE BANNER ============ */
  .side {
    width: 280px;
    flex-shrink: 0;
  }

  .side_pc {
    display: block;
  }

  .side_sp {
    display: none;
    margin: 0 0 47px 0;
  }


  @media screen and (max-width: 768px) {
    .side {
      width: 100%;
      padding: 0 16px;
    }

    .side_pc {
      display: none;
    }

    .side_sp {
      display: block;
    }
  }

  .side_bnr_area ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7.6px;
    padding: 5px 0 0 0;
  }

  .side_bnr_area li {
    width: 100%;
  }

  .side_bnr_area li a,
  .side_bnr_area li img {
    display: block;
    width: 100%;
  }

  .side_bnr_area li img {
    height: 89px;
    border-radius: 4px;
  }

  @media screen and (max-width: 768px) {
    .side_bnr_area li img {
      width: 100%;
      height: auto;
      max-width: 400px;
      margin: auto;
    }
  }

  .side_bnr_area li a {
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.2s;
  }

  .side_bnr_area li a:hover {
    opacity: 0.8;
    transition: all 300ms 0s ease;
  }

  /* ============ LOWER SECTIONS ============ */
  .lower-sections {
    max-width: 1300px;
    margin: 0 auto 37px auto;
  }


  @media (max-width: 768px) {
    .lower-sections {
      margin: 0 auto 48px auto;
      padding: 0px 0 52px 0;
      border: 1px solid #E5E5E5;
    }
  }

  .lower-inner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  @media (max-width: 768px) {
    .lower-inner {
      display: block;
      grid-template-columns: none;
    }
  }

  .lower-block {
    background: var(--white);
    border-radius: 6px;
    padding: 38px 16px;
  }

  .lower-block .block-title {
    text-align: center;
    margin-bottom: 9px;
  }

  .lower-block .block-title .en {
    font-family: "Montserrat", sans-serif;
    display: block;
    font-size: 14px;
    color: #CCCCCC;
    letter-spacing: 0.1em;
  }

  .lower-block .block-title .ja {
    display: block;
    font-size: 23px;
    font-weight: bold;
    color: var(--blue);
  }

  .lower-block p {
    font-size: 13px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 14px;
  }

  /* icon grid */
  .icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 21px 4px;
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
    background: var(--white);
  }

  .icon-item:hover {
    background: var(--gray-light);
    transition: all 300ms 0s ease;
  }

  .icon-item span {
    font-size: 13px;
    font-weight: bold;
  }

  .icon-item .icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .lower-block--medical {
    background: #F0FAFF;
  }

  /* about us block has green bg */
  .lower-block--about {
    background: #ECF6EA;
  }

  .lower-block--about .block-title .ja {
    color: #8FC13A;
  }

  /* characteristic block has pink bg */
  .lower-block--char {
    background: #FFF7FB;
  }

  .lower-block--char .block-title .ja {
    color: var(--pink);
  }

  .lower-block--char .icon-item .icon-img {}