@charset "utf-8";


/* =====================================
  /common/css/common.css
===================================== */
/* .bg-wave */
.bg-wave {
  padding: 140px 20px 170px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bg-wave {
    padding: 70px 20px 110px;
  }
}

/* text */
.contents-title{
  margin-bottom: 40px;
  font-size: 2rem;
}
.contents-text + .contents-text{
  margin-top: 30px;
}

.contents-text .marker{
  background: linear-gradient(transparent 70%, var(--color-orange200) 0%);
  padding: 0 0 0 0.3rem;
}

/* container */
.max-container{
  margin-top: -110px;
  position: relative;
  z-index: 1;
}

.max-container::before,
.max-container::after{
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 1180px) {
.max-container::before,
.max-container::after{
  content: none;
}
}

.max-container::before{
  width: 358px;
  height: 476px;
  background: url(/class/report/common/img/bg_report_loop_01.svg) no-repeat center / contain;
  top: 138px;
  left: -240px;
}

.max-container::after{
  width: 453px;
  height: 423px;
  background: url(/class/report/common/img/bg_report_loop_02.svg) no-repeat center / contain;
  bottom: -206px;
  right: -258px;
}

.container__inner--max840{
  max-width: 840px;
  margin: auto;
}

.report{
  background: var(--color-mono100);
}

.report .bg-wave{
  padding-top: 185px;
  margin-top: -140px;
}

.contents-banner__container{
  padding: 64px 20px;
  background: var(--color-mono100);
}

@media screen and (max-width: 767px) {
  .contents-title{
    margin-bottom: 30px;
    font-size: 1.75rem;
  }

  .max-container{
    margin-top: -50px;
    padding-bottom: 30px;
  }

  .container--box{
    padding: 32px 24px;
  }

  .contents-banner__container{
    padding: 40px 20px;
  }
}


/* =====================================
  hero
===================================== */
.hero{
  min-height: auto;
  background: none;
}
.hero__inner {
  min-height: auto;
}

.hero__overview .title-treat--type02 {
  font-size: 1.75rem;
  letter-spacing: 3%;
}

.title-treat--type02--wide{
  width: 860px;
  margin-left: -45px;
}

@media screen and (max-width: 1120px) {
  .title-treat--type02--wide{
    width: 100%;
    margin-left: 0;
  }
}

.hero__overview-term{
  min-width: 160px;
}

@media screen and (min-width: 767px) {
.hero__inner {
  min-height: auto;
}
.hero__overview-list{
  flex-direction: row;
  flex-wrap: wrap;
}

.hero__overview-row{
  width: calc(100% / 2 - 12px);
}
}

@media screen and (max-width: 767px) {
  .hero__overview .title-treat--type02{
    text-align: left;
    font-size: 1.25rem;
  }

  .hero__overview .title-treat__inner--type02{
    padding: 0;
  }

  .hero__overview .title-treat__inner--type02::before,
  .hero__overview .title-treat__inner--type02::after{
    content: none;
  }
}


/* =====================================
  overview-img
===================================== */
.overview-img img{
  width: 100%;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .overview-img img{
    margin-bottom: 20px;
  }
}


/* =====================================
  class01,02~
===================================== */
.classes{
  padding-bottom: 74px;
}
.class__title--underline{
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-mono400);
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.84px;
  margin-top: 64px;
  margin-bottom: 24px;
}

.classes .contents-title{
  margin-bottom: 64px;
}

.classes .contents-text{
  margin-bottom: 30px;
}

.classes .contents-image{
  max-width: 404px;
}

.class01 img{
  margin-bottom: 8px;
}

.class01 .contents-text--20{
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.;
}

.class02 .contents-title{
  margin-top: 90px;
}

.class02 .contents-title + .class__title--underline{
  margin-top: 64px;
}

.class02 .class__title--underline{
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .class__title--underline{
    font-size: 1.25rem;
    letter-spacing: 0.72px;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .classes img{
    width: 100%;
  }

  .class01 .contents-text--16{
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .class01 .contents-text--20{
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .class02 .contents-title{
    margin-top: 80px;
  }

  .class02 .class__title--underline:first-of-type{
    margin-top: 0;
  }

  .class02 .class__title--underline:not(:first-of-type){
    margin-top: 64px;
  }
}


/* =====================================
  voice/interview_common
===================================== */
:is(.voice,.interview) .contents-title{
  margin-bottom: 48px;
}

:is(.voice,.interview) dt{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: 32px;
  line-height: 1.5;
}

:is(.voice,.interview) dt::before{
  position: absolute;
  top: 0.8em;
  transform: translateY(-50%);
  left: 0;
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-blue950);
}

:is(.voice,.interview) dd{
  background: var(--color-mono100);
}

@media screen and (max-width: 767px) {
  :is(.voice,.interview) dt{
    margin-bottom: 12px;
    font-size: 1.125rem;
    padding-left: 24px;
  }

  :is(.voice,.interview) dt::before{
    width: 16px;
  }
}

/* =====================================
  voice
===================================== */
.voice .container{
  padding: 64px 80px;
}

.voice dl{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

[class^="voice__card"] {
  border-radius: 12px;
  padding: 24px 32px;
  width: calc(100% / 2 - 16px);
  position: relative;
}

[class^="voice__card"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-bottom-right-radius: 12px;
}

.voice__card--orange::after{
  border-color: transparent transparent var(--color-orange500) transparent;
}

.voice__card--blue::after{
  border-color: transparent transparent var(--color-blue600) transparent;
}

.voice__card--100{
  width: 100%;
}

@media screen and (max-width: 767px) {
  .voice .container{
    padding: 32px 24px;
  }
  .voice dl{
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
  }

  [class^="voice__card"] {
    width: 100%;
    padding: 16px 20px;
  }
}


/* =====================================
  interview
===================================== */
.interview dl{
  margin-top: 40px;
}
.interview dd{
  border-radius: 12px;
  padding:  24px 32px;
  display: flex;
  gap: 24px;
  box-shadow: #EBE0D0 8px 8px 0;
}

.interview__img{
  flex: 0 0 120px;
}

@media screen and (max-width: 767px) {
  .interview dl{
    margin-top: 36px;
  }

  .interview dt{
    margin-bottom: 20px;
  }

  .interview dd{
    padding: 12px 16px 20px;
    box-shadow: #EBE0D0 6px 6px 0;
    flex-direction: column;
    gap: 8px;
  }

  .interview__img{
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
}


/* =====================================
  summary
===================================== */
.summary{
  padding-bottom: 56px;
}

@media screen and (max-width: 767px) {
  .summary{
    padding-bottom: 45px;
  }
}

/* =====================================
  onsite-class
===================================== */
.onsite-class{
  padding: 56px 20px 0;
}
.onsite-class__title{
  text-align: center;
}

.onsite-class__title img{
  max-width: 356px;
}

.onsite-class__links{
  max-width: 1164px;
  border-top: none;
  gap: 40px;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .onsite-class{
    padding-top: 40px;
  }
  .onsite-class__title img{
    max-width: 270px;
    width: 90%;
  }

  .onsite-class__links{
    gap: 20px;
    margin-top: 0;
  }
}
