@charset "UTF-8";

/* animation
-------------------------------------------------- */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    transform: translateY(-5px);
  }

  50.1% {
    opacity: 0;
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineSlide {
  from {
    background-position: min(-190px, -13.90vw) 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes lineSlide2 {
  from {
    background-position: min(-190px, -13.90vw) 50%;
  }
  to {
    background-position: 0 50%;
  }
}

@keyframes lineSlideDown {
  from {
    background-position: 0 min(-1080px, -79.06vw);
  }
  to {
    background-position: 0 0;
  }
}

@keyframes rainbowReveal {
  0% {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
    opacity: 1;
  }
  60% {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    opacity: 1;
  }
  100% {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    opacity: 0;
  }
  }

/* loading
-------------------------------------------------- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0; /* 밝은 회색 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}
#loading-screen  #rainbow-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(255,0,0,0.7),
    rgba(255,127,0,0.7),
    rgba(255,255,0,0.7),
    rgba(0,255,0,0.7),
    rgba(0,0,255,0.7),
    rgba(75,0,130,0.7),
    rgba(148,0,211,0.7)
  );
  mask-image: linear-gradient(to right, black 0%, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 0%, transparent 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  animation: rainbowReveal 3s forwards;
  opacity: 0.5;
}
.fade-in {
  transition: opacity 1s ease;
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
}

/* header
-------------------------------------------------- */
body.page .lHeader {
  opacity: 1;
}
.lHeader {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  width: 100%
}
.lHeader__overlay {
  position:absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  pointer-events: none;
  background-color: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .5s var(--ease-out-3);
}
.lHeader__overlay[show=true] {
  opacity: 1;
  transition-duration: .5s;
}
.lHeader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: min(30px, 1.98vw);
  align-items: flex-start;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  height: min(70px, 5.12vw);
  padding: 0 min(18px, 1.31vw) 0 min(18px, 1.31vw);
  margin: min(36px, 2.38vw) 0 0 auto;
  -webkit-backdrop-filter: initial;
  backdrop-filter: initial;
}
.lHeader__inner:before {
  display: none;
}
.lHeader__logo {
  position: absolute;
  top: 0;
  left: min(18px, 1.31vw);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(355px, 25.98vw);
  height: min(70px, 5.12vw);
  transform-origin: top left;
}
.lHeader__logo_image {
  width: min(234px, 17.13vw);
  margin-right: min(20px, 1.46vw);
}
.lHeader__logo_text {
  width: min(102px, 7.46vw);
  font-size: min(12px, 0.87vw);
}
.lHeader__nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-right: 0;
  border-radius: 4px;
  box-shadow: -4px 4px 10px rgba(0,0,0,.05);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.lHeader__nav:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: hsla(0,0%,100%,.89);
  border-radius: min(4px, 0.29vw);
}
.lHeader__navList {
  display: flex;
  gap: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: min(14px, 1.02vw);
  line-height: 1;
  letter-spacing: 0.05em;
}
.lHeader__navList_link {
  display: inline-block;
  cursor: pointer;
  padding: min(20px, 1.46vw);
}
.lHeader__navList_link[data-menu=entry] {
  padding: min(20px, 1.46vw) min(30px, 1.46vw);
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(18px, 2.19vw);
  line-height: 0.83;
  letter-spacing: 0.05em;
}
.lHeader__navList_child {
  position: absolute;
  top: min(40px, 2.92vw);
  left: 0;
  width: 100%;
  padding-top: min(40px, 2.92vw);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-3);
}
.lHeader__navList_child[show=true] {
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
  transition-duration: 0.4s;
}
.lHeader__navList_child_inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  width: 100%;
  padding: min(60px, 4.39vw) min(30px, 2.19vw);
  background-color: var(--c-white);
  border-radius: min(4px, 0.29vw);
  gap: min(36px, 0.26vw);
}
.lHeader__navList_child_index {
  width: min(265px, 19.39vw);
}
.lHeader__navList_child_index_en {
  display: inline-block;
  width: 100%;
  margin-bottom: min(30px, 2.19vw);
  font-family: var(--f-en);
  font-size: min(36px, 2.63vw);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lHeader__navList_child_index_link {
  display: flex;
  gap: min(8px, 0.53vw);
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
}
.lHeader__navList_child_index_link_text {
  position: relative;
  flex-shrink: 0;
  font-size: min(16px, 1.17vw);
}
.lHeader__navList_child_index_link .lHeader__navList_child_index_link_text:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(-40px, -2.92vw);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-gray.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
.lHeader__navList_child_index_link:hover .lHeader__navList_child_index_link_text:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.lHeader__navList_child_detail {
  position: relative;
  display: flex;
  -moz-column-gap: min(40px, 2.65vw);
  column-gap: min(27px, 1.97vw);
  justify-content: space-between;
  padding-left: min(27px, 1.97vw);
}
.lHeader__navList_child_detail:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--c-light-gray);
}
.lHeader__navList_child_detail_links {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.lHeader__navList_child_detail_links_link {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0 min(20px, 1.46vw) min(15px, 1.09vw) 0;
  font-size: min(13px, 0.95vw);
  line-height: 1.61;
  letter-spacing: 0.05em;
  gap: min(10px, 0.73vw);
  padding: min(calc(8rem / 16), calc(0.53vw + 0.5rem - 8px)) 0 min(calc(9rem / 16), calc(0.6vw + 0.5625rem - 9px))
}
.lHeader__navList_child_detail_links_link:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(-30px, -2.19vw);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  width: min(14px, 1.02vw);
  height: min(14px, 1.02vw);
  background: url(../img/icon-arrow-gray.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
.lHeader__navList_child_detail_links_link:hover:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.lHeader__navList_child_detail_buttomLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-column-gap: min(40px, 2.65vw);
  column-gap: min(27px, 1.97vw);
}
.lHeader__navList_child_detail_buttomLinks_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(200px, 14.64vw);
  height: min(120px, 8.78vw);
}
.lHeader__navList_child_detail_buttomLinks_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--c-dark-gray);
  color: var(--c-white);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(15px, 1.09vw);
  line-height: 1.4;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-dark-gray);
  border-radius: min(6px, 0.43vw);
  transition: all .5s var(--ease-out-3);
}
.lHeader__navList_child_detail_buttomLinks_item a:hover {
  background-color: var(--c-white);
  color: var(--c-dark-gray);
}

.lHeader__navList_child_detail_imageLinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: min(20px, 1.46vw);
  -moz-column-gap: min(20px, 1.46vw);
  column-gap: min(20px, 1.46vw);
}
.lHeader__navList_child_detail_imageLinks_link {
  display: flex;
  flex-direction: column;
  gap: min(5px, 0.36vw);
}
.lHeader__navList_child_detail_imageLinks_image {
  overflow: hidden;
}
.lHeader__navList_child_detail_imageLinks_name {
  display: flex;
  gap: min(10px, 0.73vw);
  align-items: center;
  line-height: 1.61;
}
.lHeader__navList_child_detail_imageLinks_name_text {
  position: relative;
  display: inline-block;
  width: 100%;
  flex-shrink: 0;
  font-size: min(13px, 0.95vw);
  letter-spacing: 0
}
.lHeader__navList_child_detail_imageLinks_name_text:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  width: min(14px, 1.02vw);
  height: min(14px, 1.02vw);
  background: url("../img/icon-arrow-gray.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
.lHeader__navList_child_detail_imageLinks_item:hover .lHeader__navList_child_detail_imageLinks_name_text:after {
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.header-entry,
.header-menu,
#g-nav,
#g-nav-entry {
  display: none;
}

@media screen and (max-width: 768px) {
  .lHeader {
    background-color: var(--c-white);
  }
  .lHeader__inner {
    align-items: center;
    gap: 3vw;
    height: 13.33vw;
    padding: 0;
    margin: 0 0 0 auto;
  }
  .lHeader__logo {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    top: 2.5vw;
    left: 2.4vw;
    width: 43.6vw;
    height: auto;
  }
  .lHeader__logo_image {
    width: 100%;
  }
  .lHeader__logo_text {
    width: 100%;
    font-size: 2.66vw;
  }
  .lHeader__nav {
    display: none;
  }
  .header-entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20vw;
    height: 8.26vw;
    font-size: 3.2vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--c-white);
    background-color: var(--c-dark-gray);
    transition: all .5s var(--ease-out-3);
  }
  .header-entry:hover {
    cursor: pointer;
  }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 16vw;
    height: 100%;
  }
  .header-menu:hover {
    cursor: pointer;
  }
  .header-menu .navicon {
    display: block;
    position: relative;
    width: 50%;
    height: 0.4vw;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .header-menu.active .navicon {
    background: transparent;
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .header-menu .navicon:before,
  .header-menu .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #000000;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .header-menu .navicon:before {
    top: 1.5vw;
  }
  .header-menu .navicon:after {
    bottom: 1.5vw;
  }
  .header-menu.active .navicon:before {
    top: 0;
    transform: rotate(-30deg);
  }
  .header-menu.active .navicon:after {
    transform: rotate(30deg);
    bottom: 0;
  }
  #g-nav,
  #g-nav-entry {
    display: block;
    position: fixed;
    z-index: -1;
    top: 13.33vw;
    width: 100%;
    height: auto;
    min-height: 100vh;
    opacity: 0;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive,
  #g-nav-entry.panelactive {
    z-index: 10;
    opacity: 1;
    background: #FFFFFF;
  }
  #g-nav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    overflow-y: auto;
    max-height: 86.67vh;
    padding-bottom: 10vh;
  }
  #g-nav .wrap .listBox {
    display: inline-block;
    width: 100%;
    margin: 4vw 0;
  }
  #g-nav .wrap .listBox a {
    display: inline-block;
  }
  #g-nav .wrap .listBox a span {
    position: relative;
    display: inline-block;
  }
  #g-nav .wrap .listBox a span:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8vw;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: inline-block;
    width: 4vw;
    height: 4vw;
    background: url("../img/icon-arrow-gray.svg") no-repeat;
    background-size: 100% auto;
    background-position: center;
    transition: all .5s var(--ease-out-3);
  }
  #g-nav .wrap .listBox a:hover span:after {
    background: url("../img/icon-arrow-black.svg") no-repeat;
  }
  #g-nav .wrap .listBox .mainMenu {
    padding-bottom: 2vw;
    margin-bottom: 4vw;
    font-size: 5.33vw;
    font-family: var(--f-en);
    font-weight: var(--f-en-weight);
    border-bottom: 1px solid var(--c-light-gray);
  }
  #g-nav .wrap .listBox:first-child .mainMenu {
    margin-bottom: 0;
  }
  #g-nav .wrap .listBox .subMenu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
    font-size: 3.46vw;
  }
  #g-nav-entry .wrap {
    margin-top: 10vw;
    text-align: center;
    font-family: var(--f-en);
  }
  #g-nav-entry .wrap .listBox {
    display: inline-block;
    width: 100%;
  }
  #g-nav-entry .wrap .mainMenu {
    margin-bottom: 10vw;
    font-size: 7.33vw;
  }
  #g-nav-entry .wrap .listBox {
    width: 100%;
    height: 32vw;
    margin: 3vw 0;
  }
  #g-nav-entry .wrap .listBox a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--c-white);
    background-color: var(--c-dark-gray);
    border-radius: 2.13vw;
    transition: all .5s var(--ease-out-3);
    letter-spacing: 0.13em;
    font-weight: 700;
    font-size: 4vw;
    letter-spacing: 0.13em;
    border: 1px solid var(--c-dark-gray);
  }
}

