@charset "UTF-8";

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho",
    serif;
}
.dl-main {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Osaka-mono", "MS Gothic",
    "sans-serif";
}
.dl-main *,
.dl-main *::before,
.dl-main *::after {
  box-sizing: border-box;
}
.dl-main em {
  font-style: normal;
}

/* utility */
.dl-hidden-xl {
  display: none;
}
.dl-hidden-md {
  display: block;
}
.dl-hidden-sm {
  display: block;
}
.dl-visible-xl {
  display: block;
}
.dl-visible-md {
  display: none;
}
.dl-visible-sm {
  display: none;
}
@media (max-width: 1100px) {
  .dl-hidden-xl {
    display: block;
  }
  .dl-hidden-md {
    display: none;
  }
  .dl-visible-xl {
    display: none;
  }
  .dl-visible-md {
    display: block;
  }
}
@media (max-width: 740px) {
  .dl-hidden-sm {
    display: none;
  }
  .dl-visible-sm {
    display: block;
  }
}

/* common */
.dl-section {
  padding-block: 80px;
  position: relative;
}
.dl-section::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 33px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  left: 50%;
  bottom: -32px;
  translate: -50% 0;
  background: white;
  z-index: 1;
}
.dl-section.-gray::after {
  background: #eee;
}
.dl-section.-light-green::after {
  background: #eff2e9;
}
.dl-section.-yellow::after {
  background: #fbcf21;
}
.dl-section.-no-arrow::after {
  content: none;
}
.dl-section-title {
  border-left: 8px solid #086936;
  padding: 8px 20px 0 20px;
  display: grid;
  row-gap: 8px;
}
.dl-section-title.-white {
  color: white;
  border-left: 8px solid white;
}
.dl-section-title.-single {
  padding-top: 0;
}
.dl-section-title__sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.dl-section-title__main {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}
.dl-com-green {
  color: #31b06c;
}
.dl-com-bold {
  font-weight: 700;
}
.dl-com-inner {
  padding-inline: 50px;
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 1100px) {
  .dl-com-inner {
    padding-inline: 25px;
  }
}
@media (max-width: 740px) {
  .dl-section {
    padding-block: 56px;
  }
  .dl-section::after {
    height: calc(33 / 740 * 100vw);
    width: calc(160 / 740 * 100vw);
    bottom: calc(-32 / 740 * 100vw);
  }
  .dl-com-inner {
    padding-inline: 20px;
  }
  .dl-section-title__main {
    font-size: calc(48 / 740 * 100vw);
  }
  .dl-section-title__sub {
    font-size: calc(32 / 740 * 100vw);
  }
}

