@charset "utf-8";

/*------------------------------------------------
header
------------------------------------------------*/

#header {
  background:linear-gradient(to bottom, #062748 0, #00457B 100%);
  padding: var(--layout-gap);
  min-height: 590px;
  /* max-height: 667px; */
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#header::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 80%;
  min-height: 420px;
  background-image: url(../image/0.png);
  background-size: contain;
  background-position: center center;
  opacity: 0.1;
  left: -30%;
  top: -30%;
}
#header::after {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 200px;
  min-height: 100px;
  background-image: url(../image/0.png);
  background-size: contain;
  background-position: center right -25px;
  right: 0;
  bottom: -170px;
  z-index: 10;
}
.header-inner {
  position: relative;
}
.header-img {
  width: 80%;
  max-width: 559px;
  margin:40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.header-title {
  color: var(--color-white);
  text-align: center;
  font-size: clamp(2.2rem, 1.44rem + 3.8vw, 6rem);
  font-weight: 900;
}
.header-title > span {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
}

@media print, screen and (min-width: 480px) {
    #header::after {
    width: 320px;
    height: 320px;
    bottom: -260px;
    background-position: center right -80px;
  }
}

@media print, screen and (min-width: 769px) {
  #header {
    min-height: 690px;
  }
  .header-title > span {
    font-size: 0.35em;
  }
    #header::after {
    width: 500px;
    height: 500px;
    bottom: -480px;
    background-position: center right -100px;
  }
}

@media print, screen and (min-width: 1380px) {
  #header {
    min-height: 800px;
  }

  #header::after {
    width: 760px;
    height: 760px;
    bottom: -670px;
    background-position: center right -130px;
  }
}

/*------------------------------------------------
history
------------------------------------------------*/

#history {
  background-color: var(--secondary-color);
  padding: 20px 20px 100px;
  position: relative;
}
#history::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background-image: url(../image/history_line.svg);
  background-repeat: repeat-y;
}
#history::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height: 60px;
  background:linear-gradient(to bottom, rgba(var(--secondary-color-rgb),1) 50%, rgba(var(--secondary-color-rgb),0) 100%);
}
#history .common-inner {
  position: relative;
}
#history .section-title::before {
  content: "";
  display: block;
  background-image: url(../image/history_title_en_img.svg);
  background-size: contain;
  width: 80%;
  height: 70px;
  max-width: 887px;
  position: absolute;
  top:-30px;
}
#history .section-title {
  color: var(--primary-color);
  font-size: clamp(1.7rem, 1.04rem + 3.3vw, 5rem);
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  z-index: 10;
  margin: 1.5em auto;
  max-width: 960px;
}
#history .section-title > span {
  font-size: 0.75em;
  display: block;
  line-height: 2;
}

.history-box {
  position: relative;
  z-index: 11;
}

.history-list {
  padding-left: 20px;
  padding-bottom: 60px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.history-list::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color-black);
  position: absolute;
  top: 16px;
  left: 4px;
}

.history-item + .history-item {
  margin-top: 40px;
}

.history-item.year-1941 {
  position: relative;
}
.history-item.year-1941::before {
  content: "";
  display: block;
  height: 476px;
  width: 90%;
  max-width: 800px;
  background-image: url(../image/history_bg_toyohamono.png);
  background-size: contain;
  background-position: center right;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.history-item.year-1982 {
  position: relative;
}
.history-item.year-1982::before {
  content: "";
  display: block;
  height: 464px;
  width: 100%;
  background-image: url(../image/history_bg_1982.png);
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

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

.history-item-year::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: var(--color-black);
  border-radius: 5px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.history-item-detail {
  margin-top: 0.5em;
}

.history-item-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.history-item-text.secondary {
  font-weight: 500;
  font-size: 1.4rem;
}

.history-item-text + p {
  margin-top: 1em;
}

.history-item-pic {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 940px;
}
.history-item-pic.left-side {
  max-width: 440px;
}

.history-item-pic > img {
  width: calc(50% - 10px);
  height: auto;
  max-width: 440px;
}
.history-item-pic.wide > img {
  width: 100%;
  max-width: 880px;
}
.history-item-pic.width-fixed > img:nth-of-type(1) {
  width: calc(50% - 10px);
}
.history-item-pic.width-fixed > img:nth-of-type(2) {
  width: calc(17.25% - 10px);
}



@media print, screen and (min-width: 560px) {
  #history::before {
    left: 15px;
  }
  .history-list {
    padding:0 20px 80px 40px;
  }
  .history-list::before {
    left: 24px;
  }
  #history .section-title > span {
    font-size: 0.5em;
  }

}


