@charset "utf-8";


/* --------------- header --------------- */
.header__wrap{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 1em;
}
.top-header .header__wrap{
  opacity: 0;
}
.header__wrap::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 150%;
  background: linear-gradient(rgb(67, 93, 87, 0), rgb(67, 93, 87, 0) 60%,  rgb(67, 93, 87, 0));
  pointer-events: none;
  transition: background 0.15s linear;
}
.white-active .header__wrap::after{
  background: linear-gradient(rgb(67, 93, 87, 0.2), rgb(67, 93, 87, 0.08) 60%,  rgb(67, 93, 87, 0));
}
.drawer-show .white-active .header__wrap::after{
  background: linear-gradient(rgb(67, 93, 87, 0), rgb(67, 93, 87, 0) 60%,  rgb(67, 93, 87, 0));
}
.header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo{
  width: 16em;
}
.header__logo-txt{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.header__nav-list{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0.4em;
}
.header__nav-list>li{
  opacity: 0;
}
.header__nav-list>li:not(:last-child){
  margin-right: 2em;
}
.header__nav-list>li>a{
  position: relative;
  display: block;
  padding: 0.4em 0;
  transition: color 0.15s linear;
}
.white-active .header__nav-list>li>a{
  color: #fff;
}
.header__nav-list>li>a::after{
  content: "";
  position: absolute;
  bottom: 0.3em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(56, 53, 51, 0.5);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s cubic-bezier(.15,1,.2,1);
}
.white-active .header__nav-list>li>a::after{
  background-color: rgb(255, 255, 255, 0.7);
}
.header__nav-list>li>a:active::after,
.header__nav-list>li>a:hover::after{
  transform: scale(1, 1);
  transform-origin: left top;
}
.drawer-btn{
  display: none;
}
@media (max-width: 1023px){
  .header__nav{
    display: none;
  }
  .drawer-btn{
    position: relative;
    display: block;
    width: 2.8572em;
    height: 2.8572em;
  }
  .top-header .drawer-btn{
    opacity: 0;
  }
  .lower-header .drawer-btn{
    opacity: 0;
  }
  .drawer-btn__bar{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 45%;
    height: 1.5px;
    background-color: rgb(56, 53, 51, 0.7);
    transition: background-color 0.15s linear, transform 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out, width 0.2s ease-out;
  }
  .white-active .drawer-btn__bar{
    background-color: #fff;
  }
  .drawer-show .white-active .drawer-btn__bar{
    background-color: rgb(56, 53, 51, 0.7);
  }
  .drawer-btn__bar:nth-child(1){
    top: 40%;
    left: 42%;
  }
  .drawer-btn__bar:nth-child(2){
    top: 60%;
    left: 58%;
  }
  .drawer-show .drawer-btn__bar:nth-child(1){
    width: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(30deg);
  }
  .drawer-show .drawer-btn__bar:nth-child(2){
    width: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-30deg);
  }
}
@media (max-width: 767px){
  .header__wrap{
    padding-top: 1em;
  }
  .header__logo{
    width: 12em;
  }
}