/* footer
-------------------------------------------------- */
.lFooter {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: min(50px, 3.66vw) 0;
  background-color: var(--c-light-gray);
  overflow: hidden;
}
.lFooter .lFooter__inner {
  padding-top: min(100px, 7.32vw);
}
.lFooter .lFooter__inner .lFooter__back {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}
.lFooter .lFooter__inner .lFooter__top {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lFooter .lFooter__inner .lFooter__top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lFooter .lFooter__inner .lFooter__top .lFooter__logo_image {
  width: min(280px, 20.49vw);
  margin-right: min(20px, 1.46vw);
}
.lFooter .lFooter__inner .lFooter__top .lFooter__logo_text {
  font-size: min(15px, 1.09vw);
}
.lFooter .lFooter__inner .lFooter__bottom {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter__entry {
  margin: 0 0 min(200px, 14.64vw) min(50px, 3.66vw);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter__entry .btn {
  width: min(312px, 22.84vw);
  height: min(62px, 4.53vw);
  margin: min(30px, 2.19vw) 0;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter__entry .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  border-radius: min(6px, 0.43vw);
  transition: all .5s var(--ease-out-3);
  letter-spacing: 0.05em;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(14px, 1.02vw);
  line-height: 2;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-dark-gray);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: min(50px, 3.66vw);
  margin-bottom: min(150px, 10.98vw);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox {
  width: min(150px, 10.98vw);
  letter-spacing: 0.05em;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox .mainMenu {
  padding-bottom: min(15px, 1.09vw);
  margin-bottom: min(15px, 1.09vw);
  border-bottom: 1px solid var(--c-white);
  font-size: min(14px, 1.02vw);
  font-weight: 700;
  line-height: 1.78;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox .subMenu {
  font-size: min(12px, 0.87vw);
  line-height: 3;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter__entry .btn a:hover {
  color: var(--c-dark-gray);
  background-color: var(--c-white);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: min(12px, 0.87vw);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(9px, 0.65vw);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp svg {
  width: min(8px, 0.58vw);
  height: min(9px, 0.65vw);
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp a:hover svg {
  animation: arrow .4s var(--ease-out-sine) forwards;
}
.lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_copy {
  position: absolute;
  left: 0;
  bottom: min(50px, 3.66vw);
  width: min(337px, 24.67vw);
}
.lFooter .lFooter__inner .lFooter__copyright {
  font-size: min(12px, 0.87vw);
}

@media screen and (max-width: 768px) {
  .lFooter .lFooter__inner {
    padding-top: 10vw;
  }
  .lFooter .lFooter__inner .lFooter__top .lFooter__logo_image {
    width: 53.06vw;
    margin-right: 5.06vw;
  }
  .lFooter .lFooter__inner .lFooter__top .lFooter__logo_text {
    font-size: 2.8vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter__entry {
    margin: 9.33vw 0;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter__entry .btn {
    width: 66.93vw;
    height: 13.33vw;
    margin: 4.66vw 0;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter__entry .btn a {
    font-size: 3.46vw;
    border-radius: 1.33vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav {
    width: 100%;
    gap: 6vw;
    margin-bottom: 60vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6vw;
    -moz-column-gap: 0;
    column-gap: 0;
    width: 100%;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox {
    width: 100%;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox .mainMenu {
    padding-bottom: 2vw;
    margin-bottom: 0;
    font-size: 2.93vw;
    border-bottom: 2px solid var(--c-white);
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav .navList .listBox .subMenu {
    font-size: 2.93vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp {
    bottom: 63vw;
    font-size: 2.93vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_copy {
    bottom: 13vw;
    left: 10vw;
    width: 69.6vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp a {
    gap: 3vw;
  }
  .lFooter .lFooter__inner .lFooter__bottom .lFooter_nav_corp svg {
    width: 2vw;
    height: 2vw;
  }
  .lFooter .lFooter__inner .lFooter__copyright {
    font-size: 2.4vw;
    text-align: center;
  }
}

/* front page
-------------------------------------------------- */
body#home .area {
  position: relative;
  background: #ffffff;
}
body#home .area .areaTitle .title-en {
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(70px, 5.12vw);
  line-height: 1.16;
  letter-spacing: 0.05em;
}
body#home .area .areaTitle .title-ja {
  margin-top: min(20px, 1.46vw);
  line-height: 1.16;
  letter-spacing: 0.13em;
}
body#home .area .areaTitle .title-ja:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: min(20px, 1.46vw);
  height: min(5px, 0.36vw);
  margin-right: min(5px, 0.36vw);
  background: url("../img/icon-title.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home .area .areaDesc p {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(37px, 2.70vw);
  line-height: 1.75;
  letter-spacing: 0.075em;
}
body#home .area .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(230px, 16.83vw);
  height: min(56px, 4.09vw);
  color: var(--c-white);
  font-size: min(13px, 0.95vw);
  font-weight: 700;
  line-height: 1.61;
  letter-spacing: 0.11em;

}
body#home .area .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: min(50px, 3.66vw);
  border: 1px solid var(--c-dark-gray);
  transition: all .5s var(--ease-out-3);
  background: linear-gradient(to right, var(--c-white) 50%, var(--c-dark-gray) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
body#home .area .btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#home .area .btn a:hover {
  background-position: left bottom;
  color: var(--c-dark-gray);
}
body#home .area .btn a:hover:after {
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home .area .areaItem .areaImages {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: min(740px, 54.17vw);
  height: min(740px, 54.17vw);
  overflow: hidden;
}
body#home .area .areaItem .areaImages img {
  max-width: none;
  max-height: none;
}
body#home .area .areaItem .areaImages .areaImages_picture,
body#home .area .areaItem .areaImages .areaImages_prism {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}
body#home .area .areaItem .areaImages .areaImages_picture img {
  position: relative;
  top: -10%;
  height: 120%;
}
body#home #area-01 {
  z-index: 0;
  width: 100%;
  background-color: var(--c-light-gray);
}
body#home #area-01 #myVideo {
  opacity: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  pointer-events: none;
}
body#home #area-01 #mainFV {
  opacity: 0;
  position: relative;
  width: 100%;
  height: min(900px, 65.88vw);
  margin-bottom: min(100px, 7.32vw);
}
body#home #area-01 #mainFV .wrap {
  position: relative;
  height: 100%;
}
body#home #area-01 .mainFV_copy {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 49%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
body#home #area-01 .mainFV_copy p span {
  display: inline-block;
  opacity: 0;
  filter: blur(30px);
}
body#home #area-01 .mainFV_copy .mainCatch {
  width: min(670px, 49.04vw);
}
body#home #area-01 .mainFV_copy .mainCatch__captions {
  margin-top: min(20px, 1.46vw);
  font-size: min(18px, 1.31vw);
  line-height: 2;
  letter-spacing: 0.1em;
}
body#home #area-01 #mainFV .mainFV_img .fvImg {
  position: absolute;
}
body#home #area-01 #mainFV .mainFV_img .fvImg img {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  filter: blur(6px);
  transition:
    clip-path 1.3s cubic-bezier(0.83, 0, 0.17, 1),
    opacity 1s cubic-bezier(0.83, 0, 0.17, 1) 0.15s,
    filter 1.2s cubic-bezier(0.83, 0, 0.17, 1);
}
body#home #area-01 #mainFV .mainFV_img .fvImg.show img {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  filter: blur(0);
}
body#home #area-01 #mainFV .mainFV_img #fvImg01 {
  width: min(234px, 17.13vw);
  height: min(206px, 15.08vw);
  top: min(85px, 6.22vw);
  left: min(60px, 4.39vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg02 {
  width: min(152px, 11.12vw);
  height: min(118px, 8.63vw);
  top: min(420px, 30.74vw);
  left: min(-80px, -5.85vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg03 {
  width: min(120px, 8.78vw);
  height: min(113px, 8.27vw);
  bottom: min(200px, 14.64vw);
  left: min(100px, 7.32vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg04 {
  width: min(144px, 10.54vw);
  height: min(120px, 8.78vw);
  bottom: min(-50px, -3.66vw);
  left: min(-60px, -4.39vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg05 {
  width: min(247px, 18.08vw);
  height: min(135px, 9.88vw);
  bottom: min(30px, 2.19vw);
  left: min(310px, 22.69vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg06 {
  width: min(162px, 11.85vw);
  height: min(175px, 12.81vw);
  top: min(150px, 10.98vw);
  right: min(300px, 21.96vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg07 {
  width: min(113px, 8.27vw);
  height: min(82px, 6.00vw);
  top: min(120px, 8.78vw);
  right: min(-20px, -1.46vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg08 {
  width: min(184px, 13.46vw);
  height: min(162px, 11.85vw);
  top: min(380px, 27.81vw);
  right: min(-50px, 3.66vw);
}
body#home #area-01 #mainFV .mainFV_img #fvImg09 {
  width: min(280px, 20.49vw);
  height: min(216px, 15.81vw);
  bottom: min(10px, 0.73vw);
  right: min(-60px, -4.39vw);
}
body#home #area-01 #mainMsg {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: min(100px, 7.32vw);
  margin: 0 auto;
  text-align: center;
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(24px, 1.75vw);
  line-height: 2.18;
  letter-spacing: 0.07em;
}
body#home #area-01 #mainMsg p span {
  display: inline-block;
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
}
body#home #area-01 #mainMsg .contents {
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}
body#home #area-01 #mainMsg .captions {
  display: inline-block;
  width: 100%;
  font-size: min(15px, 1.09vw);
  text-align: right;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
body#home #area-02 {
  position: relative;
  padding: min(400px, 29.28vw) 0;
}
body#home #area-02 .areaItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
body#home #area-02 .areaItem .areaTitle {
  position: relative;
  top: min(-200px, -14.64vw);
  left: min(90px, 6.58vw);
}
body#home #area-02 .areaItem .areaDesc {
  position: relative;
  top: min(-150px, -10.98vw);
}
body#home #area-02 .areaItem .areaDesc .btn {
  margin: min(50px, 3.66vw) 0 min(50px, 3.66vw) auto;
}
body#home #area-03 .areaItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: row-reverse;
}
body#home #area-03 .areaItem .areaItemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
body#home #area-03 .areaItem .areaItemBox .areaDesc {
  margin-top:  min(100px, 7.32vw);
}
body#home #area-03 .areaItem .areaItemBox .areaDesc .btn {
  margin-top:  min(50px, 3.66vw);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList {
  margin:  min(100px, 7.32vw) 0;
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox {
  width: min(660px, 48.31vw);
  height: min(140px, 10.24vw);
  margin: min(20px, 1.46vw) 0;
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(20px, 1.46vw) min(50px, 3.66vw);
  background-color: var(--c-light-gray);
  border-radius: min(20px, 1.46vw);
  transition: all .5s var(--ease-out-3);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:hover {
  background-color: var(--c-dark-gray);
  color: var(--c-white);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:hover:after {
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listTitle-en {
  margin-right: min(30px, 2.19vw);
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(48px, 3.51vw);
  line-height: 1.66;
  letter-spacing: 0.05em;
  background: url("../img/home/icon-box-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:hover .listTitle-en {
  background: url("../img/home/icon-box-rainbow.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listTitle-en span {
  display: inline-block;
  padding: 0 min(10px, 0.73vw);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listContents p {
  font-size: min(18px, 1.31vw);
  letter-spacing: 0.13em;
  color: var(--c-dark-gray);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:hover .listContents p {
  color: var(--c-white);
}
body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listContents span {
  letter-spacing: 0.05em;
  color: #808080;
}
body#home #area-04 {
  padding: min(150px, 10.98vw) 0 min(250px, 18.30vw);
}
body#home #area-04 .areaItem .areaItemBox .areaTitle {
  position: relative;
  z-index: 1;
  padding-left: min(90px, 6.58vw);
}
body#home #area-04 .areaItem .areaItemBox .areaDesc {
  position: relative;
  z-index: 1;
  padding-left: min(90px, 6.58vw);
}
body#home #area-04 .areaItem .areaItemBox .areaDesc p {
  margin: min(50px, 3.66vw) 0 min(70px, 5.12vw);
}
body#home #area-04 .areaItem .areaItemBox .areaImages {
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  width: min(672px, 49.19vw);
  height: min(568px, 41.58vw);
}
body#home #area-05 {
  padding: min(90px, 6.58vw) 0;
}
body#home #area-05 .areaItem .areaItemBox {
  overflow: hidden;
}
body#home #area-05 .areaItem .areaItemBox .wrap {
  padding: 0 min(90px, 6.58vw);
}
body#home #area-05 .areaItem .areaItemBox .areaSlider {
  display: flex;
  width: max-content;
  padding: min(90px, 6.58vw) 0;
  animation: marquee 42s linear infinite;
}
body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item {
  position: relative;
  flex: 0 0 auto;
  width: min(360px, 26.35vw);
  height: min(360px, 26.35vw);
  margin: 0 min(20px, 1.46vw);
}
body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item:nth-child(odd) {
  top: min(-30px, -2.19vw);
}
body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item:nth-child(even) {
  top: min(30px, 2.19vw);
}
body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item img {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
body#home #area-05 .areaItem .areaItemBox .areaDesc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body#home #area-06 {
  padding: min(90px, 6.58vw) 0;
  background-color: transparent;
}
body#home #area-06:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  background-color: rgb(var(--gray, 249), var(--gray, 249), var(--gray, 249));
  transition: background-color 0.3s ease;
}

/* 콘텐츠는 위로 올리기 */
body#home #area-06 .wrap {
  position: relative;
  z-index: 1; /* ::before보다 위 */
}
body#home #area-06 .areaItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row-reverse;
}
body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox {
  width: min(560px, 40.99vw);
  height: min(200px, 14.64vw);
  margin: min(20px, 1.46vw) 0;
}
body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(20px, 1.46vw);
  background-color: var(--c-white);
  border-radius: min(16px, 1.17vw);
  transition: all .5s var(--ease-out-3);
  font-size: min(18px, 1.31vw);
  font-weight: 700;
  letter-spacing: 0.13em;
}
body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a:hover {
  background-color: var(--c-dark-gray);
  color: var(--c-white);
}
body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a:hover:after {
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home #area-07 .areaItem .areaImages {
  position: relative;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  width: 100%;
  height: min(510px, 37.33vw);
  margin-bottom: min(100px, 7.32vw);
}
body#home #area-07 .areaItem .areaItemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#home #area-07 .areaItem .areaItemBox .areaDesc .btn {
  margin: min(20px, 1.46vw) 0 min(20px, 1.46vw) auto;
}
body#home #area-07 .areaItem .areaItemBox.areaItemList {
  margin-top: min(100px, 7.32vw);
}
body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox {
  width: min(380px, 27.81vw);
  height: min(120px, 8.78vw);
  margin: min(20px, 1.46vw) 0;
}
body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(50px, 3.66vw);
  background-color: var(--c-light-gray);
  border-radius: min(10px, 0.73vw);
  transition: all .5s var(--ease-out-3);
  letter-spacing: 0.13em;
}
body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a:hover {
  background-color: var(--c-dark-gray);
  color: var(--c-white);
}
body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a:hover:after {
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#home #area-08 {
  padding: min(90px, 6.58vw) 0 min(180px, 13.17vw);
}
body#home #area-08 .areaItem .areaItemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#home #area-08 .areaItem .areaItemBox.areaItemList .listBox {
  width: min(438px, 32.06vw);
  height: min(180px, 13.17vw);
  margin: 0 min(30px, 2.19vw);
}
body#home #area-08 .areaItem .areaItemBox.areaItemList .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  border-radius: min(20px, 1.46vw);
  transition: all .5s var(--ease-out-3);
  letter-spacing: 0.13em;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(24px, 1.75vw);
  line-height: 0.79;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-dark-gray);
}
body#home #area-08 .areaItem .areaItemBox.areaItemList .listBox a:hover {
  color: var(--c-dark-gray);
  background-color: var(--c-white);
}

