@charset "utf-8";

/*================================================
  one-day
================================================*/

/*------------------------------------------------
  intro
------------------------------------------------*/

.intro {
  position: relative;
}
.intro::before {
  content: "";
  display: block;
  background-image: url(../../../image/common/common_logo_mark.svg);
  background-size: contain;
  background-position: top 30% right;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.15;
  top: 200px;
  right: 0;
  width: 50%;
  height: 100%;
}
.intro-container {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.intro-pic {
  position: relative;
  max-width: 500px;
}
.intro-pic::after {
  content: "";
  display: block;
  width: 120px;
  height: 70px;
  background-image: url(../../../image/recruit/one-day/intro_text_img.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  left: -10px;
  top: 0;
}
.intro-pic > img {
  border: 6px solid #fff;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.15));
  transform:rotate(-2deg) ;
}

.intro-text {
  margin: 3em auto;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
  font-weight: 700;
  width: 96%;
  max-width: 400px;
  line-height: 2.75;
}


@media print, screen and (min-width: 769px) {
  .intro-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .intro-pic {
    width: 38%;
  }
  .intro-text {
    width: 58%;
    max-width: inherit;
    margin: 1em 0;
  }
}

@media print, screen and (min-width: 960px) {
  .intro-pic {
    width: 44%;
  }
  .intro-text {
    width: 48%;
    line-height: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .intro-pic {
    width: 46%;
  }
  .intro-text {
    width: 46%
  }
  .intro-pic::after {
    width: 241px;
    height: 156px;
    left: -60px;
    top: -20px;
  }
}
@media print, screen and (min-width: 1600px) {
  .intro-pic {
    width: 600px;
    max-width: 600px;
  }
  .intro-text {
    width: 40%;
  }
  .intro-pic::after {
    left: -70px;
  }
}



/*------------------------------------------------
  one-day
------------------------------------------------*/
.one-day-container {
  position: relative;
}

.one-day-title {
  margin-bottom: 2em;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
}

.one-day-title > span {
  color: var(--color-white);
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 3em;
  padding: 0.5em 1.5em;
  position: relative;
}

.one-day-title > span::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent ;
  border-width:10px 12.5px;
  bottom: -25px;
  left: 30px;
}

.one-day-list {
  padding-left: 20px;
  padding-bottom: 60px;
  position: relative;
  /* max-width: 860px; */
  max-width: 770px;
  display: grid;
  gap: 2em;
}

.one-day-list::before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 7.75em);
  background-color: var(--primary-color);
  position: absolute;
  left: 5px;
  top: 0.65em;
}

.one-day-item-year {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
}

.one-day-item-year::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.one-day-item-detail {
  margin-top: 0.5em;
}

.one-day-item-title {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.one-day-item-text {
  margin-top: 1em;
}

.one-day-img {
  position: absolute;
  right: 10px;
  z-index: -1;
  width: 35%;
  top: -60px;
}

.one-day-list::after {
  color: var(--color-gray);
  display: block;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 10vw;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  z-index: -1;
  white-space: nowrap;
}

.sales-staff .one-day-list::after {
  top: 0;
  content: "sales staff";
}
.office-clerk .one-day-list::after {
  top: 0;
  content: "office clerk";
}

@media print, screen and (min-width: 769px) {
  .one-day-list::before {
    left: 98px;
    height: calc(100% - 5.5em);
  }
  .one-day-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }
  .one-day-item-year {
    width: 100px;
    padding-right: 45px;
    text-align: right;
  }
  .one-day-item-year::before {
    left: initial;
    right: 15px;
  }
  .one-day-item-detail {
    margin-top: 0;
    width: calc(100% - 100px);
  }
  .sales-staff .one-day-list::after {
    top: inherit;
    bottom: 0;
  }
  .office-clerk .one-day-list::after {
    right: 0;
  }
  .sales-staff .one-day-img {
    top: inherit;
    bottom: 20px;
    max-width: 365px;
  }
  .office-clerk .one-day-img {
    top: 50%;
    transform: translateY(-50%);
    max-width: 444px;
  }
}

@media print, screen and (min-width: 960px) {
  .one-day-list::before {
    left: 148px;
  }
  .one-day-item-year {
    width: 160px;
    padding-right: 60px;
    font-size: 3.6rem;
    margin-top: -0.05em;
  }
  .one-day-item-year::before {
    right: 25px;
  }
  .one-day-item-title {
    line-height: 1.2;
    font-size: 2.4rem;
  }
  .one-day-title > span::after {
    left: 60px;
  }
  .one-day-item-detail {
    width: calc(100% - 160px);
  }

}