/* ---- drawer ---- */
.drawer-menu{
  display: none;
}
@media (max-width: 1023px){
  .drawer-menu{
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s linear;
    overflow-y: scroll;
    /* スクロールバー非表示 */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /*Google Chrome、Safariスクロールバー非表示*/
  .drawer-menu::-webkit-scrollbar {
    display: none;
  }
  .drawer-show .drawer-menu{
    opacity: 1;
    pointer-events: inherit;
    transition: opacity 0.35s linear;
  }
  .drawer-menu__inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
  }
  .drawer-menu__nav{
    padding-top: 5em;
  }
  .drawer-menu__nav>ul>li{
    width: fit-content;
    opacity: 0;
    transition: opacity 0.35s linear;
  }
  .drawer-menu__nav>ul>li+li{
    margin-top: 1em;
  }
  .drawer-show .drawer-menu__nav>ul>li{
    opacity: 1;
    transition: opacity 0.25s 0.12s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(2){
    transition: opacity 0.26s 0.15s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(3){
    transition: opacity 0.27s 0.18s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(4){
    transition: opacity 0.28s 0.21s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(5){
    transition: opacity 0.29s 0.24s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(6){
    transition: opacity 0.3s 0.27s linear;
  }
  .drawer-show .drawer-menu__nav>ul>li:nth-child(7){
    transition: opacity 0.31s 0.3s linear;
  }
  .drawer-menu__info{
    padding-bottom: 1.8em;
    color: rgb(56, 53, 51, 0.7);
    opacity: 0;
    transition: opacity 0.35s linear;
  }
  .drawer-show .drawer-menu__info{
    opacity: 1;
    transition: opacity 0.35s 0.3s linear;
  }
  .drawer-menu__info::before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(56, 53, 51, 0.25);
    margin: 4em 0 2em;
  }
  .drawer-menu__info a{
    color: rgb(56, 53, 51, 0.7);
  }
  .drawer-menu__copyright{
    color: rgb(56, 53, 51, 0.55);
  }
}
@media (max-width: 767px){
}


/* --------------- footer --------------- */
.footer__inner{
  display: flex;
  justify-content: space-between;
}
.footer__logo{
  width: 16em;
}
.footer__nav>ul{
  display: flex;
}
.footer__nav>ul>li:not(:last-child){
  margin-right: 1.5em;
}
.footer__nav>ul>li>a{
  position: relative;
}
.footer__nav>ul>li>a::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.7);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s cubic-bezier(.15,1,.2,1);
}
.footer__nav>ul>li>a:active::after,
.footer__nav>ul>li>a:hover::after{
  transform: scale(1, 1);
  transform-origin: left top;
}

.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.5em;
}
.footer__copyright{
  color: rgb(252, 250, 250, 0.9);
}
.footer__back-btn{
  width: 2.5em;
  opacity: 0.8;
  transition: transform 0.15s ease-out;
}
.footer__back-btn:active,
.footer__back-btn:hover{
  transform: scale(0.95);
}
@media (max-width: 1199px){
  .footer__nav{
    height: 100%;
  }
  .footer__nav>ul{
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .footer__nav>ul>li:not(:last-child){
    margin-right: 0;
  }
  .footer__nav>ul>li>a{
    display: block;
    width: fit-content;
    margin-left: auto;
  }
  .footer__bottom{
    margin-top: 4em;
  }
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .footer__inner{
    flex-direction: column;
  }
  .footer__logo{
    width: 12em;
  }
  .footer__right{
    margin-top: 2.2em;
  }
  .footer__nav>ul{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer__nav>ul>li{
    width: 45%;
  }
  .footer__nav>ul>li:nth-child(n+3){
    margin-top: 0.7em;
  }
  .footer__nav>ul>li>a{
    margin-left: 0;
    padding: 0.2em 0;
  }
  .footer__bottom{
    margin-top: 1.6em;
    padding-bottom: 0.5em;
  }
  .footer__back-btn{
    width: 2em;
  }
}




/* --------------- common --------------- */


.btn__more{
  padding: 0.8em 4em;
}
.btn__more02{
  display: inline-block;
  padding: 1em 0.5em;
  width:18em ;
}
.btn01-wrap{
  margin-top: 5em;
}
.btn01{
  display: flex;
  align-items: center;
  width: fit-content;
  transition: transform 0.15s ease-out;
}
.btn01:active,
.btn01:hover{
  transform: scale(0.97);
}
.btn01__circle{
  width: 3.2em;
  height: 3.95em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn01--white .btn01__circle{
  background-image: url(../image/common/btn_circle_white.svg);
}
.btn01--black .btn01__circle{
  background-image: url(../image/common/btn_circle_black.svg);
}
.btn01__txt{
  margin-left: -0.8em;
}
@media (max-width: 767px){
  .btn01__circle{
    width: 2.56em;
    height: 3.16em;
  }
}






/* --------------- top --------------- */

/* ---- fv ---- */
.top-fv{
  overflow: hidden;
}
.top-fv__bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.top-fv__bg-image{
  height: 100%;
  background-image: url(../image/top/fv_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(8px);
}
.top-fv__bg-dark{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(67, 93, 87, 0.15);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.message-active .top-fv__bg-dark{
  opacity: 1;
  transition: opacity 0.3s linear;
}
.top-fv__cont{
  height: 110vh;
}
.top-fv__copy{
  position: fixed;
  z-index: 2;
  top: 59%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.top-fv__copy-inner{
  width: clamp(168px, 6.131rem + 18.64vw, 456px);
}
.top-fv__message{
  position: fixed;
  z-index: 2;
  top: 59%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.top-fv__message .top-fv__message-ttl{
  opacity: 0;
  transition: opacity 0.2s linear;
}
.message-active .top-fv__message .top-fv__message-ttl{
  opacity: 1;
  transition: transform 1.8s cubic-bezier(.15,1,.2,1), opacity 0.3s 0.2s linear;
}
.top-fv__message .top-fv__message-txt{
  opacity: 0;
  transition: opacity 0.2s linear;
}
.message-active .top-fv__message .top-fv__message-txt{
  opacity: 1;
  transition: opacity 0.3s 0.1s linear;
}
.top-fv__message .btn01-wrap{
  opacity: 0;
  transition: opacity 0.2s linear;
}
.message-active .top-fv__message .btn01-wrap{
  opacity: 1;
  transition: opacity 0.3s linear;
}
.top-fv__message .top-fv__message-ttl>span{
  transition: opacity 0.3s 0s linear;
}
.top-fv__message.end .top-fv__message-ttl>span{
  opacity: 0;
  transition: opacity 0.3s 0.2s linear;
}
.top-fv__message .top-fv__message-txt>span{
  transition: opacity 0.3s 0s linear;
}
.top-fv__message.end .top-fv__message-txt>span{
  opacity: 0;
  transition: opacity 0.3s 0.1s linear;
}
.top-fv__message .btn01{
  transition: opacity 0.3s linear, transform 0.15s ease-out;
}
.top-fv__message.end .btn01{
  opacity: 0;
  transition: opacity 0.3s linear;
}
.top-fv__block{
  height: 250vh;
}
.top-fv #base path{
  fill:#fff;
}
.top-fv #mask path{
  fill:none;
  stroke:#fff;
  stroke-width:10px;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .top-fv__bg-image{
    background-image: url(../image/top/fv_sp.jpg);
  }
  .top-fv__cont{
    height: 100vh;
  }
  .top-fv__block{
    height: 240vh;
  }
  .top-fv__message{
    top: 52%;
  }
  .top-fv__message-txt{
    margin-top: 1em;
  }
  .top-fv__message .btn01-wrap{
    margin-top: 2em;
  }
}

/* ---- service ---- */
.top-service.active{
  opacity: 1;
}
.top-service__wrap{
  height: 400vh;
}
.top-service__inner{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../image/top/service_head_bg.svg);
  mask-image: url(../image/top/service_head_bg.svg);
  -webkit-mask-repeat: repeat no-repeat;
  mask-repeat: repeat no-repeat;
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  -webkit-mask-size: 100%;
  mask-size: auto 300%;
  pointer-events: none;
}
.top-service__inner.active{
  pointer-events: inherit;
}
.top-service__cont{
  height: 100%;
  align-items: center;
  -webkit-mask-image: url(../image/top/service_bottom_bg.svg);
  mask-image: url(../image/top/service_bottom_bg.svg);
  -webkit-mask-repeat: repeat no-repeat;
  mask-repeat: repeat no-repeat;
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  -webkit-mask-size: 100%;
  mask-size: auto 300%;
}
.top-service__left{
  padding-top: 12vh;
}
.top-service__left-cont{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6em 0;
  margin-bottom: 5vh;
}
.top-service__left-ttl{
  margin-right: 1.2em;
  transform: translateY(0.4em);
  opacity: 0;
  transition: transform 0.1s 0.21s cubic-bezier(.15,1,.2,1), opacity 0.2s linear;
}
.top-service__inner.active .top-service__left-ttl{
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s 0.13s cubic-bezier(.15,1,.2,1), opacity 0.4s 0.13s linear;
}
.top-service__left-txt{
  transform: translateY(0.4em);
  opacity: 0;
  transition: transform 0.1s 0.21s cubic-bezier(.15,1,.2,1), opacity 0.2s linear;
}
.top-service__inner.active .top-service__left-txt{
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s 0.22s cubic-bezier(.15,1,.2,1), opacity 0.4s 0.22s linear;
}
.top-service__left-image{
  position: relative;
  height: 55vh;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.top-service__inner.active .top-service__left-image{
  opacity: 1;
  transition: opacity 0.5s 0.1s linear;
}
.top-service__left-image>li{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-service__left-image img{
  height: 100%;
  object-fit: cover;
}
.top-service__left-image>li:nth-child(1) img{
  transform: scale(1.03);
  transition: transform 0.1s 0.2s linear;
}
.top-service__inner.active .top-service__left-image>li:nth-child(1) img{
  transform: scale(1);
  transition: transform 3s 0.1s cubic-bezier(.15,1,.2,1);
}
.top-service__left-image>li:nth-child(n+2) img{
  transform: scale(1.05);
  opacity: 0;
  transition: transform 0.1s 0.25s linear, opacity 0.25s linear;
}
.top-service__wrap.active02 .top-service__left-image>li:nth-child(2) img{
  transform: scale(1);
  opacity: 1;
  transition: transform 2s cubic-bezier(0,.68,.62,1), opacity 0.25s linear;
}
.top-service__wrap.active03 .top-service__left-image>li:nth-child(3) img{
  transform: scale(1);
  opacity: 1;
  transition: transform 2s cubic-bezier(0,.68,.62,1), opacity 0.25s linear;
}
.top-service__right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.top-service__right-copy{
  position: relative;
  font-size: min(2.1176em,3.8vh);
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
  margin-top: calc(2.8em + 3vh);
  transition: opacity 0.4s 0.24s linear;
}
.top-service__right-copy>li{
  transition: opacity 0.25s linear;
}
.top-service__right-copy>li:nth-child(1) .top-service__right-copy-inner{
  display: block;
  opacity: 0;
  transform: translateX(-0.16em);
  transition: transform 0.1s 0.21s cubic-bezier(.15,1,.2,1), opacity 0.2s linear;
}
.top-service__inner.active .top-service__right-copy>li:nth-child(1) .top-service__right-copy-inner:nth-child(1){
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s 0.24s cubic-bezier(.15,1,.2,1), opacity 0.4s 0.24s linear;
}
.top-service__inner.active .top-service__right-copy>li:nth-child(1) .top-service__right-copy-inner:nth-child(2){
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.5s 0.27s cubic-bezier(.15,1,.2,1), opacity 0.6s 0.27s linear;
}


.top-service__right-copy>li:nth-child(n+2){
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.top-service__wrap.active02 .top-service__right-copy>li:nth-child(1){
  opacity: 0;
}
.top-service__wrap.active02 .top-service__right-copy>li:nth-child(2){
  opacity: 1;
}
.top-service__wrap.active03 .top-service__right-copy>li:nth-child(2){
  opacity: 0;
}
.top-service__wrap.active03 .top-service__right-copy>li:nth-child(3){
  opacity: 1;
}
.top-service__right-copy-inner{
  display: block;
}
.top-service__right-btn-wrap{
  margin: 0 0 7vh;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.top-service__inner.active .top-service__right-btn-wrap{
  opacity: 1;
  transition: opacity 0.3s linear;
}
.top-service__bg{
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  transition: opacity 0.2s 0.2s linear;
}


.top-service__inner.active .top-service__cont.end .top-service__right-btn-wrap{
  opacity: 0;
  transition: opacity 0.3s linear;
}
.top-service__inner.active .top-service__cont.end .top-service__left-image{
  opacity: 0;
  transition: opacity 0.3s 0.04s linear;
}
.top-service__inner.active .top-service__cont.end .top-service__bg{
  opacity: 0;
  transition: opacity 0.3s 0.08s linear;
}
.top-service__inner.active .top-service__cont.end .top-service__left-ttl{
  opacity: 0;
  transition: opacity 0.3s 0.08s linear;
}
.top-service__inner.active .top-service__cont.end .top-service__left-txt{
  opacity: 0;
  transition: opacity 0.3s 0.12s linear;
}
.top-service__inner.active .top-service__cont.end .top-service__right-copy{
  opacity: 0;
  transition: opacity 0.3s 0.16s linear;
}
@media (max-width: 1023px){
  .top-service__left-image{
    height: 30vh;
  }
  .top-service__right-copy{
    font-size: 1.5714em;
  }
}
@media (max-width: 767px){
  .top-service__wrap{
    height: 340vh;
  }
  .top-service__cont{
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .top-service__left{
    flex: 1;
  }
  .top-service__left-cont{
    width: 95%;
    margin-left: auto;
    gap: 1em 0;
  }
  .top-service__left-txt{
    text-align: justify;
  }
  .top-service__left-image{
    height: min(47.5vw,50vh);
  }
  .top-service__right{
    width: max(6em,20%);
    margin: 0 0 0 5%;
  }
  .top-service__right-copy{
    font-size: min(1.5714em,5.2vh);
    letter-spacing: 0.3em;
    line-height: 1.6;
    margin-top: 12dvh;
  }
  .top-service__right-btn-wrap{
    margin: 0 0 5vh;
  }
}

/* ---- brand ---- */
.top-brand{
  padding-top: 30vh;
}
.top-brand__ttl-inner{
  opacity: 0;
  transition: transform 0.1s 0.36s cubic-bezier(.15,1,.2,1), opacity 0.25s 0.1s linear;
}
.top-brand.active .top-brand__ttl-inner{
  opacity: 1;
  transition: transform 1.2s cubic-bezier(.15,1,.2,1), opacity 0.4s linear;
}
.top-brand__list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: var(--gap-base);
  margin-top: 5em;
  opacity: 0;
  transition: transform 0.1s 0.26s cubic-bezier(.15,1,.2,1), opacity 0.25s linear;
}
.top-brand.active .top-brand__list{
  opacity: 1;
  transition: transform 1.2s 0.1s cubic-bezier(.15,1,.2,1), opacity 0.5s 0.1s linear;
}
.top-brand__list-image{
  aspect-ratio: 36/30;
}
.top-brand__list-image img{
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .top-brand{
    padding-top: 40vh;
  }
  .top-brand__list{
    grid-template-columns: repeat(2,1fr);
    margin-top: 4em;
  }
}


/* --------------- Lower --------------- */
/* ---- fv ---- */
.lower-fv{
  width: 97%;
  padding-top: 7em;
  position: relative;
}
.lower-fv__image{
  width: 80%;
  height: 56vh;
  margin-left: auto;
  overflow: hidden;
  -webkit-mask-image: url(../image/common/fv_mask.svg);
  mask-image: url(../image/common/fv_mask.svg);
  -webkit-mask-repeat: no-repeat repeat;
  mask-repeat: no-repeat repeat;
  -webkit-mask-size: 300% auto;
  mask-size: 300% auto;
  -webkit-mask-position: 100% 0%;
  mask-position: 100% 0%;
}
.lower-fv__image img{
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: blur(4px);
}
.lower-fv__white{
  position: absolute;
  z-index: 1;
  bottom: 4em;
  left: 0;
  display: flex;
  width: 100%;
}
.lower-fv__black{
  position: absolute;
  z-index: 2;
  bottom: 4em;
  left: 0;
  display: flex;
  width: 20%;
}
.lower-fv__line{
  width: calc(20% - 7em);
  margin-right: 2em;
}
.lower-fv__black .lower-fv__line{
  width: calc(100% - 7em);
}
.lower-fv__black .lower-fv__line>span{
  display: block;
  width: 0;
  height: 1px;
  margin-top: 1.9em;
  background-color: rgb(56, 53, 51, 0.5);
  opacity: 0;
}
.lower-fv__ttl{
  position: relative;
}
.lower-fv__ttl-alt{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ttl-white .lower-fv__white .lower-fv__ttl{
  color: rgb(255, 255, 255, 0.95);
}
.lower-fv__black .lower-fv__ttl{
  width: 5em;
  white-space: nowrap;
  overflow: hidden;
}
.lower-fv__ttl-inner{
  opacity: 0;
  animation-name: openingText;
  animation-duration: 0.1s;
  animation-delay: 0.1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes openingText{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.lower-fv__ttl-inner>span{
  opacity: 0;
}
@media (max-width: 1023px){
  .lower-fv{
    width: 95.0667%;
  }
  .lower-fv__image{
    height: min(65vw,50vh);
  }
  .lower-fv__black .lower-fv__line>span{
    margin-top: 1.3em;
  }
}
@media (max-width: 767px){
  .lower-fv{
    padding-top: 6.3em;
  }
  .lower-fv__image{
    width: 75%;
    height: 70vw;
  }
  .lower-fv__image img{
    transform: scale(1.03);
  }
  .lower-fv__white{
    bottom: 2.5em;
  }
  .lower-fv__black{
    bottom: 2.5em;
    width: 25%;
  }
  .lower-fv__line{
    width: calc(25% - 4.5em);
    margin-right: 1em;
  }
  .lower-fv__black .lower-fv__line{
    width: calc(100% - 4.5em);
    margin-right: 1em;
  }
  .lower-fv__black .lower-fv__ttl{
    width: 3.5em;
  }
}

/* ---- info-fv(画像のないファーストビュー) ---- */
.info-page{
  min-height: 100vh;
}
.info-fv{
  padding-top: calc(7em + 15vh);
}
.info-fv__head{
  position: relative;
  padding-bottom: 1.2em;
}
.info-fv__head-line{
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: rgb(56, 53, 51, 0.3);
  opacity: 0;
}
.info-fv__time{
  opacity: 0;
}
.info-fv__ttl{
  opacity: 0;
}
@media (max-width: 1023px){
  .info-fv{
    padding-top: calc(6.3em + 10vh);
  }
}

/* ---- パンくず ---- */
.breadcrumbs__inner{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
}
.breadcrumbs__inner>li{
  display: flex;
  align-items: center;
}
.breadcrumbs__inner>li:not(:last-child){
  margin-right: 0.6em;
}
.breadcrumbs__inner>li:nth-child(n+2)::before{
  content: "";
  display: block;
  width: 4em;
  height: 1px;
  background-color: rgb(56, 53, 51, 0.3);
  margin-right: 0.6em;
}
.breadcrumbs__inner>li>a{
  color: rgb(56, 53, 51, 0.5);
}
.breadcrumbs__inner>li:last-child>span{
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px){
}

.open-fade01,
.open-fade02{
  opacity: 0;
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
  .breadcrumbs__inner>li:not(:last-child){
    margin-right: 0.3em;
  }
  .breadcrumbs__inner>li:nth-child(n+2)::before{
    width: 1.5em;
    margin-right: 0.3em;
  }
}



/* --------------- About --------------- */
.about__br {
  display: none;
}
.about__fair-sign{
  margin-top: 1.2em;
}
@media (max-width: 767px){
  .about__fair-right{
    padding-top: 4rem;
    padding-top: clamp(4rem, 2.544rem + 6.21vw, 10rem);
  }
}
@media (max-width: 375px){
  .about__br{
    display: inherit;
  }
  .about__br-none{
    display: none;
  }
}



/* ---- policy ---- */
.about-policy__wrap{
  height: 480vh;
}
.about-policy__inner{
  position: sticky;
  top: 7em;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: calc(100svh - 7em);
}
.about-policy__head-ttl::after{
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: rgb(56, 53, 51, 0.8);
  margin: 0.3em auto 0.4em;
}
.about-policy__cont-inner{
  align-items: center;
}
.about-policy__list-item{
  display: flex;
}
.about-policy__list-item+.about-policy__list-item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.about-policy__list-ttl{
  width: fit-content;
  writing-mode: vertical-rl;
  margin: 1.68em 1.5em 0 0;
}
.about-policy__list-box{
  flex: 1;
}
.about-policy__list-circle{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-30%,-30%);
  width: 12em;
  height: 12em;
  border: 1px solid rgb(56, 53, 51, 0.3);
  border-radius: 50%;
}
.about-policy__image-inner{
  overflow: hidden;
}
.about-policy__image img{
  height: 45svh;
  object-fit: cover;
}
.about-policy__bg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.about-policy__bg-inner{
  height: 100%;
}

.about-policy__list-item{
  transition: 0.3s linear;
}
.about-policy__list-item:nth-child(n+2){
  opacity: 0;
}

.about-policy__wrap.active02 .about-policy__list-item{
  opacity: 0;
}
.about-policy__wrap.active02 .about-policy__list-item:nth-child(2){
  opacity: 1;
}

.about-policy__wrap.active03 .about-policy__list-item:nth-child(n+1){
  opacity: 0;
}
.about-policy__wrap.active03 .about-policy__list-item:nth-child(3){
  opacity: 1;
}

.about-policy__wrap.active04 .about-policy__list-item:nth-child(n+1){
  opacity: 0;
}
.about-policy__wrap.active04 .about-policy__list-item:nth-child(4){
  opacity: 1;
}

.about-policy__wrap.active05 .about-policy__list-item:nth-child(n+1){
  opacity: 0;
}
.about-policy__wrap.active05 .about-policy__list-item:nth-child(5){
  opacity: 1;
}

.about-policy__wrap.active06 .about-policy__list-item:nth-child(n+1){
  opacity: 0;
}
.about-policy__wrap.active06 .about-policy__list-item:nth-child(6){
  opacity: 1;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .about-policy__wrap{
    height: auto;
  }
  .about-policy__inner{
    position: relative;
    top: 0;
    height: auto;
    padding-top: 2em;
  }
  .about-policy__cont{
    height: 300vh;
    padding-top: 4em;
  }
  .about-policy__cont-inner{
    position: sticky;
    top: calc(5em + 7vh);
    left: 0;
  }
  .about-policy__list{
    margin-top: 7vh;
    padding-bottom: 3em;
  }
  .about-policy__list-ttl{
    margin-right: 1em;
  }
  .about-policy__image-inner{
    width: 95%;
  }
  .about-policy__image img{
    height: auto;
    max-height: 45svh;
  }
}


.about-message__head{
  align-items: flex-end;
}
.about-message__box{
  margin-top: 9em;
}
.about-message__bg{
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 6em);
}
.about-message__logo{
  width: min(65%, 30em);
  margin: 5em 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 1023px){
}
@media (max-width: 767px){
  .about-message__head{
    width: 90%;
    margin: 0 auto;
  }
  .about-message__ttl{
    margin-top: 1.5em;
  }
  .about-message__head-image{
    width: 75%;
    margin-left: auto;
  }
  .about-message__cont{
    width: 90%;
    margin: 0 auto;
  }
  .about-message__box{
    margin-top: 3.6em;
  }
  .about-message__box+.about-message__box{
    margin-top: 4.8em;
  }
  .about-message__logo{
    margin-top: 2em;
  }
}



.about__outline-table tr{
  border-bottom: 0.75px solid rgba(56,53,51,0.4);
}
.about__outline-table th{
  width: 13em;
  padding: 1.8em 0 1.8em 1em;
  font-weight: normal;
  opacity: 0.7;
}
.about__outline-table td{
  padding: 1.8em 0;
}
.about__outline-s-ttl{
  margin-left: 9.5em;
}
@media (max-width: 1023px){
  .about__outline-s-ttl{
    margin-left: 7em;
  }
}
@media (max-width: 767px){
  .about__outline-table  td,
  .about__outline-table th{
    display:block;
    border-top:none;
  }
  .about__outline-table th{
    width:auto;
    font-size: 0.95em;
    padding:1.8em 0 0.25em 0;
    opacity: 0.6;
  }
  .about__outline-table tr:nth-child(1) th{
    padding-top: 0.5em;
  }
  .about__outline-table td{
    width:auto;
    padding:0 0 1.5em 0;
  }
  .about__outline-table tr{
    margin-block: 0;
  }
  .about__outline-s-ttl{
    margin-left: 1.8em;
  }
}



.sdgs__target-ttl{
  position: relative;
  margin-left:5em;
}
.sdgs__target-ttl::before{
  position: absolute;
  top:50%;
  left:-2.5em;
  content: '';
  width: 4.5em;
  height: 1.5px;
  border: none;
  background-color: #333333;
  translate:-100% -50%;
  z-index: 2;
  opacity: 0.4;
  transform: scaleY(0.5);
}
.sdgs__cont{
  position: relative;
  width: min(75%,33.2em);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 4.8em;
  grid-gap:3em;
}
.sdgs__number{
  position: absolute;
  top:0.75em;
  left:-3em;
  width: 3em;
  translate:0 -100%;
}
.sdgs__message-txt-right{
  text-align: right;
}
.sdgs__icon{
  margin-top: 0.6em;
}
@media (max-width: 1287px){
  .sdgs__message-txt-right{
    text-align: left;
  }
}
@media (max-width: 767px){
  .sdgs__cont{
    width: 66%;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 1.2em;
  }
  .sdgs__icon{
    margin-inline: auto;
    width: 5.5em;
    margin-top: 0;
  }
}












/* --------------- Brand --------------- */
.brand__item+.brand__item{
  /* border-top:0.75px solid #383533; */
  margin-top: clamp(2.125rem, 1.427rem + 2.98vw, 5rem);
  padding-top:  clamp(2.125rem, 1.427rem + 2.98vw, 5rem);
}

.brand__border{
  border-bottom: 0.75px solid #383533;
  opacity: 0.5;
  width: clamp(18.125rem, 5.2rem + 55.15vw, 71.375rem);
  margin-top: clamp(2.125rem, 1.427rem + 2.98vw, 5rem);
  margin-bottom: clamp(2.125rem, 1.427rem + 2.98vw, 5rem);
  margin-left: auto;
  margin-right: auto
}

.brand__link{
  display: inline-block;
  position: relative;
  margin-left: 4em;
}
.brand__link::before{
  position: absolute; 
  content: "";
  top: 50%;    
  width: 32px;  
  height: 1.5px; 
  left: -1.25em; 
  translate:-100% 0;
  background-color: #ba4c4c;
  transform: scaleY(0.5);
}
@media (max-width: 1023px){
  .bland__link-wrap {
      flex-direction: column;
      text-align: center;
    }
}
@media (max-width: 767px){
  .brand__item figure{
    margin-inline: auto;
    width: 77%;
    margin-bottom: 1.5em;
  }
  .brand__item h4{
    margin-top: 1.75em;
  }
  .bland__link-wrap{
    flex-direction: column;
    text-align: center;
  }
  .bland__link-wrap .brand__link{
    margin-top: 0;
  }
  .brand__link{
    margin-top: 2em;
  }
}




/* --------------- Service --------------- */
.concept__number-wrap-odd{
  position: relative;
  margin-left:5.5em;
}
.concept__number-wrap-odd::after{
  position: absolute;
    bottom: 50px;
    left: 149px;
    content: '';
    width: 10em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(66deg);
    opacity: 0.5;
}
.concept__number-wrap-even{
  position: relative;
  margin-left:4em;
  width: fit-content;
}
.concept__number-wrap-even::after{
  position: absolute;
    bottom: 50px;
    left: -130px;
    content: '';
    width: 10em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(115deg);
    opacity: 0.5;
}

.service-concept02__left{
  margin-top: 6em;
}
.service-concept03__right{
  margin-top: 6em;
}


/* 背景 */
.service-concept01__left-bg {
  position: absolute;
  z-index: -1;
  top: -8%;
  left: 50%;
  width: 100%;
  height: 70%;
}
.service-concept01__right-bg{
  position: absolute;
    z-index: -1;
    top: 87%;
    left: 87%;
    width: 19%;
    height: 20%;
  }

.service-concept02__right-bg{
  position: absolute;
  z-index: -1;
  top: calc(clamp(6rem, 3.816rem + 9.32vw, 15rem) - 5em);
  left: 0;
  width: 100%;
  height: 54%;
}
.service-concept02__left-bg{
  position: absolute;
  z-index: -1;
  top: 82%;
  left: -10%;
  width: 29%;
  height: 30%;
}

.service-concept03__left{
  position: relative;
}

.service-concept03__left-bg{
  position: absolute;
    z-index: -1;
    top: 2%;
    left: 25%;
    width: 68%;
    height: 65%;
}

.service-concept03__right{
  position: relative;
}

.service-concept03__right-bg{
  position: absolute;
    z-index: -1;
    top: 86%;
    left: -8%;
    width: 17%;
    height: 23%;
}

@media (max-width: 1023px){
.concept__number-wrap-odd{
  position: relative;
  margin-left:5.5em;
  margin-top: 1em;
}

  .service-concept01__right-bg{
    position: absolute;
    z-index: -1;
    top: 91%;
    left: 83%;
    width: 20%;
    height: 18%;
  }

  .service-concept01__left-bg {
    position: absolute;
      z-index: -1;
      top: 6%;
      left: 47%;
      width: 100%;
      height: 58%;
  }

  .concept__number-wrap-odd::after{
    position: absolute;
      bottom: 34px;
      left: 153px;
      content: '';
      width: 6em;
      height: 1.5px;
      border: none;
      background-color: #383533;
      transform: scaleY(0.5) rotate(64deg);
      opacity: 0.5;
  }


  .service-concept02__left-bg{
    position: absolute;
    z-index: -1;
    top: 88%;
    left: -17%;
    width: 32%;
    height: 28%;
  }

  .concept__number-wrap-even::after{
    position: absolute;
    bottom: 33px;
    left: -95px;
    content: '';
    width: 6em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(115deg);
    opacity: 0.5;
  }

  .service-concept03__right-bg{
    position: absolute;
    z-index: -1;
    top: 92%;
    left: -8%;
    width: 17%;
    height: 16%;
  }
  
  .service-concept03__left-bg{
    position: absolute;
    z-index: -1;
    top: 5.5%;
    left: 34%;
    width: 68%;
    height: 62%;
  }

  .concept__number-wrap-odd::after{
    position: absolute;
    bottom: 38px;
    left: 153px;
    content: '';
    width: 5em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(67deg);
    opacity: 0.5;
  }


}
@media (max-width: 767px){

  .concept__pic01{
    margin-top: 1em;
    margin-left:auto;
  }
  .concept__pic02{
    margin-top: 1.5em;
    margin-right:auto;
  }
  .concept__pic03{
    margin-top: 1.5em;
    margin-inline:auto;
  }
  .concept__item03{
    margin-top: inherit;
  }

.service-concept01__left-bg {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 15%;
  width: 90%;
  height: 110%;
}

.service-concept02__right-bg {
  position: absolute;
  z-index: -1;
  top: calc(clamp(6rem, 3.816rem + 9.32vw, 15rem) + 0.5em);
  height: 45%;
}
.service-concept02__right-bg>span{
  width: 95%;
  transform: translateX(7%);
}


.service-concept02__left-bg {
  position: absolute;
  z-index: -1;
  top: 88%;
  left: 86%;
  width: 25%;
  height: 28%;
}

.service-concept03__left-bg {
  position: absolute;
  z-index: -1;
  top: 7.5%;
  left: 10%;
  width: 85%;
  height: 82%;
}

.service-concept03__right-bg {
  position: absolute;
  z-index: -1;
  top: 82%;
  left: -14%;
  width: 24%;
  height: 29%;
}

}



@media (max-width: 1023px){
}
@media (max-width: 767px){
}




/* --------------- Company --------------- */

@media (max-width: 1023px){
}
@media (max-width: 767px){
}




/* --------------- Recruit --------------- */
.recruit__message-ttl {
  position: relative;
    position: absolute;
    width: fit-content;
    top: -1em;
    left: -5em;
}
.recruit__message-ttl::after{
  position: absolute;
    bottom: 0.4em;
    left: 95%;
    content: '';
    width: 2.5em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(115deg);
    opacity: 0.5;
}
.recruit__message-pic{
  padding-left:1.5em;
}

.recruit__inner-link{
  position: relative;
  display: inline-block;
  padding-top: 1em;
  width: 100%;
}
.recruit__inner-link::before{
  position: absolute;
  top:-7px;
  left:0;
  content: '';
  background-color: rgba(56,53,51,0.4) ;
  width: 100%;
  height: 1.5px;
  transform: scaleY(0.5);
}
.recruit__link-tag::after{
  content:'';
  position: absolute;
  top:61%;
  right:clamp(3rem, 0.333rem + 5.56vw, 7rem);
  width: 0.4em;
  height: 0.4em;
  border-bottom: solid 0.75px #333;
  border-right: solid 0.75px #333;
  transform: rotate(45deg);
  translate:0 -50%;
}

.recruit__link-title{
  margin-left: clamp(3rem, -1.625rem + 9.64vw, 9.938rem);
}

.recruit__link-tag{
margin-right: 1em;
}

.recruit__interview-ttl-wrap{
  position: absolute;
  width: clamp(16.875rem, 13.28rem + 15.34vw, 31.688rem);
  bottom:1em;
  left: -26%;
}
.recruit__interview-ttl{
  position: relative;
  width: fit-content;
  z-index: 2;
}
.recruit__interview-ttl::after{
  position: absolute;
    bottom: 3px;
    left: 42px;
    content: '';
    width: 3.5em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(115deg);
    opacity: 0.7;
}

.recruit__interview-side-border{
  position: relative;
}

.recruit__interview-side-border::after{
  position: absolute;
    top: 25%;
    left: -1.5em;
    content: '';
    width: 5em;
    height: 1.5px;
    border: none;
    background-color: #333333;
    translate: -100% -50%;
    z-index: 2;
    transform: scaleY(0.5);
    opacity: 0.5;
}

.recruit__interview-sub-ttl{
  padding: 0.6em 2em 0.6em 4em;
  translate: 0 -9%;
}
.recruit__interview-ttl p{
  line-height: 0.6;
}
.recruit__interview-catch{
  margin-inline: auto;
}
.recruit__ouen{
  margin-left:1.3em;
  width:17.7em ;
  translate:0 -50%;
}
.section-border{
  width: 45%;
  border-top:0.75px solid rgba(56,53,51,0.5);
}

.recruit__interview02-img{
  margin-top: -18em;
}

.recruit__interview02-catch{
  margin-left: 32%;
}

.recruit__interview02-ttl-wrap{
  position: absolute;
  bottom:2.5em;
  right:-4%;
}
.recruit__interview02-ttl{
  position: relative;
    width: fit-content;
    margin-left: 17em;
    z-index: 2;
}
.recruit__interview02-ttl::after{
  position: absolute;
    bottom: 3px;
    left: -24px;
    content: '';
    width: 3.5em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(70deg);
    opacity: 0.7;
}
.recruit__interview02-ttl p{
  line-height: 0.6;
}
.recruit__interview02-sub-ttl{
  padding: 0.6em 4em;
    translate: 0 -13%;
}

.recruit__indent{
  padding-left: 1em;
  text-indent: -1em;
}

.recruit__indent-02{
  padding-left: 2.6em;
  text-indent: -1em;
}

.recruitment__tag{
  padding: 0 0.8em;
    border: solid 0.75px #383533;
    width: fit-content;
}

.recruitment__table th{
  font-weight: 400;
  color: #383533;
  opacity: 0.7;
  width: 18em;
  padding: 2em 0 2em 1em;
}

.recruitment__table td{
  padding: 2em;
  width: 38em;
}

.recruitment__table tr{
  border-bottom: 0.75px solid rgba(56, 53, 51, 0.4);
}

.recruit__entry-form-ttl{
  margin-left: 4em;
}

.entry-form__ml-0_5 {
  margin-left: -0.5em;
}

.entry-form__sideline-gray {
  position: relative;
  height: 1em;
}

.entry-form__sideline-gray::after{
  position: absolute;
    top: 60%;
    left: -0.5em;
    content: '';
    width: 9em;
    height: 1.5px;
    border: none;
    background-color: #333333;
    translate: -100% -50%;
    z-index: 2;
    transform: scaleY(0.5);
    opacity: 0.5;
}

#entry-form th {
  width: 20em;
  padding: 1em 0;
  font-weight: 400;
  line-height: 1.5em;
}

#entry-form td {
  padding: 1em 0;
  width: 29em;
}

.entry-form__item-box input,
select,
textarea {
  width: 100%;
  padding: 0.2em 0.5em;
  border: 0.75px solid rgba(56, 53, 51, 0.4);
}

#entry-form select {
  position: relative;
}

#entry-form select::after {
  display: inline-block;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 1em;
  width: 13px;
  height: 13px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
  z-index: 2;
}

#entry-form textarea {
  line-height: 1.2em;
  height: calc(1.2em * 10);
}

#entry-form .wpcf7-submit {
  display: block;
  margin-inline: auto;
  background-color: #ba4c4c;
  color: #fff;
  text-align: center;
  width: 18em;
  padding: 0.5em 0;
}

.required {
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
}

/* 背景 */
.recruit__message-bg{
  position: relative;
}

.recruit__message-bg-back{
  position: absolute;
    z-index: -1;
    top: -32%;
    left: -177%;
    width: 260%;
    height: 155%;
}

.recruit__interview01-bg{
  position: relative;
}

.recruit__interview01-bg-back{
  position: absolute;
    z-index: -1;
    top: 26%;
    left: -62%;
    width: 149%;
    height: 64%;
}

.recruit__interview02-bg{
  position: relative;
}

.recruit__interview02-bg-back{
  position: absolute;
    z-index: -1;
    top: 32%;
    left: 25%;
    width: 141%;
    height: 61%;
}

.recruit__br-only{
  display: none;
}

@media (max-width: 1660px) {
  .recruit__message-ttl {
    position: absolute;
    top: -2em;
    left: -4em;
  }

  .recruit__br-only{
    display: none;
  }
}

@media (max-width: 1570px) {
  .recruit__message-ttl {
    position: absolute;
    top: -2em;
    left: 0;
  }

  .recruit__br-only{
    display: none;
  }
}


@media (max-width: 1023px) {
  .recruit__message-ttl::after {
    position: absolute;
    bottom: 6px;
    left: 74px;
    content: '';
    width: 2.5em;
    height: 1.5px;
    border: none;
    background-color: #383533;
    transform: scaleY(0.5) rotate(115deg);
    opacity: 0.5;
  }


  .recruit__message-pic{
    padding-left:1.5em;
    margin-top: -43em;
  }

  .recruit__message-bg-back{
    position: absolute;
    z-index: -1;
    top: 36%;
    left: -177%;
    width: 260%;
    height: 317%;
  }

  .recruit__interview-sub-ttl{
    padding: 0.6em 2em 0.6em 4em;
    translate: 0 -5%;
  }

  .recruit__interview-ttl-wrap{
    position: absolute;
    width: clamp(16.875rem, 13.28rem + 15.34vw, 31.688rem);
    bottom: -3em;
    left: -26%;
  }

  .recruit__interview01-img{
    margin-top: -16em;
  }

  .recruit__interview01-bg-back{
    position: absolute;
    z-index: -1;
    top: 15%;
    left: -62%;
    width: 149%;
    height: 72%;
  }

  .recruit__interview02-img{
    margin-top: -49em;
  }

  .recruit__interview02-bg-back{
    position: absolute;
    z-index: -1;
    top: 20%;
    left: 25%;
    width: 141%;
    height: 65%;
  }

  .recruit__br-only{
    display: none;
  }


}

@media (max-width: 767px) {
  .recruit__message-box{
    margin-top: 6em;
  }

  .recruit__message-bg-back{
    position: absolute;
    z-index: -1;
    top: 52%;
    left: -28%;
    width: 137%;
    height: 223%;
  }

  .recruit__message-pic{
    margin-top: 0em;
    margin-right: -2.5em;
    padding-left: 3.5em;
  }

  .recruit__link-title{
    margin-left: clamp(6.25rem, -1.523rem + 33.16vw, 14.375rem);
  }

  .recruit__inner-link{
    position: relative;
    display: inline-block;
    padding-top: clamp(4.688rem, 4.09rem + 2.55vw, 5.313rem);
    width: 100%;
  }
  .recruit__inner-link::before{
    position: absolute;
    top:49px;
    left:0;
    content: '';
    background-color: rgba(56,53,51,0.4) ;
    width: 100%;
    height: 1.5px;
    transform: scaleY(0.5);
  }
  .recruit__link-tag::after{
    content: '';
      position: absolute;
      top: 87%;
      right: clamp(6.25rem, -2.659rem + 38.01vw, 15.563rem);
      width: 0.4em;
      height: 0.4em;
      border-bottom: solid 0.75px #333;
      border-right: solid 0.75px #333;
      transform: rotate(45deg);
      translate: 0 -50%;
  }

  .recruit__interview01-img{
    margin-top: 0em;
  }


  .recruit__interview-catch{
    /* margin-inline: auto; */
    margin-left: 77%;
    margin-bottom: -49%;
    position: relative;
    z-index: 2;
  }

  .recruit__interview-ttl-wrap{
    position: absolute;
    width: clamp(16.875rem, 13.28rem + 15.34vw, 31.688rem);
    bottom: -3em;
    left: -14%;
  }

  .recruit__interview-mt{
    margin-top: 5em;
  }

  .recruit__interview-txt-right{
    text-align: right;
  }
  .recruit__interview-txt-right h3{
    display: inline-block;
    text-align: left;
  }

  .recruit__interview-side-border::after{
    position: absolute;
    top: 25%;
    left: -2.5em;
    content: '';
    width: 9em;
    height: 1.5px;
    border: none;
    background-color: #333333;
    translate: -100% -50%;
    z-index: 2;
    transform: scaleY(0.5);
    opacity: 0.5;
  }

  .recruit__ouen-wrap{
    margin-top: 10em;
  }

  .recruit__interview01-bg-back{
    position: absolute;
    z-index: -1;
    top: 15%;
    left: 15%;
    width: 111%;
    height: 263%;
  }

  .recruit__interview02-catch{
    margin-left: 14%;
    position: relative;
    margin-bottom: -44%;
  }

  .recruit__interview02-ttl-wrap{
    position: absolute;
    bottom:2.5em;
    right: -15%;
  }

  .recruit__interview02-img{
    margin-top: 0em;
  }


  .recruit__interview02-bg-back{
    position: absolute;
    z-index: -1;
    top: 20%;
    left: -26%;
    width: 112%;
    height: 244%;
  }

  .recruit__recruit-infomation-pd{
    padding-right: 3em;
    padding-left: 3em;
  }


  #entry-form table td,
  #entry-form table th {
    display: block;
    border-top: none;
  }

  #entry-form table th {
    width: auto;
    padding: 0 0 0.25em 0;
  }

  #entry-form table td {
    width: auto;
    padding: 0 0 2em 0;
  }

  #entry-form tr {
    margin-block: 0;
  }

  .form__pd-l{
    padding-left: clamp(0rem, -2.571rem + 10.97vw, 2.688rem);
  }

  .recruit__br-only{
    display: none;
  }
}