@media screen and (max-width: 768px) {
  body#home .area {
    overflow: hidden;
  }
  body#home .area .areaItem .areaImages {
    position: relative;
    z-index: 1;
    top: auto;
    left: -6.66vw;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100vw;
    height: 100vw;
  }
  body#home .area .areaItem .areaImages .areaImages_picture img {
    top: -5%;
    height: 110%;
  }
  body#home .area .areaTitle .title-en {
    font-size: 10.66vw;
  }
  body#home .area .areaTitle .title-ja {
    margin: 3vw 0 7vw;
    font-size: 3.2vw;
  }
  body#home .area .areaTitle .title-ja:before {
    width: 3.46vw;
    height: 0.8vw;
  }
  body#home .area .areaDesc p {
    font-size: 5.86vw;
    letter-spacing: 0;
  }
  body#home .area .btn {
    width: 64vw;
    height: 12.8vw;
    font-size: 3.2vw;
  }
  body#home .area .btn a {
    border-radius: 6.4vw;
  }
  body#home .area .btn a:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  body#home #area-01 #mainFV {
    height: 200vw;
    margin-bottom: 30vw;
  }
  body#home #area-01 .mainFV_copy .mainCatch {
    width: 89.2vw;
  }
  body#home #area-01 .mainFV_copy .mainCatch__captions {
    margin-top: 7vw;
    font-size: 3.2vw;
    letter-spacing: 0;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg01 {
    width: 22.66vw;
    height: 19.86vw;
    top: 25vw;
    left: 30vw;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg02 {
    width: 20.26vw;
    height: 15.73vw;
    top: auto;
    bottom: 0;
    left: 0;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg03 {
    width: 16vw;
    height: 15.06vw;
    bottom: auto;
    left: auto;
    top: -5vw;
    right: 0;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg04 {
    width: 19.2vw;
    height: 16vw;
    bottom: 20vw;
    left: 30vw;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg05 {
    width: 24.93vw;
    height: 13.6vw;
    left: auto;
    bottom: 9vw;
    right: -7vw;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg06 {
    width: 16.4vw;
    height: 17.73vw;
    top: 1vw;
    right: auto;
    left: 0;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg07 {
    width: 15.06vw;
    height: 10.93vw;
    top: 50vw;
    right: 2vw;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg08 {
    width: 28.4vw;
    height: 24.93vw;
    top: auto;
    bottom: 38vw;
    right: 0;
  }
  body#home #area-01 #mainFV .mainFV_img #fvImg09 {
    width: 24.8vw;
    height: 19.06vw;
    bottom: 42vw;
    right: auto;
    left: -7vw;
  }
  body#home #area-01 #mainMsg {
    padding: 0;
    font-size: 4.8vw;
  }
  body#home #area-01 #mainMsg .contents {
    padding: 0 6.66vw;
  }
  body#home #area-01 #mainMsg .captions {
    padding: 0 6.66vw;
    margin: 10vw 0;
    font-size: 3.2vw;
  }
  body#home #area-02 {
    padding: 30vw 0 60vw;
  }
  body#home #area-02 .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column-reverse;
  }
  body#home #area-02 .areaItem {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-02 .areaItem .areaTitle {
    top: 0;
    left: 0;
  }
  body#home #area-02 .areaItem .areaDesc {
    z-index: 1;
    top: 0;
    left: 35vw;
    width: fit-content;
    margin-bottom: -30vw;
  }
  body#home #area-02 .areaItem .areaDesc .btn {
    position: absolute;
    bottom: -95vw;
    left: -24vw;
    margin: 0;
  }
  body#home #area-03 .areaItem {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-03 .areaItem .areaItemBox {
    width: 100%;
  }
  body#home #area-03 .areaItem .areaItemBox .areaDesc {
    width: 100%;
    margin-top: 5vw;
  }
  body#home #area-03 .areaItem .areaItemBox .areaDesc .btn {
    margin: 6vw auto 0;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList {
    margin: 15vw 0;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox {
    width: 86.66vw;
    height: 24vw;
    margin: 2vw 0;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a {
    padding: 5vw;
    border-radius: 2.13vw;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a:after {
    right: 3vw;
    width: 4vw;
    height: 4vw;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listTitle-en {
    margin-right: 3vw;
    font-size: 6.4vw;
    background-size: auto 100%;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listTitle-en span {
    padding: 0 3vw;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listContents {
    line-height: 2;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listContents p {
    font-size: 3.46vw;
    letter-spacing: 0;
  }
  body#home #area-03 .areaItem .areaItemBox.areaItemList .listBox a .listContents span {
    font-size: 2.4vw;
  }
  body#home #area-04 {
    padding: 10vw 0 60vw;
  }
  body#home #area-04 .areaItem .areaItemBox .areaTitle {
    padding-left: 0;
  }
  body#home #area-04 .areaItem .areaItemBox .areaDesc {
    z-index: 2;
    top: 0;
    left: 0;
    width: fit-content;
    padding-left: 0;
    margin-bottom: -17vw;
  }
  body#home #area-04 .areaItem .areaItemBox .areaDesc p {
    display: inline-block;
    margin: 8vw 0 0;
  }
  body#home #area-04 .areaItem .areaItemBox .areaImages {
    width: 100%;
    height: 75.73vw;
  }
  body#home #area-04 .areaItem .areaDesc .btn {
    position: absolute;
    bottom: -85vw;
    left: 10vw;
    margin: 0;
  }
  body#home #area-05 {
    padding: 10vw 0 20vw;
  }
  body#home #area-05 .areaItem .areaItemBox .wrap {
    padding: 0;
  }
  body#home #area-05 .areaItem .areaItemBox .areaSlider {
    padding: 20vw 0;
  }
  body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item {
    width: 48vw;
    height: 48vw;
    margin: 0 3vw;
  }
  body#home #area-05 .areaItem .areaItemBox .areaSlider .areaSlider__item:nth-child(odd) {
    top: -8vw;
  }
  body#home #area-05 .areaItem .areaItemBox .areaDesc {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-05 .areaItem .areaItemBox .areaDesc p {
    font-size: 5.2vw;
  }
  body#home #area-05 .areaItem .areaItemBox .areaDesc .btn {
    margin: 6vw auto 0;
  }
  body#home #area-06 {
    padding: 20vw 0;
  }
  body#home #area-06 .areaItem {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox {
    display: inline-block;
    width: 86.66vw;
    height: 24vw;
    margin: 2vw 0;
  }
  body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a {
    padding: 5vw;
    border-radius: 2.13vw;
    font-size: 3.46vw;
  }
  body#home #area-06 .areaItem .areaItemBox.areaItemList .listBox a:after {
    right: 3vw;
    width: 4vw;
    height: 4vw;
  }
  body#home #area-07 .areaItem .areaImages {
    height: 68vw;
    margin-bottom: 30vw;
  }
  body#home #area-07 .areaItem .areaItemBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-07 .areaItem .areaItemBox .areaDesc {
    width: 100%;
  }
  body#home #area-07 .areaItem .areaItemBox .areaDesc .btn {
    margin: 6vw auto 0;
  }
  body#home #area-07 .areaItem .areaItemBox.areaItemList {
    margin: 15vw auto;
  }
  body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox {
    display: inline-block;
    width: 86.66vw;
    height: 24vw;
    margin: 2vw 0;
  }
  body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a {
    padding: 5vw;
    border-radius: 2.13vw;
    font-size: 3.46vw;
  }
  body#home #area-07 .areaItem .areaItemBox.areaItemList .listBox a:after {
    right: 3vw;
    width: 4vw;
    height: 4vw;
  }
  body#home #area-08 {
    padding: 10vw 0 20vw;
  }
  body#home #area-08 .areaItem .areaItemBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#home #area-08 .areaItem .areaItemBox.areaItemList .listBox {
    display: inline-block;
    width: 86.66vw;
    height: 24vw;
    margin: 2vw 0;
  }
  body#home #area-08 .areaItem .areaItemBox.areaItemList .listBox a {
    padding: 5vw;
    border-radius: 2.13vw;
    font-size: 4.26vw;
  }
}

