@charset "UTF-8";
.mainimagebox {
  margin: 0px auto 30px;
  max-width: 1440px;
  padding-top: 105px;
  .inner{
    padding: 0 clamp(40px, 5.5556vw, 80px);
  }

  @media screen and (min-width: 1441px) {
    max-width: initial;
    .inner{
      max-width: initial;
    }
  }

  @media screen and (max-width: 768px) {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    .inner{
      padding: 0 0 0 5vw;
    }
  }
}

.main_image {
  display: flex;
  justify-content: space-between;
  align-items: center;

  .main_text {
    box-sizing: border-box;
  }

  .text {
    font-size: clamp(34px, 3.3333vw, 48px);
    letter-spacing: 0.2em;
    font-family: serif;
    line-height: 1.5;
  }

  .sub_text {
    font-size: 13px;
    font-weight: bold;
    font-family: serif;
    padding-left: 2px;
  }

  .mv {
    max-width: clamp(600px, 52.2917vw, 753px);

    & img {
      width: 100%;
      display: block;
    }
  }

  /* 1441px以上：拡大 */
  @media screen and (min-width: 1441px) {
    min-width: initial;

    .text {
      font-size: 3.3vw;
    }

    .sub_text {
      font-size: 0.9vw;
    }

    .mv {
      max-width: 52vw;
    }
  }

  /* 768px以下：スマホ */
  @media screen and (max-width: 768px) {
    min-width: initial;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 16vw;


    .main_text {
      padding: 8vw 0 4vw;
    }

    .text {
      font-size: 7vw;
    }

    .sub_text {
      font-size: 3.5vw;
    }

    .mv {
      max-width: 100%;
      width: 100%;

      & img {
        width: 100%;
      }
    }
  }
}