@media print, screen and (min-width: 769px) {
  #history {
    padding: 40px 40px 100px;
  }
  #history::before {
    left: 80px;
    width: 80px;
  }
  #history::after {
    height: 100px;
  }
  #history .section-title::before {
    top: -40px;
  }
  .history-list {
    padding: 0 0 100px;
  }
  .history-list::before {
    left: 80px;
  }
  .history-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }
  .history-item-year {
    width: 100px;
    padding-right: 45px;
    text-align: right;
  }
  .history-item-year::before {
    left: initial;
    right: 15px;
  }
  .history-item-year.secondary {
    margin-top: 0.25em;
  }
  .history-item-detail {
    margin-top: 0;
    width: calc(100% - 100px);
  }
}


@media print, screen and (min-width: 1080px) {
  #history::before {
    left: calc(50% - 408px);
    width: 112px;
  }
  .history-list::before {
    left: 130px;
  }

  .history-item-year {
    width: 160px;
    padding-right: 60px;
    font-size: 4rem;
    margin-top: -0.05em;
  }
  .history-item-year::before {
    right: 25px;
  }
  .history-item-year.secondary {
    line-height: 1.5;
    font-size: 2.2rem;
    margin-top: 0;
  }
  .history-item-text {
    line-height: 1.5;
    font-size: 2.2rem;
  }
  .history-item-detail {
    width: calc(100% - 160px);
  }
  .history-item-pic.width-fixed > img:nth-of-type(2) {
    width: calc(16% - 10px);
  }
}


@media print, screen and (min-width: 1280px) {
  #history {
    padding: 147px 0;
  }
  #history::after {
    height: 274px;
  }
  #history .section-title::before {
    width: 887px;
    height: 131.4px;
    top:-80px;
  }
}

@media print, screen and (min-width: 1440px) {

  .history-item-pic.left-side {
    width: 200px;
    position: absolute;
    left: -240px;
    top: 0;
    margin: 0;
  }
  .history-item-pic.left-side > img {
    width: 200%;
    max-width: 200px;
  }
}


/* 開閉 */

.content {
  overflow: hidden;
  /* max-height: 500px;  */
  transition: height 0.8s ease;
}

.button-wrapper {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: 0;
  width:100%;
  background-color: var(--secondary-color);
  height: 100px;
  padding-bottom: 50px;
}
.button-wrapper::before {
  content: "";
  width:100%;
  height:80px;
  background:linear-gradient(to top, rgba(var(--secondary-color-rgb),1) 30%, rgba(var(--secondary-color-rgb),0) 100%);
  position: absolute;
  left: 0;
  top: -80px;
}

#toggleBtn {
  display: block;
  margin: 0 auto;
  padding: 8px 16px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-color);
  position: relative;
}
#toggleBtn::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background-image: url(../image/under_arrow.svg);
  background-size: contain;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
#toggleBtn.is-open::after {
  transform: translateX(-50%) rotate(180deg);
  transition: transform 0.3s ease;
}
@media print, screen and (min-width: 1280px) {
  .button-wrapper {
    height: 147px;
  }
}



/*------------------------------------------------
greeting
------------------------------------------------*/

#greeting {
  position: relative;
  padding-top: 100px;
}

#greeting::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../image/greeting_bg_img.svg);
  background-size: contain;
  background-position: top right;
  width: 40%;
  height: 650px;
  top: 0;
  right: 0;
}

@media print, screen and (min-width: 560px) {
  #greeting::before {
    width: 45%;
  }
}

@media print, screen and (min-width: 960px) {
  #greeting::before {
    width: 35%;
    opacity: 0.5;
  }
}

