@charset "utf-8";
body.pop--open {
  overflow: hidden;
}
.sp-only {
  display: none !important;
}
.inner {
  width: min(96%, 1150px);
  margin: auto;
}
.scrollAnime .inner {
  position: relative;
  z-index: 3;
}
main {
  overflow: hidden;
}
@media all and (max-width:1024px) {
  main {
    font-size: 1.5625vw;
  }
  .tab-only {
    display: none !important;
  }
}
/* == page--open ============================================== */
body.openAnime header .h_inner {
  transform: translateY(-8em);
  opacity: 0;
  transition: transform .8s ease 1.5s, opacity .8s ease 1.5s;
}
body.openAnime.page--open header .h_inner {
  transform: translateY(0);
  opacity: 1;
}
body.openAnime .side_fixed {
  opacity: 0;
  transition: opacity .8s ease 1.5s, transform .6s;
}
body.openAnime.page--open .side_fixed {
  opacity: 1;
}
body.openAnime .contents_titleBox .slide_title {
  display: inline-block;
  overflow: hidden;
}
body.openAnime .contents_titleBox .slide_title span {
  transform: translateX(-101%);
  transition: transform 1.2s ease .4s
}
body.openAnime.page--open .contents_titleBox .slide_title span {
  transform: translateX(0);
}
body.openAnime.page--open .contents_titleBox .slide_title span:nth-child(2) {
  transition-delay: .5s;
}
body.openAnime .contents_titleBox .slide_link {
  overflow: hidden;
}
body.openAnime .contents_titleBox .slide_link a {
  transform: translateX(-101%);
  transition: transform .8s ease 1.5s;
}
body.openAnime.page--open .contents_titleBox .slide_link a {
  transform: translateX(0);
}
body.openAnime .contents_newsBox {
  opacity: 0;
  transform: translateY(2em);
  transition: transform .8s ease 1.5s, opacity .8s ease 1.5s;
}
body.openAnime.page--open .contents_newsBox {
  opacity: 1;
  transform: translateY(0);
}
body.openAnime header::before {
  transform: translateY(-8em);
  opacity: 0;
}
body.openAnime.page--open header::before {
  transform: translateY(0);
  opacity: 1;
}
/* == header ============================================== */
header {
  position: relative;
}
header::before {
  content: '';
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter;
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
  transition: transform .8s ease 1.4s, opacity .8s ease 1.4s, height .6s;
}
body.nav--open header::before {
  height: 100%;
}
header .h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  padding: 1.25em 2.5em;
}
header .h_logo {
  width: 121px;
  height: 60px;
  margin: 0 1.5em 0 0;
}
header .h_logo a {
  display: block;
  height: 100%;
  background-image: url(../img/logo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}
header .h_logo a:hover {
  opacity: .7;
}
header .h_title a {
  display: flex;
  align-items: center;
  transition: opacity .3s;
}
header .h_title a:hover {
  opacity: .7;
}
header .h_title a span.jp {
  display: block;
  font-weight: 500;
  letter-spacing: .05em;
  margin: 0 1.6em 0 0;
}
header .h_title a span.en {
  font-size: 150%;
  font-weight: 500;
  letter-spacing: .05em;
}
header .h_logos {
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
}
header .h_menu {
  width: 52px;
  height: 52px;
  position: relative;
  cursor: pointer;
}
header .h_menu span.nav_line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: #000;
  border-radius: 5em;
  margin: 16px 0;
  box-sizing: border-box;
  font-size: 10px;
  transition: background .4s;
}
header .h_menu span.nav_line::before, header .h_menu span.nav_line::after {
  content: '';
  width: 100%;
  height: 5px;
  background: #000;
  border-radius: 5em;
  transition: transform .4s;
}
header .h_menu span.nav_line::before {
  position: absolute;
  left: 0;
  top: -16px;
}
header .h_menu span.nav_line::after {
  position: absolute;
  left: 0;
  bottom: -16px;
}
body.nav--open header .h_menu span.nav_line {
  background: transparent;
}
body.nav--open header .h_menu span.nav_line::before {
  transform: translateY(16px) rotateZ(35deg);
}
body.nav--open header .h_menu span.nav_line::after {
  transform: translateY(-16px) rotateZ(-35deg);
}
header .h_menu span.nav_text {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  left: .3em;
  bottom: -.1em;
  width: 100%;
  letter-spacing: .6em;
}
header .side_fixed {
  position: fixed;
  z-index: 950;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 4.5em;
  height: 17.5625em;
  transform-origin: center right;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  border: solid 2px #7DE0B0;
  border-radius: 5em 0 0 5em;
  border-right: none;
  transition: transform .5s;
  overflow: hidden;
  font-size: 1.1713vw;
}
body.underPage header .side_fixed {
  top: 12.2em;
  bottom: auto;
}
body.footer--start header .side_fixed {
  transform: translateX(5em) scale(0);
}
header .side_fixed::before {
  content: '';
  width: 100%;
  height: 200%;
  background: url("../img/side_bg.webp");
  background-size: 100% 100%;
  background-position: center top;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .6s ease 0s;
}
header .side_fixed:hover::before {
  transform: translateY(-25%);
}
header .side_fixed a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 131.25%;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5em;
  text-shadow: 0 1px 11px #12C0CC;
  position: relative;
  z-index: 5;
}
header .side_fixed:hover {
  background-position: center bottom;
}
@media all and (min-width:1025px) {
  header .h_links {
    display: flex;
    align-items: center;
    margin: 0 2.5em 0 0;
  }
  header .h_links .h_entry {
    width: 11.25em;
    box-sizing: border-box;
    border: solid 1px #000000;
    border-radius: .35em;
    overflow: hidden;
    position: relative;
    transition: color .4s;
  }
  header .h_links .h_entry::before {
    content: '';
    height: 130%;
    aspect-ratio: 1/1;
    position: absolute;
    right: -35%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #009FA8;
    transition: all .4s;
    pointer-events: none;
    border-radius: 50%;
  }
  header .h_links .h_entry:hover {
    color: #fff;
  }
  header .h_links .h_entry:hover::before {
    transform: scale(8);
    right: auto;
    left: -35%;
  }
  header .h_links .h_entry + .h_entry {
    margin: 0 0 0 1em;
  }
  header .h_links .h_entry.entry--mid {
    background: #B8C2E4;
  }
  header .h_links .h_entry.entry--new {
    background: #C0E3EE;
  }
  header .h_links .h_entry a {
    display: block;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .8em 0 .8em 1.3em;
    position: relative;
    z-index: 3;
  }
  header .h_links .h_entry a::before {
    content: '';
    width: .95em;
    height: .95em;
    background-image: url(../img/icon_arrow.svg);
    background-position: center;
    background-size: 65% auto;
    background-color: #000000;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    right: 1.05em;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: transform .4s;
  }
  header .h_links .h_download {
    width: 205px;
    height: 47px;
    margin: 0 0 0 1.25em;
  }
  header .h_links .h_download a {
    display: block;
    height: 100%;
    background: url("../img/btn_download2.webp");
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .3s;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 150%;
  }
  header .h_links .h_download a:hover {
    opacity: .7;
  }
}
@media all and (max-width:1260px) and (min-width:1025px) {
  header .h_inner {
    padding: 1.25em 1.25em;
  }
  header .h_logo {
    margin: 0 1em 0 0;
  }
  header .h_title a {
    display: block
  }
  header .h_title a span.jp {
    margin: 0 0 .3em;
  }
  header .h_links {
    margin: 0 1em 0 0;
  }
}
@media all and (max-width:1024px) {
  header .h_inner {
    padding: .6em 1em;
  }
  header .h_logo {
    width: 80px;
    height: 40px;
    margin: 0 1em 0 0;
  }
  header .h_links {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  header .h_links .h_entry {
    width: calc(100% / 3);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    text-align: center;
  }
  header .h_links .h_entry.entry--mid {
    background: #B8C2E4;
  }
  header .h_links .h_entry.entry--new {
    background: #C0E3EE;
  }
  header .h_links .h_entry a {
    display: block;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 1em 1em 1em 0;
    position: relative;
    z-index: 3;
    font-size: 14px;
  }
  header .h_links .h_entry a::before {
    content: '';
    width: 1.2em;
    height: 1.2em;
    background-image: url(../img/icon_arrow.svg);
    background-position: center;
    background-size: 65% auto;
    background-color: #000000;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    right: .9em;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  header .h_links .h_download {
    width: calc(100% / 3);
    text-align: center;
  }
  header .h_links .h_download a {
    display: block;
    height: 100%;
    background: #4B8FAE;
    color: #fff;
    padding: 1em 0;
    font-size: 14px;
    font-weight: 700;
  }
  header .h_menu {
    width: 42px;
    height: 34px;
  }
  header .h_menu span.nav_line {
    height: 2px;
    margin: 8px 0;
  }
  header .h_menu span.nav_line::before, header .h_menu span.nav_line::after {
    height: 2px;
  }
  header .h_menu span.nav_line::before {
    top: -8px;
  }
  header .h_menu span.nav_line::after {
    bottom: -8px;
  }
  header .h_menu span.nav_text {
    left: .2em;
    letter-spacing: .2em;
  }
  body.nav--open header .h_menu span.nav_line::before {
    transform: translateY(8px) rotateZ(45deg)
  }
  body.nav--open header .h_menu span.nav_line::after {
    transform: translateY(-8px) rotateZ(-45deg)
  }
}
/**/
header .hMega {
  position: fixed;
  z-index: 930;
  left: 0;
  top: 0;
  width: 100%;
  height: max(100%, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .6s;
}
body.nav--open header .hMega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .hMega .megaWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(90%, 900px);
  margin: 3em auto 0;
}
header .hMega .mega_logos {
  width: 37%;
}
header .hMega .mega_logos .mega_logo {
  height: 0;
  padding: 49% 0 0;
  position: relative;
}
header .hMega .mega_logos .mega_logo a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-image: url(../img/logo03.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s;
}
header .hMega .mega_logos .mega_logo a:hover {
  opacity: .7;
}
header .hMega .mega_logos .mega_lead {
  height: 0;
  width: 96%;
  padding: 25% 0 0;
  position: relative;
  margin: 2.8em auto 0;
}
header .hMega .mega_logos .mega_lead a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-image: url(../img/logo_lead.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s;
}
header .hMega .mega_logos .mega_lead a:hover {
  opacity: .7;
}
header .hMega .mega_menus {
  width: min(56%, 450px);
}
.list_megaMenu li {
  position: relative;
}
.list_megaMenu li + li {
  border-top: solid 1px;
  border-image: linear-gradient(to right, rgba(65, 114, 156, 1) 0%, rgba(94, 182, 196, 1) 33%, rgba(106, 205, 186, 1) 78%) 1 / 1px 0 0;
}
.list_megaMenu a {
  display: block;
  width: 100%;
  font-size: 187.5%;
  letter-spacing: .1em;
  font-weight: 700;
  position: relative;
  padding: .85em 0;
}
.list_megaMenu a small {
  display: block;
  font-size: 55%;
  letter-spacing: .05em;
  margin: 0 0 .3em;
}
.list_megaMenu a::before {
  content: '';
  width: .9em;
  height: .9em;
  background-color: #009FA8;
  border-radius: 50%;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% auto;
  position: absolute;
  right: .3em;
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
  opacity: 0;
  transform: translateX(-.5em);
  transition: all .4s;
}
.list_megaMenu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
@media all and (max-width:1024px) {
  .list_megaMenu {
    font-size: 1.5625vw;
  }
}
@media all and (max-height:700px) {
  header .hMega .megaWrap {
    font-size: 80%;
    width: min(90%, 750px);
  }
}
/* == footer ============================================== */
footer {
  border-top: solid 1px #000000;
  position: relative;
  padding: 4.5em 0 2em;
}
footer #pagetop {
  position: absolute;
  right: 1.8em;
  top: -1.875em;
  width: 3.75em;
  height: 3.75em;
  background-color: #000;
  background-image: url("../img/icon_top.svg");
  background-repeat: no-repeat;
  background-size: 2em auto;
  background-position: center top 1em;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  transition: background-color .3s;
}
footer #pagetop:hover {
  background-color: #009FA8;
}
footer .f_inner {
  width: min(96%, 1220px);
  margin: auto;
}
footer .fFlex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
footer .fFlex .flexLeft {
  width: 260px;
}
footer .fFlex .flexLeft .f_logos .logo {
  width: 258px;
  height: 126px;
}
footer .fFlex .flexLeft .f_logos .logo a {
  display: block;
  height: 100%;
  background: url(../img/logo02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  transition: opacity .3s;
}
footer .fFlex .flexLeft .f_logos .logo a:hover {
  opacity: .7;
}
footer .fFlex .flexLeft .f_logos .link {
  color: #004898;
  font-size: 125%;
  font-weight: 700;
  margin: 1.6em 0 0;
  letter-spacing: .03em;
}
footer .fFlex .flexLeft .f_logos .link a {
  display: inline-block;
  line-height: 1.4;
  border-bottom: solid 1px #004898;
  position: relative;
  transition: opacity .3s;
}
footer .fFlex .flexLeft .f_logos .link a:hover {
  opacity: .7;
}
footer .fFlex .flexLeft .f_logos .link a::before {
  content: '';
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  left: calc(100% + .9em);
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/icon_blank.svg);
}
footer .fFlex .flexRight {
  width: min(calc(100% - 300px), 785px);
}
footer .f_nav {
  display: flex;
  justify-content: space-between;
}
.list_fNav > li {
  margin: 0 0 1.2em;
}
.list_fNav > li > a, .list_fNav > li span.a {
  display: block;
  padding: .1em .3em .2em;
  position: relative;
  transition: color .4s;
  font-size: 110%;
  font-weight: 700;
  letter-spacing: .1em;
}
.list_fNav > li > a::before {
  content: '';
  width: 0;
  height: 100%;
  background: #008273;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .4s;
}
.list_fNav > li > a:hover {
  color: #fff;
}
.list_fNav > li > a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.list_fNav > li > a span {
  display: block;
  position: relative;
  z-index: 5;
}
.list_fNavSmall {
  font-size: 87.5%;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding: .1em 0 0;
}
.list_fNavSmall::before {
  content: '';
  width: 9px;
  height: 4px;
  background: url("../img/fnav.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: .7em;
  bottom: .5em;
  border-radius: 0 0 0 10em;
}
.list_fNavSmall::after {
  content: '';
  width: 1px;
  height: calc(100% - .8em);
  position: absolute;
  left: .7em;
  bottom: .7em;
  background: #000;
}
.list_fNavSmall > li {
  position: relative;
  padding: 0 0 0 1.6em;
}
.list_fNavSmall > li:not(:last-child)::before {
  content: '';
  width: .6em;
  height: 1px;
  background: #000;
  position: absolute;
  left: .7em;
  top: .7em;
}
.list_fNavSmall > li:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.list_fNavSmall > li a {
  position: relative;
}
.list_fNavSmall > li a::after {
  content: '';
  width: 0;
  height: 100%;
  background: #008273;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .4s;
}
.list_fNavSmall > li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.list_fNavSmall > li a span {
  position: relative;
  z-index: 5;
  transition: color .4s;
  padding: 0 .2em;
}
.list_fNavSmall > li a:hover span {
  color: #fff;
}
footer .btn_download {
  width: 225px;
  height: 43px;
  margin: .5em 0 0 auto;
}
footer .btn_download a {
  display: block;
  height: 100%;
  background: url("../img/btn_download1.webp");
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  transition: opacity .3s;
}
footer .btn_download a:hover {
  opacity: .7;
}
footer .f_icons {
  display: flex;
  justify-content: flex-end;
  margin: 2em 0 0;
  gap: 0 .8em;
}
footer .f_icons .icon a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s;
}
footer .f_icons .icon a:hover {
  opacity: .7;
}
footer .f_icons .icon.icon01 a {
  width: 45px;
  height: 68px;
}
footer .f_icons .icon.icon02 a {
  width: 55px;
  height: 55px;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("../img/f_icon02.webp");
}
footer .copyright {
  text-align: center;
  font-size: 62.5%;
  letter-spacing: .1em;
}
@media all and (max-width:1024px) {
  footer .fFlex {
    display: block;
  }
  footer .fFlex .flexLeft {
    margin: 3em auto 0;
  }
  footer .fFlex .flexRight {
    width: 95%;
    margin: 0 auto;
  }
  footer .f_nav {
    font-size: 2vw;
  }
  footer .fFlex .flexLeft {
    width: 100%;
    text-align: center;
  }
  footer .fFlex .flexLeft .f_logos .logo {
    width: 172px;
    height: 84px;
    margin: auto;
  }
}
/* == parts ============================================== */
.title_base.type--center {
  text-align: center;
}
.title_base .en {
  color: #008273;
  font-weight: 600;
}
.title_base .jp {
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.4;
}
.title_center {
  text-align: center;
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.6;
}
.btn_base a {
  display: inline-block;
  font-size: 125%;
  font-weight: 700;
  padding: 0 1.5em 0 0;
  position: relative;
  line-height: 1.5;
}
.btn_base a::before {
  content: '';
  width: 1.1em;
  height: 1.1em;
  background-color: #009FA8;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: 65% auto;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  transition: all .4s;
}
.btn_base a:hover::before {
  transform: translateX(.5em) rotateX(180deg);
}
.parts_menuStacking {
  position: relative;
  min-height: 26.7em;
  width: min(100%, 1380px);
  margin: auto;
  overflow: hidden;
}
.parts_menuStacking .menuStacking_imageBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 683px;
  overflow: hidden;
  border-radius: 2em 0 0 2em;
}
.parts_menuStacking.type01 .menuStacking_imageBox {
  transform: translateX(50%);
}
.parts_menuStacking.type02 .menuStacking_imageBox {
  transform: translateX(-50%);
  border-radius: 0 2em 2em 0;
}
@media all and (max-width:1024px) {
  .parts_menuStacking .menuStacking_imageBox {
    width: 66.5vw;
  }
}
.parts_menuStacking .menuStacking_textBox {
  width: 45.5%;
  padding: 8.6% 0 0;
}
.parts_menuStacking.type02 .menuStacking_textBox {
  margin: 0 0 0 auto;
}
.parts_menuStacking .menuStacking_textBox .menuStacking_lead {
  font-size: 87.5%;
  font-weight: 500;
  line-height: 2.14285;
  margin: 2.6em 0 0;
}
.parts_menuStacking .btn_base {
  margin: 2.3em 0 0 0;
  text-align: right;
}
/**/
.parts_contact {
  background: #fff;
  border-radius: 1.875em;
  padding: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 2px #7DE0B0;
  box-shadow: 0px 0 2em 0px rgba(110, 160, 255, 0.2);
}
.parts_contact .contactLeft {
  width: 50%;
}
.parts_contact .contact_desc {
  line-height: 1.5;
  letter-spacing: .1em;
  margin: 2em 0 0;
}
.parts_contact .contact_desc p + p {
  margin: .8em 0 0;
}
.parts_contact .contactRight {
  width: 43.5%;
}
.parts_lineAnimation {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
  width: max(100%, 1366px);
  max-width: 2050px;
  height: 100%;
  transform: translateX(-50%);
}
.parts_lineAnimation .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
}
.parts_lineAnimation .line span {
  display: block;
  transform: translateX(100%);
  overflow: hidden;
  transition: transform 1.2s ease 0s;
}
.parts_lineAnimation .line span img {
  transform: translateX(-100%);
  transition: transform 1.2s ease 0s;
  display: block;
  margin: auto;
}
.parts_lineAnimation.reverse .line span {
  transform: translateX(-100%);
}
.parts_lineAnimation.reverse .line span img {
  transform: translateX(100%);
}
.scrollAnime.scroll--start .parts_lineAnimation .line span {
  transform: translateX(0) !important;
}
.scrollAnime.scroll--start .parts_lineAnimation .line img {
  transform: translateX(0) !important;
}
.parts_lineAnimation .temp02 {
  margin: 2.3em 0 0;
}
.parts_lineAnimation .temp03 {
  margin: 1.35em 0 0;
}
/**/
.list_contactLinks > li + li {
  border-top: solid 1px #000000;
  padding: 1.2em 0 0;
  margin: 1.2em 0 0;
}
.list_contactLinks .link_name {
  font-size: 137.5%;
  font-weight: 500;
  padding: 0 0 0 1.2em;
  position: relative;
  margin: 0 0 .5em;
}
.list_contactLinks .link_name::before {
  content: '';
  width: .5em;
  height: .5em;
  background: #008E96;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .3em;
  bottom: 0;
  margin: auto;
}
.list_contactLinks .link_tel a {
  display: flex;
  align-items: center;
  transition: opacity .3s;
}
.list_contactLinks .link_tel a:hover {
  opacity: .7;
}
.list_contactLinks .link_tel .tel_num {
  font-size: 187.5%;
  font-weight: 700;
  display: block;
  margin: 0 .5em 0 0;
}
.list_contactLinks .link_tel .tel_text {
  font-weight: 700;
  display: block;
  text-align: center;
  line-height: 1.3125;
}
.list_contactLinks .link_mail {
  font-size: 187.5%;
  font-weight: 700;
}
.list_contactLinks .link_mail a {
  transition: opacity .3s;
}
.list_contactLinks .link_mail a:hover {
  opacity: .7;
}
.parts_pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s;
}
body.pop--open .parts_pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.parts_pop .popWrap {
  background: #fff;
  border-radius: 1.6875em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: min(96%, 780px);
  height: min(80vh, 700px);
  padding: 2.5em 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  box-sizing: border-box;
}
.parts_pop .popScroll {
  overflow-y: scroll;
  padding: 2em 0 0;
  width: 96%;
  height: calc(100% - 4.5em);
  margin: auto;
  box-sizing: border-box;
}
.parts_pop .popScroll::-webkit-scrollbar {
  width: .5em;
}
.parts_pop .popScroll::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 1em;
}
.parts_pop .popScroll::-webkit-scrollbar-thumb {
  background: #009FA8;
  border-radius: 1em;
}
.parts_pop .popWrap .pop_messageTitle {
  text-align: center;
  font-size: 168.75%;
  font-weight: 700;
  margin: 0 0 1.5em;
  letter-spacing: .3em;
}
.parts_pop .popWrap .pop_messageText {
  text-align: center;
  font-size: 87.5%;
  font-weight: 500;
  line-height: 3.214;
  letter-spacing: .3em;
}
.parts_pop .popWrap .pop_close {
  position: absolute;
  bottom: 2em;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 87.5%;
  font-weight: 900;
  letter-spacing: .1em;
  cursor: pointer;
  transition: letter-spacing .3s;
  padding: 1em 0;
}
.parts_pop .popWrap .pop_close:hover {
  letter-spacing: .3em;
}
@media all and (max-width:1024px) {
  .parts_contact {
    display: block;
  }
  .parts_contact .contactLeft {
    width: 100%;
  }
  .parts_contact .contact_desc {
    font-size: 2vw;
    margin: 1em 0 0;
  }
  .parts_contact .contactRight {
    width: 100%;
    margin: 2.5em 0 0;
  }
  .list_contactLinks {
    font-size: 2vw;
  }
  .list_contactLinks .link_tel .tel_num {
    width: auto;
  }
  .list_contactLinks .link_tel .tel_text {
    width: auto;
    margin: 0 0 0 1.5em;
  }
}
.parts_underNav {
  padding: 6.5em 0;
}
.parts_underNav.has--bg {
  background: url("../img/contact_partsBg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.parts_underNav .underNav_btn {
  width: min(96%, 777px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10em;
  position: relative;
}
.parts_underNav .underNav_btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.parts_underNav .underNav_btn:hover::before {
  opacity: 0;
}
.parts_underNav .underNav_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.parts_underNav .underNav_btn a span {
  text-decoration: underline;
  font-size: 168.75%;
  font-weight: 700;
  color: #fff;
}
/* ==================================== 
page-name #front
====================================*/
.block_frontSlide {
  position: relative;
  overflow: hidden;
}
.block_frontSlide .slideWrap {
  pointer-events: none;
  position: relative;
  height: max(100vh, 700px);
}
.block_frontSlide .slideWrap::before {
  content: '';
  width: 100%;
  height: 40%;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}
#js_frontSlide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block_frontSlide .slideWrap img.slide {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}
#js_frontSlide .slideAnimationImage {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  pointer-events: none;
}
#js_frontSlide .slideAnimationImage.slide01 {
  top: 33%;
}
#js_frontSlide .slideAnimationImage.slide02 {
  top: 7%;
}
#js_frontSlide .slideAnimationImage.slide03 {
  top: 13%;
}
#js_frontSlide .slideAnimationImage.slide04 {
  top: 16%;
}
#js_frontSlide .slideAnimationImage .line {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
#js_frontSlide .slideAnimationImage .line span {
  display: block;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform .8s ease .2s;
}
#js_frontSlide .slideAnimationImage .line.line01 span {
  width: 68%;
  margin: 1.6em 0 0 auto;
}
#js_frontSlide .slideAnimationImage .line.line02 span {
  width: 68%;
  margin: 0 auto 0 0;
}
#js_frontSlide .slideAnimationImage .line.line03 span {
  width: 100%;
  margin: 0 auto;
}
#js_frontSlide .slideAnimationImage .line.line04 span {
  width: 100%;
  margin: 27em auto 0 0;
}
#js_frontSlide .slideAnimationImage .line.line05 span {
  width: 100%;
  margin: 21em 0 auto;
}
#js_frontSlide .slideAnimationImage .line.line06 span {
  width: 95%;
  margin: 0 auto;
}
#js_frontSlide .slideAnimationImage .line.line07 span {
  width: 100%;
  margin: 0 0 auto;
}
#js_frontSlide .slideAnimationImage .line.line08 span {
  width: 95%;
  margin: -13em auto 0 -3em;
}
#js_frontSlide .slideAnimationImage .line span img {
  display: block;
  transform: translateX(100%);
}
#js_frontSlide .slideAnimationImage.is-animating .line span {
  animation: lineMove01 1.5s ease .5s forwards;
}
#js_frontSlide .slideAnimationImage.is-animating .line span img {
  animation: lineMove02 1.5s ease .5s forwards;
}
.block_frontSlide .contentsWrap {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 89.312%;
  height: 100%;
}
.block_frontSlide .contents_titleBox {
  position: absolute;
  left: 0;
  top: 29%;
}
.block_frontSlide .contents_titleBox .slide_title {
  color: #fff;
  font-size: 337.5%;
  font-weight: 900;
  letter-spacing: .2em;
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 1px 20px #3e686b;
  padding: .1em .5em;
}
.block_frontSlide .contents_titleBox .slide_title span {
  display: block;
}
.block_frontSlide .contents_titleBox .slide_link {
  margin: 1.2em 0 0 2.2em;
}
.block_frontSlide .contents_titleBox .slide_link a {
  display: inline-block;
  font-size: 137.5%;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2em;
  padding: 0 .6em .4em 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.block_frontSlide .contents_titleBox .slide_link a::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/icon_arrow02.svg);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.block_frontSlide .contents_titleBox .slide_link a:hover::before {
  transform: translateX(100%);
  left: -100%;
  transition: transform .4s;
  right: auto;
}
.block_frontSlide .contents_newsBox {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: min(76%, 660px);
}
.block_frontSlide .contents_newsBox .newsWrap {
  background: #fff;
  border-radius: 1.25em;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block_frontSlide .contents_newsBox .newsWrap hgroup {
  width: 24%;
}
.block_frontSlide .contents_newsBox .newsWrap hgroup .jp {
  font-size: 150%;
  font-weight: 700;
  line-height: 2;
}
.block_frontSlide .contents_newsBox .newsWrap hgroup .en {
  color: #004898;
}
.block_frontSlide .contents_newsBox .news_btn {
  background: linear-gradient(to right, rgba(15, 199, 70, 1) 0%, rgba(95, 203, 242, 1) 50%, rgba(15, 199, 70, 1) 100%);
  border-radius: 5em;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
  margin: 1.3em 0 0;
  background-size: 200% auto;
  background-position: 0 auto;
  transition: opacity .6s;
}
.block_frontSlide .contents_newsBox .news_btn:hover {
  opacity: .7;
}
.block_frontSlide .contents_newsBox .news_btn a {
  display: block;
  color: #fff;
  padding: 1.2em .2em 1.4em 1.8em;
}
.block_frontSlide .contents_newsBox .news_btn a span {
  font-size: 131.25%;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/icon_arrow03.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: .7em auto;
  padding: 0 0 0 1.2em;
}
.block_frontSlide .contents_newsBox .news_btn a small {
  display: inline-block;
  vertical-align: middle;
  font-size: 90%;
  font-weight: 700;
  margin: 0 0 0 1.3em;
}
.block_frontSlide .contents_newsBox .newsWrap .list_newsSummary {
  width: 76%;
}
.list_newsSummary > li {
  font-size: 75%;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .05em;
  position: relative;
}
.list_newsSummary > li::before {
  content: '';
  width: 0;
  height: 1px;
  background: #009FA8;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0px;
  transition: all .4s;
}
.list_newsSummary > li:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.list_newsSummary > li a ,.list_newsSummary > li span.a {
  display: flex;
  border-bottom: solid 1px #000;
  line-height: 1.85;
  overflow: hidden;
  position: relative;
}
.list_newsSummary > li .time {
  display: inline-block;
  margin: 0 1em 0 0;
  flex: 0 0 auto;
  white-space: nowrap;
}
.list_newsSummary > li .tips {
  display: block;
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.list_newsSummary .tips.is-ticker .ticker-inner {
  display: inline-block;
  animation: news-ticker 23s linear infinite;
  padding: 0 0 0 1em;
}
/* ==================================== 
page-name #about
====================================*/
.block_about {
  position: relative;
}
.block_about .parts_lineAnimation {
  top: -7.6em;
}
.block_about .parts_lineAnimation .line02 {
  margin: 2.2em 0 0;
}
.block_about .area_front {
  position: relative;
  z-index: 15;
  padding: 10em 0 0;
}
.block_about .area_front .inner {
  width: min(96%, 1000px);
}
.block_about .area_front .about_titleFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.block_about .area_front .about_titleFlex .flexLeft {
  width: 40%;
}
.block_about .area_front .about_titleFlex .flexRight {
  width: 51%;
}
.block_about .area_front .about_titleFlex .about_lead {
  font-size: 87.5%;
  line-height: 2.143;
}
.block_about .area_front .about_movieWrap {
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 3.2em 0 0;
  padding: 56% 0 0;
}
.block_about .area_front .about_movieWrap iframe, .block_about .area_front .about_movieWrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ==================================== 
page-name #feature
====================================*/
.block_feature .area_front {
  padding: 8.7em 0 0;
}
/**/
.block_feature .area_ayumi {
  background: url(../img/features/bg01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 6.9em 0 8em;
}
.block_feature .area_ayumi .ayumi_lead {
  margin: 2.6em 0 5.5em;
  font-size: 112.5%;
  line-height: 2;
  letter-spacing: .1em;
}
.list_featureAyumi > li {
  background: #fff;
  border-radius: 1.875em;
  box-sizing: border-box;
  padding: 2.5em 0;
}
.list_featureAyumi > li + li {
  margin: 3em auto 0;
}
.list_featureAyumi > li .ayumi_name {
  color: #fff;
  font-weight: 700;
  line-height: 1.9;
}
.list_featureAyumi > li .ayumi_name span {
  display: inline-block;
  background: #008273;
  border-radius: 0 5em 5em 0;
  padding: 0 2em 0 2.2em;
}
.list_featureAyumi > li .ayumiWrap {
  position: relative;
  padding: 1.5em 39% 0 0;
  width: min(96%, 1000px);
  margin: auto;
  box-sizing: border-box;
  text-align: left;
}
.list_featureAyumi > li .ayumiWrap .ayumi_title {
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.6;
}
.list_featureAyumi > li .ayumiWrap .ayumi_image {
  width: 45.5%;
  position: absolute;
  right: -1.2em;
  top: -2.2em;
}
.list_featureAyumi > li .ayumiWrap .ayumi_text {
  line-height: 1.875;
  font-weight: 500;
  margin: 1.2em 0 0;
  min-height: 11em;
}
/**/
.block_feature .area_goal {
  padding: 6.2em 0 0;
  position: relative;
}
.block_feature .area_goal .parts_lineAnimation {
  top: 1em;
  opacity: .5;
}
.block_feature .area_goal .goal_lead {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.6;
  margin: 3.3em 0 2.7em;
  text-align: left;
}
.list_featureGoal > li {
  padding: 3em 0;
}
.list_featureGoal > li + li {
  margin: 2em auto 0;
}
.list_featureGoal > li + li.has--bg {
  margin: 5em auto 0;
}
.list_featureGoal > li .position {
  position: relative;
  z-index: 2;
}
.list_featureGoal > li.has--bg {
  position: relative;
}
.list_featureGoal > li.has--bg::before {
  content: '';
  width: 1250px;
  height: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/features/list_bg.webp);
  background-size: cover;
  transform: translateX(-50px);
}
.list_featureGoal .featureGoal_title {
  display: flex;
  align-items: center;
}
.list_featureGoal .featureGoal_title .en {
  font-size: 500%;
  font-weight: 500;
  line-height: 1;
  color: #008273;
  letter-spacing: .05em;
  position: relative;
  padding: 0 .68em 0 0;
}
.list_featureGoal .featureGoal_title .en::before {
  content: '';
  position: absolute;
  right: -.08em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: .8em;
  height: 1px;
  background: #000;
  transform: rotateZ(-53deg);
}
.list_featureGoal .featureGoal_title .title {
  font-size: 187.5%;
  line-height: 2.667;
}
.list_featureGoal .featureGoal_image {
  margin: 1.8em auto 2em;
  overflow: hidden;
  border-radius: 30em;
}
.list_featureGoal .featureGoal_text {
  font-size: 112.5%;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 3.3em;
}
.dl_featureGoal dt {
  text-align: center;
  position: relative;
  margin: 0 0 2.4em;
}
.dl_featureGoal dt span {
  display: inline-block;
  background: #fff;
  width: 332px;
  border: solid 1px #000;
  border-radius: 5em;
  font-size: 125%;
  font-weight: 700;
  line-height: 2.5;
  position: relative;
  z-index: 5;
}
.dl_featureGoal dt::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.dl_featureGoal dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
  justify-content: center;
  font-size: 125%;
  font-weight: 700;
}
.list_featureGoal > li .btn_more {
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto 2.5em;
}
.list_featureGoal > li.has--bg .btn_more {
  margin: -1em auto 1.2em;
}
.list_featureGoal > li .btn_more a {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  padding: 1em 3.5em;
  font-size: 125%;
  font-weight: 700;
  border: solid 2px #fff;
  border-radius: 5em;
  background: url("../img/bg_mosaic.webp");
  background-repeat: repeat;
  background-size: 25px auto;
  transition: opacity .3s;
}
.list_featureGoal > li .btn_more a:hover {
  opacity: .7;
}
/**/
.block_feature .area_connect {
  padding: 12.2em 0 0;
  position: relative;
}
.block_feature .area_connect .parts_lineAnimation {
  top: 9em;
  opacity: .5;
}
.block_feature .area_connect .goal_lead {
  font-size: 112.5%;
  line-height: 1.6;
  font-weight: 500;
  margin: 6em 0 1em;
  text-align: left;
  letter-spacing: -.006em
}
/* ==================================== 
page-name #message
====================================*/
.block_message .area_front {
  padding: 5.9em 0 6.6em;
  position: relative;
}
/**/
.block_message .mindBg {
  background: url("../img/message/mindTitle_bg.webp");
  background-size: cover;
  position: relative;
}
.block_message .area_mindTitle {
  padding: 100px 0 11.6em;
}
.block_message .area_mindTitle::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/message/kv_bg.webp");
  background-size: min(98%, 1220px) auto;
  background-position: center top 9.5em;
  background-repeat: no-repeat;
  pointer-events: none;
}
.block_message .area_mindTitle .inner {
  position: relative;
  z-index: 5;
}
.block_message .area_mindTitle .title_page {
  margin: 6.8em 0 0;
}
.block_message .area_mindTitle .mindTitle_circle {
  position: relative;
  margin: 10.5em auto 0;
  width: 51.305%;
  height: 0;
  padding: 51.305% 0 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10em rgba(153, 193, 222, 0.9);
}
.block_message .area_mindTitle .mindTitle_circle .mindTitleCircle_logo {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 43.7288%;
  height: 22%;
}
.list_mindTitleCircle {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  -webkit-animation: ferris01 40s linear infinite;
  animation: ferris01 40s linear infinite;
}
.list_mindTitleCircle > li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 37.288136%;
  height: 0;
  padding: 37.288136% 0 0;
  transform-origin: center;
  -webkit-animation: ferris01 40s linear infinite reverse;
  animation: ferris01 40s linear infinite reverse;
}
.list_mindTitleCircle > li:nth-child(1) {
  top: -100%;
}
.list_mindTitleCircle > li:nth-child(2) {
  top: 50%;
  left: -85%;
}
.list_mindTitleCircle > li:nth-child(3) {
  top: 50%;
  right: -85%;
}
.list_mindTitleCircle li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_mindTitleCircle li a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100% 100%;
  background-position: center;
  transition: all .8s;
  background-attachment: fixed;
  border-radius: 50%;
  overflow: hidden;
}
.list_mindTitleCircle li:nth-child(1) a::before {
  background-image: url(../img/message/mind_bg01.webp);
}
.list_mindTitleCircle li:nth-child(2) a::before {
  background-image: url(../img/message/mind_bg02.webp);
}
.list_mindTitleCircle li:nth-child(3) a::before {
  background-image: url(../img/message/mind_bg03.webp);
}
.list_mindTitleCircle li a:hover::before {
  transform: scale(1.3) rotateZ(40deg);
  background-size: 200% 200%;
}
.list_mindTitleCircle li a img {
  position: relative;
  z-index: 5;
}
/**/
.block_message .area_mindContents {
  background-image: url(../img/message/mindContents_bg.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  padding: 15em 0 11.5em;
}
.block_message .area_mindContents .parts_lineAnimation {
  top: -9em;
}
.list_messageMind {
  width: min(96%, 1000px);
  margin: auto;
}
.list_messageMind > li {
  background: #fff;
  border-radius: 3.4em;
  padding: 4.6em 0 5.9em;
}
.list_messageMind > li + li {
  margin: 4.6em auto 0;
}
.list_messageMind > li .messageMind_title {
  text-align: center;
  color: #008273;
  margin: 0 0 2.9em;
}
.list_messageMind > li .messageMind_title .jp {
  font-size: 204%;
  font-weight: 700;
  line-height: 1.8;
}
.list_messageMind > li .messageMind_title .en {
  font-size: 136.05%;
}
.list_messageMind > li .messageMind_desc {
  text-align: center;
  font-size: 150%;
  font-weight: 700;
  line-height: 2.1667;
}
.dl_messageMind {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.6em;
  margin: auto;
  width: min(96%, 824px);
  padding: 3.5em 0;
}
.list_messageMind > li .dl_messageMind:nth-of-type(1) {
  margin: -3em auto 0;
}
.list_messageMind > li .dl_messageMind:last-of-type {
  margin: 0 auto -3em;
}
.dl_messageMind + .dl_messageMind {
  border-top: solid 1px #000;
}
.dl_messageMind dt .en {
  display: inline-block;
  color: #008273;
  font-size: 206.25%;
  font-weight: 600;
  position: relative;
  padding: 0 .5em 0 0;
}
.dl_messageMind dt .en::before {
  content: '.';
  color: #000;
  position: absolute;
  right: .2em;
  bottom: 0;
}
.dl_messageMind dt .dlTitle {
  display: inline-block;
  font-size: 150%;
  font-weight: 700;
}
.dl_messageMind dd {
  font-weight: 500;
  line-height: 1.6;
}
/**/
.block_message .area_interview .interview_kvBox {
  background: url(../img/message/interview01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  text-align: right;
  padding: 10.2em 0 11.9em;
  font-size: 1.1713vw;
}
.block_message .area_interview .textBox {
  text-align: left;
  display: inline-block;
  margin: 0 7.8em 0 0;
}
.block_message .area_interview .textBox .kvBox_text {
  font-size: 225%;
  line-height: 2;
  font-weight: 700;
}
.block_message .area_interview .textBox .kvBox_name {
  margin: 3.4em 0 0;
  font-weight: 500;
  line-height: 1.5;
}
.block_message .area_interview .textBox .kvBox_name .name_position {
  display: block;
  font-size: 125%;
}
.block_message .area_interview .textBox .kvBox_name .name_text {
  display: block;
  font-size: 150%;
  margin: .1em 0 0;
}
.block_message .area_interview .interview_textBase {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2.333;
  text-align: left;
  letter-spacing: 0;
}
.block_message .area_interview .interview_textbox {
  position: relative;
}
.block_message .area_interview .interview_textbox .inner {
  position: relative;
}
.block_message .area_interview .interview_textbox.textbox01 {
  padding: 8.5em 0 6.4em;
}
.block_message .area_interview .interview_textbox.textbox02 {
  padding: 0 0 7.5em;
}
.block_message .area_interview .interview_textbox.textbox02 .flexRight {
  position: absolute;
  right: -6.8em;
  top: -.7em;
  width: 59.4%;
}
.block_message .area_interview .interview_textbox.textbox02 .flexRight::before {
  content: '';
  width: 35%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_message .area_interview .interview_textbox.textbox02 .flexLeft {
  width: 46%;
}
.block_message .area_interview .interview_textbox.textbox03 {
  padding: 20.3em 0 0;
}
.block_message .area_interview .interview_textbox.textbox03 .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.block_message .area_interview .interview_textbox.textbox03 .flexLeft {
  width: 34.173913%;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  transform: translateX(-2em);
}
.block_message .area_interview .interview_textbox.textbox03 .flexRight {
  width: 64%;
}
.block_message .area_interview .interview_textbox.textbox04 {
  padding: 5.9em 0 0;
}
.block_message .area_interview .interview_textbox.textbox04 .inner {
  position: relative;
}
.block_message .area_interview .interview_lastImage {
  position: relative;
  padding: 16em 0 0;
}
.block_message .area_interview .interview_lastImage .lastImageimg {
  position: relative;
}
.block_message .area_interview .interview_lastImage .lastImageimg::before {
  content: '';
  width: 100%;
  height: 25%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_message .area_interview .interview_lastImage .lastImageimg img {
  width: 100%;
  max-width: none;
}
.block_message .area_interview .interview_lastImage .parts_lineAnimation {
  top: 4em;
}
/* ==================================== 
page-name #recruit
====================================*/
.block_recruit {
  position: relative;
}
.block_recruit .parts_lineAnimation {
  top: -13.5em;
}
.block_recruit .parts_lineAnimation .line02 {
  margin: 4.7em 0 0;
  z-index: -1;
}
.block_recruit .area_front {
  padding: 15.375em 0 10.8em;
  background: url("../img/recruit_bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.list_recruitLinks {
  width: min(96%, 1000px);
  margin: auto;
}
.block_recruit .area_front .list_recruitLinks {
  margin: 5.6em auto 0;
}
.list_recruitLinks > li {
  background: #fff;
  border-radius: 10em;
  overflow: hidden;
  position: relative;
}
.list_recruitLinks > li + li {
  margin: 3em 0 0;
}
.list_recruitLinks > li a {
  display: block;
  font-size: 162.5%;
  font-weight: 500;
  padding: 2.8em 5.7em;
  position: relative;
}
.list_recruitLinks > li a::before {
  content: '';
  width: 62%;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all .4s;
}
.list_recruitLinks > li a::after {
  content: '';
  width: 1em;
  height: 1em;
  background-color: #009FA8;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% auto;
  border-radius: 50%;
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .4s;
}
.list_recruitLinks > li a:hover::after {
  transform: translateX(.5em) rotateX(180deg);
}
.list_recruitLinks > li span {
  display: inline-block;
  padding: 0 0 0 1.1em;
  position: relative;
  z-index: 5;
  background: #fff;
}
.list_recruitLinks > li span::before {
  content: '';
  width: .4em;
  height: .4em;
  background: #009FA8;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
/* ==================================== 
page-name #work
====================================*/
.block_work .area_front {
  background: url("../img/work_bnr01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 34.2em 0 4.7em;
  background-attachment: fixed;
}
.block_work .area_front .textBox {
  position: relative;
  padding: 2.3em 0 1.7em;
}
.block_work .area_front .textBox::before {
  content: '';
  position: absolute;
  left: min(calc((1150px - 100vw) / 2), -2.2%);
  top: 0;
  width: max(calc(((100vw - 1150px) / 2) + 530px), 550px);
  height: 100%;
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter;
  border-radius: 0 1em 1em 0;
}
.block_work .area_front .textPosition {
  position: relative;
  z-index: 5;
  width: max(40%, 470px);
}
.block_work .area_front .textBox .work_lead {
  font-size: 87.5%;
  line-height: 2.143;
  margin: 1em 0 0;
  min-height: 9em;
}
.block_work .area_front .textBox .btn_base {
  text-align: right;
  margin: .3em 0 0;
}
/**/
.block_work .area_workLead {
  padding: 7.5em 0 7.4em;
}
.block_work .area_workLead .lead_title {
  text-align: center;
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.6;
}
.block_work .area_workLead .lead_text {
  font-size: 112.5%;
  margin: 3.1em auto 0;
  line-height: 2;
  width: 89%;
  text-align: center;
}
/**/
.block_work .area_workContents .workContents_titleBox {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 59.4% 0 0;
}
.block_work .area_workContents .set01 .workContents_titleBox {
  background-image: url("../img/work/contents01_bg.webp");
}
.block_work .area_workContents .set02 .workContents_titleBox {
  background-image: url("../img/work/contents02_bg.webp");
}
.block_work .area_workContents .set03 .workContents_titleBox {
  background-image: url("../img/work/contents03_bg.webp");
}
.block_work .area_workContents .workContents_titleBox .titleBox {
  position: absolute;
  left: 8%;
  top: 13%;
  width: 520px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .8);
  border-radius: 1.25em;
  padding: 3em 3.8em;
}
.block_work .area_workContents .workContents_titleBox .titleBox .workContents_title {
  font-size: 187.5%;
  font-weight: 700;
}
.block_work .area_workContents .workContents_titleBox .titleBox .workContents_text {
  font-size: 112.5%;
  line-height: 2;
  margin: 2.3em 0 0;
}
.block_work .area_workContents .dl_workContents {
  padding: 7em 0 0;
}
.dl_workContents dt {
  text-align: center;
  position: relative;
  margin: 0 0 2em;
}
.dl_workContents dt::before {
  content: '';
  width: 90%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.dl_workContents dt span {
  display: inline-block;
  background: #fff;
  width: 230px;
  border: solid 1px #000;
  border-radius: 5em;
  font-size: 125%;
  font-weight: 700;
  line-height: 2.5;
  position: relative;
  z-index: 5;
}
.list_workContentsDetail {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 1000px);
  margin: 0 auto 8em;
  gap: 0 4%;
}
.list_workContentsDetail > li {
  width: 48%;
}
.list_workContentsDetail > li .detail_title {
  color: #008273;
  font-size: 125%;
  font-weight: 600;
}
.list_workContentsDetail > li .detail_desc {
  font-size: 112.5%;
  line-height: 2;
  margin: .5em 0 0;
}
.block_work .area_workContents .workContents_alignment {
  background: url("../img/work/alignment_bg.webp") no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 13em;
  box-sizing: border-box;
  padding: 7.5em 0 1.3em;
}
.block_work .area_workContents .workContents_alignment .alignment_title {
  text-align: center;
  color: #008273;
  font-size: 150%;
  font-weight: 700;
}
.block_work .area_workContents .workContents_alignment .alignment_lead {
  font-size: 112.5%;
  line-height: 1.67;
  margin: 3.4em 0 3.2em;
}
.block_work .area_workContents .workContents_alignment .alignmentWrap {
  width: min(90%, 840px);
  margin: auto;
}
.list_alignmentImage {
  position: relative;
  height: 0;
  padding: 99.4% 0 0;
}
.list_alignmentImage::before {
  content: '';
  width: 31%;
  height: 0;
  padding: 31% 0 0;
  position: absolute;
  z-index: 5;
  right: 0;
  top: -4.5em;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url("../img/work/contents01_illust01.webp");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.list_alignmentImage::after {
  content: '';
  width: 68%;
  height: 0;
  padding: 68% 0 0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -5em;
  bottom: 0;
  right: 0;
  margin: auto;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 72, 152, 0.2) 30%, rgba(195, 246, 254, 1) 80%, rgba(255, 255, 255, 1) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.list_alignmentImage > li {
  position: absolute;
  z-index: 3;
  width: 43.334%;
  padding: 43.334% 0 0;
  height: 0;
}
.list_alignmentImage > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}
.list_alignmentImage > li:nth-child(1) {
  left: -1.5em;
  top: 0;
}
.list_alignmentImage > li:nth-child(2) {
  right: 2.2em;
  top: 0;
}
.list_alignmentImage > li:nth-child(2)::before {
  top: -1.3em;
}
.list_alignmentImage > li:nth-child(3) {
  left: 2.3em;
  bottom: 0;
}
.list_alignmentImage > li:nth-child(3)::before {
  top: -2em;
}
.list_alignmentImage > li:nth-child(4) {
  right: -1.5em;
  bottom: 0em;
}
.list_alignmentImage > li:nth-child(4)::before {
  top: -3.4em;
}
.list_alignmentImage > li .wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  box-sizing: border-box;
  padding: 7.3em 2.4em;
  background-size: 40% auto;
  background-position: center top;
  background-repeat: no-repeat;
}
.list_alignmentImage > li:nth-child(1) .wrap {
  background-image: url(../img/work/alignmentImage01.webp);
}
.list_alignmentImage > li:nth-child(2) .wrap {
  background-image: url(../img/work/alignmentImage02.webp);
}
.list_alignmentImage > li:nth-child(3) .wrap {
  background-image: url(../img/work/alignmentImage03.webp);
}
.list_alignmentImage > li:nth-child(4) .wrap {
  background-image: url(../img/work/alignmentImage04.webp);
}
.list_alignmentImage > li .alignmentImage_title {
  text-align: center;
  color: #fff;
  font-size: 125%;
  font-weight: 700;
  background: url("../img/bg_mosaic.webp");
  border-radius: 5em;
  padding: .75em 0;
  line-height: 1.1;
}
.list_alignmenDisc {
  margin: .8em 0 0;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
}
.list_alignmenDisc > li {
  padding: 0 0 0 .8em;
  position: relative;
}
.list_alignmenDisc > li + li {
  margin: .1em 0 0;
}
.list_alignmenDisc > li::before {
  content: '';
  width: .5em;
  height: .5em;
  background: #008273;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .55em;
}
.block_work .area_workContents .workContentsSet.set01 {
  padding: 0 0 7em;
}
.block_work .area_workContents .workContentsSet.set02 {
  padding: 19em 0 7em;
  position: relative;
}
.block_work .area_workContents .workContentsSet.set03 {
  padding: 18.5em 0 5.5em;
  position: relative;
}
.block_work .area_workContents .workContents_descBox {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 5.8em auto 0;
  border-radius: 20em;
  overflow: hidden;
  padding: 6.5em 0;
}
.block_work .area_workContents .workContents_descBox.bg01 {
  background-image: url("../img/work/descBox_bg01.webp");
}
.block_work .area_workContents .workContents_descBox.bg02 {
  background-image: url("../img/work/descBox_bg02.webp");
}
.block_work .area_workContents .workContents_descBox .desc_title {
  text-align: center;
  color: #008273;
  font-size: 150%;
  font-weight: 700;
}
.block_work .area_workContents .workContents_descBox .desc_text {
  font-size: 112.5%;
  font-weight: 500;
  width: min(96%, 840px);
  margin: 3.2em auto .8em;
  line-height: 1.667;
}
.block_work .area_workContents .workContents_imageBox {
  box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, .2);
  border-radius: 1.875em;
  box-sizing: border-box;
  padding: 4.4em 0;
}
.block_work .area_workContents .workContents_imageBox .imageBox_title {
  text-align: center;
  font-size: 187.5%;
  font-weight: 700;
}
.block_work .area_workContents .workContents_imageBox .flexBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: min(96%, 1020px);
  margin: 3.4em auto 0;
}
.block_work .area_workContents .workContents_imageBox .flexBox .boxImage {
  width: 36.57%;
  border-radius: 1em;
  overflow: hidden;
}
.block_work .area_workContents .workContents_imageBox .flexBox .boxText {
  width: 60%;
  font-size: 125%;
  font-weight: 500;
  line-height: 1.5;
}
/**/
.block_work .area_workBase {
  position: relative;
  background: url(../img/bg_mosaic02.webp);
  background-repeat: repeat;
  background-size: 25px auto;
  padding: 21.7em 0 9em;
}
.block_work .area_workBase::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.block_work .area_workBase .workBase_title {
  text-align: center;
  font-size: 187.5%;
  font-weight: 700;
}
.block_work .area_workBase .workBase_lead {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.7;
  margin: 6.4em auto 0;
  width: min(96%, 1020px);
}
.list_workBaseSummary {
  margin: 8.6em auto 9.6em;
  width: min(96%, 1020px);
}
.list_workBaseSummary > li {
  position: relative;
  padding: 2em 0 0 56%;
  box-sizing: border-box;
  min-height: 20.2em;
}
.list_workBaseSummary > li + li {
  margin: 6em auto 0;
}
.list_workBaseSummary > li .summary_title {
  font-size: 137.5%;
  font-weight: 500;
  line-height: 2;
  border-bottom: solid 1px #000000;
  padding: 0 0 .9em;
}
.list_workBaseSummary > li .summary_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 51%;
  overflow: hidden;
  border-radius: 1em;
}
.list_workBaseSummary > li .summary_map {
  background: url(../img/icon_map.svg);
  background-size: 1em auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 1.5em 0 1.5em 1.8em;
  line-height: 1.6;
  letter-spacing: .1em;
}
.list_workBaseSummary > li .summary_map a {
  color: #004898;
  text-decoration: underline;
  transition: opacity .3s;
  font-weight: 700;
}
.list_workBaseSummary > li .summary_map a:hover {
  opacity: .7;
}
.list_workBaseSummary > li .summary_access {
  background: url(../img/icon_access.svg);
  background-size: 1em auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 1.5em 0 1.5em 1.8em;
  line-height: 1.6;
  letter-spacing: .1em;
}
.block_work .area_workBase .parts_contact {
  border: none;
}
.block_work .area_workBase .parts_contact .contact_desc {
  margin: 1em 0 0;
}
.block_work .area_workBase .parts_peopleLinks {
  margin: 10em 0 0;
}
.block_work .area_workBase .parts_peopleLinks .list_peopleLinks {
  font-size: 80%;
}
.block_work .area_workBase .parts_contact .title_base .en {
  color: #004497;
}
.block_work .area_workBase .parts_contact .list_contactLinks .link_name::before {
  background: #004497;
}
/* ====================================
page-name #people
====================================*/
.block_people {
  position: relative;
}
.block_people .parts_lineAnimation {
  top: -5.5em;
}
.block_people .parts_lineAnimation .line02 {
  margin: 6.2em 0 0;
}
.block_people .area_front {
  padding: 24.3em 0 2.3em;
}
.block_people .area_front .people_lead {
  font-size: 87.5%;
  line-height: 2.143;
  margin: 2.3em 0 9em;
  text-align: center;
}
.list_peopleLinks {
  display: flex;
  gap: 0 6%;
}
.list_peopleLinks > li {
  width: 47%;
  position: relative;
}
.list_peopleLinks > li a {
  display: block;
  position: relative;
}
.list_peopleLinks > li a .link_thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 1.8em;
}
.list_peopleLinks > li a .link_thumbnail img {
  transition: transform .4s;
}
.list_peopleLinks > li a:hover .link_thumbnail img {
  transform: scale(1.1);
}
.list_peopleLinks > li a .textBox {
  position: absolute;
  z-index: 3;
  left: 1.6em;
  bottom: 1.6em;
  box-sizing: border-box;
}
.list_peopleLinks > li a .textBox .peopleLinks_lead {
  font-weight: 700;
  position: relative;
  z-index: 5;
}
.list_peopleLinks > li a .textBox .peopleLinks_lead span {
  position: relative;
  z-index: 3;
  display: inline-block;
  font-size: 150%;
  margin: .6em 0 0;
  padding: .2em;
}
.list_peopleLinks > li a .textBox .peopleLinks_lead span::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.list_peopleLinks > li a .textBox .peopleLinks_name {
  font-size: 112.5%;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  margin: .8em 0;
}
.list_peopleLinks > li a .textBox .peopleLinks_category span {
  font-size: 112.5%;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  border: solid 1px #000;
  border-radius: 5em;
  padding: .2em 1em .3em;
}
/**/
.block_people .area_pageTitle {
  position: relative;
  background: url(../img/people/title_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 0 8em;
  font-size: 1.171303vw;
}
.block_people .area_pageTitle .page_kv {
  width: 73.208%;
  margin: 0 -.8em 0 auto;
  overflow: hidden;
  border-radius: 0 0 0 6em;
}
.block_people .area_pageTitle .page_kv img {
  width: 100%;
  max-width: none;
}
.block_people .area_pageTitle .page_titleBox {
  position: absolute;
  z-index: 5;
  left: 7em;
  top: 15em;
  overflow: hidden;
}
.block_people .area_pageTitle .page_titleBox .titleBox_num {
  color: #008273;
}
.block_people .area_pageTitle .page_titleBox .titleBox_num .title {
  font-size: 181.25%;
  font-weight: 700;
  display: block;
}
.block_people .area_pageTitle .page_titleBox .titleBox_num .num {
  font-size: 575%;
  font-weight: 600;
  display: block;
}
.block_people .area_pageTitle .page_titleBox .titleBox_title {
  margin: 1em 0 0;
}
.block_people .area_pageTitle .page_titleBox .titleBox_title span {
  position: relative;
  display: inline-block;
  font-size: 187.5%;
  font-weight: 700;
  margin: 1em 0 0;
}
.block_people .area_pageTitle .page_titleBox .titleBox_title span::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.block_people .area_pageTitle .page_titleBox .titleBox_info {
  font-size: 112.5%;
  font-weight: 700;
  margin: 1.5em 0 0;
}
.block_people .area_pageTitle .page_titleBox .titleBox_category {
  margin: 2.2em 0 0;
}
.block_people .area_pageTitle .page_titleBox .titleBox_category span {
  display: inline-block;
  background: #fff;
  border: solid 1px #000;
  border-radius: 5em;
  font-size: 87.5%;
  padding: .4em 1.7em;
}
/**/
.block_people .area_pageTitle .page_titleBox span.transform, .block_people .area_pageTitle .page_titleBox .titleBox_title span {
  display: inline-block;
  transform: translateX(-101%);
  transition: transform .8s ease .2s;
}
body.page--open .block_people .area_pageTitle .page_titleBox span.transform, body.page--open .block_people .area_pageTitle .page_titleBox .titleBox_title span {
  transform: translateX(0%);
}
/**/
.block_people .area_pageTitle .page_lead {
  text-align: center;
  font-size: 112.5%;
  line-height: 2.3333;
  margin: 4.5em 0 0;
}
/**/
.block_people .area_interview .interviewSet {
  position: relative;
}
.block_people .area_interview .interviewSet.set01 {
  padding: 11.8em 0 9.5em;
}
.block_people .area_interview .interviewSet.set02 {
  padding: 10.3em 0 0;
}
.block_people .area_interview .interviewSet.set03 {
  padding: 0 0 8.4em;
}
.block_people .area_interview .interviewSet.set04 {
  padding: 16em 0 0;
}
.block_people .area_interview .title_peopleInterview {
  text-align: center;
  margin: 0 0 2.9em;
}
.block_people .area_interview .title_peopleInterview .en {
  font-size: 250%;
  font-weight: 500;
  color: #008273;
  position: relative;
}
.block_people .area_interview .title_peopleInterview .en::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.1em;
  margin: auto;
}
.block_people .area_interview .title_peopleInterview .jp {
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.6;
  margin: .3em 0 0;
}
.block_people .area_interview .interview_text {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2.333;
  text-align: left;
}
.block_people .area_interview .interview_text + .interview_text {
  margin: 2.4em 0 0;
}
.block_people .area_interview .interview_img01 {
  width: min(96%, 750px);
  margin: 4.5em auto 4.2em;
  overflow: hidden;
  border-radius: 3em;
}
.block_people .area_interview .interview_img02 {
  position: relative;
  margin: 4.2em 0;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.block_people .area_interview .interview_img02.reverse {
  flex-direction: row-reverse;
}
.block_people .area_interview .interview_img02 .textBox {
  width: 48%;
}
.block_people .area_interview .interview_img02 .imgBox {
  width: 50%;
  position: relative;
  transform: translateX(2.7em);
}
.block_people .area_interview .interview_img02 .imgBox img {
  max-width: 111.308%;
}
.block_people .area_interview .interview_img02 .imgBox::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_people .area_interview .interview_img02 .textBox {
  padding: .7em 0 0;
}
.block_people .area_interview .interview_ticker {
  padding: 4.8em 0 8.8em;
  overflow: hidden;
}
.block_people .area_interview .interview_ticker .ticker_wrap {
  display: flex;
  white-space: nowrap;
}
.list_ticker {
  display: flex;
  flex-shrink: 0;
  gap: 0 1em;
  -webkit-animation: ticker 20s linear infinite;
  animation: ticker 20s linear infinite;
  margin: 0 1em 0 auto;
}
.list_ticker > li {
  flex: none;
  width: 47.8125em;
  height: 20.9375em;
  overflow: hidden;
  border-radius: 30em;
}
.list_ticker > li.small {
  border-radius: 50%;
  width: 20.9375em;
}
.list_ticker > li img {
  max-width: none;
  width: 100%;
  height: 100%;
}
.block_people .area_interview .interview_img03 {
  position: relative;
  margin: 5.3em 0 4.1em;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.block_people .area_interview .interview_img03 .imgBox {
  width: 50%;
  position: relative;
  padding: 2em 0 0;
  transform: translateX(-2em);
}
.block_people .area_interview .interview_img03 .imgBox img {
  max-width: 113.1%;
  transform: translateX(-4.7em);
}
.block_people .area_interview .interview_img03 .imgBox::before {
  content: '';
  position: absolute;
  z-index: 5;
  pointer-events: none;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to left, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_people .area_interview .interview_img03 .textBox {
  width: 47.5%;
}
.block_people .area_interview .interview_img03.positionAdjust .imgBox {
  top: 0;
}
.block_people .area_interview .interview_img03.positionAdjust .textBox {
  padding: 4em 0;
}
.block_people .area_interview .interview_lastImage {
  position: relative;
}
.block_people .area_interview .interview_lastImage img {
  width: 100%;
  max-width: none;
}
.block_people .area_interview .interview_lastLeadBox {
  background: #fff;
  border-radius: 30em;
  padding: 5.8em 0;
  margin: -6em 0 5.8em;
}
.block_people .area_interview .interview_lastLeadBox .lastLead_title {
  text-align: center;
  color: #008273;
  font-size: 187.5%;
  font-weight: 700;
  letter-spacing: .1em;
}
.block_people .area_interview .interview_lastLeadBox .lastLead_text {
  font-size: 112.5%;
  line-height: 2.333;
  width: min(90%, 900px);
  margin: 2.6em auto 0;
}
.block_people .area_interview .interview_nav .nav_title {
  text-align: center;
  font-size: 250%;
  color: #008273;
  font-weight: 500;
  margin: 0 0 .5em;
}
.block_people .area_interview .interview_nav .list_peopleLinks {
  justify-content: center;
  font-size: 80%;
}
.block_people .area_interview .link_bg {
  background: url(../img/people/link_bg.webp);
  background-size: cover;
  background-position: center bottom;
  padding: 0 0 1em;
}
/* ====================================
page-name #env
====================================*/
.block_env {
  position: relative;
}
.block_env .parts_lineAnimation .line01 {
  margin: 5.6em 0 0;
}
.block_env .area_front {
  padding: 29.8em 0 8.5em;
  position: relative;
  background: url(../img/env_bg.webp);
  background-size: cover;
  background-position: center top;
}
.block_env .env_lead {
  line-height: 2.143;
  font-size: 87.5%;
  margin: 3.4em 0 6.5em;
  text-align: center;
}
.list_envLinks {
  display: flex;
  margin: 0 0 9.5em;
  width: 106%;
  transform: translateX(-3%);
}
.list_envLinks > li {
  width: calc(100% / 3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.list_envLinks > li::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform-origin: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
  pointer-events: none;
  transition: background-size .4s;
  mask-image: url(../img/clip.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.list_envLinks > li:hover::before {
  background-size: 110% 110%;
}
.list_envLinks > li.link01::before {
  background-image: url(../img/env_bnr01.webp);
}
.list_envLinks > li.link02::before {
  background-image: url(../img/env_bnr02.webp);
}
.list_envLinks > li.link03::before {
  background-image: url(../img/env_bnr03.webp);
}
.list_envLinks > li a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 5;
}
.list_envLinks > li .linkWrap {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  height: 38em;
  width: 100%;
  color: #fff;
}
.list_envLinks > li .linkWrap .link_name {
  display: flex;
  font-size: 187.5%;
  line-height: 1.4;
  font-weight: 700;
  height: 2.8em;
  align-items: center;
}
.list_envLinks > li .linkWrap .link_more {
  display: inline-block;
  font-size: 125%;
  font-weight: 700;
  padding: 0 1em 0 0;
  position: relative;
  margin: 1em 0 0;
}
.list_envLinks > li .linkWrap .link_more::before {
  content: '';
  width: 1em;
  height: 1em;
  background-color: #008E96;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 65% auto;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
/**/
.block_env .area_envLead {
  padding: 9.5em 0 2em;
}
.block_env .area_envLead .envLead_text {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2;
  margin: 3.1em 0 0;
  text-align: center;
}
/**/
.block_env .area_expansion {
  position: relative;
  padding: 22em 0 9em;
}
.block_env .area_expansion .expansion_lead {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2;
  margin: 2.1em 0 0;
}
.block_env .area_expansion .expansionWrap {
  margin: 6em 0 6.6em;
}
.list_expansionCircle {
  width: min(90%, 1000px);
  margin: auto;
  column-count: 2;
}
.list_expansionCircle > li {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  width: 80%;
  height: 0;
  padding: 80% 0 0;
}
.list_expansionCircle > li.list01 {
  background-image: url("../img/environment/task01_bg.webp");
}
.list_expansionCircle > li.list02 {
  background-image: url("../img/environment/task02_bg.webp");
  margin: 3em 0 0;
}
.list_expansionCircle > li.list03 {
  margin: 0 0 0 auto;
  background-image: url("../img/environment/task03_bg.webp");
}
.list_expansionCircle > li.list04 {
  margin: 3em 0 0 auto;
  background-image: url("../img/environment/task04_bg.webp");
}
.list_expansionCircle > li .circleTextBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 125%;
  font-weight: 700;
  box-sizing: border-box;
  padding: 7.2em 0 0;
}
.list_expansionCircle > li .circleTextBox dl dt span {
  display: inline-block;
  background: #fff;
  width: 6.2em;
  border-radius: 5em;
  padding: .3em 0;
}
.list_expansionCircle > li .circleTextBox dl dd {
  font-size: 200%;
  font-weight: 700;
  margin: .6em 0 0;
}
.block_env .area_expansion .expansionWrap {
  width: min(100%, 1023px);
  margin: 5em auto 3.5em;
}
.block_env .area_expansion .expansionWrap .expansion_desc {
  text-align: center;
  font-size: 125%;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .1em;
  margin: .4em 0 0;
}
.list_expansionBlock > li {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 2em;
  overflow: hidden;
  box-sizing: border-box;
  padding: 3.7em 4.2em 3.1em;
}
.list_expansionBlock > li + li {
  margin: 3em auto 0;
}
.list_expansionBlock > li:nth-child(1) {
  background-image: url("../img/environment/bg01.webp");
}
.list_expansionBlock > li:nth-child(2) {
  background-image: url("../img/environment/bg02.webp");
}
.list_expansionBlock > li:nth-child(3) {
  background-image: url("../img/environment/bg03.webp");
}
.list_expansionBlock > li:nth-child(4) {
  background-image: url("../img/environment/bg05.webp");
}
.list_expansionBlock > li .expansionBlock_title {
  font-size: 125%;
  font-weight: 700;
  color: #008273;
}
.list_expansionBlock > li .expansionBlock_text {
  font-size: 112.5%;
  line-height: 1.833;
  margin: 1.5em 0 0;
}
.block_env .bg_support-careerStep {
  background: url(../img/bg_mosaic02.webp);
  position: relative;
}
.block_env .bg_support-careerStep::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_env .bg_support-careerStep::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8%;
  background: linear-gradient(to top, rgba(254, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_env .area_support {
  padding: 18.4em 0 5em;
  position: relative;
  background-size: 25px auto;
}
.block_env .area_support .spotProgram {
  margin: 4em 0 8em;
}
.block_env .area_support .spotProgram .program_title {
  font-size: 125%;
  font-weight: 700;
}
.block_env .area_support .spotProgram .program_text {
  font-size: 112.5%;
  line-height: 1.833;
  margin: 1.6em 0 0;
}
.block_env .area_support .spotProgram .program_image {
  width: min(100%, 1144px);
  margin: 2.6em auto;
}
.block_env .area_support .spotProgram .program_image figcaption {
  text-align: right;
  font-size: 112.5%;
  font-weight: 500;
  margin: 2em 0 0;
}
.block_env .area_support .spotOthers {
  background: #fff;
  border-radius: 2em;
  padding: 4.5em 3.9em;
  box-shadow: 0 0 2em 0 rgba(110, 124, 134, 0.3);
}
.block_env .area_support .spotOthers .program_title {
  font-size: 187.5%;
  font-weight: 700;
  margin: 0 0 1.9em;
}
.list_supportOthers > li + li {
  margin: 3.7em 0 0;
}
.list_supportOthers .supportOthers_title {
  font-size: 125%;
  font-weight: 700;
  color: #008273;
}
.list_supportOthers .supportOthers_text {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2;
  margin: 1.5em 0 0;
  text-align: left;
}
/**/
.block_env .area_careerStep {
  padding: 5.3em 0;
}
.block_env .area_careerStep .careerStep_lead {
  margin: 3.6em 0 0;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}
.block_env .area_careerStep .careerStep_image {
  margin: 5em auto;
  width: min(100%, 1137px);
}
/**/
.block_env .area_benefits {
  position: relative;
  margin: -5em 0 0;
  padding: 24em 0 9.4em;
}
.block_env .area_benefits .benefits_lead {
  font-size: 125%;
  line-height: 1.5;
  margin: 4em 0 0;
  text-align: left;
}
.list_benefitsDetail {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8em 3%;
}
.block_env .area_benefits .list_benefitsDetail {
  margin: 6.5em 0 9.3em;
}
.list_benefitsDetail > li {
  width: 31.305%;
  box-shadow: 0 0 1.25em 0 rgba(110, 124, 134, 0.2);
  border-radius: 1.25em;
  padding: 1.8em 0;
}
.list_benefitsDetail > li dl dt {
  text-align: center;
  color: #008273;
  font-size: 118.75%;
  font-weight: 700;
  line-height: 1.5;
}
.list_benefitsDetail > li dl dd {
  font-weight: 500;
  margin: 1.2em auto 0;
  width: min(96%, 280px);
  line-height: 1.7;
  text-align: left;
  min-height: 10em;
}
.block_env .area_benefits .benefits_system {
  background: url("../img/environment/bg04.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.875em;
  padding: 3.7em 2em 3.2em;
}
.block_env .area_benefits .benefits_system .systemFlex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: min(100%, 1040px);
  margin: auto;
}
.block_env .area_benefits .benefits_system .systemFlex .imgBox {
  width: 43.27%;
  position: relative;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}
.block_env .area_benefits .benefits_system .systemFlex .imgBox img {
  position: relative;
  display: block;
}
.block_env .area_benefits .benefits_system .systemFlex .textBox {
  width: 50%;
  margin: 2em 0 0;
}
.block_env .area_benefits .benefits_system .system_title {
  font-size: 150%;
  letter-spacing: .05em;
  font-weight: 700;
}
.block_env .area_benefits .benefits_system .systemFlex .system_text {
  font-size: 93.75%;
  font-weight: 500;
  margin: 1.8em 0 0;
  line-height: 1.9;
}
.block_env .area_benefits .benefits_system .system_image {
  width: min(100%, 1036px);
  margin: 2em auto 0;
}
/**/
.block_env .area_numbers {
  background: url(../img/bg_mosaic02.webp);
  background-repeat: repeat;
  background-size: 25px auto;
  position: relative;
  padding: 23em 0 0;
}
.block_env .area_numbers::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.list_envNumbers {
  display: flex;
  flex-wrap: wrap;
  gap: 3.7em 3.911%;
  margin: 4.5em auto 5em;
}
.list_envNumbers > li {
  background: #fff;
  border-radius: 1.25em;
  box-shadow: 0 0 2em 0 rgba(110, 124, 134, 0.3);
  box-sizing: border-box;
  padding: 3.2em 3em 4.3em;
  width: 100%;
}
.list_envNumbers > li.middle {
  width: 53.914%;
}
.list_envNumbers > li.short {
  width: 42.175%;
}
.list_envNumbers > li .envNumbers_title {
  font-size: 125%;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1em;
}
.list_envNumbers > li .envNumbers_text {
  font-weight: 500;
  line-height: 1.775;
}
.list_envNumbers > li .envNumbersBox01 {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto 1.5em;
}
.list_envNumbers > li .envNumbersBox01::before {
  content: '';
  width: 1px;
  height: 85%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.list_envNumbers > li .envNumbersBox01 .box_title {
  text-align: center;
  font-size: 125%;
  font-weight: 500;
  margin: 0 0 .8em;
}
.list_envNumbers > li .envNumbersBox01 .box_num span.num {
  display: inline-block;
  font-family: "Mohave", sans-serif;
  font-size: 750%;
  font-weight: 600;
  color: #1D96B8;
}
.list_envNumbers > li .envNumbersBox01 .box_num span.unit {
  font-size: 300%;
  font-weight: 900;
}
.list_envNumbers > li .envNumbersBox01 + .envNumbers_text {
  width: min(100%, 420px);
  margin: 0 auto;
}
.list_envNumbers > li .envNumbersBox02 {
  text-align: center;
}
.list_envNumbers > li .envNumbersBox02 .box_num .num {
  color: #008E96;
  font-family: "Mohave", sans-serif;
  font-size: 775%;
  font-weight: 600;
  letter-spacing: -.05em;
  display: block;
}
.list_envNumbers > li .envNumbersBox02 .box_num .num .numBig {
  font-size: 124%;
}
.list_envNumbers > li .envNumbersBox02 .box_num .unit {
  display: block;
  font-size: 300%;
  font-weight: 900;
  margin: -.2em 0 0;
}
.list_envNumbers > li .envNumbersBox03 {
  text-align: center;
  margin: 3em 0 2.4em;
}
.list_envNumbers > li .envNumbersBox03 .box_num .num {
  font-size: 812.5%;
  font-weight: 600;
  color: #008E96;
  font-family: "Mohave", sans-serif;
}
.list_envNumbers > li .envNumbersBox03 .box_num .unit {
  font-size: 225%;
  font-weight: 900;
}
.list_envNumbers > li .envNumbersBox03 + .envNumbers_text {
  width: min(100%, 330px);
  margin: auto;
}
.list_envNumbers > li .envNumbersGraph01 {
  width: min(100%, 415px);
  margin: auto;
}
.list_envNumbers > li .envNumbersBox04 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 980px);
  margin: auto;
}
.list_envNumbers > li .envNumbersBox04 .boxText {
  width: 38%;
}
.list_envNumbers > li .envNumbersBox04 .boxText .envNumbers_title {
  margin: 0 0 2.5em;
}
.list_envNumbers > li .envNumbersBox04 .boxGraph {
  width: 50%;
  margin: 0 0 -2em;
}
@media all and (max-width:1024px) {
  .list_benefitsDetail > li {
    width: 48.5%;
    font-size: 120%;
  }
  .list_benefitsDetail > li dl dd {
    min-height: 0;
  }
}
/* ==================================== 
page-name #under
====================================*/
.block_pageTitle {
  position: relative;
}
.block_pageTitle img {
  max-width: none;
  width: 100%;
}
.block_pageTitle .inner {
  width: 85%;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.block_pageTitle .titleBox {
  padding: 18.6% 0 0;
  font-size: 1.17vw;
  overflow: hidden;
}
.title_page {
  overflow: hidden;
}
.title_page .en {
  font-size: 156.25%;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  margin: 0 0 .4em;
}
.title_page .en.color--green {
  color: #008273;
  text-shadow: none;
}
.title_page .jp {
  font-size: 275%;
  font-weight: 700;
}
.title_page .jp span {
  display: inline-block;
  padding: .01em .05em .1em;
  position: relative;
  z-index: 3;
}
.title_page .jp span::before {
  content: '';
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/**/
.title_page .en span {
  display: inline-block;
  transform: translateX(-101%);
  transition: transform .8s ease .2s;
}
body.page--open .title_page .en span {
  transform: translateX(0);
}
.title_page .jp span {
  transform: translateX(-101%);
  transition: transform .8s ease .2s;
  overflow: hidden;
}
body.page--open .title_page .jp span {
  transform: translateX(0);
}
.block_pageTitle .title_page .jp span::before {
  transform: translateX(-101%);
  transition: transform .8s ease .2s;
}
body.page--open .title_page .jp span::before {
  transform: translateX(0);
}
/* ==================================== 
page-name #apply
====================================*/
#page_apply main {
  overflow: visible;
}
.block_apply .area_contents {
  background: url("../img/bg_mosaic03.webp");
  background-size: 25px auto;
  padding: 100px 0 7em;
  position: relative;
}
.block_apply .area_contents .apply_linkBox {
  z-index: 10;
  position: relative;
  padding: 0 0 16em;
}
.block_apply .area_contents .apply_linkBox .fixedWrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background: #fff;
  border-radius: 1.875em;
  box-shadow: 0px 0 2em 0px rgba(110, 160, 255, 0.2);
  padding: 3em 0;
}
.list_applyLinks {
  display: flex;
  width: min(90%, 920px);
  margin: auto;
  justify-content: center;
  gap: 0 4.3475%;
  transition: all .4s;
}
.list_applyLinks > li {
  width: 30.435%;
  background: #009FA8;
  text-align: center;
  border-radius: 5em;
  color: #fff;
  font-size: 137.5%;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.list_applyLinks > li::before {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #006F98;
  transition: all .4s;
}
.list_applyLinks > li:hover::before, .list_applyLinks > li.active::before {
  top: 0;
  bottom: auto;
  height: 100%;
}
.list_applyLinks > li a {
  display: block;
  padding: .8em 0 1.9em;
  position: relative;
  z-index: 5;
}
.list_applyLinks > li a::before {
  content: '';
  width: 1em;
  height: 1em;
  background: url(../img/arrow01.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 2.5em;
}
.list_applyLinks > li small {
  font-size: 82%;
}
/**/
body.sticky--on .block_apply .area_contents .apply_linkBox .fixedWrap {
  position: fixed;
  top: 100px;
  transition: padding .5s, background .5s;
  padding: 1em 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
body.sticky--on .block_apply .area_contents .apply_linkBox .list_applyLinks > li a {
  padding: .6em 0 .67em;
}
body.sticky--on .block_apply .area_contents .apply_linkBox .list_applyLinks > li a::before {
  opacity: 0;
}
/**/
.block_apply .area_contents .applySet {
  background: #fff;
  border-radius: 1.875em;
  box-shadow: 0px 0 2em 0px rgba(110, 160, 255, 0.2);
  padding: 7em 1.563em 5.7em;
}
.block_apply .area_contents .applySet + .applySet {
  margin: 6em auto 0;
}
.block_apply .area_contents .applySet .apply_title {
  text-align: center;
  font-size: 187.5%;
  font-weight: 700;
  line-height: 1.5;
}
.block_apply .area_contents .applySet .setSection {
  padding: 4.9em 0;
  margin: auto;
  width: min(100%, 1020px);
}
.block_apply .area_contents .applySet .setSection + .setSection {
  border-top: solid 1px #000;
}
.block_apply .area_contents .applySet .section_title {
  color: #008273;
  font-size: 125%;
  font-weight: 700;
  margin: 0 0 1.65em;
}
.block_apply .area_contents .applySet .flow_image {
  margin: auto;
  width: min(108%, 1100px);
  transform: translateX(-40px);
}
.block_apply .area_contents .list_applyInfo {
  padding: .5em 0 0;
}
.list_applyInfo > li {
  display: flex;
  font-size: 112.5%;
  line-height: 1.6667;
}
.list_applyInfo > li .info_titleBox {
  width: 25%;
}
.list_applyInfo > li .info_titleBox .info_title {
  font-weight: 500;
}
.list_applyInfo > li .info_textBox {
  width: 75%;
}
.list_applyInfo > li + li {
  margin: 1.65em 0 0;
}
.list_applyInfo > li .info_textBox p + p {
  margin: 1em 0 0;
}
.block_apply .area_contents .applySet .section_leadText {
  margin: 0 0 2em;
  font-size: 112.5%;
}
.table_apply {
  width: 100%;
  border-collapse: separate;
  border-spacing: .5em .5em;
}
.table_apply + .table_apply {
  margin: 2em 0 0;
}
.table_apply caption {
  text-align: center;
  font-size: 125%;
  color: #fff;
  font-weight: 700;
  background: #7DBEB7;
  padding: .9em 0;
  margin: 0 .4em;
}
.table_apply th {
  text-align: center;
  font-size: 125%;
  font-weight: 700;
  background: #C3E5E1;
  padding: .6em 0;
}
.table_apply td {
  text-align: center;
  font-size: 125%;
  font-weight: 500;
  background: #E1F2F0;
  padding: .6em 0;
}
.block_apply .area_contents #new--entry {
  padding: 4em 0 0;
  margin: -4em 0 0;
}
.block_apply .area_contents .applySet .att_text {
  text-align: right;
  font-size: 112.5%;
  font-weight: 500;
  margin: .5em 0 0;
}
.block_apply .area_contents .applySet .entryBox {
  border-radius: 6em;
  width: min(96%, 1025px);
  margin: 2.2em auto 0;
  background: url(../img/apply/entry_bg.webp);
  padding: 2.9em 0 5em;
}
.block_apply .area_contents .applySet .entryBox .entry_title {
  text-align: center;
  color: #fff;
  font-size: 312.5%;
  font-weight: 600;
  letter-spacing: .4em;
  padding: 0 0 1.92em;
  position: relative;
}
.block_apply .area_contents .applySet .entryBox .entry_title::before {
  content: '';
  width: 1em;
  height: 1.65em;
  background: url(../img/apply/entry_scroll.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: .34em;
  top: 1em;
  margin: auto;
}
.block_apply .area_contents .applySet .entryBox .entry_btn {
  width: 400px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 5em;
  box-shadow: .6em .6em 0 0 #006F98;
  transition: all .3s;
}
.block_apply .area_contents .applySet .entryBox .entry_btn:hover {
  box-shadow: .1em .1em 0 0 #006F98;
  transform: translateY(.5em);
}
.block_apply .area_contents .applySet .entryBox .entry_btn a {
  display: block;
  padding: 2em 0;
}
.block_apply .area_contents .applySet .entryBox .entry_btn a span.text {
  display: block;
  color: #008273;
  font-weight: 700;
  font-size: 187.5%;
}
.block_apply .area_contents .applySet .entryBox .entry_btn a span.btn--rikunav {
  display: block;
  width: 292px;
  margin: -.9em auto;
}
.block_apply .area_contents .applySet .entryBox .entry_lead {
  font-size: 162.5%;
  font-weight: 700;
  text-align: center;
  margin: 2.7em 0 1.4em;
}
.block_apply .area_contents .applySet .entryBox .entry_leadAtt {
  text-align: center;
  font-size: 137.5%;
  font-weight: 700;
  line-height: 1.6;
  margin: 2.7em 0 2.2em;
}
.block_apply .area_contents .applySet .entryBox .entry_leadRikunav {
  font-size: 150%;
  font-weight: 700;
  text-align: center;
  margin: 2em 0 0;
}
.block_apply .area_contents .applySet .entryBox .entry_text {
  text-align: center;
  font-size: 112.5%;
}
.dl_entry {
  overflow: hidden;
  width: min(90%, 800px);
  margin: auto;
}
.dl_entry dt {
  text-align: center;
  font-size: 137.5%;
  font-weight: 700;
  margin: 0 auto 1.5em;
}
.dl_entry dt span {
  display: inline-block;
  position: relative;
}
.dl_entry dt span::before {
  content: '';
  width: calc(500%);
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  margin: auto;
}
.dl_entry dt span::after {
  content: '';
  width: calc(500%);
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  margin: auto;
}
.list_disc > li {
  position: relative;
  padding: 0 0 0 .6em;
  font-size: 125%;
}
.list_disc > li::before {
  content: '';
  width: .2em;
  height: .2em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list_discSmall > li {
  position: relative;
  padding: 0 0 0 .6em;
}
.list_discSmall > li::before {
  content: '';
  width: .2em;
  height: .2em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .8em;
  margin: auto;
}
.dl_entry .list_disc {
  display: flex;
  justify-content: center;
  gap: 0 2.3em;
}
.dl_entry + .dl_entry {
  margin: 3em auto 0;
}
.dl_entry .flexBox {
  display: flex;
  justify-content: space-between;
}
.dl_entry .flexBox .box {
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.5;
}
.block_apply .area_contents .parts_contact {
  border: none;
  margin: 7em auto 0;
  padding: 2em 3em;
}
.block_apply .area_contents .parts_contact .contact_desc {
  margin: .8em 0 0;
}
.block_apply .area_contents .parts_contact .title_base .en {
  color: #004497;
}
.block_apply .area_contents .parts_contact .list_contactLinks .link_name::before {
  background: #003986;
}