/* dl-mv-text */
.dl-mv {
  position: relative;
}
.dl-mv-text {
  position: absolute;
  top: 66%;
  left: 26.6%;
  translate: -50% -50%;
}
.dl-mv-heading {
  display: flex;
  align-items: center;
}
.dl-mv-heading-vertical {
  font-size: calc(33 / 1300 * 100vw);
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: -0.1em;
}
.dl-mv-heading-large {
  font-size: calc(96 / 1300 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15em;
  display: flex;
  align-items: center;
}
.dl-mv-heading-large::before {
  content: "W";
  font-size: calc(112 / 1300 * 100vw);
  letter-spacing: -0.1em;
}
.dl-mv-text-medium {
  font-size: calc(58 / 1300 * 100vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.dl-mv-text-small {
  font-size: calc(24 / 1300 * 100vw);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.03em;
}
@media (max-width: 740px) {
  .dl-mv-text {
    top: 49%;
    left: 50%;
    width: 100%;
  }
  .dl-mv-heading {
    justify-content: center;
  }
  .dl-mv-heading-vertical {
    font-size: calc(30 / 640 * 100vw);
    /* letter-spacing: -0.1em; */
  }
  .dl-mv-heading-large {
    font-size: calc(90 / 640 * 100vw);
    letter-spacing: -0.15em;
  }
  .dl-mv-heading-large::before {
    font-size: calc(105 / 640 * 100vw);
  }
  .dl-mv-text-medium {
    text-align: center;
    font-size: calc(54 / 640 * 100vw);
  }
  .dl-mv-text-small {
    text-align: center;
    font-size: calc(22 / 640 * 100vw);
    line-height: 1.9;
  }
}
/* dl-about */
.dl-about__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.dl-about__licenses {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.dl-about__license {
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 38px;
  border-radius: 100vmax;
  max-width: 240px;
  width: 100%;
  text-align: center;
}
.dl-about__license a {
  color: #fff;
  text-decoration: none;
}
.dl-about__license.-judo {
  background: #25a8be;
}
.dl-about__license.-acupuncture {
  background: #8eb73b;
}
.dl-about__description {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.dl-about__description::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 4px;
  opacity: 0.3;
  background: #fbcf21;
  width: calc(100% - 4px);
  height: calc(100% + 12px);
}
.dl-about__info {
  padding-top: 27px;
  margin-top: 32px;
  border-top: 2px solid #c7c7c7;
  width: fit-content;
  margin-inline: auto;
}
.dl-about__text {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(23 / 15);
  text-align: center;
}
.dl-about__courses {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.dl-about__course {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 100vmax;
  border: 2px solid #31b06c;
  background: #e4f4e6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 21px 7px 20px;
}
.dl-about__courses + .dl-about__text {
  margin-top: 16px;
}
@media (max-width: 740px) {
  .dl-about__title {
    font-size: calc(48 / 740 * 100vw);
  }
  .dl-about__licenses {
    gap: 6px;
    margin-top: 28px;
  }
  .dl-about__license {
    font-size: calc(40 / 740 * 100vw);
    max-width: calc(320 / 740 * 100vw);
    width: 100%;
    padding: calc(12 / 740 * 100vw) calc(24 / 740 * 100vw);
  }
  .dl-about__plus svg {
    width: 16px;
    height: 16px;
  }
  .dl-about__description {
    margin-top: 30px;
    font-size: calc(40 / 740 * 100vw);
    line-height: 1.4;
    text-align: center;
  }
  .dl-about__description::before {
    top: -6px;
    left: -4px;
    width: calc(100% + 4px);
    height: calc(100% + 12px);
  }
  .dl-about__text {
    font-size: calc(28 / 740 * 100vw);
  }
  .dl-about__courses {
    gap: 6px;
  }
  .dl-about__course {
    gap: 4px;
    border: 1px solid #31b06c;
    font-size: calc(28 / 740 * 100vw);
    padding: 4px 16px 5px 15px;
  }
  .dl-about__course svg {
    height: calc(28 / 740 * 100vw);
    width: auto;
  }
}

/* dl-merit */
.dl-merit {
  background: #eee;
}
.dl-merit__medias {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}
@media (max-width: 740px) {
  .dl-merit__medias {
    margin-top: 20px;
    gap: 20px;
  }
}
/* dl-media */
.dl-media {
  display: grid;
  border-radius: 16px;
  background: white;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 42px 40px 24px 40px;
}
.dl-media:first-child {
  padding: 42px 40px 85px;
}
.dl-media__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.dl-media__title-number {
  font-size: 56px;
  font-weight: 500;
  margin-right: 8px;
}
.dl-media__title-main {
  line-height: 1.3;
}
.dl-media__description {
  font-weight: 500;
  line-height: calc(32 / 16);
  margin-top: 8px;
  letter-spacing: -0.05em;
}
.dl-media__point {
  border: 2px solid #31b06c;
  background: #eff2e9;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 20px;
  width: fit-content;
}
.dl-media__point-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  background-color: #31b06c;
  color: white;
  padding-inline: 3px;
  padding-block-start: 1px;
  width: fit-content;
}
.dl-media__point-description {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(28 / 14);
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.dl-media__image {
  margin-top: -20px;
}
.dl-media:first-child .dl-media__image {
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .dl-media,
  .dl-media:first-child {
    grid-template-columns: 1fr 35%;
    padding: 24px 40px 24px 40px;
  }
  .dl-media__image,
  .dl-media:first-child .dl-media__image {
    margin-top: 0;
  }
}
@media (max-width: 740px) {
  .dl-media,
  .dl-media:first-child {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 28px;
  }
  .dl-media__title {
    font-size: calc(36 / 740 * 100vw);
  }
  .dl-media__title-number {
    font-size: calc(60 / 740 * 100vw);
  }
  .dl-media__description {
    font-size: calc(28 / 740 * 100vw);
    margin-top: 12px;
  }
  .dl-media__point {
    background: #eff2e9;
  }
  .dl-media__point-title {
    font-size: calc(28 / 740 * 100vw);
  }
  .dl-media__point-description {
    font-size: calc(24 / 740 * 100vw);
  }
  .dl-media__image,
  .dl-media:first-child .dl-media__image {
    margin-top: 0;
  }
}

/* dl-flow */
.dl-flow__description {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(30 / 24);
  margin-top: 40px;
  letter-spacing: 0;
}
.dl-flow__text {
  font-weight: 500;
  line-height: calc(32 / 16);
  margin-top: 8px;
  letter-spacing: -0.05em;
}
.dl-flow__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 60px;
}
.dl-flow__option {
  border-radius: 16px;
  border: 1px solid #808080;
  position: relative;
}
.dl-flow__option-recommend {
  position: absolute;
  top: -30px;
  left: 50%;
  translate: -50% 0;
  color: #31b06c;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.dl-flow__option-recommend::before,
.dl-flow__option-recommend::after {
  content: "|";
  position: absolute;
}
.dl-flow__option-recommend::before {
  left: -21px;
  rotate: -30deg;
}
.dl-flow__option-recommend::after {
  right: -21px;
  rotate: 30deg;
}
.dl-flow__option-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-block: 18px;
  border-bottom: 1px solid #808080;
  background-color: #eeebea;
  border-radius: 16px 16px 0 0;
}
.dl-flow__option-body {
  padding-block: 16px 20px;
  padding-inline: 12px;
  display: flex;
  justify-content: center;
}
.dl-flow__option-figure {
  margin-inline: auto;
}
.dl-flow__option-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 1100px) {
  .dl-flow__options {
    gap: 24px;
  }
}
@media (max-width: 740px) {
  .dl-flow__description {
    font-size: calc(36 / 740 * 100vw);
    margin-top: 30px;
  }
  .dl-flow__text {
    font-size: calc(28 / 740 * 100vw);
  }
  .dl-flow__options {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .dl-flow__option-recommend,
  .dl-flow__option-title {
    font-size: calc(27 / 740 * 100vw);
  }
  .dl-flow__option-caption {
    font-size: calc(18 / 740 * 100vw);
  }
}

/* dl-system */
.dl-system {
  background: #eff2e9;
}
.dl-system__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}
.dl-system__description {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(30 / 24);
  margin-top: 44px;
  margin-right: 80px;
  letter-spacing: 0.03em;
}
.dl-system__body {
  display: grid;
  gap: 48px;
  margin-top: 24px;
}
.dl-system__box {
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.15);
  padding: 20px 20px 40px;
}
.dl-system__box-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  border-radius: 8px;
  background: #31b06c;
  padding: 9px 10px 10px;
  text-align: center;
}
.dl-system__box-title em {
  color: var(--ThemeColor-Kiiro, #fbcf21);
}
.dl-system__box-title-number {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: 2px;
}
.dl-system__box-content {
  margin-top: 32px;
  padding-inline: 26px;
}
.dl-system__box-subheading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.dl-system__box-underline {
  text-decoration-thickness: 2px;
  text-decoration-color: #31b06c;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  display: inline-block;
}
.dl-system__lists {
  margin-top: 32px;
  display: grid;
  gap: 32px;
}
.dl-system__list {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-left: 32px;
}
.dl-system__list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.dl-system__remarks {
  font-weight: 500;
  line-height: calc(32 / 16);
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
  margin-left: 24px;
  letter-spacing: -0.05em;
}
.dl-system__remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.dl-system__target {
  margin-top: 10px;
  border-radius: 4px;
  background: #eeebea;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 16px 20px;
}
.dl-system__target-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-content: center;
  padding-right: 18px;
}
.dl-system__target-body {
  padding: 4px 20px;
  border-left: 1px solid #808080;
  display: grid;
  gap: 8px;
}
.dl-system__target-description {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(20 / 16);
}
a.dl-system__link {
  color: #086936;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}
.dl-system__link svg {
  margin-left: 16px;
  margin-bottom: 3px;
}
.dl-system__box-description {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(30 / 24);
  margin-top: 20px;
}
.dl-system__box-description + .dl-system__link {
  margin-top: 21px;
}
@media (max-width: 1100px) {
  .dl-system__description {
    margin-right: 0;
  }
}
@media (max-width: 740px) {
  .dl-system__title {
    font-size: calc(48 / 740 * 100vw);
  }
  .dl-system__description {
    font-size: calc(36 / 740 * 100vw);
  }
  .dl-system__box {
    padding: 15px 15px 30px 15px;
  }
  .dl-system__box-title {
    font-size: calc(36 / 740 * 100vw);
  }
  .dl-system__box-title-number {
    font-size: calc(48 / 740 * 100vw);
  }
  .dl-system__box-content {
    padding-inline: 0;
    margin-top: 24px;
  }
  .dl-system__box-subheading {
    font-size: calc(36 / 740 * 100vw);
  }
  .dl-system__lists {
    gap: 16px;
    margin-top: 24px;
  }
  .dl-system__list {
    font-size: calc(28 / 740 * 100vw);
    padding-left: calc(32 / 740 * 100vw);
  }
  .dl-system__remarks {
    font-size: calc(28 / 740 * 100vw);
    margin-left: calc(28 / 740 * 100vw);
  }
  .dl-system__target {
    grid-template-columns: 1fr;
  }
  .dl-system__target-title {
    font-size: calc(36 / 740 * 100vw);
    padding-right: 0;
  }
  .dl-system__target-body {
    border-left: 0;
    font-size: calc(28 / 740 * 100vw);
    padding: 0;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #808080;
  }
  .dl-system__target-description {
    font-size: calc(28 / 740 * 100vw);
  }
  a.dl-system__link {
    font-size: calc(28 / 740 * 100vw);
    text-decoration: underline;
  }
  a.dl-system__link svg {
    display: none;
  }
  .dl-system__box-description {
    font-size: calc(36 / 740 * 100vw);
  }
}

/* dl-faq */
.dl-faq {
  background: linear-gradient(180deg, #31b06c 0%, #31b06c calc(100% - 80px), #fbcf21 calc(100% - 80px), #fbcf21 100%);
  padding-block-end: 40px;
}
.dl-faq__splide {
  margin-top: 40px;
  max-width: 312px;
  margin-inline: auto;
}
.dl-faq__splide .splide__arrow {
  top: 81%;
  border-radius: 4px;
  height: 28px;
  width: 28px;
  /* background: #3e3a39; */
  opacity: 1;
  background: url(../../r4-renewal/img/common/carousel_arrow_right.svg) no-repeat center center / contain;
}
.dl-faq__splide .splide__arrow--prev {
  transform: translateY(-50%) rotate(180deg);
}
.dl-faq__splide .splide__arrow svg {
  height: 0;
  width: 0;
}
@media (min-width: 740px) {
  .dl-faq__splide {
    max-width: calc(312px + 32px + 312px);
  }
  .dl-faq .splide__list {
    padding-inline: 50px;
  }
}
@media (min-width: 1101px) {
  .dl-faq .splide {
    visibility: visible;
    max-width: 100%;
  }
  .dl-faq .splide__track {
    overflow: visible;
  }
  .dl-faq .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
@media (max-width: 360px) {
  .dl-faq__splide .splide__arrow {
    top: 81%;
    height: calc(28 / 360 * 100vw);
    width: calc(28 / 360 * 100vw);
  }
  .dl-faq__splide .splide__arrow svg {
    fill: white;
    height: max(9vw, 40px);
    width: calc(16 / 360 * 100vw);
  }
}

/* dl-interview */
.dl-interview__lists {
  background-color: white;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 8px 0 0 rgba(42, 150, 92, 1);
  position: relative;
  height: 500px;
  z-index: 0;
}
.dl-interview__lists:after {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  background: white;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(45deg) skew(calc((90deg - 90deg) / 2), calc((90deg - 90deg) / 2));
  box-shadow: 8px 8px 0 0 rgba(42, 150, 92, 1);
  z-index: -1;
}
.splide__slide.-first .dl-interview__list:last-child {
  margin-top: 15px;
}
.splide__slide.-second .dl-interview__list:last-child {
  margin-top: 36px;
}
.splide__slide.-third .dl-interview__list:last-child {
  margin-top: 36px;
}
.dl-interview__question {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}
.dl-interview__question-text {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(22.5 / 18);
  letter-spacing: 0;
}
.dl-interview__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 15px;
}
.dl-interview__answer-text {
  font-size: 12px;
  font-weight: 500;
  line-height: calc(20.4 / 12);
  letter-spacing: 0;
}
.dl-interview__profile {
  margin-top: 57px;
  display: grid;
  justify-content: center;
  position: relative;
}
.dl-interview__department {
  text-align: center;
  width: 187px;
  margin-inline: auto;
}
.dl-interview__profile-info {
  position: absolute;
  top: 37%;
  right: -10px;
  transform: translateY(-50%);
  transition: right 0.1s ease-in-out;
  z-index: 1;
}
.splide__slide.-third .dl-interview__profile-info {
  right: 15px;
}
.dl-interview__name {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.dl-interview__name span {
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.dl-interview__course {
  color: white;
  font-size: 11px;
  font-weight: 500;
  line-height: calc(14.3 / 11);
  margin-top: 6px;
}
.dl-interview__image {
  margin-top: -31px;
  position: relative;
  left: -10px;
  height: 232px;
  width: auto;
}
.splide__slide.-third .dl-interview__image {
  left: -35px;
}
.dl-interview__history {
  position: absolute;
  background-color: rgba(255 255 255 / 0.8);
  border-radius: 8px;
  padding: 12px;
  font-size: 10px;
  font-weight: 500;
  line-height: calc(15 / 10);
  bottom: 0;
  right: -50px;
  z-index: 1;
}
.splide__slide.-third .dl-interview__history {
  right: 0;
}

@media (max-width: 1100px) {
  .dl-interview__profile-info {
    right: 0;
  }
  .dl-interview__history {
    right: 0;
  }
}
@media (max-width: 360px) {
  .dl-interview__lists {
    border-radius: calc(32 / 360 * 100vw);
    padding: calc(30 / 360 * 100vw);
    box-shadow: 0 calc(8 / 360 * 100vw) 0 0 rgba(42, 150, 92, 1);
    height: calc(500 / 360 * 100vw);
  }
  .dl-interview__lists:after {
    height: calc(50 / 360 * 100vw);
    width: calc(50 / 360 * 100vw);
    bottom: calc(-20 / 360 * 100vw);
    box-shadow: calc(8 / 360 * 100vw) calc(8 / 360 * 100vw) 0 0 rgba(42, 150, 92, 1);
  }
  .splide__slide.-first .dl-interview__list:last-child {
    margin-top: calc(15 / 360 * 100vw);
  }
  .splide__slide.-second .dl-interview__list:last-child {
    margin-top: calc(36 / 360 * 100vw);
  }
  .splide__slide.-third .dl-interview__list:last-child {
    margin-top: calc(36 / 360 * 100vw);
  }
  .dl-interview__question {
    gap: calc(12 / 360 * 100vw);
  }
  .dl-interview__question img {
    width: calc(40 / 360 * 100vw);
    height: calc(40 / 360 * 100vw);
  }
  .dl-interview__question-text {
    font-size: calc(18 / 360 * 100vw);
  }
  .dl-interview__answer {
    gap: calc(12 / 360 * 100vw);
    margin-top: calc(15 / 360 * 100vw);
  }
  .dl-interview__answer img {
    width: calc(40 / 360 * 100vw);
    height: calc(40 / 360 * 100vw);
  }
  .dl-interview__answer-text {
    font-size: calc(12 / 360 * 100vw);
  }
  .dl-interview__profile {
    margin-top: calc(57 / 360 * 100vw);
  }
  .dl-interview__department {
    width: calc(187 / 360 * 100vw);
  }
  .dl-interview__profile-info {
    top: 37%;
  }
  .splide__slide.-third .dl-interview__profile-info {
    right: calc(15 / 360 * 100vw);
  }
  .dl-interview__name {
    font-size: calc(20 / 360 * 100vw);
  }
  .dl-interview__name span {
    font-size: calc(13 / 360 * 100vw);
  }
  .dl-interview__course {
    font-size: calc(11 / 360 * 100vw);
  }
  .dl-interview__image {
    margin-top: calc(-31 / 360 * 100vw);
    left: calc(-10 / 360 * 100vw);
    height: 232px;
  }
  .splide__slide.-third .dl-interview__image {
    left: calc(-35 / 360 * 100vw);
  }
  .dl-interview__history {
    border-radius: calc(8 / 360 * 100vw);
    padding: calc(12 / 360 * 100vw);
    font-size: calc(10 / 360 * 100vw);
  }
}
/* dl-message */
.dl-message {
  background-color: #eff2e9;
}
.dl-message__content {
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.15);
}
.dl-message__head {
  background: url(../img/double-license/message-head-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 32px;
}
.dl-message__title {
  font-size: 28px;
  font-weight: 700;
  line-height: calc(35 / 28);
}
.dl-message__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 6px;
}
.dl-message__body {
  background-color: white;
  border-radius: 0 0 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 12px 15px 0 32px;
}
.dl-message__texts {
  padding-block-end: 12px;
}
.dl-message__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0;
}
.dl-message__image {
  align-self: end;
}
@media (max-width: 1100px) {
  .dl-message__body {
    grid-template-columns: 1fr 228px;
  }
}
@media (max-width: 740px) {
  .dl-message__head {
    padding: 20px;
  }
  .dl-message__title {
    font-size: calc(36 / 740 * 100vw);
  }
  .dl-message__name {
    font-size: calc(28 / 740 * 100vw);
  }
  .dl-message__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "texts";
    padding: 20px;
  }
  .dl-message__texts {
    grid-area: texts;
  }
  .dl-message__text {
    font-size: calc(28 / 740 * 100vw);
  }
  .dl-message__image {
    grid-area: image;
    max-width: 80%;
    margin-inline: auto;
  }
}

/* dl-line */
.dl-line {
  padding-block-start: 112px;
}
.dl-line__inner {
  display: grid;
  place-content: center;
}
.dl-line__title {
  text-align: center;
}
.dl-line__banner {
  margin-top: 2px;
}
.dl-line__text {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: calc(35 / 28);
  margin-top: 48px;
}
.dl-line__tel {
  margin-top: 27px;
  margin-inline: auto;
}

@media (max-width: 740px) {
  .dl-line {
    padding-block-start: 80px;
  }
  .dl-line__text {
    font-size: calc(26 / 740 * 100vw);
  }
}