@media (max-width: 375px){
  .recruit__message-pic{
    margin-top: 0em;
    margin-right: 0em;
    padding-left: 0em;
  }

  .recruit__message-bg-back{
    position: absolute;
    z-index: -1;
    top: 52%;
    left: -24%;
    width: 142%;
    height: 800px;
  }

  /* .recruit__inner-link{
    position: relative;
    display: inline-block;
    padding-top: 22%;
    width: 100%;
  } */

  /* .recruit__link-title{
    margin-left: 32%;
  } */

  .recruit__link-tag::after{
    content: '';
    position: absolute;
    top: 87%;
    width: 0.4em;
    height: 0.4em;
    border-bottom: solid 0.75px #333;
    border-right: solid 0.75px #333;
    transform: rotate(45deg);
    translate: 0 -50%;
  }

  .recruit__inner-link::before{
    position: absolute;
    top: 54%;
    left:0;
    content: '';
    background-color: rgba(56,53,51,0.4);
    width: 100%;
    height: 1.5px;
    transform: scaleY(0.5);
  }

  .recruit__interview01-bg-back{
    position: absolute;
    z-index: -1;
    top: 67%;
    left: 9%;
    width: 112%;
    height: 1400px;
  }

  .recruit__interview-catch{
    /* margin-inline: auto; */
    margin-left: 68%;
    margin-bottom: -81%;
    position: relative;
    z-index: 2;
  }

  .recruit__interview02-catch{
    margin-left: 7%;
    position: relative;
    margin-bottom: -77%;
  }

  .recruit__interview02-ttl-wrap{
    position: absolute;
    bottom: -2.5em;
    right: -15%;
  }

  .recruit__interview02-bg-back{
    position: absolute;
    z-index: -1;
    top: 71%;
    left: -21%;
    width: 104%;
    height: 1377px;
  }

  .recruit__br-only{
    display: inherit;
  }

  .recruit__recruit-infomation-pd-l_2{
    padding-left: 2em;
  }

  .recruitment__table  td,
  .recruitment__table th {display:block; border-top:none;}
  .recruitment__table th {width:auto;padding:1.5em 0 0.25em 0;}
  .recruitment__table td {width:auto;padding:0 0 1.5em 1em;  }
  .recruitment__table tr{
    margin-block: 0;
  }



}