/* page common
-------------------------------------------------- */
body.page #content {
  opacity: 1;
  padding: 0 0 min(150px, 10.98vw);
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
  transition: all .5s var(--ease-out-3);
  background-color: var(--c-white);
}
body.page .mainFV {
  position: relative;
  padding-top: min(150px, 10.98vw);
  background-color: var(--c-light-gray);
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
}
body.page .mainFV .mainFV__prism_img {
  position: fixed;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: none;
  mix-blend-mode: screen;
  pointer-events: none;
}
body.page .mainFV .mainFV__info {
  position: relative;
  z-index: 1;
}
body.page .mainFV .mainFV__info .mainFV__title {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(20px, 1.46vw);
  margin-bottom: min(100px, 7.32vw);
}
body.page .mainFV .mainFV__info .mainFV__title .mainFV__title-en {
  font-size: min(36px, 2.63vw);
  line-height: 1.66;
  letter-spacing: 0.05em;
}
body.page .mainFV .mainFV__info .mainFV__title .mainFV__title-ja {
  padding: min(4px, 0.29vw) min(10px, 0.73vw);
  margin-top: min(3px, 0.21vw);
  line-height: 1.31;
  letter-spacing: 0.13em;
  background-color: var(--c-dark-gray);
  color: var(--c-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
body.page .mainFV .mainFV__info .mainFV__catchCopy {
  position: relative;
  z-index: 1;
  margin-bottom: min(40px, 2.92vw);
  font-size: min(46px, 3.36vw);
  font-weight: 700;
  line-height: 1.58;
}
body.page .mainFV .mainFV__info .mainFV__desc {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: fit-content;
  line-height: 2.1;
  letter-spacing: 0.09em;
}
body.page .mainFV .mainFV__info .mainFV__desc .btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(230px, 16.83vw);
  height: min(56px, 4.09vw);
  margin-left: min(70px, 5.12vw);
  background: linear-gradient(to right, var(--c-dark-gray) 50%, var(--c-white) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--c-dark-gray);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(13px, 0.95vw);
  font-weight: 700;
  line-height: 1.61;
  letter-spacing: 0.11em;
  border-radius: min(50px, 3.66vw);
  transition: all .5s var(--ease-out-3);
  border: 1px solid var(--c-light-gray);
}
body.page .mainFV .mainFV__info .mainFV__desc .btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/people/icon-arrow.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.page .mainFV .mainFV__info .mainFV__desc .btn:hover {
  background-position: left bottom;
  color: var(--c-white);
}
body.page .mainFV .mainFV__info .mainFV__desc .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
body.page .mainFV .mainFV__img {
  position: relative;
  z-index: 1;
  height: min(760px, 55.63vw);
  margin-top: min(70px, 5.12vw);
  overflow: hidden;
}
body.page .mainFV .mainFV__img img {
  max-width: none;
  max-height: none;
}
body.page .mainFV .mainFV__img .mainFV__img_picture {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
body.page .mainFV .mainFV__img .mainFV__img_picture img {
  position: relative;
  top: -10%;
  height: 120%;
}
body.page .mainFV .mainFV__img .mainFV__img_prism {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  width: 100%;
  height: 100%;
}
body.page .sideContents .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body.page .sideContents .side-menu {
  position: sticky;
  top: min(150px, 10.98vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  width: min(150px, 10.98vw);
  padding-top: min(100px, 18.30vw);
  flex-shrink: 0;
}
body.page .sideContents .side-menu a {
  position: relative;
  display: inline-block;
  margin: min(15px, 1.09vw) 0;
  color: var(--c-dark-gray);
  text-decoration: none;
  font-weight: bold;
  transition: all .5s var(--ease-out-3);
  line-height: 1;
}
body.page .sideContents .side-menu a:before {
  content: '';
  transition: all .5s var(--ease-out-3);
}
body.page .sideContents .side-menu a:hover {
  color: #B3B3B3;
}
body.page .sideContents .side-menu a:hover:before {
  content: '';
  position: absolute;
  top: 55%;
  left: min(-20px, -1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(12px, 0.87vw);
  height: min(12px, 0.87vw);
  background: url(../img/icon-anchor-triangle.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.page .sideContents .side-menu a.active:before {
  content: '';
  position: absolute;
  top: 55%;
  left: min(-20px, -1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(12px, 0.87vw);
  height: min(12px, 0.87vw);
  background: url(../img/icon-anchor-circle.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.page .sideContents .sectionItem {
  width: calc(100% - min(250px, 10.98vw));
}
body.page .sideContents .sectionItem .lSection {
  padding-top: min(100px, 18.30vw);
}
body.page .lSection .lSection__title {
  position: relative;
  padding-top: min(30px, 2.19vw);
  margin-bottom: min(60px, 4.39vw);
  font-weight: 700;
  font-size: min(20px, 1.46vw);
  line-height: 1.8;
  letter-spacing: 0.13em;
}
body.page .lSection .lSection__title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: min(163px, 11.93vw);
  height: 1px;
  background: url("../img/icon-line-rainbow.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  opacity: 0;
}
body.page .lSection .lSection__title.aos-animate:before {
  animation: lineSlide 0.5s linear infinite;
  animation-iteration-count: 1;
  opacity: 1;
}
body.page .mainContents {
  position: relative;
}
body.page .mainContents .lSection__mainBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body.page .mainContents .lSection__mainBox .lSection__title {
  width: min(400px, 29.28vw);
}
body.page .mainContents .lSection__mainBox .lSection__contents {
  width: calc(100% - min(400px, 29.28vw));
}
body.page .mainContents .lSection__mainBox .lSection__contents .lSection__contents_desc {
  line-height: 2.25;
}
body.page .mainContents .lSection__img {
  margin: min(90px, 6.58vw) 0;
}
body.page .mainContents .lSection__contents .lSection__btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox {
  width: min(1200px, 87.84vw);
  height: min(180px, 13.17vw);
  margin: min(20px, 1.46vw) 0;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(20px, 1.46vw) min(50px, 3.66vw);
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  border-radius: min(20px, 1.46vw);
  transition: all .5s var(--ease-out-3);
  border: 1px solid var(--c-dark-gray);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a:hover {
  background-color: var(--c-white);
  color: var(--c-dark-gray);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a:hover:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listTitle-en {
  margin-right: min(30px, 2.19vw);
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(48px, 3.51vw);
  line-height: 1.66;
  letter-spacing: 0.05em;
  background: url(../img/home/icon-box-rainbow.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a:hover .listTitle-en {
  background: url(../img/home/icon-box-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listTitle-en span {
  display: inline-block;
  padding: 0 min(10px, 0.73vw);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents {
  width: min(350px, 25.62vw);
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents p {
  font-size: min(20px, 1.46vw);
  letter-spacing: 0.075em;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents span {
  font-size: min(15px, 1.09vw);
  letter-spacing: 0.05em;
  color: #B3B3B3;
}
body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listDesc {
  width: min(550px, 40.26vw);
}

@media screen and (max-width: 768px) {
  body.page #content {
    padding: 0 0 20vw;
  }
  body.page .mainFV {
    padding-top: 25vw;
  }
  body.page .mainFV .mainFV__img {
    margin-top: 10vw;
  }
  body.page .mainFV .mainFV__info .mainFV__title {
    align-items: flex-start;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 0;
    margin-bottom: 20vw;
  }
  body.page .mainFV .mainFV__info .mainFV__title .mainFV__title-en {
    font-size: 7.2vw;
  }
  body.page .mainFV .mainFV__info .mainFV__title .mainFV__title-ja {
    padding: 0 2vw;
    margin-top: 0;
    font-size: 3.46vw;
    line-height: 1.7;
  }
  body.page .mainFV .mainFV__info .mainFV__catchCopy {
    margin-bottom: 7vw;
    font-size: 6.93vw;
    letter-spacing: -0.1em;
  }
  body.page .mainFV .mainFV__info .mainFV__desc {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    align-items: flex-start;
    font-size: 3.86vw;
    line-height: 1.7;
  }
  body.page .mainFV .mainFV__info .mainFV__desc .btn {
    width: 64vw;
    height: 12.8vw;
    margin: 8vw 0 5vw;
    font-size: 3.2vw;
    border-radius: 6.4vw;
  }
  body.page .mainFV .mainFV__info .mainFV__desc .btn:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  body.page .mainContents .lSection__mainBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body.page .mainContents .lSection__mainBox .lSection__title {
    width: 100%;
  }
  body.page .mainContents .lSection__mainBox .lSection__contents {
    width: 100%;
    padding-left: 10.66vw;
    font-size: 3.73vw; 
  }
  body.page .mainContents .lSection__img {
    position: relative;
    margin: 10vw 0;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox {
    width: 100%;
    height: auto;
    margin: 2vw 0;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a {
    align-items: flex-start;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding: 5vw 4vw;
    border-radius: 2.13vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a:after {
    top: 10vw;
    right: 5vw;
    width: 4vw;
    height: 4vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listTitle-en {
    margin-right: 0;
    font-size: 8vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listTitle-en span {
    padding: 0 1.5vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents {
    width: 100%;
    margin: 3vw 0 5vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents p {
    font-size: 4.26vw;
    letter-spacing: 0;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listContents span {
    font-size: 3.2vw;
  }
  body.page .mainContents .lSection__contents .lSection__btn_list .listBox a .listDesc {
    width: 100%;
    font-size: 3.2vw;
    line-height: 1.7;
  }
  body.page .sideContents .wrap {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body.page .sideContents .side-menu {
    position: relative;
    top: 0;
    width: 100%;
    padding-top: 20vw;
  }
  body.page .sideContents .side-menu ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
    width: 100%;
  }
  body.page .sideContents .side-menu ul li {
    border-bottom: 2px solid var(--c-light-gray);
  }
  body.page .sideContents .side-menu a {
    width: 100%;
    padding: 3vw 0;
    margin: 0;
    font-size: 3.46vw;
  }
  body.page .sideContents .side-menu a:before,
  body.page .sideContents .side-menu a:hover:before,
  body.page .sideContents .side-menu a.active:before {
    display: none;
  }
  body.page .sideContents .side-menu a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 4vw;
    height: 4vw;
    background: url("../img/icon-anchor-sp.svg") no-repeat;
    background-size: 100% auto;
    background-position: center;
    transition: all .5s var(--ease-out-3);
  }
  body.page .sideContents .sectionItem {
    width: 100%;
  }
  body.page .sideContents .sectionItem .lSection {
    padding-top: 26.66vw;
  }
  body.page .lSection .lSection__title {
    padding-top: 5vw;
    margin-bottom: 15vw;
    font-size: 4vw;
    letter-spacing: 0.02em;
  }
  body.page .lSection .lSection__title:before {
    width: 37.06vw;
  }
  body.page .mainContents .scroll-hint {
    position: absolute;
    z-index: 1;
    top: 37%;
    left: 37%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: none;
    animation: fadeIn 1s ease;
  }
  body.page .mainContents .scroll-hint.hidden {
    opacity: 0;
  }
  body.page .mainContents .scroll-hint img.scroll_img {
    width: 40vw !important;
  }
}

/* about page
-------------------------------------------------- */
body#about .mainFV {
  height: 78.33vw;
}
body#about .mainFV .mainFV__prism_img {
  z-index: 1;
  top: 60%;
}
body#about .mainFV .mainFV__img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
body#about .mainFV .mainFV__img .mainFV__img_picture {
  position: relative;
  top: auto;
  left: auto;
  -ms-transform: none;
  -moz-transform: none;
  -webkit-transform: none;
  transform: none;
}
body#about .mainFV .mainFV__img .mainFV__img_picture img {
  top: 0;
  height: 100%;
}
body#about .mainContents {
  z-index: 2;
}
body#about .sideContents .side-menu {
  margin-right: min(100px, 7.32vw);
}
body#about #section1 .lSection__contents {
  padding-left: min(170px, 12.44vw);
}
body#about #section1 .lSection__contents .lSection__contents_catchCopy {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(36px, 2.63vw);
  line-height: 1.69;
  letter-spacing: 0.075em;
}
body#about #section1 .lSection__contents .lSection__contents_desc {
  margin: min(50px, 3.66vw) 0;
  line-height: 2.25;
}
body#about #section1 .lSection__contents .lSection__contents_btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(320px, 23.42vw);
  height: min(56px, 4.09vw);
  font-size: min(13px, 0.95vw);
  font-weight: 700;
  line-height: 1.61;
  letter-spacing: 0.11em;
}
body#about #section1 .lSection__contents .lSection__contents_btn .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: min(27px, 1.97vw);
  background: linear-gradient(to right, var(--c-white) 50%, var(--c-dark-gray) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--c-white);
  border-radius: min(50px, 3.66vw);
  transition: all .5s var(--ease-out-3);
  border: 1px solid var(--c-dark-gray);
}
body#about #section1 .lSection__contents .lSection__contents_btn .btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#about #section1 .lSection__contents .lSection__contents_btn .btn a:hover {
  background-position: left bottom;
  color: var(--c-dark-gray);
}
body#about #section1 .lSection__contents .lSection__contents_btn .btn a:hover:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#about #section1 .lSection__contents .lSection__contents_modal {
  margin: min(80px, 5.85vw) 0;
}
body#about #section1 .youtube-thumb {
  width: min(640px, 46.85vw);
  cursor: pointer;
  position: relative;
  display: inline-block;
}
body#about #section1 .youtube-thumb:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: inline-block;
  width: min(60px, 4.39vw);
  height: min(60px, 4.39vw);
  background: url(../img/about/icon-video.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  pointer-events: none;
}
body#about #section1 .youtube-thumb img {
  width: 100%;
  height: min(360px, 26.35vw);
  border-radius: min(8px, 0.58vw);
}
body#about #section1 .youtube-thumb p {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(18px, 1.31vw);
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
body#about #section1 .modal {
  display: none;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
body#about #section1 .modal-content {
  position: relative;
  width: 80%;
  max-width: min(800px, 58.56vw);
}
body#about #section1 .modal-content iframe {
  width: 100%;
  height: min(450px, 32.94vw);
  border: none;
  border-radius: min(8px, 0.58vw);
}
body#about #section1 .modal-close {
  position: absolute;
  top: min(-40px, -2.92vw);
  right: min(-40px, -2.92vw);
  font-size: min(32px, 2.34vw);
  color: var(--c-white);
  cursor: pointer;
}
body#about #section2 .lSection__contents_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: min(20px, 1.46vw);
  -moz-column-gap: min(20px, 1.46vw);
  column-gap: min(20px, 1.46vw);
}
body#about #section2 .listBox {
  position: relative;
  white-space: nowrap;
}
body#about #section2 .listBox .listBox__title {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0 min(15px, 1.09vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(21px, 1.53vw);
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: var(--c-dark-gray);
  color: var(--c-white);
}
body#about #section2 .listBox .listBox__contentsWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(456px, 33.38vw);
  height: min(260px, 19.03vw);
  border: 1px solid var(--c-light-gray);
}
body#about #section2 .listBox .listBox__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(20px, 1.46vw);
}
body#about #section2 .listBox .listBox__contentsWrap .box_content {
  position: relative;
  font-weight: 700;
}
body#about #section2 .listBox .listBox__contentsWrap .box_content .num {
  font-family: var(--f-en);
  font-size: min(80px, 5.85vw);
  line-height: 1.2;
}
body#about #section2 .listBox .listBox__contentsWrap .box_content .text {
  font-size: min(20px, 1.46vw);
}
body#about #section2 .listBox .listBox__contentsWrap .captions {
  position: absolute;
  width: 100%;
  font-size: min(14px, 1.02vw);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}