/* lead_sec */
.lead_sec {

  .sec_text {
    margin-bottom: 165px;
  }

  .about_flex_wrapper {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about_btn {
    z-index: 1;
  }
  .about_btn::before {
      z-index: 1;
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
      border-radius: 50%;
      background-color: #fff;
      width:  32px;
      height: 32px;
      background: url(/kagoshima/images/clinic/link_btn.webp) center/contain no-repeat;
  }
  .about_btn01::after{
    z-index: -1;
    width: 114px;
    height: 107px;
    left: -20px;
    background: url(/kagoshima/images/clinic/clinic_img.webp) center/contain no-repeat;
  }
  .about_btn02::after{
    z-index: -1;
    width: 144px;
    height: 104px;
    bottom: 0;
    left: -20px;
    background: url(/kagoshima/images/clinic/facility_img.webp) center/contain no-repeat;
  }

  @media screen and (max-width: 768px) {

    .sec_text {
      margin-bottom: 13.8vw;
    }

    .about_flex_wrapper {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      row-gap: 8vw;
    }
    .about_btn {
      margin-left: 3vw;
    }
    .about_btn::before {
        right: 3.26vw;
        width:  5.54vw;
        height: 5.54vw;
    }
    .about_btn01::after{
      width: 24.42vw;
      height: 20vw;
      left: -3.67vw;
      bottom: 0vw;
    }
    .about_btn02::after{
      width: 27.07vw;
      height: 20vw;
      left: -2.17vw;
      bottom: 0vw;
    }
  }

}

/* sec01 */
.sec01 {
  /* overflow: hidden; */
  margin-bottom: 125px;

  .inner {
    padding: 0;
    max-width: initial;
  }

  .clinic_box {
    .flexbox {
      width: 1200px;
      max-width: 100%;
      margin: 0 auto 80px;
      column-gap: 0;
      align-items: flex-start;

      .imagebox{
        width: 100%;
      }
      .textbox {
        box-sizing: border-box;
        width: 100%;

        .sec_title {
          margin-bottom: 0;
          letter-spacing: .05em;
          font-size: 18px;
          font-weight: Bold;
        }
        .sec_subtitle {
          display: flex;
          align-items: baseline;

          img {
            width: 212px;
            height: 34px;
            object-fit: contain;
          }
          p {
            padding-left: 1.3em;
            letter-spacing: .1em;
            font-family: serif;
            font-size: 20px;
            font-weight: Bold;
            text-wrap: nowrap;
          }
        }

        .head_t_box {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          margin-bottom: 20px;
        }
        .sec01_icon {
            margin-right: 10px;
            img {
              width: 100%;
              object-fit: contain;
            }
        }
        .box_title {
          letter-spacing: .1em;
          font-family: Serif;
          font-size: 30px;
          font-weight: Bold;
        }
        .box_text {
          text-align: justify;
        }
      }
    }
    .flexbox01 {
      width: 1440px;
      margin: 0 auto 20px;
      align-items: flex-end;
      justify-content: flex-end;

      position: relative;
      &::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 140px;
        left: 51%;
        transform: translateX(-50%);
        border-radius: 90px 0 0 0;
        background-color: rgba(255, 116, 139, 0.1);
        width:  clamp(951px, 74.305vw, 1070px);
        height: 1820px;
      }
      .imagebox {
        min-width: 50%;
        text-align: right;
      }
      .textbox {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        .box_header {
          padding-bottom: 110px;
          margin-right: 30px;
        }
        .box {
          margin-right: 70px;
        }
      }
    }
    .flexbox01_text {
      box-sizing: border-box;
      width: 1200px;
      max-width: 100%;
      margin: 0 auto 80px;
      text-align: justify;
    }
    .corner_box {
      width: 1200px;
      max-width: 100%;
      margin: 0 auto 100px;
      display: flex;
      align-items: flex-end;
      box-sizing: border-box;

      .imagebox{
        width: 360px;
        min-width: 360px;
      }
      .textbox {
        margin-right: 60px;

        .head_t_box {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding-left: 5px;
          margin-bottom: 20px;
        }
        .sec01_icon {
            margin-right: 10px;
        }
        .box_title {
          letter-spacing: .1em;
          font-family: Serif;
          font-size: 30px;
          font-weight: Bold;
          text-align: right;
        }
        .box_text {
          text-align: justify;
        }
      }
    }
    .flexbox02 {
      align-items: flex-start;
      .imagebox {
        box-sizing: border-box;
        img {
          width:  540px;
          height: 360px;
          object-fit: contain;
        }
      }
    }
    .flexbox03 {
      margin: 0 auto 280px;
      align-items: flex-end;
      .imagebox {
        margin-left: 60px;
        text-align: right;
        img {
          width:  540px;
          height: 360px;
          object-fit: contain;
        }
        position: relative;
        .circle {
          position: absolute;
          top:  218px;
          left: 329px;
          border-radius: 50%;
          background-color: rgba(77, 186, 205, 1);
          width:  194px;
          height: 194px;

          display: flex;
          justify-content: center;
          align-items: center;
          p {
            font-size: 18px;
            font-weight: Bold;
            letter-spacing: .05em;
            text-align: center;
            color: #fff;
          }
        }
      }
    }
  }

  .kids_bg{
    background-color: rgba(247, 176, 139, 1);
    position: relative;
    margin-top: calc(124.5 / 1440 * 100% - 6.5px);
    &::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    margin-bottom: -6.5px;

    width: max(1280px, 100%);   /* ← 上限を外す。親(.kids_bg)幅に追従 */
    aspect-ratio: 1440 / 104.5;
    background: url(/kagoshima/images/clinic/kids_box_top.webp) center/cover no-repeat;
  }
  }
  .kids_box {
    max-width: 1440px;
    margin: 0 auto 100px;
    padding: 0px 0 100px;

    position: relative;
    

    .kids_kazari01 {
      position: absolute;
      top:  0;
      left: clamp(273px, 21.388vw, 308px);
      width:  124px;
      height: 135px;
    }
    .kids_kazari02 {
      position: absolute;
      top:  -14px;
      left: clamp(864px, 67.5vw, 972px);
      width:  288px;
      height: 155px;
    }

    .subtitle {
      margin-bottom: 18px;
      letter-spacing: .05em;
      font-size: 18px;
      font-weight: Bold;
      text-align: center;
    }
    .title {
      margin-bottom: 95px;
      letter-spacing: .05em;
      font-family: serif;
      font-size: 30px;
      font-weight: Bold;
      text-align: center;
    }
    .title span {
      font-family: serif;
      font-size: 30px;
      font-weight: Bold;
      color: rgba(205, 98, 77, 1);
    }

    .flexbox {
      margin-bottom: 100px;
      column-gap: 0;
      align-items: center;

      .imagebox{
        width: 100%;
      }
      .textbox{
        box-sizing: border-box;
        width: 100%;
        padding: 0 62px 0 60px;

        .box_text {
          text-align: justify;
        }
      }
    }
    .flex01 {
      margin: 0 auto 120px;
      max-width: 1440px;
      .imagebox{
        position: relative;
        .circle {
          position: absolute;
          top:  184px;
          left: 373px;
          width:  274px;
          height: 253px;

        }
      }
    }

    .yellow_box {
      width: 1200px;
      max-width: 100%;
      margin: 0 auto;
      padding: 95px 0 125px;
      background-color: #fff;
      border-radius: 50px;
      position: relative;
    }
    .kids_kazari03 {
      position: absolute;
      top:  350px;
      left:  39px;
      width:  116px;
      height: 142px;
    }
    .kids_kazari04 {
      position: absolute;
      top:    34px;
      left:  968px;
      width:  182px;
      height: 118px;
    }
    .kids_kazari05 {
      position: absolute;
      bottom: -60px;
      left:   968px;
      width:  200px;
      height: 172px;
    }

    .gridbox {
      width: 1112px;
      max-width: 100%;
      margin: 0 auto 85px;

      display: grid;
      row-gap: 0px;
      column-gap: 95px;
      grid-template-columns: repeat(2, 508px);
      .item {
        .item_image {
          width:  508px;
          height: 376px;
          object-fit: contain;
          margin: 0 auto 20px;
        }
        .item_title {
          margin-bottom: 20px;
          letter-spacing: .1em;
          font-size: 24px;
          font-weight: bold;
          text-align: center;
        }
        .item_text {
          text-align: justify;
        }
      }
    }

    .about_wrapper{
      margin-bottom: 110px;
      display: flex;
      justify-content: center;
    }
    .about_btn {
      z-index: 1;
    }
    .about_btn::after{
      z-index: -1;
      width:  116px;
      height: 109px;
      left:   -43px;
      bottom: -21px;
      background: url(/kagoshima/images/common/kids_img.webp) center/contain no-repeat;
    }

    .kids_info_box {

      .kids_info_title {
        width: fit-content;
        padding: 0 1.2em;
        margin: 0 auto 48px;

        letter-spacing: .1em;
        font-size: 26px;
        font-weight: Bold;

        padding-bottom: 10px;
        border-bottom: 5px solid rgba(247, 176, 139, 1);
      }
      .dline {
        width: 973px;
        max-width: 90%;
        margin: 0 auto;
        border-bottom: 2px dotted rgba(247, 176, 139, 1);

        display: flex;
        justify-content: center;
        align-items: center;
      }
      .term {
        width: 35%;
        line-height: 2;
        padding: 0 110px;
        box-sizing: border-box;
        text-align: left;

        display: flex;
        justify-content: flex-start;
        align-items: center;
      }
      .data {
        width: 65%;
        line-height: 2;
        padding: 30px 90px 30px 0;
        box-sizing: border-box;

        display: flex;
        justify-content: flex-start;
        align-items: center;
      }
    }
    .dline:last-of-type {
      .data {
        letter-spacing: .2em;
        font-size: 24px;
      }
    }
  }

  .traffic_box {
    width: 830px;
    max-width: 100%;
    margin: 0 auto;

    display: grid;
    row-gap: 0px;
    column-gap: 110px;
    grid-template-columns: repeat(2, 360px);
    .item {
      .item_image {
        width:  360px;
        height: 240px;
        object-fit: contain;
        margin: 0 auto 20px;
      }
      .title_box {
        padding-bottom: 10px;
        border-bottom: 2px dotted rgba(237, 121, 128, 1);
        margin-bottom: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;

        .item_title_img {
          margin-right: 15px;
        }
        .item_title {
          letter-spacing: .1em;
          font-size: 20px;
          font-weight: bold;
          text-align: center;
        }
      }
      .item_text {
        text-align: justify;
      }
    }
  }

  @media screen and (max-width: 768px) {
    margin-bottom: 13.8vw;
    padding-bottom: 13.8vw;

    .clinic_box {
      .flexbox {
        margin: 0 auto 13.8vw;
        flex-direction: column;
        column-gap: 0;
        row-gap: 4.2vw;

        .imagebox{
          width: 100%;
        }
        .textbox{
          box-sizing: border-box;
          width: 100%;
          padding: 0 5.5vw;

          .sec_title {
            margin-bottom: 2.4vw;
            font-size: 4.2vw;
          }
          .sec_subtitle {
            margin-bottom: 2.8vw;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;

            img {
              width: 56.53vw;
              height: 9.06vw;
              object-fit: contain;
              min-width: initial;
            }
            p {
              padding-left: 0;
              font-size: 5vw;
            }
          }

          .head_t_box {
            margin-bottom: 4.2vw;
          }
          .sec01_icon {
              display: none;
              margin-right: initial;
          }

          .box_title {
            margin-bottom: 4.2vw;
            font-size: 5vw;
          }
          .box_image {
            padding-left: initial;
            margin-bottom: 4.2vw;
          }
          .box_text {
            font-size: 4vw;
          }
        }
      }
      .flexbox01 {
        margin: 0 auto 4.2vw;
        align-items: center;
        row-gap: 0;
        position: relative;
        &::before {
          content: "";
          position: absolute;
          z-index: -1;
          top: 31.6vw;
          left: 50%;
          transform: translateX(-50%);
          border-radius: 0;
          width:  100vw;
          height: 700vw;
        }

        .imagebox {
          width: 89%;
          min-width: 50%;
          margin-bottom: 0;
          .box_image {
            margin-top: 4.2vw;
            text-align: center;
          }
        }
        .textbox {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          padding-right: initial;
          padding-left: initial;
          .box_title {
            margin-bottom: 0;
          }
          .box_header {
            padding-left: 5.5vw;
            padding-bottom: 2.4vw;
            margin-right: initial;
          }
          .box {
            margin-right: initial;
          }
        }
      }
      .flexbox01_sub {
        margin-bottom: 13.8vw;
        .box_title {
          width: 89%;
          margin: 0 auto;
          padding-left: 0;
          margin-bottom: 4.2vw;
          font-family: serif;
          font-size: 5vw;
          font-weight: bold;
        }
        .flexbox01_text {
          margin-bottom: 8vw;
          font-size: 4vw;
          padding: 0 5.5vw;
        }
        .box_image {
          width: 90%;
          margin: 0 auto;
          img {
            width: 100%;
          }
        }
      }
      .flexbox01_text {
        margin-bottom: 8vw;
        font-size: 4vw;
        padding: 0 5.5vw;
      }
      .corner_box {
        margin: 0 auto 13.8vw;
        display: block;
        align-items: center;

        .imagebox{
          width: 100%;
          margin: 0 auto 4.2vw;
          min-width: initial;
        }
        .textbox {
          margin-right: initial;
          padding: 0 5.5vw;

          .head_t_box {
            display: block;
            padding-left: initial;
            margin-bottom: 4.2vw;
          }
          .sec01_icon {
            display: none;
            margin-right: 0;
          }
          .box_title {
            margin: 0 auto 2.4vw;
            font-size: 5vw;
            text-align: left;
            margin-bottom: 0;
          }
          .box_text {
            font-size: 4vw;
          }
        }
      }
      .flexbox02 {
        .imagebox {
          img {
            width:  100%;
            height: auto;
            margin: 0 auto;
          }
        }
        .textbox {
          .box_title {
            margin-bottom: 0;
          }
        }
      }
      .flexbox03 {
        margin: 0 auto 27.6vw;
        align-items: center;
        .imagebox {
          margin-left: initial;
          text-align: initial;
          img {
            width:  100%;
            height: auto;
            margin: 0 auto;
          }
          position: relative;
          .circle {
            position: absolute;
            top:  33.06vw;
            left: 54.86vw;
            width:  36.21vw;
            height: 36.21vw;
            p {
              line-height: 1.5;
              font-size: 4vw;
            }
          }
        }
        .textbox {
          .box_title {
            margin-bottom: 0;
          }
          .imagebox {
            margin-bottom: 13.8vw;
          }
        }
      }
    }

    .kids_bg{
      &::before{
        display: none;
      }
    }
    .kids_box {
      max-width: 100%;
      margin-bottom: 13.8vw;
      padding: 6.7vw 0 16.8vw;

      position: relative;
      &::before {
        content: "";
        position: absolute;
        top: -10.6vw;
        left:   50%;
        transform: translateX(-50%);
        background: url(/kagoshima/images/clinic/kids_box_top_sp.webp) center/cover no-repeat;
        width: 100vw;
        height: 10.66vw;
      }
      .kids_kazari01 {
        z-index: 3;
        top:  -20.26vw;
        left:  6.66vw;
        width:  20.8vw;
        height: 22.4vw;
      }
      .kids_kazari02 {
        z-index: 3;
        top:   -20.26vw;
        left: 50.4vw;
        width:  40.53vw;
        height: 21.6vw;
      }

      .subtitle {
        font-size: 4.2vw;
        margin-bottom: 3vw;
      }
      .title {
        margin-bottom: 8vw;
        font-size: 5.8vw;
        letter-spacing: .14em;
      }
      .title span {
        font-size: 5.5vw;
      }

      .flexbox {
        margin-bottom: 13.8vw;
        column-gap: 0;
        align-items: center;

        .imagebox{
          width: 86.93vw;
          height: 47.46vw;
          margin-right: auto;
          img {
            border-radius: 0 4.53vw 4.53vw 0;
          }
        }
        .textbox{
          box-sizing: border-box;
          width: 100%;
          padding: 0 5.5vw;

          .box_text {
            font-size: 4vw;
          }
        }
      }
      .flex01 {
        margin-bottom: 8vw;
        flex-direction: column-reverse;
        .imagebox{
          position: relative;
          margin-bottom: 16vw;
          .circle {
            position: absolute;
            top:  15.46vw;
            left:    40vw;
            width:  46.93vw;
            height:    44vw;
          }
        }
      }

      .yellow_box {
        max-width: 90%;
        margin: 0 5.5vw 0;
        padding: 8vw 0 8vw;
        background-color: #fff;
        border-radius: 6.93vw;
        position: relative;
      }
      .kids_kazari03 {
        top:     43.2vw;
        left:    3.46vw;
        width:  22.13vw;
        height:  27.2vw;
      }
      .kids_kazari04 {
        top:  121.06vw;
        left:  52.26vw;
        width:  31.25vw;
        height: 20.26vw;
      }
      .kids_kazari05 {
        bottom: -12.66vw;
        left:  50%;
        transform: translateX(-50%);
        width:  29.06vw;
        height: 24.8vw;
      }

      .gridbox {
        width: 90vw;

        box-sizing: border-box;
        margin: 0 auto 10vw;
        padding: 0 5.5vw;

        row-gap: 13.8vw;
        column-gap: initial;
        grid-template-columns: repeat(1, 1fr);
        .item {
          .item_image {
            width:  100%;
            height: auto;
            margin: 0 auto 4.2vw;
            img {
              border-radius: 4.53vw;
            }
          }
          .item_title {
            margin-bottom: 4.2vw;
            font-size: 4.8vw;
          }
          .item_text {
            font-size: 4vw;
          }
        }
      }

      .about_wrapper{
        margin-bottom: 13.8vw;
      }
      .about_btn {
        width: 74vw;
        margin-left: 8vw;
        padding-right: 0.6em;
        letter-spacing: .04em;
      }
      .about_btn::after{
        width: 21.07vw;
        height: 20vw;
        left: -8.67vw;
        bottom: -3.866vw;
      }

      .kids_info_box {
        .kids_info_title {
          padding: 0 1.2em;
          margin: 0 auto 4.2vw;
          font-size: 5.2vw;
          padding-bottom: 2.66vw;
          border-bottom: 1.33vw solid rgba(251, 216, 144, 1);
        }
        .dline {
          width: 90%;
          max-width: 90%;
          margin: 0 auto;
          border-bottom: initial;

          display: flex;
          flex-direction: column;
        }
        .term {
          width: 100%;
          line-height: initial;
          padding: 5.5vw 2vw;
          font-size: 4.2vw;
          letter-spacing: .15em;

          justify-content: center;
        }
        .data {
          width: 100%;
          line-height: initial;
          padding: .1vw 2vw 5.5vw;
          font-size: 4vw;
          line-height: 1.6;
        }
        .dline:not(:last-of-type) {
          border-bottom: 0.8vw dotted rgba(251, 216, 144, 1);
        }
        .dline:last-of-type {
          .data {
            font-size: 5.5vw;
            justify-content: center;
          }
        }
      }

    }

    .traffic_box {
      box-sizing: border-box;
      padding: 0 5.5vw;

      row-gap: 13.8vw;
      column-gap: initial;
      grid-template-columns: repeat(1, 1fr);
      .item {
        .item_image {
          width: 85vw;
          height: auto;
          margin: 0 auto 4.2vw;
        }
        .title_box {
          padding-bottom: 2.66vw;
          border-bottom: 0.53vw dotted rgba(237, 121, 128, 1);
          margin-bottom: 4.2vw;

          .item_title_img {
            min-width: initial;
            width: 11.6vw; /* 15.46vw; */
            height:  10vw; /* 13.6vw; */
            margin-right: 4vw;
          }
          .item_title {
            font-size: 4.8vw;
          }
        }
        .item_text {
          font-size: 4vw;
          text-align: justify;
        }
      }
    }

  }
}