/* --------------- News --------------- */

/* --------------- archive --------------- */
.single__item{
  position: relative;
  display: grid;
  grid-template-columns: 10em 1fr;
  grid-gap: 2em;
  align-items: center;
  padding: 1.8em 0;
}
.single__item::before,
.single__item::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(56,53,51,0.25);
}
.single__item::after{
  opacity: 0;
  transition: opacity 0.2s linear;
}
.single__item:active::after,
.single__item:hover::after{
  opacity: 1;
}
.single__item-ttl{
  transition: color 0.2s linear;
}
.single__item:active .single__item-ttl,
.single__item:hover .single__item-ttl{
  color: #ba4c4c;
}
.pagenation{
  padding-top: clamp(2.125rem, 1.427rem + 2.98vw, 5rem);
}
.page-numbers{
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 1.25em;
}
.page-numbers span,
.page-numbers a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  margin: 0 0.2em;
  transition: 0.4s cubic-bezier(.07,.71,.33,1);
}
.page-numbers .current{
  border-bottom: 1px solid #ba4c4c;
}
.page-numbers .next,.page-numbers .prev {
  color: #ba4c4c;
  border:1px solid #ba4c4c;
  border-radius: 50px;
}

@media (max-width: 767px){
  .single__item{
    grid-template-columns: repeat(1,1fr);
    grid-gap: 0.5em;
  }
}