body#about #section2 .listBox .listBox__contentsWrap .listBox__contentsColumn {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: 0;
  flex: 1;
}
body#about #section2 .listBox .listBox__contentsWrap .listBox__contentsColumn:first-child {
  border-right: 1px solid var(--c-light-gray);
}
body#about #section2 .listBox .listBox__contentsWrap .listBox__contentsColumn .box_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(10px, 0.73vw);
}
/* == Start Design Custom == */
body#about #section2 #listBox01 .listBox__contentsWrap {
  gap: min(20px, 1.46vw);
}
body#about #section2 #listBox01 .listBox__contentsWrap .box_img img {
  width: min(83px, 6.07vw);
}
body#about #section2 #listBox01 .listBox__contentsWrap .box_content .num {
  font-size: min(103px, 7.54vw);
}
body#about #section2 #listBox02 .listBox__contentsWrap .box_img img {
  width: min(30px, 2.19vw);
}
body#about #section2 #listBox02 .listBox__contentsWrap .captions {
  bottom: min(30px, 2.19vw);
}
body#about #section2 #listBox03 .listBox__contentsWrap .box_img img {
  width: min(56px, 4.09vw);
}
body#about #section2 #listBox03 .listBox__contentsWrap .captions {
  top: min(50px, 3.66vw);
  font-size: min(16px, 1.17vw);
}
body#about #section2 #listBox04 .listBox__contentsWrap .box_img img {
  width: min(75px, 5.49vw);
}
body#about #section2 #listBox04 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox04 .listBox__contents {
  gap: min(60px, 4.39vw);
}
body#about #section2 #listBox05 .listBox__contentsWrap .box_img img {
  width: min(24px, 1.75vw);
}
body#about #section2 #listBox05 .listBox__contentsWrap .captions {
  bottom: min(30px, 2.19vw);
}
body#about #section2 #listBox06 .listBox__contents {
  margin-top: min(30px, 2.19vw);
}
body#about #section2 #listBox06 .listBox__contentsWrap .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
  gap: min(10px, 0.73vw);
}
body#about #section2 #listBox06 .listBox__contentsWrap .box_img img {
  position: absolute;
  top: min(30px, 2.19vw);
  right: min(85px, 6.22vw);
  width: min(77px, 5.63vw);
}
body#about #section2 #listBox06 .listBox__contentsWrap .box_another {
  position: absolute;
  top: min(80px, 5.85vw);
  left: min(40px, 2.92vw);
  font-size: min(20px, 1.46vw);
  font-weight: 700;
}
body#about #section2 #listBox06 .listBox__contentsWrap .captions {
  position: relative;
  text-align: left;
}
body#about #section2 #listBox07 .listBox__contents {
  gap: min(40px, 2.92vw); 
}
body#about #section2 #listBox07 .listBox__contentsWrap .box_img img {
  width: min(70px, 5.12vw);
}
body#about #section2 #listBox07 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox08  .listBox__contentsWrap .listBox__contentsColumn {
  gap: min(20px, 1.46vw);
}
body#about #section2 #listBox08 .listBox__contentsWrap .box_img img {
  width: min(30px, 2.19vw);
}
body#about #section2 #listBox08 .listBox__contentsWrap .box_content .num {
  font-size: min(50px, 3.66vw);
}
body#about #section2 #listBox08  .listBox__contentsWrap .captions {
  position: relative;
}
body#about #section2 #listBox09 .listBox__contents {
  gap: min(40px, 2.92vw);
}
body#about #section2 #listBox09 .listBox__contentsWrap .box_img img {
  width: min(50px, 3.66vw);
}
body#about #section2 #listBox09 .listBox__contentsWrap .captions {
  position: relative;
  text-align: left;
}
body#about #section2 #listBox09 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox10 .listBox__contents {
  gap: min(40px, 2.92vw);
}
body#about #section2 #listBox10 .listBox__contentsWrap .box_img img {
  width: min(80px, 5.85vw);
}
body#about #section2 #listBox10 .listBox__contentsWrap .captions {
  position: relative;
}
body#about #section2 #listBox10 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox11 .listBox__contents {
  gap: min(40px, 2.92vw);
}
body#about #section2 #listBox11 .listBox__contentsWrap .box_img img {
  width: min(46px, 3.36vw);
}
body#about #section2 #listBox11 .listBox__contentsWrap .captions {
  position: relative;
}
body#about #section2 #listBox11 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox12 .listBox__contentsWrap .box_img img {
  width: min(95px, 6.95vw);
}
body#about #section2 #listBox12 .listBox__contentsWrap .captions {
  position: relative;
}
body#about #section2 #listBox12 .listBox__contentsWrap .box_content .num {
  font-size: min(114px, 8.34vw);
}
body#about #section2 #listBox13 .listBox__contentsWrap .listBox__contentsColumn:first-child {
  border-right: 0;
}
body#about #section2 #listBox13 .listBox__contentsWrap .listBox__contentsColumn .box_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  font-size: min(18px, 1.31vw);
  font-weight: 700;
}
body#about #section2 #listBox13 .listBox__contentsWrap .box_img img {
  width: min(22px, 1.61vw);
}
body#about #section2 #listBox13 .listBox__contentsWrap .box_content .num {
  font-size: min(60px, 4.39vw);
}
/* == End Design Custom == */
body#about #section3 .lSection__title {
  margin-bottom: 0;
}
body#about #section3 .lSection__contents .lSection__contents_img {
  width: min(600px, 43.92vw);
  margin: 0 0 min(70px, 5.12vw) auto;
}
body#about #section3 .lSection__contents .lSection__contents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 100%;
  padding: min(20px, 1.46vw) 0;
  border-bottom: 1px solid #E6E6E6;
  line-height: 2;
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__title {
  width: min(225px, 16.47vw);
  font-weight: 700;
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc {
  width: calc(100% - min(225px, 16.47vw));
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc span {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: min(10px, 0.73vw);
  font-size: min(10px, 0.73vw);
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc_img img {
  width: min(437px, 31.99vw);
}

@media screen and (max-width: 768px) {
  body#about .mainFV {
    height: 202.4vw;
  }
  body#about .sideContents .side-menu {
    margin-right: 0;
  }
  body#about #section1 .lSection__contents {
    padding-left: 0;
  }
  body#about #section1 .lSection__contents .lSection__contents_catchCopy {
    font-size: 5.86vw;
  }
  body#about #section1 .lSection__contents .lSection__contents_desc {
    padding-left: 10.66vw;
    margin: 10vw 0;
    font-size: 3.73vw;
    line-height: 2;
  }
  body#about #section1 .lSection__contents .lSection__contents_btn {
    padding-left: 10.66vw;
  }
  body#about #section1 .lSection__contents .lSection__contents_btn .btn {
    width: 79.33vw;
    height: 12.8vw;
    font-size: 3.2vw;
  }
  body#about #section1 .lSection__contents .lSection__contents_btn .btn a {
    padding-left: 7vw;
    border-radius: 6.4vw;
  }
  body#about #section1 .lSection__contents .lSection__contents_btn .btn a:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  body#about #section1 .lSection__contents .lSection__contents_modal {
    margin: 10vw 0 0;
  }
  body#about #section1 .youtube-thumb {
    width: 100%;
  }
  body#about #section1 .youtube-thumb:after {
    width: 12vw;
    height: 12vw;
  }
  body#about #section1 .youtube-thumb img {
    height: 50.93vw;
  }
  body#about #section1 .youtube-thumb p {
    font-size: 3.46vw;
    line-height: 3;
  }
  body#about #section1 .modal-close {
    top: -10vw;
    right: 0;
    font-size: 5vw;
  }
  body#about #section1 .modal-content {
    max-width: 90vw;
  }
  body#about #section1 .modal-content iframe {
    height: auto;
    border-right: 0;
  }
  body#about #section2 .lSection__contents_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
  }
  body#about #section2 .listBox {
    width: 80vw;
    margin: 0 auto;
  }
  body#about #section2 .listBox .listBox__contentsWrap {
    width: 100%;
    height: 46vw;
  }
  body#about #section2 .listBox .listBox__title {
    left: 0;
    padding: 0 2vw;
    font-size: 3.6vw;
  }
  body#about #section2 .listBox .listBox__contents {
    gap: 3vw;
  }
  body#about #section2 .listBox .listBox__contentsWrap .box_content .text {
    font-size: 3.46vw;
  }
  body#about #section2 .listBox .listBox__contentsWrap .captions {
    font-size: 2.4vw;
  }
  body#about #section2 .listBox .listBox__contentsWrap .listBox__contentsColumn .box_img {
    gap: 3vw;
    font-size: 2.8vw;
  }
  body#about #section2 .listBox .listBox__contentsWrap .box_content .num {
    font-size: 14vw;
  }
  /* == start Design Custom == */
  body#about #section2 #listBox01 .listBox__contentsWrap {
    gap: 5vw;
  }
  body#about #section2 #listBox01 .listBox__contentsWrap .box_img img {
    width: 14.53vw;
  }
  body#about #section2 #listBox01 .listBox__contentsWrap .box_content .num {
    font-size: 18vw;
  }
  body#about #section2 #listBox02 .listBox__contentsWrap .box_img img {
    width: 5.2vw;
  }
  body#about #section2 #listBox02 .listBox__contentsWrap .captions {
    bottom: 5vw;
  }
  body#about #section2 #listBox03 .listBox__contents {
    gap: 5vw;
  }
  body#about #section2 #listBox03 .listBox__contentsWrap .box_img img {
    width: 9.73vw;
  }
  body#about #section2 #listBox03 .listBox__contentsWrap .captions {
    top: 10vw;
    font-size: 2.8vw;
  }
  body#about #section2 #listBox04 .listBox__contents {
    gap: 8vw;
  }
  body#about #section2 #listBox04 .listBox__contentsWrap .box_img img {
    width: 13.06vw;
  }
  body#about #section2 #listBox04 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox05 .listBox__contentsWrap .box_img img {
    width: 4.26vw;
  }
  body#about #section2 #listBox05 .listBox__contentsWrap .captions {
    bottom: 5vw;
  }
  body#about #section2 #listBox06 .listBox__contentsWrap .box_content {
    gap: 3vw;
  }
  body#about #section2 #listBox06 .listBox__contentsWrap .box_another {
    top: 13vw;
    left: 7vw;
    font-size: 3.46vw;
  }
  body#about #section2 #listBox06 .listBox__contentsWrap .box_img img {
    top: 5vw;
    right: 13vw;
    width: 13.46vw;
  }
  body#about #section2 #listBox07 .listBox__contents {
    gap: 7vw;
  }
  body#about #section2 #listBox07 .listBox__contentsWrap .box_img img {
    width: 12.26vw;
  }
  body#about #section2 #listBox07 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox08 .listBox__contentsWrap .box_img img {
    width: 5.2vw;
  }
  body#about #section2 #listBox08 .listBox__contentsWrap .box_content .num {
    font-size: 8.8vw;
  }
  body#about #section2 #listBox09 .listBox__contents {
    gap: 7vw;
  }
  body#about #section2 #listBox09 .listBox__contentsWrap .box_img img {
    width: 8.66vw;
  }
  body#about #section2 #listBox09 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox10 .listBox__contents {
    gap: 7vw;
  }
  body#about #section2 #listBox10 .listBox__contentsWrap .box_img img {
    width: 14vw;
  }
  body#about #section2 #listBox10 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox11 .listBox__contents {
    gap: 7vw;
  }
  body#about #section2 #listBox11 .listBox__contentsWrap .box_img img {
    width: 8vw;
  }
  body#about #section2 #listBox11 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox12 .listBox__contentsWrap .box_img img {
    width: 16.53vw;
  }
  body#about #section2 #listBox12 .listBox__contentsWrap .box_content .num {
    font-size: 20vw;
  }
  body#about #section2 #listBox13 .listBox__contentsWrap .listBox__contentsColumn .box_img {
    font-size: 3.06vw;
  }
  body#about #section2 #listBox13 .listBox__contentsWrap .box_img img {
    width: 3.86vw;
  }
  body#about #section2 #listBox13 .listBox__contentsWrap .box_content .num {
    font-size: 10.53vw;
  }
  /* == End Design Custom == */
  body#about #section3 .lSection__contents {
    width: 80vw;
    margin: 0 auto;
  }
  body#about #section3 .lSection__contents .lSection__contents_img {
    width: 100%;
    margin: 15vw 0;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding: 3vw 0;
    font-size: 3.46vw;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__title {
    width: 100%;
    margin-bottom: 2vw;
    font-size: 3.6vw;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc {
    width: 100%;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc_img {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc_img img {
    width: 100%;
    margin: 3vw 0;
  }
  body#about #section3 .lSection__contents .lSection__contents_list .listBox .listBox__desc span {
    font-size: 2.5vw;
    margin-right: 1.5vw;
  }
}

/* business page
-------------------------------------------------- */
body#business .mainFV .mainFV__img {
  height: min(510px, 37.33vw);
}
body.businessPage .mainFV .mainFV__img {
  height: min(420px, 30.74vw);
}
body.businessPage #section1 {
  margin: min(100px, 7.32vw) 0;
}
body.businessPage .mainContents .lSection .lSection__title:before {
  width: min(198px, 14.49vw);
}
@media screen and (max-width: 768px) {
  body#business .mainFV .mainFV__img {
    height: 120vw;
  }
  body.businessPage #section1 {
    margin: 26.66vw 0;
  }
  body.businessPage .mainContents .lSection .lSection__title:before {
    width: 37.06vw;
  }
  body.businessPage .mainContents .lSection__img {
    overflow-x: auto;
  }
  body.businessPage .mainContents .lSection__img img.model_img {
    width: 240vw;
    margin-bottom: 10vw;
    max-width: none;
  }
}

