@charset "UTF-8";
/*----------------------------------------------------
  base (styling element directly contain reset style)
----------------------------------------------------*/
:root {
  --font-primary: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, Arial, sans-serif;
  /*--font-en: "Jost", sans-serif;*/
}

body {
  min-width: initial;
  margin: 0;
  padding: 0;
  background: #fff;
  font-size: 1.6px;
  font-size: 1.6rem;
  font-family: var(--font-primary);
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: break-word;
  overflow-wrap: break-word;
  padding-top: constant(safe-area-inset-top);
  padding-right: constant(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-left: constant(safe-area-inset-left);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
}

.image {
  width: 100%;
  height: auto;
}
img {
}
main section {
  display: block;
  position: relative;
}

.footer {
  font-family: var(--font-primary);
}

/* 動き */
.sa {
  opacity: 0;
  transition: all 1.2s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
/*下から上にフェードイン*/
.sa--up {
  transform: translate(0, 20px);
}
::selection {
    background-color: #2A3889;
    color: #FFF;
}

.section {
  background: #FFF;
  border-radius: 50px 50px 0 0;
  position: relative;
  padding: 0;
  margin: 0;
  opacity: 1;
}

.section__sticky {
  position: sticky;
  top: 0;
}
.section__inner {
  max-width: 1190px;
  position: relative;
  padding: 0 20px;
  padding: 90px 20px 180px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@keyframes titleJp {
  0% { width: 0%; }
  80% { width: 100%; }
  100% { width: 100%; }
}
@keyframes titleEn {
  0% { width: 0%; }
  100% { width: 100%; }
}
.section__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
  color: #2A3889;
  position: relative;
  width: fit-content;
  overflow: hidden;
  margin: auto auto 3.5em;
}
.section__titleJp {
  width: 0%;
  display:inline-block;
  white-space:nowrap;
  overflow: hidden;
  opacity: 1;
  letter-spacing: .1em;
}
.section__titleJp.show {
  animation: titleJp 1.5s forwards cubic-bezier(1, 0, 0, 1);
}
.section__titleEn {
  color: #2A3889;
  display: block;
  /*font-family: var(--font-en);*/
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  width: 0%;
  white-space:nowrap;
  overflow: hidden;
  padding: 16px 0 38px;
  opacity: 1;
  letter-spacing: .05em;
}
.section__titleEn.show {
  animation: titleEn .8s forwards cubic-bezier(1, 0, 0, 1);
}
.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(90deg, #2A3889, #E285A9);
  width: 80px;
  height: 2px;
}

.title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
  color: #2A3889;
}

.contents p {
  color: #000;
  margin-bottom: 0;
  line-height: 1.8;
  text-align: left;
}
.contents p + p {
  margin-top: 1em;
}

.note {
  font-size: 80%;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.5;
}

.note + .note {
  margin-top: 0.25em;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .section {
    margin: 0;
    border-radius: 30px 30px 0 0;
  }
  .section__inner {
    width: 100%;
    padding: 30px 20px 140px;
  }
  .section__title {
    font-size: 1.4rem;
    margin-bottom: 4em;
  }
  .section__titleEn {
    font-size: 5rem;
    padding: 10px 0 20px;
  }
  .title {
    font-size: 2rem;
  }
}



/* hero ------------------------------*/
.hero {
  border-radius: 0;
  overflow: hidden;
  background: #FFF;
  z-index: 1;
  top: 0 !important;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 860px;
  height: 100%;
  background-image: url(/service/dlit_asset/img/img_kv_bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
.hero.is-end {
  position: sticky;
  z-index: 1;
  background: #FFF;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero .section__inner {
  padding: 100px 20px 100px;
}

.hero__body {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero__body .text {
  padding: 20px 0 30px;
  opacity: 1;
}
.hero__body .text .p {
  white-space:nowrap;
  overflow: hidden;
  width: 0%;
}
.hero__body .text .p.show {
  animation: titleJp 2s forwards cubic-bezier(1, 0, 0, 1);
}

.hero__body .image {
  width: 100%;
  max-width: 550px;
}
.hero__body .image img {
  width: 100%;
  height: auto;
}

.hero__body .title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: #000;
  margin-bottom: 0;
}
.hero__body .title img {
  min-width: fit-content;
}
.hero__body .title span {
  display: block;
  margin: 1.75em 0 .5em;
}

.hero__body p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.hero__btn {
  display: flex;
  gap: 20px;
  min-width: fit-content;
  margin-top: 60px;
}
@media screen and (min-width: 2600px) {
  .hero::after {
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 70%;
    width: 860px;
    height: 100%;
    background-image: url(/service/dlit_asset/img/img_kv_bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1001px) {
  .hero {
    min-height: 640px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) {
  .hero .section__inner {
    padding: 60px 20px 100px;
  }
  .hero__body {
    align-items: center;
    flex-direction: column;
  }
  .hero__body .text {
    width: 100%;
    padding: 0;
    margin-right: 0;
  }
  .hero__body .title {
    font-size: 2.4rem;
    line-height: 1.25;
    padding: 0;
    margin-bottom: 10px;
  }
  .hero__body .title span {
    margin: 1.25em 0 .5em;
  }
  .hero__body .title img {
    width: 180px;
    min-width: 180px;
    max-width: 100%;
    height: auto;
  }
  .hero__body .image.pc {
    display: none;
  }
  .hero__body .image.sp {
    display: block !important;
    max-width: 450px;
  }
  .hero__body .image {
    width: 70vw;
    margin: 20px auto 20px;
  }
  .hero__body .p {
    font-size: 1.6rem;
  }
  .hero__btn {
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding-bottom: 60px;
  }
  .hero .section__inner {
    padding: 40px 20px 60px;
  }
  .hero::before {
    background-image: url(/service/dlit_asset/img/img_contact_bg.png);
    background-position: bottom right;
    width: 280px;
  }
  .hero__body .image.sp {
    max-width: 480px;
  }
  .hero__btn {
    gap: 8px;
    margin-top: 20px;
  }
}



/* service ------------------------------*/
.service {
  z-index: 2;
}
.service::after {
  background: #FFF;
  border-radius: 50px 50px 0 0;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}

.service__itemList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  margin: 60px auto;
  position: relative;
}

.service__itemList .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__itemList .item:nth-child(1) {
  width: 324px;
  height: 324px;
}
.service__itemList .item:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 324px;
  height: 324px;
  background-image: url(/service/dlit_asset/img/img_service.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
.service__itemList .item:nth-child(1) p {
  padding: 0 0 50px 50px;
}
.service__itemList .item:nth-child(3) {
  width: 300px;
  height: 300px;
  margin: 60px 0 0 30px;
}
.service__itemList .item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: #E3DCF3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  border-radius: 300px;
}

#main .service__itemList .item p {
  color: #2A3889;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.service__box {
  border: 2px solid #DFE1ED;
  border-radius: 20px;
  box-sizing: border-box;
  max-width: 1020px;
  padding: 30px 40px 40px;
  margin: auto;
}
.service__bownet {
  display: flex;
  flex-wrap: nowrap;
}
.service__bownet > img {
  width: 120px;
  height: 120px;
  margin: 6px 30px 0 0;
}
@media screen and (max-width: 1000px) {
  .service__itemList {
    gap: 0px;
  }
  .service__itemList .item:nth-child(1),
  .service__itemList .item:nth-child(1)::before {
    width: 300px;
    height: 300px;
  }
  .service__itemList .item:nth-child(3),
  .service__itemList .item:nth-child(3)::before {
    width: 280px;
    height: 280px;
  }
}
@media screen and (min-width: 769px) {
  #main .service .section__title + p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .service::after {
    border-radius: 30px 30px 0 0;
  }
  #main .service__itemList .item p {
    font-size: 1.5rem;
  }
  .service__box {
    border-radius: 10px;
    padding: 30px 20px 40px;
  }
  .service__bownet {
    flex-wrap: wrap;
  }
  .service__bownet > img {
    width: 60px;
    height: 60px;
    margin: auto auto 10px;
  }
}
@media screen and (max-width: 767px) {
  .service__itemList {
    margin: 40px auto 40px;
  }
  .service__itemList {
    flex-direction: column;
  }
  .service__itemList .item:nth-child(1),
  .service__itemList .item:nth-child(1)::before {
    width: 220px;
    height: 220px;
  }
  .service__itemList .item:nth-child(1)::before {
    transform: rotate(-20deg);
    margin-right: 10px;
  }
  .service__itemList .item:nth-child(3),
  .service__itemList .item:nth-child(3)::before {
    width: 200px;
    height: 200px;
    margin: 0;
  }
  .service__itemList .item:nth-child(1) p {
    padding: 0 0 2.5em 0;
  }
  .img_arrow {
    width: 60px;
    transform: rotate(90deg) !important;
    margin: 0 0 40px;
  }
  .img_arrow.show {
    transform: rotate(90deg) !important;
  }
}


/* feature ------------------------------*/
.feature {
  background: #F3F3F7;
  z-index: 3;
}
.feature::after {
  background: #F3F3F7;
  border-radius: 50px 50px 0 0;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}

.feature .section__title em.line {
  background: #fff;
  color: #0068B4;
  padding: 0 .2em .1em;
}

.feature__itemList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.feature .num {
  color: #2A3889;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: .05em;
}
.feature .sub {
  background-color: #FFF;
  border-radius: 50px;
  color: #2A3889;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: .5rem 3.25rem;
}

.feature__nav {
  background-color: #2A3889;
  border-radius: 20px;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.feature__nav .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none !important;
  width: calc(100% / 3);
  position: relative;
  padding: 0 0 50px;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}
.feature__nav .item:hover {
  opacity: .7;
}
.feature__nav .num {
  color: #FFF;
  display: block;
  margin: 0 0 .25em;
}
#main .feature__nav p {
  color: #FFF;
  text-align: center;
  padding: 0 1em;
}

.feature__nav .item::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 2px solid white;
  border-right: 2px solid white;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 11px;
  height: 11px;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}