@media print, screen and (min-width: 1200px) {
  #greeting {
    padding-top: 160px;
  }
  #greeting::before {
    /* width: 557px;
    height: 826px; */
    width: 500px;
    height: 740px;
  }
}

/*president-message*/

.president-message .section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  line-height: 1;
  margin-bottom: 1em;
}
.president-message {
  position: relative;
  margin-bottom: 100px;
}
.president-message-pic {
  width: 60%;
  max-width: 540px;
  border-top-right-radius:50px;
  overflow: hidden;
  padding-left: 10px;
  background-color: var(--color-gray);
}

.president-message::before {
  content: "";
  display: block;
  width: 90%;
  height: 350px;
  background-image: url(../image/0.png);
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50px;
}

.president-message-text {
  margin-left: auto;
  padding:60px 30px 30px;
}

.president-message-text > p + p {
  margin-top: 1.5em;
}

.signature {
  text-align: right;
  font-weight: 700;
}
.signature > .emphasis {
  font-size: 1.25em;
}

@media print, screen and (min-width: 480px) {
  .president-message::before {
    width:80%;
    height:400px;
    top:6%;
    left: 20%;
  }
}

@media print, screen and (min-width: 560px) {
  .president-message-pic {
    width: 50%;
  }
}

@media print, screen and (min-width: 769px) {
  .president-message-text {
    padding: 60px 40px 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .president-message {
    display: flex;
    align-items: flex-start;
  }
  .president-message::before {
    width:415px;
    height:415px;
    top: 90px;
    left: -200px;
  }
  .president-message-pic {
    width: 30%;
  }
  .president-message-text {
    padding: 0 40px;
    width: 70%;
  }
}

@media print, screen and (min-width: 1200px) {
  .president-message {
    margin-bottom: 230px;
  }
  .president-message-text {
    padding: 0 calc(50% - 480px) 0 0;
    width: 65%;
  }
  .president-message::before {
    width:600px;
    height:600px;
    top: 90px;
    left: -300px;
  }
}

@media print, screen and (min-width: 1600px) {
  .president-message-text {
    font-size: 1.8rem;
  }
  .president-message::before {
    width:815px;
    height:815px;
    top: 90px;
    left: -430px;
  }
}



/*ob-message*/

.ob-message {
  border-top-left-radius:50px;
  margin-top: 40px;
  margin-left: auto;
  padding:35px 30px;
  background-color: var(--color-light-gray);
  background-image: url(../image/ob_bg.jpg);
  background-position: right 50% center;
  background-size: cover;
  max-width: 1540px;
  position: relative;
}

.ob-message::before {
  content: "";
  display: block;
  background-image: url(../image/greeting_title_en_img.svg);
  background-size: contain;
  width: 80%;
  height: 50px;
  max-width: 887px;
  position: absolute;
  top:-90px;
}

.ob-message-inner {
  margin-right: auto;
}

.ob-message .section-title {
  margin-bottom: 1em;
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.8rem);
  line-height: 1.5;
}

.ob-message-inner p {
  text-shadow: 0 0 6px var(--color-light-gray);
}

@media print, screen and (min-width: 480px) {
  .ob-message::before {
    height: 80px;
    top:-100px;
  }
}

@media print, screen and (min-width: 769px) {
  .ob-message {
    width: 90%;
    padding: 40px 45px;
  }
}

@media print, screen and (min-width: 960px) {
  .ob-message {
    padding: 60px 65px;
    border-top-left-radius:60px;
  }

  .ob-message::before {
    height: 100px;
    top: -140px;
  }
}

@media print, screen and (min-width: 1200px) {
  .ob-message {
    padding: 85px calc(50% - 480px) 55px 90px;
    border-top-left-radius: 100px;
    width: auto;
    margin-left: calc(50% - 480px);
  }
}

@media print, screen and (min-width: 1600px) {
  .ob-message::before {
    width: 990px;
    height: 134px;
    top: -180px;
  }
}


/*------------------------------------------------
product
------------------------------------------------*/

#product {
  background:linear-gradient(to bottom, #062748 0, #00457B 100%);
  padding:80px 40px 60px;
  position: relative;
}