/* business child page common
-------------------------------------------------- */
body.businessChildPage .mainFV .mainFV__title .mainFV__title-en_sb {
  margin: min(30px, 2.19vw) 0;
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(36px, 2.63vw);
  line-height: 1.66;
  letter-spacing: 0.05em;
  background: url("../img/home/icon-box-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.businessChildPage .mainFV .mainFV__title .mainFV__title-en_sb span {
  display: inline-block;
  padding: 0 min(10px, 0.73vw);
}
body.businessChildPage .mainFV .mainFV__title .mainFV__title-ja span.mainFV__title-ja_add {
  font-family: var(--f-en);
  font-size: min(13px, 0.95vw);
  line-height: 2;
  letter-spacing: 0.05em;
}
body.businessChildPage .mainContents .lSection__mainBox .lSection__contents .lSection__contents_catch {
  margin-bottom: min(50px, 3.66vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(36px, 2.63vw);
  line-height: 1.66;
  letter-spacing: 0.075em;
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: min(40px, 2.92vw);
  -moz-column-gap: min(40px, 2.92vw);
  column-gap: min(40px, 2.92vw);
  padding-left: min(150px, 10.98vw);
  margin-bottom: min(150px, 10.98vw);
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listImg {
  position: relative;
  margin-bottom: min(15px, 1.09vw);
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listImg:after {
  content: '';
  position: absolute;
  bottom: min(20px, 1.46vw);
  right: min(20px, 1.46vw);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox a:hover .listImg:after {
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listImg img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listContents {
  font-family: var(--f-en);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  body.businessPage .mainFV .mainFV__img {
    height: 120vw;
  }
  body.businessChildPage .mainFV .mainFV__info .mainFV__title {
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
  }
  body.businessChildPage .mainFV .mainFV__info .mainFV__title .mainFV__title-en {
    width: 100%;
  }
  body.businessChildPage .mainFV .mainFV__title .mainFV__title-en_sb {
    margin: 0 2vw 0 0;
    font-size: 6.4vw;
  }
  body.businessChildPage .mainFV .mainFV__title .mainFV__title-en_sb span {
    padding: 0 1.5vw;
  }
  body.businessChildPage .mainFV .mainFV__info .mainFV__title .mainFV__title-ja {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body.businessChildPage .mainFV .mainFV__title .mainFV__title-ja span.mainFV__title-ja_add {
    font-size: 2.26vw;
  }
  body.businessChildPage .mainContents .lSection__mainBox .lSection__contents {
    padding-left: 0;
  }
  body.businessChildPage .mainContents .lSection__mainBox .lSection__contents .lSection__contents_catch {
    font-size: 5.86vw;
  }
  body.businessChildPage .mainContents .lSection__mainBox .lSection__contents .lSection__contents_desc {
    padding-left: 10.66vw;
  }
  body.businessChildPage .mainContents .lSection__contents .lSection__people_list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 7vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
    padding-left: 0;
    margin-bottom: 20vw;
  }
  body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listImg {
    margin-bottom: 2vw;
  }
  body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listImg:after {
    bottom: 2vw;
    right: 2vw;
    width: 4vw;
    height: 4vw;
  }
  body.businessChildPage .mainContents .lSection__contents .lSection__people_list .listBox .listContents {
    font-size: 3.2vw;
  }
}

/* job page
-------------------------------------------------- */
body#job .mainFV .mainFV__img {
  height: min(592px, 43.33vw);
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: min(80px, 5.85vw);
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox:nth-child(odd) {
  flex-direction: row-reverse;
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents {
  width: calc(100% - min(446px, 32.65vw));
  padding: 0 min(60px, 4.39vw);
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_num {
  letter-spacing: 0.05em;
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_num span:first-child {
  margin-right: min(5px, 0.36vw);
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(24px, 1.75vw);
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_catchCopy {
  margin: min(20px, 1.46vw) 0;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(28px, 2.04vw);
  line-height: 1.5;
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_desc {
  font-size: min(14px, 1.02vw);
  line-height: 2;
}
body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxImg {
  width: min(446px, 32.65vw);
}
body#job .mainContents .lSection__contents .lSection__btn_list .listBox {
  width: 100%;
  height: min(140px, 10.24vw);
  margin: min(100px, 7.32vw) 0 0;
}
body#job .mainContents .lSection__contents .lSection__btn_list .listBox a {
  border-radius: min(16px, 1.17vw);
}
body#job .mainContents .lSection__contents .lSection__btn_list .listBox .listTitle {
  font-size: min(20px, 1.46vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 768px) {
  body#job .mainFV .mainFV__img {
    height: 120vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list {
    padding: 0 5.6vw;
    gap: 15vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 7vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox:nth-child(odd) {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents {
    width: 100%;
    padding: 0;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 3.46vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_num span:first-child {
    margin-right: 2vw;
    font-size: 7.73vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_catchCopy {
    margin: 4vw 0 6vw;
    font-size: 4.53vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxContents .listBoxContents_desc {
    font-size: 3.46vw;
  }
  body#job .sideContents .lSection .lSection__contents .lSection__item_list .listBox .listBoxImg {
    width: 100%;
  }
  body#job .mainContents .lSection__contents .lSection__btn_list .listBox {
    height: 24vw;
    margin: 20vw 0 0;
  }
  body#job .mainContents .lSection__contents .lSection__btn_list .listBox a {
    justify-content: center;
    border-radius: 2.13vw;
  }
  body#job .mainContents .lSection__contents .lSection__btn_list .listBox a:after {
    top: 50%;
  }
  body#job .mainContents .lSection__contents .lSection__btn_list .listBox .listTitle {
    font-size: 3.46vw;
  }

}

/* people page
-------------------------------------------------- */
body#people .mainFV {
  padding-bottom: min(70px, 5.12vw);
}
body#people .mainFV .mainFV__img {
  margin-top: 0;
}
body#people .mainContents .lSection__contents .lSection__people_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: min(40px, 2.92vw);
  -moz-column-gap: min(40px, 2.92vw);
  column-gap: min(40px, 2.92vw);
  margin-bottom: min(150px, 10.98vw);
}
body#people .mainContents .lSection__contents .lSection__people_list .listBox .listImg {
  position: relative;
  margin-bottom: min(15px, 1.09vw);
}
body#people .mainContents .lSection__contents .lSection__people_list .listBox .listImg:after {
  content: '';
  position: absolute;
  bottom: min(20px, 1.46vw);
  right: min(20px, 1.46vw);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#people .mainContents .lSection__contents .lSection__people_list .listBox a:hover .listImg:after {
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#people .mainContents .lSection__contents .lSection__people_list .listBox .listImg img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
body#people .mainContents .lSection__contents .lSection__people_list .listBox .listContents {
  font-family: var(--f-en);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  body#people .mainContents .lSection__contents .lSection__people_list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 7vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
    padding-left: 0;
    margin-bottom: 20vw;
  }
  body#people .mainContents .lSection__contents .lSection__people_list .listBox .listImg {
    margin-bottom: 2vw;
  }
  body#people .mainContents .lSection__contents .lSection__people_list .listBox .listImg:after {
    bottom: 2vw;
    right: 2vw;
    width: 4vw;
    height: 4vw;
  }
  body#people .mainContents .lSection__contents .lSection__people_list .listBox .listContents {
    font-size: 3.2vw;
  }
}

