@charset "UTF-8";
/* CSS Document */






body {
  padding-top: var(--header-height-plus);
}
.page_title {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.page_title .box_l {
  padding-top: 60px;
  display: flex;
}
.page_title .box_l * {
  display: block;
  line-height: 1em;
}
.page_title .box_l h3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  em {
    font-family: var(--font-eng-grade);
    font-size: 13.0rem;
    font-weight: 600;
    letter-spacing: .04em;
    background: var(--eng-grade-txt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: .2em;
    white-space: nowrap;
  }
  span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #008EB3;
  }
}
.page_title .img {
  width: min(100%, 955px);
}
@media (width <= 1440px) {
  .page_title {
    width: 100%;
    padding: 0 20px;
    gap: 20px;
  }
  .page_title .box_l {
    padding-top: clamp(10px, 4vw, 60px);
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(5rem, 5rem + 6vw, 13.0rem);
      font-weight: 600;
    }
    span {
      font-size: 1.6rem;
      font-weight: 700;
    }
  }
  .page_title .img {
    width: max(100%, 955px);
  }
}
@media (width <= 767px) {
  .page_title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .page_title .box_l {
    padding-top: 0;
  }
  .page_title .box_l h3 {
    em {
      font-size: clamp(6rem, 18vw, 8rem);
    }
    span {
      font-size: 1.4rem;
    }
  }
  .page_title .img {
    width: min(100%, 955px);
  }
}