#product::before,
#product::after {
  content: "";
  display: block;
  height:4px;
  width: 100%;
  background: linear-gradient(to right,#d3d3d3,#ffffff 20%,#999999 40%,#ffffff 60%,#d3d3d3 80%);
  position: absolute;
  left: 0;
}
#product::before {
  top: 4px;
}
#product::after {
  bottom: 4px;
}

#product .section-title {
  position: relative;
}

#product .section-title > span {
  color: var(--color-white);
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-align: center;
  margin: auto;
  position: relative;
  display: block;
  letter-spacing: 1.7em;
}

#product .section-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 7em;
  background-image: url(../image/product_title_en_img.svg);
  background-size: contain;
  background-position: center;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.product-inner {
  max-width: 960px;
  margin: 0 auto;
}

.product-link {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-link-item {
  width: 100%;
  max-width: 380px;
  margin: auto;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-link-item::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  background-size: contain;
  right: 10px;
  bottom: 10px;
}
.product-link-item:nth-of-type(1) {
  background-image: url(../image/product_link_bg_list.jpg);
}
.product-link-item:nth-of-type(1)::after {
  background-image: url(../image/arrow_bg_white.svg);
}
.product-link-item:nth-of-type(2) {
  background-image: url(../image/product_link_bg_catalog.jpg);
}
.product-link-item:nth-of-type(2)::after {
  background-image: url(../image/arrow_bg_blue.svg);
}

.product-link-button {
  padding:20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-link-button .label {
  color: var(--color-white);
  background-color: var(--color-black);
  line-height: 1;
  padding: 0.5em 1em;
  font-size: clamp(2rem, 1.84rem + 0.8vw, 2.8rem);
  letter-spacing: 0.1em;
}

@media print, screen and (min-width: 769px) {
  #product::before,
  #product::after {
    height:10px;
  }
  #product::before {
    top: 15px;
  }
  #product::after {
    bottom: 15px;
  }
  .product-link {
    gap: 40px;
    margin: 0 auto;
  }
  .product-link-item {
    width: calc(50% - 20px);
    max-width: initial;
    height: 130px;
    margin: 0;
  }
  .product-link-button {
    height: 100%;
  }

  .product-link-item::after {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: 15px;
  }
}

@media print, screen and (min-width: 1200px) {
  #product {
    padding: 100px 40px;
  }
  #product .section-title::before {
    width: 960px;
    height: 130px;
    top: 0.5em;
  }
}

/*------------------------------------------------
media
------------------------------------------------*/
#media {
  background-image: url(../image/media_bg.jpg);
  background-size: cover;
  background-position: center;
  padding:60px 30px;
}
#media .section-title {
  margin: auto;
  text-align: center;
  position: relative;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  order: 1;
}
#media .section-title .inner-text {
  color: var(--color-white);
  background-color: var(--color-black);
  padding:0.25em;
  line-height: 1;
  display: inline-block;
  writing-mode: vertical-rl;
}
#media .section-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 6em;
  height: 12em;
  background-image: url(../image/media_title_en_img.svg);
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
#media .common-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.media-item > img {
  box-shadow: 0 3px 6px rgba(var(--color-black-rgb),0.16);
}
.media-item:nth-of-type(2),
.media-item:nth-of-type(3) {
  width: calc(50% - 10px);
}

.media-item:nth-of-type(1) {
  order: 2;
  /* width: 1060px; */
  width: 960px;
}
.media-item:nth-of-type(2) {
  order: 4;
  max-width: 300px;
}
.media-item:nth-of-type(3) {
  order: 3;
  max-width: 360px;
}
.media-item.video-container {
  order: 5 !important;
}
.media-item > figcaption {
  text-align: right;
  font-size: 1rem;
}
.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 860px;
  margin: auto;

}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


@media print, screen and (min-width: 560px) {
  #media .common-inner {
    gap: 40px;
  }
  .media-item:nth-of-type(2),
  .media-item:nth-of-type(3) {
    width: calc(40% - 20px);
  }
}


@media print, screen and (min-width: 960px) {
  #media .section-title {
    order: 2;
    margin: 0;
  }
  #media .section-title::before {
    display: none;
  }
  .media-item:nth-of-type(1) {
    order: 1;
    width: calc(100% - 8em);
  }
  .media-item:nth-of-type(2) {
    padding-top: 55px;
  }
  .media-item.video-container {
    width: 70%;
    margin: -15% auto 0 0;
  }
  #media .common-inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 131px;
    height: 661px;
    background-image: url(../image/media_title_en_img.svg);
    background-size: contain;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
  }
}