/* people child page
-------------------------------------------------- */
body.peopleChildPage .mainFV {
  padding-bottom: min(150px, 10.98vw);
}
body.peopleChildPage .mainFV__prism_img {
  z-index: 1;
}
body.peopleChildPage .mainFV .mainFV__info {
  z-index: auto;
}
body.peopleChildPage .mainFV .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body.peopleChildPage .mainFV .mainFV__peopleInfo {
  width: fit-content;
  flex-shrink: 0;
}
body.peopleChildPage .mainFV .mainFV__peopleInfo .mainFV__catchCopy {
  margin-bottom: min(100px, 7.32vw);
}
body.peopleChildPage .mainFV .mainFV__peopleInfo .mainFV__desc {
  font-size: min(20px, 1.46vw);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0;
}
body.peopleChildPage .mainFV .mainFV__peopleImg {
  position: absolute;
  right: 0;
  width: min(827px, 60.54vw);
  height: min(500px, 36.60vw);
  flex-shrink: 0;
  overflow: hidden;
}
body.peopleChildPage .mainFV .mainFV__peopleImg img {
  position: relative;
  top: -10%;
  height: 120%;
  max-height: none;
}
body.peopleChildPage .mainContents {
  background-color: var(--c-light-gray);
}
body.peopleChildPage .mainContents .wrap {
  position: relative;
  z-index: 1;
}
body.peopleChildPage .mainContents .sectionItem {
  position: relative;
  animation: 1;
}
body.peopleChildPage .mainContents .lSection .lSection__contents {
  padding-left: min(200px, 14.64vw);
}
body.peopleChildPage .mainContents .lSection .lSection__contents .lSection__contents_catchCopy {
  margin-bottom: min(70px, 5.12vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(40px, 2.92vw);
  line-height: 1.58;
}
body.peopleChildPage .mainContents .lSection .lSection__contents .lSection__contents_desc {
  padding-left: min(75px, 5.49vw);
  line-height: 2;
  border-left: 2px solid var(--c-white);
}
body.peopleChildPage .mainContents .lSection__img {
  width: 100%;
  height: min(600px, 43.92vw);
  margin: min(100px, 7.32vw) 0;
  overflow: hidden;
}
body.peopleChildPage .mainContents .lSection__img img {
  position: relative;
  top: -10%;
  height: 120%;
  max-height: none;
}
body.peopleChildPage .mainContents #section3 {
  padding-bottom: min(100px, 7.32vw);
}
body.peopleChildPage .peopleContents {
  position: relative;
  z-index: 1;
  padding-top: min(100px, 7.32vw);
}
body.peopleChildPage .peopleContents .lSection__scheduleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body.peopleChildPage .peopleContents .lSection .lSection__title:before {
  width: min(198px, 14.49vw);
}
body.peopleChildPage .peopleContents .lSection .lSection__contents {
  width: min(760px, 55.63vw);
}
body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: min(30px, 2.19vw);
}
body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox .listBox__time {
  position: relative;
  width: min(180px, 13.17vw);
  flex-shrink: 0;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(26px, 1.90vw);
  line-height: 1;
}
body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox .listBox__time:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(25px, 1.83vw);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  width: min(73px, 5.34vw);
  height: 1px;
  background: url("../img/people/icon-line.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__btn_list .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: min(1002px, 73.35vw);
  height: min(140px, 10.24vw);
  margin: min(100px, 7.32vw) 0 0 auto;
}
body.peopleChildPage .peopleContents #section5 .lSection__contents {
  width: 100%;
}
body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(20px, 1.46vw) min(50px, 3.66vw);
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  border-radius: min(16px, 1.17vw);
  transition: all .5s var(--ease-out-3);
  border: 1px solid var(--c-dark-gray);
}
body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a:hover {
  background-color: var(--c-white);
  color: var(--c-dark-gray);
}
body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a:hover:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox .listTitle {
  font-size: min(20px, 1.46vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 768px) {
  body.peopleChildPage .mainFV .mainFV__info {
    margin-bottom: 10vw;
  }
  body.peopleChildPage .mainFV .wrap {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding-bottom: 20vw;
  }
  body.peopleChildPage .mainFV .mainFV__peopleInfo {
    width: 100%;
  }
  body.peopleChildPage .mainFV .mainFV__peopleInfo .mainFV__catchCopy {
    margin-bottom: 0;
  }
  body.peopleChildPage .mainFV .mainFV__peopleInfo .mainFV__desc {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 3.46vw;
  }
  body.peopleChildPage .mainFV .mainFV__peopleImg {
    position: relative;
    top: -2vw;
    left: -4.67vw;
    width: 100vw;
    height: auto;
  }
  body.peopleChildPage .mainContents .lSection .lSection__contents {
    padding-left: 0;
  }
  body.peopleChildPage .mainContents .lSection .lSection__contents .lSection__contents_catchCopy {
    margin-bottom: 7vw;
    font-size: 5.86vw;
  }
  body.peopleChildPage .mainContents .lSection .lSection__contents .lSection__contents_desc {
    padding-left: 7.06vw;
    margin-left: 3.33vw;
    font-size: 3.73vw;
  }
  body.peopleChildPage .mainContents .lSection__img {
    position: relative;
    left: -4.67vw;
    width: 100vw;
    height: 80vw;
    margin: 20vw 0;
  }
  body.peopleChildPage .peopleContents {
    padding-top: 20vw;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__title:before {
    width: 37.06vw;
  }
  body.peopleChildPage .peopleContents .lSection__scheduleBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents {
    width: 100%;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list {
    gap: 5vw;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox {
    width: 100%;
    font-size: 3.46vw;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox .listBox__time {
    width: 29.33vw;
    font-size: 5.06vw;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__contents_list .listBox .listBox__time:after {
    width: 10.93vw;
    right: 3vw;
    background-size: auto 100%;
  }
  body.peopleChildPage .peopleContents .lSection .lSection__contents .lSection__btn_list .listBox {
    width: 100%;
    height: 24vw;
    margin: 20vw 0 0;
  }
  body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a {
    border-radius: 2.13vw;
  }
  body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox a:after {
    top: 50%;
    right: 5vw;
    width: 4vw;
    height: 4vw;
  }
  body.peopleChildPage .peopleContents .lSection__contents .lSection__btn_list .listBox .listTitle {
    font-size: 3.46vw;
  }
}

/* workstyle page
-------------------------------------------------- */
body.workstylePage .mainContents .lSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  margin-top: min(100px, 7.32vw);
}
body.workstylePage .mainContents .lSection .lSection__title {
  width: min(275px, 20.13vw);
  flex-shrink: 0;
}
body.workstylePage .mainContents .lSection .lSection__title:before {
  width: min(198px, 14.49vw);
}
body.workstylePage .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: min(50px, 3.66vw);
  -moz-column-gap: min(100px, 7.32vw);
  column-gap: min(100px, 7.32vw);
}
body.workstylePage .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  row-gap: min(20px, 1.46vw);
}

@media screen and (max-width: 768px) {
  body.workstylePage .mainContents .lSection {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding-top: 26.66vw;
    margin-top: 0;
  }
  body.workstylePage .mainContents .lSection .lSection__title {
    width: 100%;
  }
  body.workstylePage .mainContents .lSection .lSection__title:before {
    width: 37.06vw;
  }
  body.workstylePage .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5vw;
    -moz-column-gap: 5vw;
    column-gap: 5vw;
  }
  body.workstylePage .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox {
    row-gap: 3vw;
  }
}

/* workstyle - benefit page
-------------------------------------------------- */
body#benefit .mainFV .mainFV__img {
  height: min(592px, 43.33vw);
}
body#benefit .mainContents #section1 .lSection__contents .lSection__item_box .lSection__item_title {
  margin: min(80px, 5.85vw) 0 min(50px, 3.66vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(34px, 2.48vw);
}
body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_num {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(34px, 2.48vw);
}
body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_num:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  width: min(332px, 24.30vw);
  height: 1px;
  background-color: var(--c-light-gray);
}
body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(20px, 1.46vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(20px, 1.46vw);
  line-height: 2;
}
body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_icon img {
  width: min(80px, 5.85vw);
}
body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_desc {
  font-size: min(14px, 1.02vw);
  line-height: 2;
}
body#benefit .mainContents #section2 .lSection__contents .lSection__desc_box {
  line-height: 2;
}
body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_title {
  margin: min(80px, 5.85vw) 0 min(20px, 1.46vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(20px, 1.46vw);
}
body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_desc {
  margin-bottom: min(30px, 2.19vw);
  font-size: min(14px, 1.02vw);
  line-height: 2;
}
body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img img {
  width: min(300px, 21.96vw);
}
body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img.lSection__item_img_alone img.training_img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  body#benefit .mainFV .mainFV__img {
    height: 120vw;
  }
  body#benefit .mainContents #section1 .lSection__contents .lSection__item_box {
    margin-bottom: 10vw;
  }
  body#benefit .mainContents #section1 .lSection__contents .lSection__item_box .lSection__item_title {
    display: inline-block;
    width: 100%;
    margin: 15vw 0;
    font-size: 5.86vw;
  }
  body#benefit .mainContents #section1 .lSection__contents .lSection__item_box:first-child .lSection__item_title {
    margin-top: 0;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_num {
    font-size: 7.73vw;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_num:after {
    width: 77.46vw;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_icon {
    width: 100%;
    padding: 0 5.33vw;
    gap: 4vw;
    font-size: 4vw;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_icon img {
    width: 16vw;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox .listBox_desc {
    width: 100%;
    padding: 0 5.33vw;
    font-size: 3.46vw;
  }
  body#benefit .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBoxImg {
    width: 100%;
    padding: 0 5.33vw;
    margin-top: 7vw;
  }
  body#benefit .mainContents #section2 .lSection__contents {
    width: 100%;
    padding: 0 5.33vw;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__desc_box {
    font-size: 3.73vw;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_title {
    margin: 10vw 0 4vw;
    font-size: 4.53vw;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img.lSection__item_img_alone {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow-x: auto;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img.lSection__item_img_alone img.training_img {
    width: 210vw;
    margin-bottom: 10vw;
    max-width: none;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_desc {
    margin-bottom: 5vw;
    font-size: 3.46vw;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 3vw;
  }
  body#benefit .mainContents #section2 .lSection__contents .lSection__item_box .lSection__item_img img {
    width: 100%;
  }
}

/* workstyle - culture page
-------------------------------------------------- */
body#culture .mainFV {
  position: relative;
}
body#culture .mainFV .mainFV__img_captions {
  position: absolute;
  top: min(200px, 14.64vw);
  right: min(100px, 7.32vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: min(10px, 0.73vw);
}
body#culture .mainFV .mainFV__img_captions.pc {
  display: flex;
}
body#culture .mainFV .mainFV__img_captions.sp {
  display: none;
}
body#culture .mainFV .mainFV__img_captions span {
  display: inline-block;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(20px, 1.46vw);
  line-height: 1.8;
  color: var(--c-white);
  background-color: var(--c-dark-gray);
  padding: 0 min(10px, 0.73vw);
}
body#culture .mainContents .lSection .lSection__contents {
  padding-top: min(65px, 4.75vw);
}
body#culture .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: min(65px, 4.75vw);
}
body#culture .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox:nth-child(even) {
  margin-top: 30px;
}
body#culture .speech-bubble {
  position: relative;
  width: min(407px, 29.79vw);
  padding: min(35px, 2.56vw) min(30px, 2.19vw);
  background: var(--c-light-gray);
  border-radius: min(6px, 0.43vw);
}
body#culture .speech-bubble:after {
  content: '';
  position: absolute;
  bottom: -2.3vw;
  right: 2.78vw;
  display: inline-block;
  width: 2.78vw;
  height: 2.34vw;
  background: url("../img/workstyle/culture/icon-tail.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#culture .speech-bubble h3 {
  margin-bottom: min(20px, 1.46vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(20px, 1.46vw);
  line-height: 1.7;
}
body#culture .speech-bubble p {
  font-size: min(14px, 1.02vw);
  line-height: 2;
}

@media screen and (max-width: 768px) {
  body#culture .mainFV {
    margin-bottom: 20vw;
  }
  body#culture .mainFV .mainFV__img {
    height: 109.6vw;
  }
  body#culture .mainFV .mainFV__img_captions {
    gap: 2vw;
    top: auto;
    bottom: -10vw;
  }
  body#culture .mainFV .mainFV__img_captions.pc {
    display: none;
  }
  body#culture .mainFV .mainFV__img_captions.sp {
    display: flex;
    z-index: 1;
    right: 4.67vw;
    bottom: -22vw;
  }
  body#culture .mainFV .mainFV__img_captions span {
    font-size: 4vw;
  }
  body#culture #content {
    padding-bottom: 30vw;
  }
  body#culture .mainContents .lSection .lSection__contents {
    padding-top: 0;
  }
  body#culture .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list {
    gap: 10vw;
  }
  body#culture .mainContents .lSection .lSection__contents .lSection__item_box .lSection__item_list .listBox:nth-child(even) {
    margin-top: 0;
  }
  body#culture .speech-bubble {
    width: 80vw;
    padding: 7vw 5.6vw;
    border-radius: 0.8vw;
  }
  body#culture .speech-bubble:after {
    right: 7vw;
    bottom: -6vw;
    width: 7.46vw;
    height: 6.26vw;
  }
  body#culture .listBox:nth-child(odd) .speech-bubble {
    left: -5.6vw;
  }
  body#culture .listBox:nth-child(even) .speech-bubble {
    right: -5.6vw;
  }
  body#culture .speech-bubble h3 {
    font-size: 4vw;
  }
  body#culture .speech-bubble p {
    font-size: 3.46vw;
  }
}