.feature__nav .item:hover::before {
  bottom: 12px;
}
.feature__nav .item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  width: 1px;
  height: 80%;
}
.feature__nav .item:last-child::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .feature::after {
    border-radius: 30px 30px 0 0;
  }
  .feature .num {
    font-size: 2.5rem;
    margin: 0;
  }
  .feature .sub {
    font-size: 1.4rem;
    padding: .25rem 2.5rem;
  }
  .feature__nav {
    flex-direction: column;
    padding: 10px 20px;
  }
  .feature__nav .item {
    width: 100%;
    padding: 16px 0 40px;
  }
  .feature__nav .item::before {
    bottom: 20px;
    width: 7px;
    height: 7px;
  }
  .feature__nav .item::after {
    top: initial;
    left: 0;
    width: 100%;
    height: 1px;
  }
  #main .feature__nav p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  #main .feature__nav p + p {
    margin-top: 0;
  }
}


.feature__itemList .item {
  box-sizing: border-box;
  display: flex;
  gap: 20px 80px;
  width: 100%;
  margin-top: 160px;
}
.feature__itemList .text {
  width: calc(100% / 2);
}
.feature__itemList .text p:first-of-type {
  display: flex;
  align-items: center;
}
.feature__itemList .text .num {
  font-size: 8rem;
  margin-right: 20px;
}
.feature__itemList .text .title {
  text-align: left;
  margin-bottom: 40px;
}