/* sec02 */
.sec02 {
  margin-bottom: 125px;
  padding-bottom: 100px;

  .inner {
    padding: 0;

    position: relative;
    &::before {
      content: "";
      position: absolute;
      z-index: -1;
      top:  128px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 90px 0 0 0;
      background-color: rgba(77, 186, 205, 0.1);
      width:  1268px;
      height: 2970px;
    }
  }

  .equipment_box {
    .flexbox {
      width: 1200px;
      max-width: 100%;
      margin: 0 auto 80px;
      column-gap: 0;
      align-items: flex-start;

      .imagebox {
        width: 100%;
      }
      .textbox {
        box-sizing: border-box;
        width: 100%;

        .sec_subtitle {
          display: flex;
          align-items: flex-end;
          img {
            width: 266px;
            height: 44px;
            object-fit: contain;
          }
          h2 {
            padding-left: 1.3em;
            letter-spacing: .15em;
            font-family: serif;
            font-size: 18px;
            font-weight: Bold;
            text-wrap: nowrap;
          }
        }

        .box_subtitle {
          margin-bottom: 15px;
          font-family: Serif;
          font-weight: Bold;
          font-size: 28px;
        }
        .box_title {
          letter-spacing: .1em;
          font-family: Serif;
          font-size: 30px;
          font-weight: Bold;
        }
        .box_text {
          text-align: justify;
        }
      }
    }
    .flexbox01 {
      width: 1440px;
      margin: 0 auto 100px;
      align-items: flex-end;
      .textbox {
        margin-left: 62px;
        margin-right: 60px;
        display: flex;
        flex-direction: column;
        .box_header {
          padding-bottom: 60px;
        }
      }
    }
    .flexbox02 {
      margin: 0 auto 100px;
      .textbox{
        margin-right: 60px;
        .box_title {
          padding-top: 35px;
        }
      }
    }
    .flexbox03 {
      .textbox {
        margin-left: 60px;
      }
    }

    .green_box {
      box-sizing: border-box;
      width: 1200px;
      max-width: 100%;
      border-radius: 12px;
      border: 2px solid rgba(81, 167, 221, 1);
      background-color: #fff;
      margin: 0 auto 100px;
      padding: 83px 73px;

      .green_title {
        letter-spacing: .1em;
        font-size: 26px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 43px;
      }

      .grid01 {
        display: grid;
        row-gap: 0px;
        column-gap: 53px;
        grid-template-columns: repeat(3, 1fr);

        .item {
          .item_subtitle {
            font-size: 16px;
            text-align: center;
          }
          .item_title {
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
          }
          .item_image {
            width:  300px;
            height: 205px;
            object-fit: contain;
            margin: 0 auto 16px;
          }
          .item_text {
            text-align: justify;
          }
        }
      }
    }

    .grid02 {
      width: 830px;
      max-width: 100%;
      margin: 0 auto 0;

      display: grid;
      row-gap: 0px;
      column-gap: 110px;
      grid-template-columns: repeat(2, 1fr);

      .item {
        .item_subtitle {
          font-size: 16px;
          text-align: center;
        }
        .item_title {
          margin-bottom: 20px;
          font-size: 24px;
          font-weight: bold;
          text-align: center;
        }
        .item_image {
          width:  360px;
          height: 240px;
          object-fit: contain;
          margin: 0 auto 16px;
        }
        .item_text {
          text-align: justify;
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    margin-bottom: 13.8vw;
    padding: 0;

    .inner {
      padding: 0 0 13.8vw;

      position: relative;
      &::before {
        content: "";
        position: absolute;
        z-index: -1;
        top:  27.6vw;
        left: 0;
        transform: initial;
        border-radius: 0;
        width:  100vw;
        height: 1220vw;
      }

    }

    .equipment_box {
      .flexbox {
        margin: 0;
        margin: 0 auto 13.8vw;
        flex-direction: column;
        column-gap: 0;
        row-gap: 4.2vw;

        .imagebox{
          width: 100%;
        }
        .textbox{
          padding: 0 5.5vw;

          .sec_subtitle {
            padding-left: 0;
            display: flex;
            flex-direction: column-reverse;
            justify-content: center;
            align-items: flex-start;

            img {
              width: 56.53vw;
              height: 9.06vw;
              object-fit: contain;
              min-width: initial;
            }
            h2 {
              padding-left: .3em;
              font-size: 5vw;
            }
          }

          .box_subtitle {
            margin-bottom: 4vw;
            font-size: 4.2vw;
          }
          .box_title {
            margin-bottom: 4.2vw;
            font-size: 5.2vw;
            text-align: center;
          }
          .box_text {
            font-size: 4vw;
          }
        }
      }
      .flexbox01 {
        margin: 0 auto 8vw;
        .textbox {
          display: block;
          margin-left: initial;
          margin-right: initial;
          .box_header {
            padding-top: 0;
            padding-bottom: 13.8vw;
          }
        }
      }
      .flexbox02 {
        margin: 0 auto 13.8vw;
        .textbox{
          margin-right: initial;
          .box_title {
            padding-top: 0;
          }
        }
      }
      .flexbox03 {
        margin: 0 auto 13.8vw;
        .textbox {
          margin-left: initial;
        }
      }

      .green_box {
        width: 89vw;
        box-sizing: border-box;
        border-radius: 3.2vw;
        border: 0.53vw solid rgba(81, 167, 221, 1);
        margin: 0 5.5vw 10vw;
        padding: 8vw 5.5vw;

        .green_title {
          font-size: 5vw;
          margin-bottom: 6vw;
        }

        .grid01 {
          row-gap: 13.8vw;
          column-gap: initial;
          grid-template-columns: repeat(1, 1fr);

          .item {
            .item_subtitle {
              font-size: 4vw;
            }
            .item_title {
              margin-bottom: 4.2vw;
              font-size: 5.2vw;
            }
            .item_image {
              width:  78vw;
              height: auto;
              margin: 0 auto 4.2vw;
            }
            .item_text {
              font-size: 4vw;
            }
          }
        }

      }

      .grid02 {
        width: 89vw;
        margin: 0 auto 0;
        padding: 0 5.5vw 13.8vw;
        row-gap: 13.8vw;
        column-gap: initial;
        grid-template-columns: repeat(1, 1fr);

        .item {
          .item_subtitle {
            font-size: 4vw;
          }
          .item_title {
            margin-bottom: 5.2vw;
            font-size: 4.8vw;
            font-family: Serif;
          }
          .item_image {
            width:  100%;
            height: auto;
            margin: 0 auto 4.2vw;
          }
          .item_text {
            text-align: justify;
          }
        }
      }
    }

  }
}