/* recruit page
-------------------------------------------------- */
body.recruitPage .mainFV {
  padding-bottom: min(30px, 2.19vw);
}
body.recruitPage .sideContents .side-menu {
  width: min(200px, 14.64vw);
  margin-right: min(80px, 5.85vw);
}
body.recruitPage .sideContents .sectionItem {
  width: calc(100% - min(280px, 20.49vw));
}
body.recruitPage .mainContents .lSection {
  margin-top: min(100px, 7.32vw);
}
body.recruitPage .mainContents .lSection .lSection__title {
  width: 100%;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 100%;
  padding: min(20px, 1.46vw) 0;
  border-bottom: 1px solid #E6E6E6;
  line-height: 2;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__title {
  width: min(225px, 16.47vw);
  font-weight: 700;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__desc {
  width: calc(100% - min(225px, 16.47vw));
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__desc a {
  display: inline-block;
  text-decoration: underline;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__desc span {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: min(10px, 0.73vw);
  font-size: min(10px, 0.73vw);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step {
  position: relative;
  gap: min(55px, 4.02vw);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step:before {
  content: '';
  position: absolute;
  top: min(60px, 4.39vw);
  left: min(33px, 2.41vw);
  display: inline-block;
  width: min(10px, 0.73vw);
  height: min(975px, 71.37vw);
  background: url("../img/information/icon-arrow-long.svg") no-repeat;
  background-size: auto 100%;
  background-position: center;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step.aos-animate:before {
  animation: lineSlideDown 3s linear infinite;
  animation-iteration-count: 1;
  opacity: 1;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox {
  position: relative;
  padding: min(33px, 2.41vw) 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #E6E6E6;
  border-radius: min(10px, 0.73vw);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox:before {
  content: '';
  position: absolute;
  top: 50%;
  left: min(37px, 2.70vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(8px, 0.58vw);
  height: min(8px, 0.58vw);
  background: url("../img/recruit/icon-circle.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox:last-child:before {
  display: none;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__title {
  position: absolute;
  top: 50%;
  left: min(70px, 5.12vw);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: fit-content;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: fit-content;
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(19px, 1.39vw);
  line-height: 1.7;
  gap: min(20px, 1.46vw);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(230px, 16.83vw);
  height: min(56px, 4.09vw);
  background: linear-gradient(to right, var(--c-white) 50%, var(--c-dark-gray) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--c-white);
  font-size: min(13px, 0.95vw);
  font-weight: 700;
  line-height: 1.61;
  letter-spacing: 0.11em;
  border-radius: min(50px, 3.66vw);
  transition: all .5s var(--ease-out-3);
  border: 1px solid var(--c-dark-gray);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn:hover {
  background-position: left bottom;
  color: var(--c-dark-gray);
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn:hover:after {
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn a span {
  vertical-align: middle;
  margin-right: 0;
  font-size: min(14px, 1.02vw);
}
body.recruitPage .mainContents .lSection__contents .lSection__btn_list .listBox {
  width: 100%;
  height: min(140px, 10.24vw);
  margin: min(50px, 3.66vw) auto min(20px, 1.46vw);
}
body.recruitPage .mainContents .lSection__contents .lSection__btn_list .listBox a {
  justify-content: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(24px, 1.75vw);
}
body.recruitPage .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  width: 100%;
  gap: min(30px, 2.19vw);
}
body.recruitPage .accordion__item {
  width: 100%;
  overflow: hidden;
}
body.recruitPage .accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: min(33px, 2.41vw) min(40px, 2.92vw);
  cursor: pointer;
  user-select: none;
  border: none;
  width: 100%;
  background: #F4F4F4;
  text-align: left;
  outline: none;
  border-radius: min(10px, 0.73vw);
}
body.recruitPage .accordion__title {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(19px, 1.39vw);
  line-height: 1.7;
}
body.recruitPage .accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  border-radius: 50%;
  background: var(--c-dark-gray);
  display: inline-grid;
  place-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.recruitPage .accordion__icon .line {
  position: absolute;
  width: min(12px, 0.87vw);
  height: 1px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.recruitPage .accordion__icon .line--h { 
  transform-origin: center; 
}
body.recruitPage .accordion__icon .line--v {
  transform: rotate(90deg);
  transform-origin: center;
}
body.recruitPage .accordion__header[aria-expanded="true"] .accordion__icon {
  background: var(--c-white);
}
body.recruitPage .accordion__header[aria-expanded="true"] .accordion__icon .line {
  background: var(--c-dark-gray);
}
body.recruitPage .accordion__header[aria-expanded="true"] .line--v {
  opacity: 0;
  transform: rotate(90deg);
}
body.recruitPage .accordion__header[aria-expanded="true"] .line--h {
  transform: translateY(0);
}
body.recruitPage .accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(.2,.9,.2,1), padding 1s ease;
  padding: 0 min(30px, 2.19vw);
  background: var(--c-white);
}
body.recruitPage .accordion__panel-inner {
  line-height: 2;
}
body.recruitPage .accordion__panel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
body.recruitPage .accordion__panel-list .listBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 100%;
  padding: min(20px, 1.46vw) 0;
  border-bottom: 1px solid #E6E6E6;
}
body.recruitPage .accordion__panel-list .listBox .listBox__title {
  width: min(180px, 13.17vw);
  font-weight: 700;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  body.recruitPage .mainFV {
    padding-bottom: 15vw;
  }
  body.recruitPage .mainContents .lSection {
    margin-top: 0;
  }
  body.recruitPage .sideContents .side-menu {
    width: 100%;
    margin-right: 0;
  }
  body.recruitPage .sideContents .sectionItem {
    width: 100%;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list {
    padding: 0 5.33vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step {
    padding: 0;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding: 3.33vw 0;
    font-size: 3.46vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__title {
    width: 100%;
    margin-bottom: 3vw;
    font-size: 3.6vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__desc {
    width: 100%;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list .listBox .listBox__desc span {
    margin-right: 1.5vw;
    font-size: 2.13vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step {
    gap: 5.5vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step:before {
    top: 10vw;
    left: 4vw;
    width: 2vw;
    height: 227.26vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox {
    padding: 6vw 10vw;
    border-radius: 0;
    line-height: 1.5;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox:before {
    top: 9vw;
    left: 5vw;
    width: 2.13vw;
    height: 2.13vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__title {
    position: relative;
    top: 0;
    left: 0;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    font-size: 4vw;
    gap: 3vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn {
    width: 64vw;
    height: 12.8vw;
    font-size: 4.26vw;
    border-radius: 6.4vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  body.recruitPage .lSection .lSection__contents .lSection__contents_list_step .listBox .listBox__desc .btn a span {
    font-size: 4.26vw;
  }
  body.recruitPage .mainContents .lSection__contents .lSection__btn_list .listBox {
    height: 32vw;
    margin: 15vw 0 0;
  }
  body.recruitPage .mainContents .lSection__contents .lSection__btn_list .listBox a {
    align-items: center;
    font-size: 4.26vw;
  }
  body.recruitPage .mainContents .lSection__contents .lSection__btn_list .listBox a:after {
    top: 50%;
  }
  body.recruitPage .accordion {
    gap: 6vw;
  }
  body.recruitPage .accordion__header {
    padding: 4vw;
    border-radius: 1.33vw;
    gap: 1vw;
  }
  body.recruitPage .accordion__title {
    font-size: 3.6vw;
  }
  body.recruitPage .accordion__icon {
    width: 5.33vw;
    height: 5.33vw;
  }
  body.recruitPage .accordion__icon .line {
    width: 3vw;
  }
  body.recruitPage .accordion__panel {
    padding: 0 5.33vw;
  }
  body.recruitPage .accordion__panel-list .listBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    padding: 5vw 0;
    font-size: 3.46vw;
  }
  body.recruitPage .accordion__panel-list .listBox .listBox__title {
    width: 100%;
    font-size: 3.6vw;
  }
}

/* recruit - person page
-------------------------------------------------- */
body#person .mainContents #section1 {
  margin-bottom: min(150px, 10.98vw);
}
body#person .mainContents .lSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
body#person .mainContents .lSection .lSection__title {
  width: min(275px, 20.13vw);
}
body#person .mainContents .lSection .lSection__title:before {
  width: min(198px, 14.49vw);
}
body#person .mainContents .lSection .lSection__contents {
  width: min(762px, 55.78vw);
}
body#person .mainContents .lSection .lSection__contents .lSection__contents_img {
  margin-bottom: min(30px, 2.19vw);
}
body#person .mainContents .lSection .lSection__contents .lSection__contents_desc {
  font-family: var(--f-en);
  font-weight: var(--f-en-weight);
  font-size: min(20px, 1.46vw);
  line-height: 2;
}
body#person .mainContents .lSectionLine .lSection__contents .lSection__contents_desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(16px, 1.17vw);
  line-height: 2.25;
}
body#person .mainContents .lSectionLine .lSection__title {
  padding-top: 0;
}
body#person .mainContents .lSectionLine .lSection__title:before {
  top: 50%;
  left: min(200px, 14.64vw);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: min(170px, 12.44vw);
  height: 100%;
  background: url("../img/icon-line-rainbow2.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
body#person .mainContents .lSectionLine .lSection__title.aos-animate:before {
  animation: lineSlide2 0.5s linear infinite;
  animation-iteration-count: 1;
}
body#person .mainContents .lSectionLine .lSection__contents .lSection__contents_title {
  margin-bottom: min(30px, 2.19vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(28px, 2.04vw);
  line-height: 1.7;
}
body#person .mainContents #section5{
  margin-top: min(150px, 10.98vw);
}
body#person .mainContents #section5 .lSectionItemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 100%;
}
body#person .mainContents #section5 .lSectionItemBox .listBox {
  width: min(380px, 27.81vw);
  height: min(120px, 8.78vw);
  margin: min(20px, 1.46vw) 0;
}
body#person .mainContents #section5 .lSectionItemBox .listBox a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: min(50px, 3.66vw);
  background-color: var(--c-light-gray);
  border-radius: min(10px, 0.73vw);
  transition: all .5s var(--ease-out-3);
  letter-spacing: 0.13em;
}
body#person .mainContents #section5 .lSectionItemBox .listBox a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(20px, 1.46vw);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: min(27px, 1.97vw);
  height: min(27px, 1.97vw);
  background: url("../img/icon-arrow-black.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: all .5s var(--ease-out-3);
}
body#person .mainContents #section5 .lSectionItemBox .listBox a:hover {
  background-color: var(--c-dark-gray);
  color: var(--c-white);
}
body#person .mainContents #section5 .lSectionItemBox .listBox a:hover:after {
  background: url("../img/icon-arrow-white.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}

@media screen and (max-width: 768px) {
  body#person .mainContents .lSection {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    margin-top: 20vw;
  }
  body#person .mainContents .lSection .lSection__title {
    width: 100%;
  }
  body#person .mainContents .lSection .lSection__title:before {
    width: 37.06vw;
  }
  body#person .mainContents .lSection .lSection__contents {
    width: 100%;
  }
  body#person .mainContents .lSection .lSection__contents .lSection__contents_img {
    position: relative;
    left: -4.67vw;
    width: 100vw;
    margin-bottom: 10vw;
  }
  body#person .mainContents .lSection .lSection__contents .lSection__contents_desc {
    padding: 0 4.67vw;
    font-size: 4vw;
  }
  body#person .mainContents .lSectionLine .lSection__contents .lSection__contents_desc {
    font-size: 3.73vw; 
  }
  body#person .mainContents .lSectionLine .lSection__contents .lSection__contents_title {
    margin-bottom: 5vw;
    font-size: 4.8vw;
  }
  body#person .mainContents .lSectionLine .lSection__title {
    margin-bottom: 20vw;
  }
  body#person .mainContents .lSectionLine .lSection__title:before {
    top: 16vw;
    left: 13vw;
    width: 4vw;
    height: 16vw;
    background: url("../img/icon-line-rainbow2_sp.svg") no-repeat;
    background-size: auto 100%;  
  }
  body#person .mainContents #section1 {
    margin-bottom: 15vw;
  }
  body#person .mainContents #section5 {
    margin-top: 20vw;
  }
  body#person .mainContents #section5 .lSectionItemBox {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  body#person .mainContents #section5 .lSectionItemBox .listBox {
    display: inline-block;
    width: 100%;
    height: 24vw;
    margin: 2vw 0;
  }
  body#person .mainContents #section5 .lSectionItemBox .listBox a {
    padding: 5vw 8vw;
    border-radius: 2.13vw;
    font-size: 3.46vw;
  }
  body#person .mainContents #section5 .lSectionItemBox .listBox a:after {
    width: 4vw;
    height: 4vw;
    right: 3vw;
  }
}

/* recruit - information page
-------------------------------------------------- */
body#information .lSection .lSection__contents .lSection__contents_captions {
  margin: min(30px, 2.19vw) auto;
  font-size: min(14px, 1.02vw);
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body#information .lSection .lSection__contents .lSection__contents_captions {
    margin: 4vw auto;
    font-size: 3.2vw;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
  }
}

/* recruit - career page
-------------------------------------------------- */
body#career .lSection .lSection__contents .lSection__contents_list_table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 1px;
  height: min(100px, 7.32vw);
  background: var(--c-light-gray);
  border: 1px solid var(--c-light-gray);
}
body#career .lSection .lSection__contents .lSection__contents_list_table .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  background: var(--c-white);
  font-family: var(--f-en);
  font-weight: 700;
}
body#career .lSection .lSection__contents .lSection__contents_list_table .listBox span.text {
  font-size: min(19px, 1.39vw);
}
body#career .lSection .lSection__contents .lSection__contents_list_table .listBox span.year {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body#career .lSection .lSection__contents .lSection__contents_list_table .listBox span.percent {
  font-size: min(24px, 1.75vw);
}
body#career .lSection .lSection__contents .lSection__contents_list_step .listBoxAnother {
  justify-content: flex-end;
  padding-right: min(33px, 2.41vw);
}
body#career .lSection .lSection__contents .lSection__contents_list_step:before {
  height: min(792px, 57.97vw);
}
body#career .lSection .lSection__contents .lSection__contents_list_step .listBoxAnother .listBox__desc {
  width: min(650px, 47.58vw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(16px, 1.17vw);
  font-weight: 400;
}
body#career .lSection .lSection__contents .listBoxAnother .listBox__desc a {
  display: inline-block;
  text-decoration: underline;
}
body#career #section3 .lSection__contents .lSection__contents_captions {
  line-height: 2;
  text-align: right;
}
body#career #section4 .lSection__contents .lSection__contents_captions {
  margin: min(30px, 2.19vw) auto;
  font-size: min(14px, 1.02vw);
  line-height: 2;
  text-align: center;
}
body#career #section5 {
  margin-bottom: min(50px, 3.66vw);
}
body#career #section5 .lSection__contents .lSection__contents_subTitle {
  margin: min(100px, 7.32vw) 0 min(20px, 1.46vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(22px, 1.61vw);
  line-height: 2;
}

@media screen and (max-width: 768px) {
  body#career .lSection .lSection__contents .lSection__contents_list_table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_table .listBox {
    padding: 5vw 0;
    font-size: 3.46vw;
    flex: 1;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_table .listBox:first-child {
    width: 100%;
    flex: auto;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_table .listBox span.text {
    font-size: 3.6vw;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_table .listBox span.percent {
    font-size: 4.53vw;
  }
  body#career #section3 .lSection__contents .lSection__contents_captions {
    font-size: 3.46vw;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_step:before {
    height: 181.8vw;
  }
  body#career .lSection .lSection__contents .lSection__contents_list_step .listBoxAnother .listBox__desc {
    width: 64vw;
    font-size: 3.46vw;
    line-height: 2;
  }
  body#career #section4 .lSection__contents .lSection__contents_captions {
    margin: 4vw auto;
    font-size: 3.2vw;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
  }
  body#career #section5 .lSection__contents .lSection__contents_subTitle {
    margin: 20vw 0 5vw;
    font-size: 4vw;
  }
}

/* recruit - faq page
-------------------------------------------------- */
body#faq .accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
body#faq .accordion__title {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  gap: 0.5em;
}
body#faq .accordion__title:before {
  content: "Q.";
}
body#faq .accordion__panel {
  padding: 0 min(40px, 2.92vw);
}
body#faq .accordion__panel-inner {
  padding: min(20px, 1.46vw) 0;
  border-bottom: 1px solid #E6E6E6;
}
body#faq .accordion__panel-inner__title {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  gap: 0.5em;
  margin-bottom: min(10px, 0.73vw);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: min(19px, 1.39vw);
  line-height: 1.7;
}
body#faq .accordion__panel-inner__title:before  {
  content: "A.";
}
body#faq .accordion__panel-inner__desc {
  line-height: 1.7;
}
body#faq .accordion__panel-inner__desc a {
  display: inline-block;
  color: #187FC4;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  body#faq #content {
    padding-bottom: 50vw;
  }
  body#faq .accordion__panel {
    padding: 0 5.33vw;
  }
  body#faq .accordion__panel-inner {
    padding: 5vw 0;
  }
  body#faq .accordion__panel-inner__title {
    margin-bottom: 3vw;
    font-size: 3.6vw;
  }
  body#faq .accordion__panel-inner__desc {
    font-size: 3.46vw;
  }
}