.feature__itemList .item .image {
  background-color: #E9E9F1;
  border-radius: 20px;
  width: calc(100% / 2);
  max-width: 510px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .feature__itemList .item:nth-child(2) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .feature__itemList {
    flex-direction: column;
    padding: 0 20px;
  }
  .feature__itemList .item {
    flex-direction: column;
    margin-top: 40px;
  }
  .feature__itemList .text {
    width: 100%;
  }
  .feature__itemList .text .num {
    font-size: 6rem;
  }
  .feature__itemList .text .title {
    margin-bottom: 20px;
  }
  .feature__itemList .item .image {
    width: 100%;
    border-radius: 10px;
  }
}



/* course ------------------------------*/
.course {
  z-index: 4;
}
.course::after {
  background: #2A3889;
  border-radius: 50px 50px 0 0;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}
.course .section__title {
  color: #FFF;
}
.course .section__titleEn {
  color: #FFF;
}

#main .course__itemList .p {
  background-color: #E3DCF3;
  border-radius: 20px 20px 0 0;
  color: #2A3889;
  font-weight: 700;
  width: fit-content;
  padding: 1em 2.5em;
  margin: 0 auto 0 0;
}
#main .course__itemList .p.-style02 {
  background-color: #D6E0F2;
}
#main .course__itemList .p span {
  display: block;
}
.course__itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 15px;
  max-width: 960px;
  margin: auto;
}

.course__itemList .item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFF;
  border-radius: 0 20px 100px 20px;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 70px 80px;
  margin-bottom: 60px;
}

