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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #000000;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

ul {
  list-style: none;
}

.imgFit {
  max-width: 100%;
  height: auto;
}

.imgMax {
  width: 100%;
  height: auto;
}

.ro {
  transition: opacity 0.2s;
}
.ro:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .visible-xs {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .hidden-1000 {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .visible-1000 {
    display: none !important;
  }
}
.secLabel {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #0057aa;
  letter-spacing: 0.08em;
  display: inline-block;
}

.lpHdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.lpHdr.active {
  background: #e9eef2;
}
.lpHdr .lpHdrIn {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 36px);
  height: 70px;
}
.lpHdr .lpHdrIn .hLogo {
  display: block;
}
.lpHdr .lpHdrIn .hLogo .hLogoImg {
  display: block;
  height: 46px;
  width: auto;
}
.lpHdr .lpHdrIn .hNav {
  flex: 1;
  margin-left: clamp(16px, 2vw, 40px);
}
.lpHdr .lpHdrIn .hNav .hNavList {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(12px, 1.4vw, 24px);
       column-gap: clamp(12px, 1.4vw, 24px);
  justify-content: right;
}
.lpHdr .lpHdrIn .hNav .hNavList .hNavItem .hNavLink {
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lpHdr .lpHdrIn .hBtns {
  display: flex;
  -moz-column-gap: 1px;
       column-gap: 1px;
  margin-left: clamp(12px, 1.5vw, 24px);
  flex-shrink: 0;
}
.lpHdr .lpHdrIn .hBtns.spBtn {
  display: none;
}
.lpHdr .lpHdrIn .hBtns .hBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 9.7vw, 140px);
  height: 39px;
  background: #0057aa;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(11px, 0.97vw, 14px);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lpHdr .lpHdrIn .hBurger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  flex-shrink: 0;
  padding: 0;
}
.lpHdr .lpHdrIn .hBurger .hBurgerLine {
  display: block;
  width: 100%;
  height: 2px;
  background: #0057aa;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 1;
}
.lpHdr .lpHdrIn .hBurger.is-open .hBurgerLine:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lpHdr .lpHdrIn .hBurger.is-open .hBurgerLine:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lpHdr .lpHdrIn .hBurger.is-open .hBurgerLine:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.secKv {
  position: relative;
  background: #e9eef2;
  overflow: hidden;
}
.secKv .kvMainArea {
  max-width: 1200px;
  margin: 130px auto 80px;
}
.secKv .kvImgWrap {
  height: 420px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.secKv .kvImgWrap .kvMainImg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secKv .kvContent {
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
.secKv .kvContent .kvTagline {
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.secKv .kvContent .kvLogo {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.secKv .kvContent .kvLogo .kvLogoImg {
  text-align: center;
  display: block;
  height: clamp(50px, 6.25vw, 90px);
  width: auto;
}
.secKv .kvDeco {
  position: absolute;
}
.secKv .kvDeco .kvDecoImg {
  -o-object-fit: contain;
     object-fit: contain;
}
.secKv .kvDeco.kvDeco--l {
  width: 185px;
  height: 185px;
  top: 460px;
  left: calc(50% - 700px);
}
.secKv .kvDeco.kvDeco--r {
  width: 285px;
  height: 285px;
  top: 450px;
  left: calc(50% + 665px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.secKv .kvDeco.kvDeco--s {
  width: 37px;
  height: 37px;
  top: 640px;
  left: calc(50% - 500px);
}
.secKv .kvDeco.kvDeco--t {
  width: 104px;
  height: 104px;
  top: 64px;
  left: calc(50% + 200px);
}

.secAbout {
  position: relative;
  padding: clamp(60px, 6.9vw, 100px) 0 0;
  z-index: 2;
}
.secAbout .aboutDeco {
  position: absolute;
}
.secAbout .aboutDeco .aboutDecoImg {
  -o-object-fit: contain;
     object-fit: contain;
}
.secAbout .aboutDeco.aboutDeco--r {
  width: 146px;
  height: 146px;
  top: 350px;
  left: calc(50% + 240px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.secAbout .aboutDeco.aboutDeco--s {
  width: 30px;
  height: 30px;
  top: 760px;
  left: calc(50% + 420px);
}
.secAbout .aboutIn {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
.secAbout .aboutIn .aboutHead {
  margin-bottom: 40px;
}
.secAbout .aboutIn .aboutHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secAbout .aboutIn .aboutBody {
  display: flex;
  -moz-column-gap: clamp(20px, 4.2vw, 60px);
       column-gap: clamp(20px, 4.2vw, 60px);
  row-gap: clamp(20px, 4.2vw, 60px);
  margin-bottom: clamp(40px, 5.6vw, 80px);
  flex-wrap: wrap;
}
.secAbout .aboutIn .aboutBody .aboutText .aboutDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
}
.secAbout .aboutIn .aboutBody .aboutText .aboutDesc span {
  font-size: inherit;
  line-height: inherit;
  color: #0057aa;
}
.secAbout .aboutIn .aboutBody .aboutPhotos {
  margin: 0 auto;
  position: relative;
  width: 344px;
  flex-shrink: 0;
  height: 550px;
}
.secAbout .aboutIn .aboutBody .aboutPhotos .aboutPhoto {
  position: absolute;
  width: 200px;
  height: 300px;
}
.secAbout .aboutIn .aboutBody .aboutPhotos .aboutPhoto .aboutPhotoImg {
  -o-object-fit: cover;
     object-fit: cover;
}
.secAbout .aboutIn .aboutBody .aboutPhotos .aboutPhoto.aboutPhoto--1 {
  top: 0;
  right: 0;
}
.secAbout .aboutIn .aboutBody .aboutPhotos .aboutPhoto.aboutPhoto--2 {
  bottom: 0;
  left: 0;
}
.secAbout .aboutIn .aboutCatch {
  margin-top: 35px;
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 400;
  color: #0057aa;
  line-height: 1.9;
}
.secAbout .aboutWideImg {
  width: 100%;
  margin-bottom: -240px;
  max-width: 1000px;
  margin-left: auto;
}
.secProgram {
  background: #f5f9fc;
  padding: 280px 0 clamp(60px, 8.3vw, 120px);
  position: relative;
  top: 1px;
  z-index: 1;
}
.secProgram .programIn {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
.secProgram .programIn .programHead {
  margin-bottom: 40px;
}
.secProgram .programIn .programHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secProgram .programIn .programLogo {
  margin-bottom: 40px;
}
.secProgram .programIn .programLogo .pgLogoImg {
  display: block;
  height: clamp(50px, 6.25vw, 90px);
  width: auto;
}
.secProgram .programIn .programDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
}

.secFeature {
  padding: 0;
}
.secFeature .featureBox {
  display: grid;
  grid-template-columns: 1fr 1000px 1fr;
  position: relative;
  background: #0057aa;
  overflow: hidden;
}
.secFeature .featureBox .leftWrap {
  position: relative;
  background: #ffffff;
}
.secFeature .featureBox .centerWrap {
  padding: 80px 0px 80px 50px;
}
.secFeature .featureBox .featureVertLabel {
  position: absolute;
  right: 20px;
  top: 20px;
  writing-mode: vertical-rl;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #0057aa;
}
.secFeature .featureBox .featItem {
  padding-bottom: 46px;
  padding-left: 80px;
  position: relative;
}
.secFeature .featureBox .featItem:last-child {
  margin-bottom: 0;
}
.secFeature .featureBox .featItem::after {
  content: "";
  position: absolute;
  left: 53px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ffffff;
}
.secFeature .featureBox .featItem .featItemHead {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.secFeature .featureBox .featItem .featItemHead .featNum {
  position: absolute;
  left: -80px;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
.secFeature .featureBox .featItem .featItemHead .featTitle {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}
.secFeature .featureBox .featItem .featDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  color: #ffffff;
  line-height: 1.9;
}
.secFeature .featureBox .featItem .featThemes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.46vw, 21px);
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeImgWrap {
  width: 100%;
  margin-bottom: 12px;
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeImgWrap .featThemeImg {
  -o-object-fit: cover;
     object-fit: cover;
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeName {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeName:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #ffffff;
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeList {
  font-size: clamp(12px, 0.97vw, 14px);
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 4px;
}
.secFeature .featureBox .featItem .featThemes .featTheme .featThemeEtc {
  font-size: clamp(11px, 0.9vw, 13px);
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}
.secFeature .featureBox .featItem--theme .featDesc {
  padding-bottom: 20px;
}
.secFeature .featureBox .featAsset {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.secFeature .featureBox .featAsset .featAssetInfo {
  flex: 1;
  padding: clamp(20px, 2.78vw, 40px);
}
.secFeature .featureBox .featAsset .featAssetInfo .featAssetLabel {
  font-size: clamp(12px, 1.11vw, 16px);
  font-weight: 500;
  color: #0057aa;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}
.secFeature .featureBox .featAsset .featAssetInfo .featAssetTitle {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.secFeature .featureBox .featAsset .featAssetInfo .featAssetList {
  list-style: none;
}
.secFeature .featureBox .featAsset .featAssetInfo .featAssetList .featAssetItem {
  font-size: clamp(13px, 1.11vw, 16px);
  color: #0057aa;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.secFeature .featureBox .featAsset .featAssetInfo .featAssetList .featAssetItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0057aa;
}
.secFeature .featureBox .featAsset .featAssetPhoto {
  width: clamp(140px, 28vw, 403px);
  flex-shrink: 0;
}
.secFeature .featureBox .featAsset .featAssetPhoto .featAssetImg {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .secFeature .featureBox {
    grid-template-columns: 100px 1fr 5%;
  }
}
.secCase {
  position: relative;
  padding: clamp(60px, 6.9vw, 100px) 0 140px;
  background: #ffffff;
  top: -1px;
  overflow: hidden;
}
.secCase .supportIn {
  margin: 0 auto 100px;
  max-width: 1000px;
  width: 90%;
}
.secCase .supportIn .supportHead {
  margin-bottom: 40px;
}
.secCase .supportIn .supportHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secCase .supportIn .supportDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
}
.secCase .supportImgs {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-bottom: 40px;
}
.secCase .supportImgs .caseTlArea {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to bottom right, rgba(225, 211, 40, 0.25) 0%, rgba(0, 141, 206, 0.25) 68%);
}
.secCase .supportImgs .caseTlArea .caseHead .secLabel {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.secCase .supportImgs .caseTlArea .caseHead .caseLabelJa {
  font-size: 22px;
  font-weight: 500;
  color: #0057aa;
  letter-spacing: 5px;
}
.secCase .supportImgs .caseTlArea .caseHead * {
  display: block;
}
.secCase .supportImgs .supportImgR {
  height: clamp(200px, 29.2vw, 420px);
}
.secCase .supportImgs .supportImgR .supportPhoto {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.secCase .caseIn {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
.secCase .caseIn .caseHead {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 40px;
}
.secCase .caseIn .caseHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secCase .caseIn .caseHead .caseLabelJa {
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 400;
  color: #000000;
}
.secCase .caseIn .caseDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
  margin-bottom: 50px;
}
.secCase .caseIn .caseLogos {
  margin-bottom: 200px;
}
.secCase .caseIn .caseLogos .caseYear {
  margin-bottom: clamp(30px, 4.2vw, 60px);
}
.secCase .caseIn .caseLogos .caseYear .caseYearHead {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 16px;
}
.secCase .caseIn .caseLogos .caseYear .caseYearHead .caseYearLabel {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  color: #0057aa;
}
.secCase .caseIn .caseLogos .caseYear .caseYearHead .caseYearNote {
  font-size: clamp(10px, 0.83vw, 12px);
  font-weight: 500;
  color: #0057aa;
}
.secCase .caseIn .caseLogos .caseYear .caseLogoGrid {
  display: flex;
  flex-wrap: wrap;
}
.secCase .caseIn .caseLogos .caseYear .caseLogoGrid .caseLogoItem {
  width: 250px;
  height: auto;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secCase .caseIn .caseLogos .caseYear .caseLogoGrid .caseLogoItem .caseLogoImg {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.secCase .caseIn .caseStudies .caseDeco {
  position: absolute;
  z-index: 1;
}
.secCase .caseIn .caseStudies .caseDeco .caseDecoImg {
  -o-object-fit: contain;
     object-fit: contain;
}
.secCase .caseIn .caseStudies .caseDeco.caseDeco--l {
  width: 300px;
  height: 300px;
  top: 2020px;
  left: calc(50% - 745px);
}
.secCase .caseIn .caseStudies .caseDeco.caseDeco--r {
  width: 131px;
  height: 131px;
  top: 2640px;
  left: calc(50% + 470px);
}
.secCase .caseIn .caseStudies .caseDeco.caseDeco--m {
  width: 111px;
  height: 111px;
  bottom: 280px;
  left: calc(50% - 530px);
}
.secCase .caseIn .caseStudies .caseDeco.caseDeco--s {
  width: 31px;
  height: 31px;
  bottom: 245px;
  left: calc(50% - 585px);
}
.secCase .caseIn .caseStudies .caseStudy {
  padding-top: clamp(30px, 4.2vw, 60px);
  border-top: 1px solid #0057aa;
  margin-bottom: clamp(30px, 4.2vw, 60px);
}
.secCase .caseIn .caseStudies .caseStudy:last-of-type {
  margin-bottom: 90px;
}
.secCase .caseIn .caseStudies .caseStudy.borderNone {
  border-top: none !important;
  padding-top: 0;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyHead {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: clamp(20px, 2.8vw, 40px);
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyHead .caseStudyNum {
  font-size: clamp(16px, 1.53vw, 22px);
  font-weight: 500;
  color: #0057aa;
  flex-shrink: 0;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyHead .caseStudyLine {
  width: 1px;
  height: 23px;
  background: #0057aa;
  flex-shrink: 0;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyHead .caseStudyTitle {
  font-size: clamp(16px, 1.53vw, 22px);
  font-weight: 500;
  color: #0057aa;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody {
  display: flex;
  -moz-column-gap: clamp(20px, 3.5vw, 50px);
       column-gap: clamp(20px, 3.5vw, 50px);
  align-items: flex-start;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyDesc {
  flex: 1;
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImg {
  width: clamp(200px, 31.9vw, 460px);
  flex-shrink: 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImg .caseStudyPhoto {
  -o-object-fit: cover;
     object-fit: cover;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImgs {
  width: clamp(200px, 31.9vw, 460px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImgs .caseStudyImg {
  width: 100%;
}
.secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImgs .caseStudyImg .caseStudyPhoto {
  -o-object-fit: cover;
     object-fit: cover;
}

.secCta .ctaBox {
  border: 2px solid #0057aa;
  display: flex;
  max-width: 720px;
  height: 150px;
  margin: 0 auto;
  text-decoration: none !important;
}
.secCta .ctaBox .ctaLeft {
  flex: 1;
  background: #0057aa;
  padding: 29px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.secCta .ctaBox .ctaLeft .ctaLabel {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}
.secCta .ctaBox .ctaLeft .ctaDesc {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.9;
}
.secCta .ctaBox .ctaLeft .ctaMore {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
.secCta .ctaBox .ctaLeft .ctaMore .ctaArrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #ffffff;
}
.secCta .ctaBox .ctaRight {
  width: 311px;
  flex-shrink: 0;
}
.secCta .ctaBox .ctaRight .ctaImg {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.secFlow {
  background: #f5f9fc;
  padding: clamp(60px, 6.9vw, 100px) 0;
}
.secFlow .flowIn {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
.secFlow .flowIn .flowHead {
  margin-bottom: 40px;
}
.secFlow .flowIn .flowHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secFlow .flowIn .flowDesc {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.9;
  color: #000000;
  margin-bottom: clamp(30px, 4.2vw, 60px);
}
.secFlow .flowIn .flowSteps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  max-width: 900px;
  margin: auto;
  width: 100%;
  margin-bottom: clamp(30px, 4.2vw, 60px);
  position: relative;
}
.secFlow .flowIn .flowSteps::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background: #0057aa;
  top: 80px;
}
.secFlow .flowIn .flowSteps .flowStep {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secFlow .flowIn .flowSteps .flowStep .flowStepCircle {
  background: #f5f9fc;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #0057aa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.secFlow .flowIn .flowSteps .flowStep .flowStepCircle .flowStepIcon {
  -o-object-fit: contain;
     object-fit: contain;
  width: 44px;
  height: 47px;
}
.secFlow .flowIn .flowSteps .flowStep .flowStepNum {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  color: #0057aa;
  line-height: 1;
  margin-bottom: 14px;
}
.secFlow .flowIn .flowSteps .flowStep .flowStepName {
  font-size: clamp(12px, 1.11vw, 16px);
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
.secFlow .flowIn .flowSteps .flowArrow {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  flex: 1;
  background: #0057aa;
  margin-top: 50px;
  position: relative;
}
.secFlow .flowIn .flowNote {
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: 400;
  color: #0057aa;
  line-height: 1.9;
  text-align: center;
}

.secMessage {
  padding: clamp(60px, 6.9vw, 100px) 0;
}
.secMessage .msgIn {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
.secMessage .msgIn .msgHead {
  margin-bottom: 40px;
}
.secMessage .msgIn .msgHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secMessage .msgIn .msgTitle {
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 500;
  color: #0057aa;
  margin-bottom: clamp(20px, 2.8vw, 40px);
}
.secMessage .msgIn .msgBody {
  display: flex;
  -moz-column-gap: clamp(20px, 3.5vw, 50px);
       column-gap: clamp(20px, 3.5vw, 50px);
  align-items: flex-start;
  margin-bottom: 20px;
}
.secMessage .msgIn .msgBody .msgText {
  flex: 1;
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 200%;
  color: #000000;
}
.secMessage .msgIn .msgBody .msgPhotoWrap {
  flex-shrink: 0;
}
.secMessage .msgIn .msgBody .msgPhotoWrap .msgPhoto {
  max-width: 220px;
}
.secMessage .msgIn .msgName {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  line-height: 1.9;
  text-align: left;
  white-space: nowrap;
}
.secMessage .msgIn .msgName span {
  font-size: 16px;
  color: #0057aa;
  letter-spacing: inherit;
}

.secEntry {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0057aa 70%, #e1d328 100%);
}
.secEntry .entryIn {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: clamp(60px, 6.9vw, 100px) 0;
  display: flex;
  align-items: flex-start;
}
.secEntry .entryIn .entryLeft {
  flex-shrink: 0;
  width: min(52.7%, 527px);
}
.secEntry .entryIn .entryLeft .entryMainLabel {
  display: block;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.secEntry .entryIn .entryLeft .entryNote {
  font-size: clamp(13px, 1.11vw, 16px);
  color: #ffffff;
  line-height: 1.9;
}
.secEntry .entryIn .entryRight {
  flex: 1;
  max-width: 470px;
}
.secEntry .entryIn .entryRight .entryBlock {
  padding-bottom: 20px;
}
.secEntry .entryIn .entryRight .entryBlock + .entryBlock {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
}
.secEntry .entryIn .entryRight .entryBlock .entryBlockTitle {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}
.secEntry .entryIn .entryRight .entryBlock .entryBlockDesc {
  font-size: clamp(14px, 1.04vw, 15px);
  color: #ffffff;
  line-height: 1.8;
}
.secEntry .entryIn .entryRight .entryBlock .entryBlockDesc span {
  display: block;
  font-size: clamp(12px, 1.04vw, 13px);
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
.secEntry .entryIn .entryRight .entryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: #ffffff;
  color: #0057aa;
  text-decoration: none;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.secContact .contactIn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  row-gap: clamp(20px, 2.8vw, 40px);
}
.secContact .contactIn .contactLeft,
.secContact .contactIn .contactRight {
  grid-row: 1/5;
  display: grid;
  grid-template-rows: subgrid;
  padding: clamp(40px, 5.6vw, 80px) clamp(20px, 3.5vw, 50px);
}
.secContact .contactIn .contactLeft .contactHead,
.secContact .contactIn .contactRight .contactHead {
  text-align: center;
}
.secContact .contactIn .contactLeft .contactHead .secLabel,
.secContact .contactIn .contactRight .contactHead .secLabel {
  font-size: clamp(18px, 1.53vw, 22px);
}
.secContact .contactIn .contactLeft .contactHead .secLabel:after,
.secContact .contactIn .contactRight .contactHead .secLabel:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.secContact .contactIn .contactLeft .contactImgWrap,
.secContact .contactIn .contactRight .contactImgWrap {
  align-self: center;
  height: clamp(120px, 14.6vw, 210px);
}
.secContact .contactIn .contactLeft .contactImgWrap .contactPhoto,
.secContact .contactIn .contactRight .contactImgWrap .contactPhoto {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.secContact .contactIn .contactLeft .contactBtn,
.secContact .contactIn .contactRight .contactBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  width: 100%;
  max-width: 466px;
  height: 56px;
  background: #0057aa;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
}
.secContact .contactIn .contactLeft {
  grid-column: 1;
  background: #f5f9fc;
}
.secContact .contactIn .contactLeft .contactDetail {
  align-self: start;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.secContact .contactIn .contactLeft .contactDetail .contactDetailText {
  text-align: center;
  font-size: clamp(13px, 1.11vw, 16px);
  line-height: 1.8;
  color: #000000;
  margin-bottom: 16px;
}
.secContact .contactIn .contactLeft .contactDetail .contactDetailList {
  font-size: clamp(13px, 1.11vw, 16px);
  font-weight: 600;
  line-height: 1.8;
  color: #000000;
}
.secContact .contactIn .contactRight {
  grid-column: 2;
  background: linear-gradient(to bottom right, rgba(225, 211, 40, 0.25) 0%, rgba(0, 141, 206, 0.25) 68%);
}
.secContact .contactIn .contactRight .contactCatch {
  font-size: clamp(16px, 1.53vw, 22px);
  font-weight: 500;
  color: #0057aa;
  line-height: 1.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.secPrivacy .ftrPrivacy {
  width: 90%;
  padding: 60px 0;
  flex: 1;
  max-width: 850px;
  margin: auto;
}
.secPrivacy .ftrPrivacy .ftrPrivacyTitle {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
}
.secPrivacy .ftrPrivacy .ftrPrivacyText {
  font-size: 14px;
  line-height: 160%;
  color: #000000;
}
.secPrivacy .ftrPrivacy .ftrPrivacyText a {
  color: #0057aa;
}

.lpFtr .ftrIn {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 3.5vw, 50px);
  border-top: 1px solid #0057aa;
}
.lpFtr .ftrIn .ftrMeta {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 90%;
  margin: auto;
}
.lpFtr .ftrIn .ftrMeta .ftrAddr {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  color: #0057aa;
}
.lpFtr .ftrIn .ftrMeta .ftrLinks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.lpFtr .ftrIn .ftrMeta .ftrLinks .ftrLink {
  font-size: 14px;
  font-weight: 300;
  color: #0057aa;
  text-decoration: none;
  line-height: 1.9;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lpFtr .ftrBottom {
  background: #0057aa;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpFtr .ftrBottom .ftrCopy {
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  .lpHdr.active {
    background: #e9eef2;
  }
  .lpHdr .lpHdrIn {
    height: 60px;
    padding: 0 16px;
    justify-content: space-between;
  }
  .lpHdr .lpHdrIn .hLogo .hLogoImg {
    height: 30px;
  }
  .lpHdr .lpHdrIn .hNav {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 60px);
    background: #ffffff;
    padding: 24px 20px 40px;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 0;
    display: flex;
  }
  .lpHdr .lpHdrIn .hNav.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .lpHdr .lpHdrIn .hNav .hNavList {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .lpHdr .lpHdrIn .hNav .hNavList .hNavItem {
    width: 100%;
    border-bottom: 1px solid rgba(0, 87, 170, 0.12);
  }
  .lpHdr .lpHdrIn .hNav .hNavList .hNavItem .hNavLink {
    display: block;
    padding: 16px 4px;
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .lpHdr .lpHdrIn .hNav .hBtns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
    margin-top: 32px;
  }
  .lpHdr .lpHdrIn .hNav .hBtns .hBtn {
    width: 100%;
    height: 48px;
    font-size: 14px;
  }
  .lpHdr .lpHdrIn .hBtns {
    display: none;
  }
  .lpHdr .lpHdrIn .hBurger {
    display: flex;
  }
  .secKv {
    padding-top: 60px;
  }
  .secKv .kvMainArea {
    margin: 0px auto 30px;
  }
  .secKv .kvImgWrap {
    height: 200px;
  }
  .secKv .kvContent {
    margin: 50px auto;
    padding: 0;
  }
  .secKv .kvContent .kvTagline {
    font-size: 16px;
    margin-bottom: 8px;
    padding-bottom: 12px;
  }
  .secKv .kvContent .kvLogo .kvLogoImg {
    height: 60px;
  }
  .secKv .kvDeco {
    display: none;
  }
  .secAbout {
    padding: 50px 0 0;
  }
  .secAbout .aboutDeco {
    display: none;
  }
  .secAbout .aboutIn {
    width: 100%;
    padding: 0 20px;
  }
  .secAbout .aboutIn .aboutHead {
    margin-bottom: 24px;
  }
  .secAbout .aboutIn .aboutHead .secLabel {
    font-size: 18px;
  }
  .secAbout .aboutIn .aboutBody {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }
  .secAbout .aboutIn .aboutBody .aboutText .aboutDesc {
    font-size: 14px;
  }
  .secAbout .aboutIn .aboutCatch {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .secAbout .aboutWideImg {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: -60px;
  }
  .secProgram {
    padding: 40px 0 50px;
    margin-top: 50px;
  }
  .secProgram .programIn {
    width: 100%;
    padding: 0 20px;
  }
  .secProgram .programIn .programHead {
    margin-bottom: 24px;
  }
  .secProgram .programIn .programLogo {
    margin-bottom: 24px;
  }
  .secProgram .programIn .programLogo .pgLogoImg {
    height: 44px;
  }
  .secProgram .programIn .programDesc {
    font-size: 14px;
  }
  .secFeature {
    padding: 0;
  }
  .secFeature .featureBox {
    display: block;
  }
  .secFeature .featureBox .leftWrap {
    display: none;
  }
  .secFeature .featureBox .centerWrap {
    padding: 40px 5%;
  }
  .secFeature .featureBox .featureVertLabel {
    display: none;
  }
  .secFeature .featureBox .featItem {
    padding-left: 52px;
    padding-bottom: 36px;
  }
  .secFeature .featureBox .featItem::after {
    left: 32px;
  }
  .secFeature .featureBox .featItem .featItemHead {
    margin-bottom: 14px;
  }
  .secFeature .featureBox .featItem .featItemHead .featNum {
    font-size: 18px;
    left: -52px;
  }
  .secFeature .featureBox .featItem .featItemHead .featTitle {
    font-size: 17px;
  }
  .secFeature .featureBox .featItem .featDesc {
    font-size: 14px;
  }
  .secFeature .featureBox .featItem .featThemes {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .secFeature .featureBox .featItem .featThemes .featTheme .featThemeName {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .secFeature .featureBox .featItem .featThemes .featTheme .featThemeList {
    font-size: 12px;
  }
  .secFeature .featureBox .featAsset {
    flex-direction: column;
  }
  .secFeature .featureBox .featAsset .featAssetPhoto {
    width: 100%;
    height: 180px;
  }
  .secFeature .featureBox .featAsset .featAssetPhoto .featAssetImg {
    width: 100%;
    height: 100%;
  }
  .secCase {
    padding: 0px 0 60px;
  }
  .secCase .supportIn {
    padding: 0;
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .secCase .supportIn .supportHead {
    margin-bottom: 24px;
  }
  .secCase .supportIn .supportDesc {
    font-size: 14px;
  }
  .secCase .supportImgs {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .secCase .supportImgs .caseTlArea {
    padding: 30px 20px;
    justify-content: left;
    align-items: flex-start;
  }
  .secCase .supportImgs .caseTlArea .caseHead .secLabel {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .secCase .supportImgs .caseTlArea .caseHead .caseLabelJa {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .secCase .supportImgs .supportImgR {
    height: 180px;
  }
  .secCase .caseIn {
    width: 100%;
    padding: 0 20px;
  }
  .secCase .caseIn .caseHead {
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .secCase .caseIn .caseHead .secLabel {
    font-size: 18px;
  }
  .secCase .caseIn .caseDesc {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .secCase .caseIn .caseLogos {
    margin-bottom: 60px;
  }
  .secCase .caseIn .caseLogos .caseYear {
    margin-bottom: 24px;
  }
  .secCase .caseIn .caseLogos .caseYear .caseYearHead {
    margin-bottom: 10px;
  }
  .secCase .caseIn .caseLogos .caseYear .caseLogoGrid {
    gap: 6px;
  }
  .secCase .caseIn .caseLogos .caseYear .caseLogoGrid .caseLogoItem {
    width: calc(50% - 3px);
    height: 80px;
  }
  .secCase .caseIn .caseStudies .caseDeco {
    display: none;
  }
  .secCase .caseIn .caseStudies .caseStudy {
    padding-top: 24px;
    margin-bottom: 24px;
  }
  .secCase .caseIn .caseStudies .caseStudy:last-of-type {
    margin-bottom: 60px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyHead {
    margin-bottom: 14px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyHead .caseStudyNum {
    font-size: 15px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyHead .caseStudyTitle {
    font-size: 15px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyBody {
    flex-direction: column;
    gap: 14px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyDesc {
    font-size: 14px;
  }
  .secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImg,
  .secCase .caseIn .caseStudies .caseStudy .caseStudyBody .caseStudyImgs {
    width: 100%;
  }
  .secCta .ctaBox {
    height: auto;
    flex-direction: column;
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
  .secCta .ctaBox .ctaLeft {
    padding: 14px;
  }
  .secCta .ctaBox .ctaLeft .ctaLabel {
    font-size: 18px;
  }
  .secCta .ctaBox .ctaLeft .ctaDesc {
    font-size: 14px;
  }
  .secCta .ctaBox .ctaRight {
    width: 100%;
  }
  .secCta .ctaBox .ctaRight .ctaImg {
    height: 140px;
  }
  .secFlow {
    padding: 50px 0;
  }
  .secFlow .flowIn {
    padding: 0;
  }
  .secFlow .flowIn .flowHead {
    margin-bottom: 24px;
  }
  .secFlow .flowIn .flowDesc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .secFlow .flowIn .flowSteps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 12px;
    margin-bottom: 24px;
  }
  .secFlow .flowIn .flowSteps::after {
    display: none;
  }
  .secFlow .flowIn .flowSteps .flowStep {
    width: calc(33.33% - 8px);
  }
  .secFlow .flowIn .flowSteps .flowStep .flowStepNum {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .secFlow .flowIn .flowSteps .flowStep .flowStepCircle {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }
  .secFlow .flowIn .flowSteps .flowStep .flowStepCircle .flowStepIcon {
    width: 32px;
    height: 34px;
  }
  .secFlow .flowIn .flowSteps .flowStep .flowStepName {
    font-size: 11px;
  }
  .secFlow .flowIn .flowSteps .flowArrow {
    display: none;
  }
  .secFlow .flowIn .flowNote {
    font-size: 13px;
    text-align: left;
  }
  .secMessage {
    padding: 50px 0;
  }
  .secMessage .msgIn {
    padding: 0;
  }
  .secMessage .msgIn .msgHead {
    margin-bottom: 24px;
  }
  .secMessage .msgIn .msgTitle {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .secMessage .msgIn .msgBody {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
  .secMessage .msgIn .msgBody .msgText {
    font-size: 14px;
    line-height: 1.9;
  }
  .secMessage .msgIn .msgBody .msgPhotoWrap .msgPhoto {
    max-width: 160px;
  }
  .secMessage .msgIn .msgName {
    font-size: 11px;
    text-align: left;
    margin-top: 5px;
  }
  .secMessage .msgIn .msgName span {
    font-size: 14px;
  }
  .secEntry .entryIn {
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
  }
  .secEntry .entryIn .entryLeft {
    width: 100%;
  }
  .secEntry .entryIn .entryLeft .entryMainLabel {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .secEntry .entryIn .entryLeft .entryNote {
    font-size: 13px;
  }
  .secEntry .entryIn .entryRight {
    width: 100%;
    max-width: 100%;
  }
  .secEntry .entryIn .entryRight .entryBlock .entryBlockTitle {
    font-size: 15px;
  }
  .secEntry .entryIn .entryRight .entryBlock .entryBlockDesc {
    font-size: 13px;
  }
  .secEntry .entryIn .entryRight .entryBtn {
    width: 100%;
    height: 52px;
    font-size: 15px;
  }
  .secContact .contactIn {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
  }
  .secContact .contactIn .contactLeft,
  .secContact .contactIn .contactRight {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }
  .secContact .contactIn .contactLeft .contactImgWrap,
  .secContact .contactIn .contactRight .contactImgWrap {
    height: 160px;
  }
  .secContact .contactIn .contactLeft .contactBtn,
  .secContact .contactIn .contactRight .contactBtn {
    height: 48px;
    font-size: 15px;
  }
  .secContact .contactIn .contactLeft .contactDetail .contactDetailText {
    font-size: 14px;
  }
  .secContact .contactIn .contactLeft .contactDetail .contactDetailList {
    font-size: 14px;
  }
  .secContact .contactIn .contactRight .contactCatch {
    font-size: 16px;
  }
  .secPrivacy .ftrPrivacy {
    width: 100%;
    padding: 40px 20px;
  }
  .lpFtr .ftrIn {
    flex-direction: column;
    padding: 36px 20px;
  }
  .lpFtr .ftrIn .ftrMeta {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
.secLabel {
  position: relative;
  padding-bottom: 16px;
}
.secLabel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0057aa;
}/*# sourceMappingURL=style.css.map */