@charset "UTF-8";
/*******************************
module
*******************************/
::selection {
  background: var(--gray06);
}
::-moz-selection {
  background: var(--gray06);
}
body {
  color: #fff;
  font-family: var(--fontplus-TsukushiM);
  background-color: #000;
}
/*******************************
main
*******************************/
#wrapper {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
#main {
  width: 100%;
  margin: 0 auto 0;
}
/*******************************
container
*******************************/
.l-container {
  width: min(84.444444%, 1216px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-container {
    width: 90%;
  }
}
@media (max-width: 479.98px) {
  .l-container {
    width: 87.2%;
  }
  .l-container.-spnone {
    width: 100%;
  }
}
/*******************************
utility
*******************************/
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
.txt-center {
  text-align: center;
}
.googlemap iframe {
  vertical-align: bottom;
}
@media (max-width: 575.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
/**************************
  TOP_ani
  ***************************/
#loading_ani {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #000;
  transform: scale(1, 1) translateY(0);
  transform-origin: top center;
  opacity: 1;
  z-index: 88888;
  animation: bgAnime 1s ease-in-out forwards;
}
/*keyframe*/
@keyframes bgAnime {
  0% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1, 0) translateY(-340px);
  }
}
/*******************************
video-background
*******************************/
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-background_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: -1;
  transition: 0.2s var(--cubic-bezier-header);
}
.video-background_layer.on {
  opacity: 0.86;
}
/*******************************
header
*******************************/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  transition: 0.46s var(--cubic-bezier-header);
}
.header_inner {
  width: 100%;
  height: 84px;
  padding-right: clamp(1.25rem, (1vw * 40 / 1440 * 100), 2.5rem);
  padding-left: clamp(1.25rem, (1vw * 40 / 1440 * 100), 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.on,
.header.-subpage {
  position: fixed;
  top: 12px;
}
.header.on .header_inner,
.header.-subpage .header_inner {
  height: 40px;
}
.header .header-sitelogo {
  flex-grow: 10;
  display: flex;
  align-items: center;
  transition: 0.4s all linear;
}
.header .header-sitelogo a {
  display: none;
}
.header.-subpage .header-sitelogo a {
  display: block;
}
.header.on .header-sitelogo a {
  display: block;
}
.header .header-sitelogo a img {
  margin: auto;
  width: 160px;
  height: 18px;
}
.header-gnavi {
  flex-grow: 1;
}
.header-gnavi_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/* // gnavi_item */
.gnavi_item {
  margin: 0 0 0 1.5rem;
}
.gnavi_item:first-of-type {
  margin: 0 0 0 0;
}
.gnavi_item a {
  display: inline-block;
  padding: 5px 0 0;
  color: #fff;
  font-size: calc(18 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  letter-spacing: 0.02em;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (hover: hover) {
  .gnavi_item a:hover {
    color: var(--text-gray3);
  }
}
/* .gnavi_item.--footer a {
  padding: 0 8px 4px;
} */
/* haeader-btn */
.haeader-btn {
  flex-grow: 0;
  mix-blend-mode: normal;
}
.haeader-btn a {
  position: relative;
  margin: 0 0 0 3rem;
  color: #000;
  display: inline-block;
  width: 124px;
  height: 40px;
  line-height: 40px;
  font-size: calc(16 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  background-color: #fff;
  transition: 0.4s ease;
}
@media (hover: hover) {
  .haeader-btn a:hover {
    background: #999;
  }
}
@media (hover: none) {
  .haeader-btn a:active {
    background: #999;
  }
}
.header-togglebtn {
  z-index: 9999;
}
@media (min-width: 769px) {
  .header-togglebtn {
    display: none;
  }
}
/* //----------------------------- */
/* // body .drawer-menu {
//   display: none;
// } */
body .drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: -1;
}
.drawer-menu_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  transform: scale(1, 0.5) translateY(0);
  transform-origin: bottom center;
  opacity: 0;
}
.is-active .drawer-menu_layer {
  animation: layerAnime1 0.3s ease-in-out forwards;
}
@keyframes layerAnime1 {
  0% {
    transform: scale(1, 0) translateY(0);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1) translateY(0);
    opacity: 1;
  }
}
.drawer-menu_togglebtn {
  position: fixed;
  top: 1.5rem;
  right: 6.4%;
  opacity: 0;
  transition: 0.4s 0.2s opacity ease-in-out;
}
.is-active .drawer-menu_togglebtn {
  opacity: 1;
}
.drawer-sitelogo {
  position: fixed;
  top: 1.5rem;
  left: 6.4%;
  opacity: 0;
  transition: 0.4s 0.2s opacity ease-in-out;
}
.is-active .drawer-sitelogo {
  opacity: 1;
}
.drawer-sitelogo a {
  display: inline-block;
}
.drawer-sitelogo a img {
  width: 130px;
  height: 16px;
}
.drawer-menu_inner {
  padding: 6rem 6.4% 2rem;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  transition: 0.4s 0.35s opacity ease-in-out;
}
.is-active .drawer-menu_inner {
  opacity: 1;
}
.drawer-menu_inner::-webkit-scrollbar {
  position: relative;
  width: 6px;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
}
.drawer-menu_inner::-webkit-scrollbar-track {
  background: var(--gray06);
}
.drawer-menu_inner::-webkit-scrollbar-thumb {
  background: var(--gray04);
}
.drawer-menu_box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.toggle-gnavi_list {
  /* flex-grow: 1; */
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.toggle-gnavi_item {
  margin-bottom: 0.625rem;
}
.toggle-gnavi_item a {
  display: inline-block;
  color: #fff;
  font-size: calc(26 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.toggle-btn {
  padding-top: 3rem;
  padding-bottom: 5rem;
  /* flex-grow: 1; */
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.toggle-btn a {
  display: block;
  color: #000;
  font-size: calc(26 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  line-height: 64px;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 4px;
}
/* ------------------------- */
@media (max-width: 768px) {
  /* header */
  .header .header_inner {
    height: 60px;
    background-color: transparent;
  }
  .header .header-sitelogo a img {
    width: 130px;
    height: 16px;
  }
  .header-navi {
    display: none;
  }
  .haeader-btn {
    display: none;
  }
}
/*******************************
togglebutton
*******************************/
.togglebutton {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow: 0 0 2rem transparent;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2000;
}
.togglebutton:hover,
.togglebutton:focus {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
}
.togglebutton-area {
  margin: auto;
  position: relative;
  width: 40px;
  height: 16px;
}
.togglebutton-area_bar {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.togglebutton-area_bar:nth-of-type(1) {
  top: 0;
}
.togglebutton-area_bar:nth-of-type(2) {
  top: 50%;
}
.togglebutton-area_bar:nth-of-type(3) {
  top: 100%;
}
.togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(2) {
  left: 5px;
  background-color: transparent;
}
.togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(1),
.togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(3) {
  top: 50%;
  background-color: #fff;
}
.togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(1) {
  transform: rotate(20deg);
}
.togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(3) {
  transform: rotate(-20deg);
}
/* .drawer-menu_togglebtn {
  .togglebutton {
    background-color: transparent;
    border: 1px solid var(--gray06);
  }
  .togglebutton-area_bar {
    background-color: var(--gray06);
  }
  .togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(1),
  .togglebutton[aria-expanded="true"] .togglebutton-area_bar:nth-of-type(3) {
    background-color: var(--gray06);
  }
} */
.visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* is-active
----------------------------------*/
/*body.fixed*/
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
/*drawer-menu.active*/
body .drawer-menu.is-active {
  opacity: 1;
  z-index: var(--z-index-drawer);
}

/*******************************
scrollto
*******************************/
.scrollto-wrap a {
  position: absolute;
  right: clamp(1rem, (1vw * 35 / 1440 * 100), 2.1875rem);
  top: 50%;
  color: var(--gray03);
  font-size: calc(14 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-decoration: none;
  transform: translateY(-46%);
  writing-mode: vertical-rl;
}
.scrollto-arrow {
  margin-top: 1.25rem;
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 1px solid #888888;
  border-radius: 100%;
  opacity: 0.42;
}
.scrollto-arrow::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-arrow_scroll.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  .scrollto-wrap {
    display: none;
  }
}
/*******************************
footer
*******************************/
#footer {
  padding-top: clamp(3.25rem, (1vw * 80 / 1440 * 100), 5rem);
  padding-left: 1.5rem;
  padding-bottom: clamp(4.5rem, (1vw * 80 / 1440 * 100), 5rem);
  padding-right: 1.5rem;
  overflow: hidden;
}
/* #footer.-business {
  margin-top: -20rem;
} */
.footer-inner {
  margin: 0 auto;
  width: 87.2%;
  /* max-width: 1216px; */
  display: flex;
  flex-wrap: wrap;
}
/* footer-address */
.footer-address {
  flex-grow: 0;
  padding-left: 3.25rem;
}
.footer-heading {
  padding-bottom: 1rem;
  display: block;
  font-size: calc(22 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  line-height: 1;
  letter-spacing: 0.02em;
}
.footer-addresscopy {
  display: block;
  max-width: 248px;
  color: var(--text-gray3);
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: justify;
}
.footer-addresscopy.-en {
  margin-top: 0.75rem;
}
/* footer-linkarea */
.footer-linkarea {
  flex-grow: 0;
  display: flex;
  justify-content: flex-end;
}
.footernav-list_item a {
  margin-bottom: 1rem;
  padding-right: 3.75rem;
  display: inline-block;
  color: #fff;
  font-size: calc(24 / 16 * 1rem);
  font-family: var(--googlefont-Instrument);
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (hover: hover) {
  .footernav-list_item a:hover {
    color: var(--text-gray3);
  }
}
.footer-sns {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.sns-list {
  display: flex;
  justify-content: center;
  gap: 0 1.25rem;
}
.sns-list.-cta {
  margin-top: clamp(1.5rem, (1vw * 32 / 1440 * 100), 2rem);
}
.sns-list.-toggle {
  margin-top: 2.75rem;
  flex-grow: 0;
  justify-content: flex-start;
}
.sns-list_item {
  width: 46px;
  height: 46px;
}
.sns-list_item a {
  display: inline-block;
  transition: 0.25s ease-in-out;
}
@media (hover: hover) {
  .sns-list_item a:hover {
    opacity: 0.6;
  }
}
.footer-copyright {
  margin-top: auto;
  color: var(--text-gray3);
  font-size: calc(10 / 16 * 1rem);
  letter-spacing: 0.02em;
  text-align: right;
}
/* footer-logo */
.footer-logo {
  margin-top: clamp(2.5rem, (1vw * 68 / 1440 * 100), 4.25rem);
  display: flex;
  overflow: hidden;
}
.footer-logo_item {
  flex: 1 1 auto;
  overflow: hidden;
}
.footer-logo_item img {
  width: 100%;
  height: auto;
  transform: translateY(-110%);
}
.footer-logo_item.character img {
  transition: 0.6s 0.2s ease-in-out;
}
.footer-logo_item.character2 img {
  transition: 0.6s 0.3s ease-in-out;
}
.footer-logo_item.character3 img {
  transition: 0.6s 0.4s ease-in-out;
}
.footer-logo_item.character4 img {
  transition: 0.6s 0.5s ease-in-out;
}
.footer-logo_item.character5 img {
  transition: 0.6s 0.6s ease-in-out;
}
.footer-logo_item.character6 img {
  transition: 0.6s 0.7s ease-in-out;
}
.footer-logo.on .footer-logo_item img {
  transform: translateY(0);
}
/* ---------------------------- */
@media (max-width: 1023.98px) {
  .footer-sns {
    margin-top: 3.5rem;
    width: 100%;
  }
  .footer-copyright {
    margin-top: 2.75rem;
  }
}
@media (max-width: 768px) {
  #footer {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-inner {
    display: block;
  }
  .footer-linkarea {
    justify-content: flex-start;
  }
  .footer-address {
    margin-top: 2.5rem;
    padding-left: 0;
  }
  .footer-heading {
    padding-bottom: 0.75rem;
  }
  .footer-addresscopy {
    max-width: none;
  }
  .footer-addresscopy.-en {
    margin-top: 0.5rem;
  }
  .footer-sns {
    align-items: center;
  }
  .footer-logo img {
    transition: 0.4s 0.05s ease-in-out;
  }
}
/*******************************
scroll_up
*******************************/
/* .scroll_up {
  -webkit-transition: -webkit-transform all 0.6s;
  transition: all 0.6s;
  -webkit-transform: translate3d(0, 40px, 0);
  -ms-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  opacity: 0;
  perspective: 1000;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scroll_up.on {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* blur */
/* .scroll_up_blur {
  -webkit-transition: -webkit-transform all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translate3d(0, 30px, 0);
  -ms-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  filter: blur(4px);
  opacity: 0;
  perspective: 1000;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scroll_up_blur.on {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .timing02 {
    transition-delay: 0.3s;
  }
  .timing03 {
    transition-delay: 0.6s;
  }
} */
/*******************************
c-btn
*******************************/
/* c-btn_more */
.c-btn_more a {
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 238px;
  height: 56px;
  color: #000;
  text-align: left;
  text-decoration: none;
  border-radius: 6px;
  background-color: #fff;
}
.c-btn_more a .ja {
  font-size: calc(15 / 16 * 1rem);
  letter-spacing: 0.05em;
}
.c-btn_more a .ja.-who {
  letter-spacing: 0;
}
.c-btn_more a .arrow {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 1px solid var(--gray02);
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.c-btn_more a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  transition: 0.25s ease-in-out;
}
.c-btn_more a .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  opacity: 0;
  transition: 0.25s 0.1s ease-in-out;
}
/* whoweare */
.c-btn_more.-whoweare {
  margin-top: 2.5rem;
}
.c-btn_more.-whoweare a {
  font-size: calc(14 / 16 * 1rem);
}
/* business */
.c-btn_more.-business {
  margin-top: clamp(2rem, (1vw * 64 / 1440 * 100), 4rem);
}
/* thank */
.c-btn_more.-thank {
  margin-top: clamp(3rem, (1vw * 72 / 1440 * 100), 4.5rem);
}
.c-btn_more.-thank a {
  margin-right: auto;
  margin-left: auto;
}
/* news */
.c-btn_more.-news {
  margin-top: clamp(2rem, (1vw * 40 / 1440 * 100), 2.5rem);
}
.c-btn_more.-news a {
  margin: 0 0 auto auto;
}
/* recruit */
.c-btn_more.-recruit {
  margin-top: clamp(2.25rem, (1vw * 60 / 1440 * 100), 3.75rem);
}
/* cta */
.c-btn_more.-cta {
  margin-top: clamp(0.75rem, (1vw * 32 / 1440 * 100), 2rem);
}
.c-btn_more.-cta a {
  margin: 0 auto;
}
/* c-arrow  */
.c-arrow {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 1px solid var(--gray02);
  overflow: hidden;
}
.c-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  transition: 0.25s ease-in-out;
}
.c-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  opacity: 0;
  transition: 0.25s ease-in-out;
}
.c-arrow.-white::before {
  background-image: url(../images/icon-arrow-w.svg);
}
.c-arrow.-white::after {
  background-image: url(../images/icon-arrow-w.svg);
}
@media (hover: hover) {
  .c-btn_more a:hover .arrow {
    border: 1px solid var(--gray03);
  }
  .c-btn_more a:hover .arrow::before {
    left: 70%;
    opacity: 0;
  }
  .c-btn_more a:hover .arrow::after {
    left: 0;
    opacity: 1;
  }
  a:hover .c-arrow::before {
    left: 70%;
    opacity: 0;
  }
  a:hover .c-arrow::after {
    left: 0;
    opacity: 1;
  }
}
/* ---------------------------------- */
@media (max-width: 768px) {
  .c-arrow {
    width: 48px;
    height: 48px;
  }
  .c-btn_more.-news a {
    margin: 0 auto auto 0;
  }
}
/*******************************
animation keyframes
*******************************/
.fadeinitem {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.1s ease-in-out;
}
.fadeinitem2 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.25s ease-in-out;
}
.fadeinitem3 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.4s ease-in-out;
}
.fadeinitem4 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.55s ease-in-out;
}
.fadeinitem5 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.7s ease-in-out;
}
.fadeinitem6 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.8s 0.85s ease-in-out;
}
/* pagefadeitem */
.pagefadeitem {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.6s ease-in-out;
}
.pagefadeitem2 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.6s 0.25s ease-in-out;
}
.pagefadeitem3 {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  transition: 0.6s 0.4s ease-in-out;
}
.fadeinitem.on,
.fadeinitem2.on,
.fadeinitem3.on,
.fadeinitem4.on,
.fadeinitem5.on,
.fadeinitem6.on,
.pagefadeitem.on,
.pagefadeitem2.on,
.pagefadeitem3.on {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@keyframes fadeinAnime {
  0% {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  }
  1% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
/* fadedownitem */
.fadedownitem {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
}
.fadedownitem.on {
  animation: fadeinAnime 0.6s 0.6s linear forwards;
}
.fadedownitem_topfv {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
}
.fadedownitem_topfv.on {
  animation: fadeinAnime 0.35s 0.6s linear forwards;
}
/* pagefv -------------------- */
@keyframes pagefvitem {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pagefvitem {
  opacity: 0;
  animation: pagefvitem 0.6s 1.9s linear forwards;
}
.pagefvcontents {
  opacity: 0;
  animation: pagefvitem 0.6s 0.25s linear forwards;
}

/* pagemvAnime */
@keyframes pagemvAnime {
  0% {
    opacity: 0;
    filter: blur(6px) grayscale(1000%);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    filter: blur(0) grayscale(0);
    transform: scale(1);
  }
}
.fadein-scaleimg img,
.fadein-scaleimg2 img,
.fadein-scaleimg3 img {
  opacity: 0;
  filter: blur(6px) grayscale(1000%);
  transform: scale(1.04);
}
.fadein-scaleimg.on img {
  animation: pagemvAnime 1s ease-in-out forwards;
}
.fadein-scaleimg2.on img {
  animation: pagemvAnime 1s 0.25s ease-in-out forwards;
}
.fadein-scaleimg3.on img {
  animation: pagemvAnime 1s 0.4s ease-in-out forwards;
}
/*keyframe*/
@keyframes grayscaleAnime {
  0% {
    filter: grayscale(1000%);
  }
  100% {
    filter: grayscale(0%);
  }
}
/*******************************
section-title
*******************************/
.section-name {
  font-size: clamp(
    calc(14 / 16 * 1rem),
    calc(16 / 1440 * 100vw),
    calc(16 / 16 * 1rem)
  );
  font-family: var(--googlefont-Instrument);
  line-height: 1;
  text-transform: uppercase;
}
.section-name.-people {
  font-size: calc(14 / 16 * 1rem);
}
/*******************************
section-contents
*******************************/
/*people
-------------------------------*/
section.home-people {
  padding-top: clamp(4rem, (1vw * 72 / 1440 * 100), 4.5rem);
  padding-bottom: clamp(4rem, (1vw * 80 / 1440 * 100), 5rem);
}
.people-heading {
  display: flex;
  align-items: flex-end;
}
.people-titlearea {
  padding-right: 148px;
}
.people-title {
  margin-top: 2.5rem;
  font-size: clamp(
    calc(69 / 16 * 1rem),
    calc(80 / 1440 * 100vw),
    calc(80 / 16 * 1rem)
  );
  line-height: 1;
  font-family: var(--googlefont-Instrument);
  overflow: hidden;
}
.people-title span {
  display: inline-block;
  /* transform: translateY(100%);
  opacity: 0;
  transition: 0.4s 0.2s ease-in-out; */
}
/* .people-title.on span {
  transform: translateY(0);
  opacity: 1;
} */
.people-copy {
  margin-top: auto;
  padding-bottom: 5px;
  font-size: clamp(
    calc(14 / 16 * 1rem),
    calc(20 / 1440 * 100vw),
    calc(20 / 16 * 1rem)
  );
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
/* peoplepost-list */
.peoplepost-list {
  margin-top: clamp(1.675rem, (1vw * 50 / 1440 * 100), 3.125rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.peoplepost-list_item {
  flex: 0 1 30%;
}
.peoplepost-list_item a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.peoplepost-wrap picture {
  position: relative;
  aspect-ratio: 0.778;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  filter: grayscale(1000%);
  clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%);
}
.peoplepost-list_item:nth-child(1) .peoplepost-wrap picture {
  transition: 0.45s 0.1s ease-in-out;
}
.peoplepost-list_item:nth-child(2) .peoplepost-wrap picture {
  transition: 0.45s 0.25s ease-in-out;
}
.peoplepost-list_item:nth-child(3) .peoplepost-wrap picture {
  transition: 0.45s 0.4s ease-in-out;
}
.peoplepost-wrap.on picture {
  animation: grayscaleAnime 0.6s 0.5s ease-in-out forwards;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.peoplepost-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
@media (hover: hover) {
  a:hover .peoplepost-wrap picture img {
    transform: scale(1.0875);
  }
}
.peoplepost-textarea {
  margin-top: 1.25rem;
  padding: 0 8px;
}
.peoplepost-title {
  font-size: clamp(
    calc(18 / 16 * 1rem),
    calc(24 / 1440 * 100vw),
    calc(24 / 16 * 1rem)
  );
  font-family: var(--fontplus-TsukushiB);
  line-height: 1.4;
  font-feature-settings: "palt";
}
.peoplepost-profile {
  margin-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  /* color: var(--text-gray); */
  font-feature-settings: "palt";
}
.peoplepost-profile .name {
  font-size: clamp(
    calc(14 / 16 * 1rem),
    calc(18 / 1440 * 100vw),
    calc(18 / 16 * 1rem)
  );
}
.peoplepost-profile .career {
  margin-left: 1rem;
  font-size: clamp(
    calc(11 / 16 * 1rem),
    calc(13 / 1440 * 100vw),
    calc(13 / 16 * 1rem)
  );
}
.peoplepost-textarea .c-arrow {
  margin-top: 0.75rem;
  opacity: 0.6;
}
@media (max-width: 991.98px) {
  .people-heading {
    padding: 0 6.4%;
    display: block;
  }
  .people-titlearea {
    padding-right: 0;
  }
  .people-copy {
    margin-top: 1rem;
    letter-spacing: 0.03em;
  }
  /* peoplepost-list */
  .peoplepost-list {
    padding: 0 8px;
    display: block;
    /* gap: 2rem 0; */
  }
  .peoplepost-list_item + .peoplepost-list_item {
    margin-top: 2rem;
  }
  .peoplepost-wrap picture {
    aspect-ratio: 1.502;
    border-radius: 6px;
  }
  /* .peoplepost-wrap picture::after {
    transition: 0.45s 0.1s ease-in-out;
  } */
  .peoplepost-textarea {
    margin-top: 1.5rem;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    grid-column-gap: 20px;
    grid-template-areas:
      "peoplepost1 peoplepost3"
      "peoplepost2 peoplepost2";
  }
  .peoplepost-title {
    grid-area: peoplepost1;
  }
  .peoplepost-profile {
    grid-area: peoplepost2;
    margin-top: 0.5rem;
    color: var(--text-gray);
    padding-bottom: 0;
  }
  .peoplepost-textarea .c-arrow {
    grid-area: peoplepost3;
  }
}
/*news
-------------------------------*/
section.home-news {
  padding-top: clamp(2.5rem, (1vw * 64 / 1440 * 100), 4rem);
  padding-bottom: clamp(4rem, (1vw * 120 / 1440 * 100), 10rem);
}
/* .news-wrap */
.news-wrap {
  display: grid;
  grid-template-columns: 34% 66%;
}
.news-postarea {
  padding-top: 10px;
}
.news-section-title {
  padding-bottom: 4px;
  margin-top: 1.75rem;
  font-size: clamp(
    calc(34 / 16 * 1rem),
    calc(36 / 1440 * 100vw),
    calc(36 / 16 * 1rem)
  );
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: var(--fontplus-TsukushiB);
  overflow: hidden;
  font-feature-settings: "palt";
}
.news-section-title span {
  display: inline-block;
  /* transform: translateY(100%); */
  /* opacity: 0;
  transition: 0.4s 0.25s ease-in-out; */
}
/* .news-section-title.on span {
  transform: translateY(0);
  opacity: 1;
} */
.news-section-copy {
  margin-top: 1.25rem;
  font-size: clamp(
    calc(14 / 16 * 1rem),
    calc(15 / 1440 * 100vw),
    calc(15 / 16 * 1rem)
  );
  line-height: 1.8;
  letter-spacing: 0.05em;
}
/* .newspost-list_item */
.newspost-list_item a {
  padding: 24px 0 24px 17px;
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--gray06);
  transition: 0.25s ease-in-out;
}
@media (hover: hover) {
  .newspost-list_item a:hover {
    border-bottom: 1px solid var(--gray03);
  }
}
/* newspost-wrap */
.newspost-wrap {
  display: flex;
  font-feature-settings: "palt";
}
a .newspost-wrap .day {
  flex-shrink: 0;
  margin-right: 1rem;
  font-size: calc(14 / 16 * 1rem);
  line-height: 26px;
  letter-spacing: 0.03em;
}
.newspost-wrap .category {
  flex-shrink: 0;
  margin-right: 1.75rem;
  width: 113px;
  height: 28px;
  font-size: calc(12 / 16 * 1rem);
  font-family: var(--fontplus-TsukushiB);
  line-height: 25px;
  text-align: center;
  border-radius: 2.5rem;
  border: 1px solid #fff;
}
.newspost-titlearea {
  max-width: 450px;
}
.newspost-title {
  font-size: clamp(
    calc(16 / 16 * 1rem),
    calc(18 / 1440 * 100vw),
    calc(18 / 16 * 1rem)
  );
  font-family: var(--fontplus-TsukushiB);
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-feature-settings: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newspost-copy {
  margin-top: 0.5rem;
  color: var(--text-gray2);
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newspost-wrap .arrow {
  margin: 0 0 0 auto;
  display: flex;
  position: relative;
  width: 74px;
}
.newspost-wrap .arrow::before {
  content: "";
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #d9d9d9;
  transition: 0.25s ease-in-out;
}
.newspost-wrap .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 28px;
  height: 28px;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% 40%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: 0.18s 0.03s ease-in-out;
}
@media (hover: hover) {
  a:hover .newspost-wrap .arrow::before {
    width: 28px;
    height: 28px;
  }
  a:hover .newspost-wrap .arrow::after {
    left: 50%;
    opacity: 1;
  }
}
/* ------------------ */
@media (max-width: 991.98px) {
  /* .news-wrap */
  .news-wrap {
    display: block;
  }
  .news-section-title {
    margin-top: 2.375rem;
    letter-spacing: 0.05em;
  }
  .news-section-copy {
    letter-spacing: 0.03em;
  }
  /* .newspost-list_item */
  .newspost-list {
    margin-top: 1rem;
  }
  .newspost-list_item a {
    padding: 26px 0 32px 0;
  }
  /* newspost-wrap */
  .newspost-wrap {
    display: block;
  }
  a .newspost-wrap .day {
    margin-right: 1rem;
    font-size: calc(12 / 16 * 1rem);
    line-height: 24px;
  }
  .newspost-wrap .category {
    margin-right: 0;
    display: inline-block;
    width: 98px;
    height: 24px;
    font-size: calc(11 / 16 * 1rem);
    line-height: 22px;
  }
  .newspost-titlearea {
    max-width: none;
  }
  .newspost-title {
    margin-top: 1.5rem;
    line-height: 1.4;
  }
  .newspost-copy {
    margin-top: 0.25rem;
  }
  .newspost-wrap .arrow {
    display: none;
  }
}