/* --------------- single --------------- */
.single__thumb{
  margin-bottom: 3em;
}
.single__cont h2{
  font-size: 1.6471em;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.single__cont h3{
  font-size: 1.4117em;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.single__cont h4{
  font-size: 1.2941em;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.single__cont h5{
  font-size: 1.1176em;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.single__cont h2,
.single__cont h3,
.single__cont h4,
.single__cont h5,
.single__cont h6{
  margin: 0 0 0.5em 0;
  padding: 0.5em 0 0 0;
}
.single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h2,
.single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h3,
.single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h4,
.single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h5,
.single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h6{
  margin-top: 2.2em;
}
.single__cont p{
  margin: 0 0 2em 0;
}
.single__cont .has-small-font-size{
  font-size: 0.8823em!important;
  letter-spacing: 0.08em;
}
.single__cont .wp-block-image{
  margin: 0 0 1.5em 0;
}
.wp-block-image img{
  width: auto;
}
.single__cont a{
  text-decoration: underline;
}
.single__cont .wp-block-button__link{
  font-size: 1.1176em;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.2em 2em;
}
@media (max-width: 1023px){
  .single__cont h2{
    font-size: 1.2857em;
    line-height: 1.75;
  }
  .single__cont h3{
    font-size: 1.1428em;
    line-height: 1.75;
  }
  .single__cont h4{
    font-size: 1.0714em;
    line-height: 1.75;
  }
  .single__cont h5{
    font-size: 1.0714em;
    line-height: 1.75;
  }
}
@media (max-width: 767px){
  .single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h2,
  .single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h3,
  .single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h4,
  .single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h5,
  .single__cont :not(h2):not(h3):not(h4):not(h5):not(h6) + h6{
    margin-top: 1.6em;
  }
  .single__cont p{
    margin: 0 0 1.8em 0;
  }
  .single__cont .wp-block-button__link{
    font-size: 1.0714em;
  }
}




/* --------------- Contact --------------- */
#contact th{
  width: 20em;
  padding: 1em 0;
  font-weight: 400;
}
#contact td{
  padding: 1em 0;
  width: 34em;
}
#contact input,select,textarea{
  width: 100%;
  padding: 0.2em 0.5em;
  border: 0.75px solid rgba(56,53,51,0.4);
}
#contact select{
  position: relative;
}
#contact select::after{
  display: inline-block;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 1em;
  width: 13px;    
  height: 13px;   
  border-top: 3px solid #000;    
  border-right: 3px solid #000;  
  transform: rotate(45deg);    
  z-index: 2;
}
#contact textarea{
  line-height: 1.2em;   
  height: calc(1.2em * 10); 
}
#contact .wpcf7-submit{
  display: block;
  margin-inline: auto;
  background-color: #ba4c4c;
  color: #fff;
  text-align: center;
  width: 18em;
  padding: 0.5em 0;
}
.required {
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
}

.contact-form__item-box input,
select,
textarea {
  width: 100%;
  padding: 0.2em 0.5em;
  border: 0.75px solid rgba(56, 53, 51, 0.4);
}

@media (max-width: 1023px){
}
@media (max-width: 767px){
  #contact table td,
  #contact table th {display:block; border-top:none;}
  #contact table th {width:auto;padding:0 0 0.25em 0;}
  #contact table td {width:auto;padding:0 0 2em 0;  }
  #contact tr{
    margin-block: 0;
  }
}





/* --------------- animation --------------- */
.image-zoom{
  overflow: hidden;
}