.course__itemList .item:nth-child(2) .p {
  background-color: #D6E0F2;
}

.course__itemList .item .title {
  display: flex;
  font-size: 2.8rem;
  text-align: left;
  margin-bottom: 45px;
}
.course__itemList .item .title img {
  margin-right: 20px;
  vertical-align: middle;
}

.course__list {
  display: flex;
  gap: 12%;
}
.course__list .list {
  margin-bottom: 0;
}
.course__list .list.-dot > li:before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 6px;
  height: 6px;
  background-color: #2A3889;
  border-radius: 50%;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}


@media screen and (max-width: 768px) {
  .course::after {
    border-radius: 30px 30px 0 0;
  }
  .course__itemList {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #main .course__itemList .p {
    border-radius: 10px 10px 0 0;
  }
  .course__itemList .item {
    border-radius: 0 10px 60px 10px;
    padding: 30px 30px;
    width: 100%;
    margin-bottom: 40px;
  }
  .course__itemList .p.-style02 + .item {
    margin-bottom: 0;
  }
  .course__itemList .item .title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .course__itemList .item .title img {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  .course__list {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 540px) {
  .course__itemList .item {
    border-radius: 0 0 60px 10px;
  }
}



/* faq ------------------------------*/
.faq {
  position: relative;
  padding: 0 0 20px;
  margin: 0;
  opacity: 1;
  z-index: 5;
}
.faq::after {
  background: #FFF;
  border-radius: 50px 50px 0 0;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 0;
  }
  .faq::after {
    border-radius: 30px 30px 0 0;
  }
}

.details {
  background: #F3F3F7;
  border-radius: 20px;
  overflow: hidden;
}
.details + .details {
  margin-top: 16px;
}
.details .summary {
  position: relative;
  display: block;
  padding: 2em 5em 2em 7.5em;
  cursor: pointer;
  transition: all .15s, color .15s;
  position: relative;
}
.details summary {
  list-style: none;
}
.details summary::-webkit-details-marker {
  display: none;
}
.details .summary:hover {
}
@media screen and (max-width: 767px) {
  .details + .details {
    margin-top: 8px;
  }
  .details .summary {
    padding: 1.5em 3.75em 1.5em 5em;
  }
}
.details .summary span {
  color: #2A3889;
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .details .summary span {
    font-size: 1.6rem;
  }
}
.details .summary .faq_q {
  position: absolute;
  top: 22px;
  left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: auto;
  background-color: #2A3889;
  font-size: 2rem;
  font-weight: 300;
  color: #FFF;
  line-height: 1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .details .summary .faq_q {
    font-size: 1.4rem;
    top: 15px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}
.details .summary::before, .details .summary::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #2A3889;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, opacity 0.15s;
  transition: transform 0.15s, opacity 0.15s, -webkit-transform 0.15s;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .details .summary::before, .details .summary::after {
    right: 20px;
  }
}
.details .summary::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.details .summary.open {
  border-radius: 20px 20px 0 0;
  transition: all .15s, color .15s;
}
.details .summary.open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.details .summary.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.details.open .summary::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.details.open .summary::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.details .answer {
  background: #F3F3F7;
  border-radius: 0 0 20px 20px;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.details .answer .answer__inner {
  padding: .5em 1.5em 2em 7.5em;
}
@media screen and (max-width: 767px) {
  .details .answer .answer__inner {
    padding: .25em 1em 1em 5em;
  }
}
.details .answer .faq_a {
  position: absolute;
  top: 0;
  left: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: auto;
  background-color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #2A3889;
  line-height: 1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .details .answer .faq_a {
    font-size: 1.4rem;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}
.details .answer p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .details .answer p {
    font-size: 1.4rem;
  }
}



/* news ------------------------------*/
.news {
  position: relative;
  padding: 0 0 60px;
  margin: 0;
  opacity: 1;
  z-index: 6;
}
.news::after {
  background: #FFF;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}
.news .section__inner {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0;
  }
  .news::after {
    border-radius: 30px 30px 0 0;
  }
}

.news .news__itemList {
  border-top: 1px solid #DFE1ED;
  width: 100%;
  max-width: 960px;
  margin: auto auto 60px;
}
.news .news__itemList .item {
  background: #FFF;
  border-bottom: 1px solid #DFE1ED;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5em 0;
}
.news .news__itemList .item + .item {
}
.news .news__itemList time {
  color: #646464;
  display: block;
  width: 8em;
}
.news .news__itemList a {
  background: #FFF;
  text-decoration: underline;
  color: #2A3889;
  font-size: 1.8rem;
}
.news .news__itemList a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .news .news__itemList .item {
    flex-wrap: wrap;
  }
  .news .news__itemList a {
    display: block;
    font-size: 1.6rem;
  }
  .news .news__itemList .date {
    width: 100%;
  }
  .news .news__itemList time {
    font-size: 1.4rem;
    margin-bottom: .5em;
  }
}


.banner {
}
.banner .section__inner {
  padding-top: 0;
}
.banner .banner__itemList {
  width: 100%;
  max-width: 960px;
  margin: auto;
}
.banner .banner__itemList .item {
  background: #F3F3F7;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 40px;
  text-decoration: none;
  padding: 3.75em 6em 3.75em 3em;
  position: relative;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.banner .banner__itemList .item:hover {
  background: #F6F6F9;
}
.banner .banner__itemList .item img {
  height: 100%;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.banner .banner__itemList .item .text {
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.banner .banner__itemList .item:hover img,
.banner .banner__itemList .item:hover .text {
  opacity: .7;
}
.banner .banner__itemList .text .balolon {
  background-color: #E3DCF3;
  border-radius: 50px;
  color: #2A3889;
  font-size: 1.6rem;
  font-weight: bold;
  width: fit-content;
  padding: .6em 1.5em;
  position: relative;
}
.banner .banner__itemList .text .balolon::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -18px;
  box-sizing: border-box;
  width: 18px;
  height: 10px;
  border: 9px solid transparent;
  border-top: 12px solid #E3DCF3;
  margin: auto;
}
.banner .banner__itemList .text .title {
  color: #2A3889;
  font-size: 1.8rem;
  font-weight: bold;
}
.banner .banner__itemList .text .title .large {
  color: #2A3889;
  font-size: 2.8rem;
}
@media screen and (max-width: 950px) {
  .banner {
  }
  .banner .banner__itemList .item {
    align-items: center;
    flex-direction: column;
    padding: 2em 3.75em;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner__itemList .item {
    align-items: center;
    flex-direction: column;
    padding: 2.5em 2em 5em;
  }
  .banner .banner__itemList .text .balolon {
    font-size: 1.4rem;
    padding: .6em 1.5em;
  }
  .banner .banner__itemList .text .title {
    font-size: 1.4rem;
  }
  .banner .banner__itemList .text .title .large {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.banner .banner__itemList .item .icon {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
}
.banner .banner__itemList .item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #FFF;
  z-index: 1;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.banner .banner__itemList .item::before {
  left: 864px;
}
.banner .banner__itemList .item:hover::before {
  width: 56px;
  height: 56px;
}
.banner .banner__itemList .item .icon::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2A3889;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.banner .banner__itemList .item:hover .icon::before {
  background-color: #F6F6F9;
}

.banner .banner__itemList .item .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  color: #FFF;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICNmZmY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICNmZmY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==");
  -webkit-mask-repeat: no-repeat;
}
.banner .banner__itemList .item:hover .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  color: #003C72;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICMyYTM4ODk7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==');
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICMyYTM4ODk7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==');
  -webkit-mask-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1010px) {
  .banner .banner__itemList .item:hover::before {
    content: none;
  }
  .banner .banner__itemList .item:hover .icon::before {
    background: #FFF;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner__itemList .item .icon {
    top: initial;
    bottom: 25px;
    right: 25px;
    margin: auto;
  }
}



/* contact ------------------------------*/
section.contact {
  position: relative;
  z-index: 10;
}
section.contact::before {
  background: #F3F3F7;
  border-radius: 50px 50px 0 0;
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: -1;
}
.contact .section__inner {
  padding: 90px 20px 140px;
  position: static;
}
section.contact .section__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/service/dlit_asset/img/img_contact_bg.png);
  background-size: 500px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}

.contact__itemList {
  display: flex;
  gap: 10px 20px;
  width: 100%;
  max-width: 960px;
  margin: auto;
}

.contact__itemList .item {
  background-color: #FFF;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  padding: 60px 20px;
}

#main .contact__itemList .item .t-center {
  color: #2A3889;
  font-weight: 700;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .contact {
    margin: 0;
  }
  section.contact::before {
    border-radius: 30px 30px 0 0;
  }
  section.contact .section__inner::before {
    width: 60%;
  }
  .contact .section__inner {
    padding: 30px 20px 80px;
  }
  .contact__itemList {
    flex-direction: column;
  }
  .contact__itemList .item {
    border-radius: 10px;
    padding: 40px 20px;
  }
}



.hero .btn {
  max-width: 220px;
}
.contact .btn {
  margin: 30px auto 0;
}

.btn {
  border: 1px solid #2A3889;
  display: block;
  position: relative;
  z-index: 999;
  overflow: hidden;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 700;
  padding: 1.4em 2.25em;
  width: 300px;
  background: #2A3889;
  color: #FFF;
  border-radius: 100px;
  box-sizing: border-box;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.btn:visited {
  color: #FFF;
}

.btn:hover {
  text-decoration: none;
  background: #FFF;
  border: 1px solid #2A3889;
  color: #2A3889;
}
.btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 170px;
  right: 20px;
  margin: auto;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #2A3889;
  z-index: 1;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.contact .btn::before {
  left: 250px;
}
.btn:hover::before {
  width: 28px;
  height: 28px;
}

.btn .icon {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.btn .icon::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}

.btn .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
  color: #003C72;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICMyYTM4ODk7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==');
  mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICMyYTM4ODk7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==');
  -webkit-mask-repeat: no-repeat;
}
.btn:hover .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
  color: #FFF;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICNmZmY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS42NjkiIGhlaWdodD0iMTEuNjY5IiB2aWV3Qm94PSIwIDAgMTEuNjY5IDExLjY2OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICNmZmY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBpZD0iYXJyb3dfZm9yd2FyZF81MDBkcF8wMDY4QjRfRklMTDBfd2dodDYwMF9HUkFEMF9vcHN6NDgiIGNsYXNzPSJjbHMtMSIgZD0iTTE1NC44ODktODA4LjE2OUgxNDUuODd2LTEuMzgyaDkuMDE5bC00LjE2OS00LjE2OS45NzktLjk3OSw1Ljg0LDUuODQtNS44NCw1LjgzTDE1MC43Mi04MDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTQ1Ljg3IDgxNC43KSIvPjwvc3ZnPg==");
  -webkit-mask-repeat: no-repeat;
  z-index: 1;
}