@media print, screen and (min-width: 1200px) {
  #media {
    padding: 120px 10px 80px;
  }
  #media .common-inner::before {
    left: -60px;
    top: 35%;
  }
}

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

#staff-voice {
  background:linear-gradient(to bottom, #062748 0, #00457B 100%);
  padding: 60px 0;
  position: relative;
}
#staff-voice::before,
#staff-voice::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right,#d3d3d3,#ffffff 20%,#999999 40%,#ffffff 60%,#d3d3d3 80%);
  position: absolute;
  left: 0;
}
#staff-voice::before {
  top: 4px;
}
#staff-voice::after {
  bottom: 4px;
}
#staff-voice .staff-voice-inner {
  background-image: url(../../asset/image/voice_bg.jpg);
  background-size: cover;
  background-position: center center;
  padding:40px 10px;
}
#staff-voice .section-title {
  position: relative;
}
#staff-voice .section-title > span{
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-align: center;
  margin: auto;
  display: block;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  font-weight: 700;
  position: relative;
}
#staff-voice .section-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 100px;
  background-image: url(../image/staff_voice_title_en_img.svg);
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.voice-list {
  width: 90%;
  max-width: 960px;
  margin:40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.voice-item {
  position: relative;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 30px;
  border: 2px solid var(--secondary-color);
  width: 100%;
  max-width: 960px;
}
.voice-item:nth-of-type(odd) {
  background-color: var(--secondary-color);
}
.voice-item:nth-of-type(even) {
  margin-left: auto;
}
.age-label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  padding-bottom: 15px;
  width: 60px;
  height: 60px;
  left: -25px;
  top: -25px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--secondary-color);
}
.age-label::after {
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--color-white);
  position: absolute;
  right: 1px;
  bottom: 1px;
  transform: rotate(45deg);
}
.voice-item:nth-of-type(even) .age-label {
  background-color: var(--secondary-color);
}
.voice-item:nth-of-type(even) .age-label::after {
  background-color: var(--secondary-color);
}
.age-num {
  color: rgba(var(--primary-color-rgb), 0.5);
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
.age-suffix {
  color: rgba(var(--primary-color-rgb), 0.5);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.5;
  display: block;
}
.voice-text {
  color: var(--primary-color);
}
.voice-text + .voice-text {
  margin-top: 1em;
}

@media print, screen and (min-width: 769px) {
  #staff-voice::before,
  #staff-voice::after {
    height: 10px;
  }
  #staff-voice::before {
    top: 15px;
  }
  #staff-voice::after {
    bottom: 15px;
  }

  .voice-item {
    padding: 40px;
    /* width: 90%; */
    width: 85%;
  }
}

@media print, screen and (min-width: 1200px) {
  #staff-voice {
    padding: 100px 0;
  }

  #staff-voice .staff-voice-inner {
    padding:110px 10px 60px;
  }
  #staff-voice .section-title {
    margin-bottom: 130px;
  }
  #staff-voice .section-title::before {
    width: 85%;
    top: 90%;
  }
  .voice-item {
    padding: 50px;
  }
  .age-num {
    font-size: 4.4rem;
  }
  .age-label {
    width: 100px;
    height: 100px;
    left: -40px;
    top: -50px;
    border: 4px solid var(--secondary-color);
    padding-bottom: 25px;
  }
  .age-label::after {
    width: 22px;
    height: 8px;
    border-radius: 4px;
    right: 1px;
    bottom: 0;
  }
  .age-suffix {
    font-size: 1.4rem;
  }
  .voice-item:nth-of-type(even) .age-label {
    left: initial;
    right:-40px;
  }
  .voice-item:nth-of-type(even) .age-label::after {
    right: initial;
    left: -1px;
    transform: rotate(-45deg);
  }
}

@media print, screen and (min-width: 1600px) {
    #staff-voice .section-title::before {
    width: 960px;
    height: 135px;
    top: 90%;
  }
}