main {
  .mission {
    margin-bottom: var(--space-section-100);
    h3 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: var(--space-section-30);
      * {
        line-height:1em;
      }
      em {
        display:block;
        color:#008EB3;
        font-size:1.4rem;
        font-weight:700;
        letter-spacing:.1em;
        margin-bottom:1em;
      }
      > span{
        display:inline-block;
        font-size:4rem;
        letter-spacing:.1em;
        white-space:nowrap;
        .char-wrap {
          display:inline-block;
          overflow:hidden;
        }
        .char {
          display:inline-block;
          font-weight:700;
          transform:translateY(110%);
          opacity:0;
          transition:
            transform .8s cubic-bezier(.22,1,.36,1),
            opacity .8s ease;
          background:var(--eng-grade-txt);
          background-repeat:no-repeat;
          -webkit-background-clip:text;
          background-clip:text;
          color:transparent;
          -webkit-text-fill-color:transparent;
          will-change:transform;
        }
        &.show .char {
          transform:translateY(0);
          opacity:1;
        }
      }
    }
    .comment {
      letter-spacing: .1em;
      margin-bottom: var(--space-section-30);
    }
    .box {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      section {
        border-radius: var(--radius20);
        overflow: hidden;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.10);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        a {
          display: block;
          .img img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform .4s ease;
          }
          &:hover .img img {
            transform: scale(1.08);
          }
          .box_in {
            position: relative;
            background: linear-gradient(270deg, #004EB3 0%, #008EB3 100%);
            padding: 15px 20px 30px;
            h4 {
              display: flex;
              flex-direction: column;
              color: #FFF;
              * {
                display: block;
                line-height: 1em;
              }
              span {
                font-size: 2.4rem;
                font-weight: 500;
                letter-spacing: .1em;
                margin-bottom: .5em;
              }
              em {
                font-size: 1.2rem;
                letter-spacing: .1em;
              }
            }
            &::after {
              position: absolute;
              right: 15px;
              bottom: 15px;
              width: 30px;
              aspect-ratio: 1;
              background: url(../img/business/mission_arrow.svg) no-repeat center center;
              background-size: cover;
              content: '';
            }
          }
        }
      }
    }
  }

  @media (width <= 1140px) { 
    .mission {
      h3 {
        > span{
          white-space:wrap;
        }
      }
      .box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 225px), 1fr));
        gap: 20px;
      }
    }
  }
  @media (width <= 767px) {    
    .mission {
      h3 {
        * {
          line-height:1.25;
        }
        > span{
          font-size: clamp(2.8rem, 8vw, 3.2rem);
        }
      }
      .comment {
        margin-bottom: var(--space-section-100);
      }
      .box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-section-15);
        section {
          border-radius: var(--radius20);
          a {
            display: flex;
            .img {
              width: calc(100% - 130px);
            }
            .box_in {
              width: 130px;
              padding: 15px 15px 30px;
              h4 {
                span {
                  font-size: clamp(1.6rem, 4.6vw, 1.8rem);
                  margin-bottom: .5em;
                }
              }
              &::after {
                width: 24px;
              }
            }
          }
        }
      }
    }
  }


  .item {
    margin-bottom: var(--space-section-100);
    h3 {
      font-size: 4.0rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-align: center;
      margin-bottom: .6em;
    }
    .box {
      position: relative;
      padding: var(--space-section-80) var(--space-section-160);
      padding-right: var(--space-section-80);
      &::before {
        position: absolute;
        inset: 0;
        width: calc(100% + ((100vw - 100%) / 2));
        height: 100%;
        background: #FFF;      
        z-index: -1;
        border-top-left-radius: var(--radius100);
        border-bottom-left-radius: var(--radius20);
        content: '';
      }
      table {
        width: 100%;
        tr th ,
        tr td {
          padding: 1em .6em;
          border-bottom: solid 1px #DDDDDD;
          vertical-align: top;
          width: auto;
        }
        tr:nth-of-type(1) th ,
        tr:nth-of-type(1) td {
          padding-top: 0;
        }
        tr th {
          font-weight: 700;
          text-align: left;
          width: 220px;
          color: #008EB3;
        }
      }
    }
  }
  @media (width <= 767px) {    
    .item {
      h3 {
        font-size: clamp(2.0rem, 8.2vw, 2.4rem);
      }
      .box {
        position: relative;
        padding: var(--space-section-80) var(--space-section-20);
        padding-right: 0;
        &::before {
          border-top-left-radius: var(--radius100);
          border-bottom-left-radius: var(--radius20);
        }
        table {
          tr th ,
          tr td {
            padding: 1em .6em;
          }
          tr th {
            width: 130px;
          }
        }
      }
    }
  }


  
  .service {
    margin-bottom: var(--space-section-100);
    padding: var(--space-section-100) 0;
    background: url(../img/business/service_bg.png) repeat center center;
    background-size: calc(50px / 2);
    h3 {
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: 1em;
      * {
        display: block;
        line-height: 1em;
        font-weight: 700;
        letter-spacing: .1em;
      }
      span {
        font-size: 4.0rem;
      }
      em {
        font-size: 2.4rem;
      }
    }
    h4 {
      font-size: 1.8rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2em;
    }
    .box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px 40px;
      .img {
        width: min(100%, 160px);
        margin: 0 auto;
        margin-bottom: 25px;
      }
      h5 {
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        border-bottom: solid 1px #008EB3;
        padding-bottom: .4em;
        margin-bottom: 1.2em;
      }
    }
  }
  @media (width <= 767px) {   
    .service {
      margin-bottom: var(--space-section-100);
      padding: var(--space-section-80) 0;
      background: url(../img/business/service_bg.png) repeat center center;
      background-size: calc(50px / 2);
      background-size: 5vw;
      h3 {
        span {
          font-size: clamp(2.0rem, 8.2vw, 2.4rem);
        }
        em {
          font-size: 1.4rem;
        }
      }
      h4 {
        font-size: 1.6rem;
        text-align: left;
      }
      .box {        
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
        justify-content: center;
        gap: var(--space-section-40);
        .img {
          width: min(100%, 160px);
          margin-bottom: var(--space-section-15);
        }
        h5 {
          font-size: 1.6rem;
        }
      }
    }
  }


  .associated-company {
    margin-bottom: var(--space-section-100);
    color: #FFF;
    .box {
      position: relative;
      padding: var(--space-section-80) var(--space-section-100);
      color: #FFF;
      &::before {
        position: absolute;
        inset: 0;
        left: auto;
        right: 0;
        width: calc(100% + ((100vw - 100%) / 2));
        height: 100%;
        background: var(--bg-grade01);
        z-index: -1;
        border-top-right-radius: var(--radius100);
        border-bottom-right-radius: var(--radius20);
        content: '';
      }
      h3 {
        text-align: center;
        font-size: 4.0rem;
        font-weight: 700;
        letter-spacing: .1em;
        margin-bottom: .3em;
      }
      h4 {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 2em;
      }
      .box_in {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        section {
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
          transform: translate3d(0, 0, 0);
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          will-change: transform;
          a {
            position: relative;
            display: block;
            color: #FFF;
            &::after {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: var(--bg-grade02);
              content: '';
            }
            .img img {
              display: block;
              width: 100%;
              height: auto;
              transition: transform .4s ease;
            }
            &:hover .img img {
              transform: scale(1.08);
            }
            .txt {
              position: absolute;
              bottom: 1em;
              right: 1em;
              z-index: 1;
              font-size: 2.4rem;
              font-weight: 700;
              letter-spacing: .1em;
              padding-right: 2.5em;
              &::after {
                position: absolute;
                right: 0;
                bottom: .2em;
                width: 1.5em;
                aspect-ratio: 1;
                background: url(../img/business/associated-company_arrow.svg) no-repeat center center;
                background-size: cover;
                content: '';
              }
            }
          }
        }
      }
    }
  }
  @media (width <= 767px) {   
    .associated-company {
      margin-bottom: var(--space-section-100);
      color: #FFF;
      .box {
        padding: var(--space-section-80) var(--space-section-20);
        padding-left: 0;
        &::before {
          border-top-right-radius: var(--radius100);
          border-bottom-right-radius: var(--radius20);
        }
        h3 {
          font-size: clamp(2.0rem, 8.2vw, 2.4rem);
        }
        h4 {
          text-align: left;
          font-size: 1.6rem;
        }
        .box_in {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: var(--space-section-30);
          section {
            a {
              .txt {
                font-size: 1.6rem;
              }
            }
          }
        }
      }
    }
  }


  .exhibition {
    margin-bottom: var(--space-section-100);
    h3 {
      text-align: center;
      font-size: 4.0rem;
      font-weight: 700;
      letter-spacing: .1em;
      margin-bottom: .7em;
    }
    .comment {
      letter-spacing: .1em;
      margin-bottom: 3.5em;
    }
    .img ul {
      display: flex;
      gap: 15px;
    }
  }
  @media (width <= 767px) {   
    .exhibition {
      margin-bottom: var(--space-section-100);
      h3 {
        font-size: clamp(2.0rem, 8.2vw, 2.4rem);
      }
      .img ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
        gap: var(--space-section-10);
      }
    }
  }


  .company-name {
    margin-bottom: var(--space-section-100);
    .box {
      position: relative;
      padding-top: var(--space-section-100);
      padding-bottom: var(--space-section-100);
      margin-bottom: var(--space-section-10);
      &::before {
        position: absolute;
        inset: 0;      
        left: calc(50% - 50vw);
        z-index: -2;
        width: 100vw;      
        background: var(--bg-grade01);
        content: '';
      }
      &::after {
        position: absolute;      
        right: calc(50% - 50vw);
        bottom: 0;      
        z-index: -1;      
        width: 857px;
        height: 594px;
        background: url(../img/business/company-name_bg.svg) no-repeat center center;
        background-size: cover;
        content: '';
      }
      section:not(:last-of-type) {
        margin-bottom: var(--space-section-80);
      }
      section h3 {
        text-align: center;
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: .1em;
        color: #FFF;
        margin-bottom: 1.5em;
      }
      section .banner ul {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        li {
          overflow: hidden;
          border-radius: var(--radius10);
        }
      }
      section .comment {
        font-size: 1.3rem;
        color: #FFF;
        padding-top: 1em;
      }
    }
  }
  @media (width <= 767px) {   
    .company-name {
      margin-bottom: var(--space-section-100);
      .box {
        position: relative;
        padding-top: var(--space-section-80);
        padding-bottom: var(--space-section-80);
        margin-bottom: var(--space-section-10);
        &::after {
          width: min(390px, 100vw);
          height: auto;
          aspect-ratio: 390 / 252;
          background: url(../img/business/company-name_bg_sp.svg) no-repeat center center;
          background-size: cover;
        }
        section h3 {
          font-size: 1.8rem;
        }
        section .banner ul {
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: var(--space-section-10);
        }
      }
    }
  }
  

}