.contact .btn .img {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  vertical-align: bottom;
  margin-right: 10px;
  transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.contact .btn.dl .img {
  background-image: url('/service/dlit_asset/img/icon_dl.png');
}
.contact .btn.contact .img {
  background-image: url('/service/dlit_asset/img/icon_contact.png');
}
.contact .btn.dl:hover .img {
  background-image: url('/service/dlit_asset/img/icon_dl-hover.png');
}
.contact .btn.contact:hover .img {
  background-image: url('/service/dlit_asset/img/icon_contact-hover.png');
}


@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.4rem;
    width: 100%;
    padding: 1.4em 1.25em;
  }
  .btn::before {
    left: 123px;
    right: 10px;
  }
  .hero .btn:hover::before {
    content: none;
  }
  .hero .btn:hover .icon::before {
    background: #2A3889;
  }
  .contact .btn {
    max-width: 260px;
    margin: 20px auto 0;
  }
  .contact .btn::before {
    left: 220px;
  }
  .btn .icon {
    right: 10px;
  }
}



/*お問い合わせフォーム*/
section.contact {
  background: #F3F3F7;
}
section.contact:first-child::before {
  content: none;
}
section.contact:first-child .section__inner::before {
  content: none;
}
.dlit-contact .contact__text {
  max-width: 960px;
  margin: 0 auto 40px;
}
.dlit-contact .contact__itemList .item {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .dlit-contact #main .contact__text p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .dlit-contact .contact__text + .contact__itemList .item {
    padding: 0;
  }
}
.dlit-contact [data-hsfc-id=Renderer] .hsfc-Button {
  border: 1px solid #2A3889;
  display: block;
  position: relative;
  z-index: 999;
  overflow: hidden;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 700;
  padding: 1.4em 2.25em;
  background-color: #2A3889; 
  box-sizing: border-box;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}
.dlit-contact [data-hsfc-id=Renderer] .hsfc-Button:hover {
  background-color: #FFF !important;
  border: 1px solid #2A3889 !important;
  color: #2A3889 !important;
  transform: none !important;
}
.dlit-contact  textarea {
  min-height: 200px;}