@media print, screen and (min-width: 1200px) {
  .one-day-list::after {
    font-size: 8vw;
  }
  .sales-staff .one-day-list::after {
    left: -0.5em;
  }

  .office-clerk .one-day-title {
    width: 770px;
    margin-left: auto;
  }
  .office-clerk .one-day-list {
    margin-left: auto;
  }
  .office-clerk .one-day-img {
    right: inherit;
    left: -10%;
  }
}

@media print, screen and (min-width: 1600px) {
  .one-day-list {
    max-width: 860px;
  }
  .office-clerk .one-day-title {
    width: 860px;
  }
  .sales-staff .one-day-list::after {
    left: -2em;
  }
  .office-clerk .one-day-list::after {
    right: -1.5em;
  }
}


/*------------------------------------------------
  voice
------------------------------------------------*/

.voice {
  border-top-right-radius: 50px;
  background-color: var(--color-gray);
  position: relative;
  background-image: url(../../../image/recruit/one-day/staff_voice_bg_right.png);
  background-size: 80%;
  background-position: right bottom 80px;
  background-repeat: no-repeat;
}

.voice::before {
  content: "Staff Voice";
  display: block;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 14.5vw;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  position: absolute;
  top: -0.15em;
  left: 0;
}

.voice-container {
  position: relative;
  z-index: 2;
}

.voice .section-title {
  text-align: center;
}

.voice-container > p {
  text-align: center;
}

.voice-hrad {
  margin: 3em 0;
}

.voice-hrad-pic {
  max-width: 560px;
  margin-left: auto;
  z-index: 1;
  width: 90%;
}

.voice-hrad-pic > img {
  border: 6px solid #fff;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.15));
  transform: rotate(2deg);
}

.voice-hrad-text {
  color: var(--color-white);
  background: linear-gradient(90deg, #61C0BA, #4694D1);
  padding:1.5em 2em;
  display: inline-block;
  margin-top: -2em;
  z-index: 2;
  position: relative;
}

.voice-hrad-text .position {
  font-size: 1.2rem;
  display: block;
  width: 100%;
}
.voice-hrad-text .name {
  display: block;
  font-size: clamp(2rem, 1.76rem + 1.2vw, 3.2rem);
}
.voice-hrad-text .name .kana {
  display: inline-block;
  font-size: 60%;
  margin-left: 1em;
}

.voice-hrad-text .detail {
  margin-top: 1em;
  display: block;
}

@media print, screen and (min-width: 769px) {
  .voice {
    background-size: 50%;
    background-position: right bottom 100px;
  }

  .voice-hrad {
    position: relative;
  }
  .voice-hrad-pic {
    max-width: 860px;
  }
  .voice-hrad-pic > img {
    border: 15px solid #fff;
  }
  .voice-hrad-text {
    position: absolute;
    bottom: 30%;
    transform: translateY(50%);
  }
}

@media print, screen and (min-width: 960px) {
  .voice {
    background-size: 40%;
    background-position: right bottom 200px;
  }
  .voice-hrad-text {
    width: 480px;
  }
}

@media print, screen and (min-width: 1200px) {
  .voice-hrad-text {
    padding: 2em 3em;
  }
}

.voice-list {
  display: grid;
  gap: 3em;
  position: relative;
}


.voice-list::before {
  content: "";
  display: block;
  background-size: contain;
  position: absolute;
  z-index: 1;
}

.voice-list::before {
  background-image: url(../../../image/recruit/one-day/staff_voice_bg_left.png);
  right: -1em;
  top: -125px;
  width: 150px;
  height: 150px;
}


.voice-item {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 2.5em 0;
  max-width: 960px;
  z-index: 2;
}

.voice-item-title {
  padding: 0.5em 0 0.5em 1.5em;
  color: var(--secondary-color);
  font-size: clamp(1.8rem, 1.56rem + 1.2vw, 3rem);
  line-height: 1.5;
  position: relative;
}
.voice-item-title::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #61C0BA 0,  #61C0BA 50%, #4694D1 50%, #4694D1 100% );
  height: 3em;
  width: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.voice-item-text {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  padding: 1em 2.25em;
}


@media print, screen and (min-width: 769px) {
  .voice-list::before {
    right: inherit;
    left: -30px;
    top: 14%;
    width: 250px;
    height: 250px;
  }
  .voice-item-title {
    padding: 1em 0 1em 2.15em;
  }
  .voice-item {
    border-radius: 30px;
      width: 90%;
  }
  .voice-item:nth-child(odd) {
    margin-right: auto;
  }
  .voice-item:nth-child(even) {
    margin-left: auto;
  }
  .voice-item-text {
    padding: 1em 3.5em;
  }
}

@media print, screen and (min-width: 1200px) {
  .voice-list {
    gap: 6em;
  }
  .voice-list::before {
    right: inherit;
    left: -40px;
    width: 350px;
    height: 350px;
  }
}
@media print, screen and (min-width: 1600px) {
  .voice-list::before {
    left: -280px;
    top: 210px;
  }
}
