@charset "utf-8";
/* ====================================
common
==================================== */
:root{
  --color-yellow:#E1A302;
  --color-blue:#088C9D;
  --color-red:#A11F22;
  --color-beige:#F3F1ED;
  --color-brown:#D0C5AB;
  --color-black:#000;
  --contentWidth:89.0%;
  --contentPadding:5.3%;
}

html {
  font-size: 62.5%;
}


body{
  font-family:"Noto Sans JP","Agbalumo",system-ui,sans-serif;
  font-style: normal;
  color: var(--color-black,#000);
  background-color: var(--color-beige,#F3F1ED);
  line-height: 1.5;
  font-weight: 400;
}

img{
  max-width: 100%;
  height: auto;
}

.ttl{
  font-family: Agbalumo;
  font-size: 4.0rem;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 20px;
  margin: 0 auto;
}

.subttl{
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}

.btn{
  display:inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-red,#A11F22);
  padding: 18px 28px;
  height: 33px;
  color:var(--color-beige,#F3F1ED);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7rem;
  box-shadow: 3px 4px 0px 0px #000;
  transition: all 0.2s ease;
  transform: translate(0, 0);
}

.btn:hover{
  box-shadow: none;
  transform: translate(3px, 4px); 
}

.btn:active {
  transform: translate(4px, 5px);
}

/* common　pc */
@media screen and (min-width:769px){
  .ttl{
    font-size: 10rem;
    line-height: 7.1rem;
    gap: 40px;
    padding-top: 96px;
  }

  .subttl{
    font-size: 2.0rem;
    line-height: 2.4;
  }

  .btn{
    height: 55px;
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-top: 28px;
  }
}

/* ====================================
header
==================================== */

.background {
  background-image: url('../img/backmv-sp.jpg'); 
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  max-height: 850px;
  position: relative;
  overflow: hidden;
}

.nav__header{
  padding: 9px 5.3% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__headerTxt{
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .background {
    background-image: url("../img/backmv.jpg");
    min-height: 1100px;
    max-height: inherit;
  }

  .nav__header {
    padding: 45px 4.1% 0;
  }
  
  .nav__headerTtl img{
    width: 241px;
    height: 51px;

  }

  .ints__btn,.youtube__btn{
    display: none;
  }

  .header__btn{
    width: 76px;
    height: 43px;
    cursor: pointer;
  }
}

/* nav 初期表示 */
.nav{
  background-color: var(--color-beige,#F3F1ED);
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
  padding: 0 5.3%;
}

.nav__btn{
  margin-top: 15px;
  display: flex;
  justify-content:flex-end;
}

.btn-close{
  width: 23px;
  height: auto;
  cursor: pointer;
}

.nav__log{
  display: none;
}

.nav__list{
  margin-top: 26px;
}

.nav__item{
  font-family: Agbalumo;
  font-size: 3.2rem;
  line-height:1;
  margin-top: 32px;
}

.nav__link {
  position: relative;
  display: block;
}

.nav__link .en,
.nav__link .jp {
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: left;
  white-space: nowrap; /* 折り返しを防止 */
}

.nav__link .jp {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP";
}

.jp.jp-txt {
  font-size: 1.3rem;
}

.nav__link:hover .en {
  opacity: 0;
  transform: translateY(-10%);
}

.nav__link:hover .jp {
  opacity: 1;
  transform: translateY(0);
}

.nav__item:first-child{
  margin-top: 26px;
}

.nav__list2{
  margin-top: 41px;
}

.nav__item2{
  font-size: 1.6rem;
  margin-left: 20px;
  margin-top: 25px;
}

/* .nav__item2--jp{
  font-family: "Noto Sans JP";
  font-weight: 700;
} */

.nav__item2:first-child{
  margin-top: 0;
}

.nav__txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 41px;
  margin-bottom: 71px;
  font-size: 1.3rem;
  font-weight: 500;
}

/* .nav active表示 */
.nav.active{
  transform: translateX(0);
}

/* nav 初期表示 pc */
@media (min-width: 768px) {
  .nav__item:first-child {
    margin-top: 0;
  }

  .nav__list {
    display: flex;
    align-items: flex-start;
    margin-top: 63px;
    gap: 100px;
    padding: 0;
  }
  .nav__item {
    margin-top: 0;
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  
  .nav__list2 {
    margin-top: 23px;
  }
  
  .nav__item2 {
    font-size: 1.4rem;
    margin-left: 0;
    line-height: 1.4rem;
    margin-top: 20px;
  }

  .nav__txt {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 102px;
    margin-bottom: 75px;
    font-size: 1.4rem;
  }

  .nav{
    padding: 45px 4.1% 0;
  }

  .nav__btn {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__log{
    display: block;
    width: 241px;
    height: 50px;
  }

  .btn-close{
    width: 47px;
    height: 47px;
  }
}

/* main visual */
.header__txt{
  position: absolute;
  top: 10%; 
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  
}

.header__catch, .header__subtxt {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

.header__catch {
  text-align: center;
  font-family: Agbalumo;
  font-size: 3.4rem;
  line-height: 3.7rem;
  white-space: nowrap;
}

.header__subtxt{
  font-size: 1rem;
  font-weight: 900;
  line-height: 1rem;
  letter-spacing: 0.2px;
  margin-top: 15px;
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.car {
  position: absolute;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  bottom: 15.59%;
}

@media screen and (min-width: 768px) {
  .car {
    width: 81.6666%;
    bottom: 34.29%;
    transform: translate(-50%, 50%);
    max-width: 1200px;
  }
}

.smoke {
  position: absolute;
  z-index: 15;
  left: 40%;
  transform: translateX(-50%);
  height: auto;
  bottom: 0%;
  min-width: 420px;
}

/* main visual　pc */
@media (min-width: 768px) {
  .header__txt{
    top: 13%;
  }

  .header__catch {
  font-size: 7.2rem;
  line-height: 8.2rem;
  }

  .header__subtxt{
  font-size: 2.0rem;
  font-weight: 900;
  line-height: 2.8rem;
  letter-spacing: 0.4px;
  margin-top: 17px;
  }

  .smoke {
    bottom: 0%;
    transform: translateX(-50%);
    left: 41%;
    max-width: 840px;
  }
}

/* ====================================
main
==================================== */

/* link */
.abc{
  display: flex;
  align-items: center;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  /* transition: transform 0.2s ease; */
  padding: 35px 5.8% 35px 5.3%;
  border-bottom: 1px solid #333;
}

.service-card {
  flex: 1;
  margin-left: 17px;
}

.service-card__title{
  font-family: Agbalumo;
  font-size: 1.6rem;
  line-height:1;
}

.service-card__desc{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 13px;
}

.arrow_down {
  width: 20px;
  height: 20px;
}

/* link pc */
@media (min-width: 768px) {

  .service-links {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-link {
    padding: 41px 4.9% 45px 1.5%;
    border-bottom: 2px solid var(--color-black,#000);
    border-right: 2px solid var(--color-black,#000);
  }

  .filmLink,.resistanceLink{
    border-right:none
  }

  .bulletIcon{
    width: 94px;
    height: 51px;
  }

  .filmIcon{
    width: 85px;
    height: 85px;
  }

  .dIcon{
    width: 94px;
    height: 94px;
  }

  .resistanceIcon{
    width: 103px;
    height: 103px;
  }

  .service-card__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .service-card__desc {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 3.2rem;
  }

  .service-card {
    margin-left: 30px;
  }

  .arrow_down{
    width: 50.5px;
    height: 23px;
  }
}

/* about */
.section--about{
  background-image:url(../img/backAbout.png);
  background-size: cover;
  background-position: center;
  border: 3px solid black;
  border-radius: 17px;
  padding: 20px 5.2% 40px;
  position: relative;
  width: 89%;
  margin: auto;
  margin-top: 48px;
}

.mainCaption{
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.28px;
  margin-top: 15px;
}

.mainCaption__txt{
  margin-top: 20px;
}

.mainCaption__txt:first-of-type{
  margin-top: 15px;
}

.ttl.about--ttl{
  padding-top:0px;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: black;
  border-radius: 50%;
}

.pin--top-left {
  top: 20px;
  left: 23px;
}

.pin--top-right {
  top: 20px;
  right: 23px;
}

.pin--bottom-left {
  bottom: 17px;
  left: 23px;
}

.pin--bottom-right {
  bottom: 17px;
  right: 23px;
}

.plate {
  position: absolute;
  width: 80px;
}

.plate1 {
  position: absolute;
  top: 14%;
  right: -4%;
  transform:rotate(6.313deg);
  width: 26.13vw;
  aspect-ratio: 98.41/24.30;
}

.plate2{
  position: absolute;
  top: 15%;
  left: -4%;
  width: 18.4%;
  transform: rotate(-6.878deg);
  aspect-ratio: 68.38/36.09;
}

.plate3,.plate4,.star2{
  display: none;
}

/* 動きつける！！ */
.caricon{
  width: 76px;
  height: 34px;
  transform: rotate(-1.7deg);
  flex-shrink: 0;
  margin-top: 25px;
}

@keyframes runLoop {
  0% {
    transform: translateX(0) rotate(-1.7deg);
    opacity: 1;
    visibility: visible;
  }
  20% {
    transform: translateX(0) rotate(-1.7deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(150vw) rotate(-1.7deg);
    opacity: 1;
    visibility: visible;
  }
}

.loop-run {
  animation: runLoop 10s linear infinite;
  position: relative;
}

.star{
  position: absolute;
  top:8%;
  left: 16%;
  width: 9.8vw;
}

.monotone{
  display: block;
}

/* about pc*/
@media (min-width: 768px) {

.section--about {
  margin-top: 139px;
  padding: 64px 20.6% 98px;
}

.section--about {
  background-image: url(../img/backAbout_pc.png);
}

.mainCaption {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.48px;
}

.mainCaption__txt:first-of-type {
  margin-top: 54px;
}

.mainCaption__txt {
  margin-top: 32px;
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
}

.pin--top-left {
  top: 28px;
  left: 30px;
}

.pin--top-right {
  top: 28px;
  right: 30px;
}

.pin--bottom-left {
  bottom: 28px;
  left: 30px;
}

.pin--bottom-right {
  bottom: 28px;
  right: 30px;
}

.plate2{
  position: absolute;
  top: 24%;
  left: 86%;
  width: 14.5vw;
  max-width: 209px;
  transform: rotate(14.248deg);
  aspect-ratio: 209.55/110.61;
}

.plate1 {
  position: absolute;
  top: 60%;
  right: -4%;
  width: 19.7vw;
  max-width: 285px;
  transform: rotate(11.572deg);
  aspect-ratio: 285.78/70.56;
}

.plate3{
  position: absolute;
  top: 31%;
  left: -6%;
  display: block;
  width: 24.6vw;
  max-width: 355px;
  transform: rotate(-7.961deg);
  aspect-ratio: 355.63/92.95;
}

.plate4{
  position: absolute;
  top: 70%;
  left: -5%;
  display: block;
  width: 19.5vw;
  max-width: 281px;
  transform:rotate(-11.287deg);
  aspect-ratio: 281.13/59.04;
}

.star{
  width: 7.4vw;
  position: absolute;
  top: 15%;
  left: 20%;
}

.star2{
  display: block;
  width: 7.4vw;
  position: absolute;
  top: 15%;
  left: 69%;
}

.caricon {
  width: 148px;
  height: 66px;
  transform: rotate(-2.697deg);
  margin-top: 48px;
}
}

/* service */
.section--service{
  background-color: var(--color-blue,#088C9D);
  color: var(--color-beige,#F3F1ED);
  margin: 15px 2.4% 27px;
  padding: 0 2.3% 32px;
}

.service-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

}

.service__ttl{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: Agbalumo;
  margin-top: 39px;
  font-size: 2.4rem;
  line-height:1.2;
}

.pcBr{
  display: none;
}

.service__subttl{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
}

.service__txt{
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 270px;
  margin: 0 auto;
  text-align: left;
}

.service_bg{
  position: relative;
  width: 100%;
  max-width: 341px;
  margin: 20px auto 0;
}

.backService{
  width: 100%;
  display: block;
  /* position: relative;
  margin-top:20px ;
  padding: 0 4.5%; */
}

.inService{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
}

.service_log{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.hybrid-logo{
  top: 43%;
}

/* service pc*/
@media (min-width: 768px) {
  .section--service {
    margin: 50px 2.0% 50px;
    padding: 0 2.3% 97px;
  }

  .service{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    margin-top: 63px;
  }

  .service-item {
    gap:0;
    width: 40%;
  }

  .service__ttl {
    gap: 14px;
    font-size: 4.2rem;
    line-height: 1.1;
    margin: auto;
    text-align: center;
  }

  .pcBr{
    display: block;
  }

  .service__subttl {
    font-size: 1.8rem;
    line-height:1.7;
  }

  .service__txt {
    font-size: 1.8rem;
    line-height: 2.9rem;
    font-weight: 500;
    max-width: 359px;
    text-align: center;
    margin: 32px 0 auto;
  }

  .service_bg {
    position: relative;
    width: 60%;
    max-width: 712px;
    margin:0;
  }

  .box--1 {
    order: 2; /* 順番後ろに */
  }
  
  .box--2 {
    order: 1; /* 順番前に */
    flex: none;
  }
}

/* sns */
.section--sns{
  text-align: center;
  padding-bottom: 39px;
}

.sns-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5.3%;
}

.arrow {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 83px;
}

.pic_wrapper{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  display: flex;
}

.sns-slider {
  display: flex;
  width: 80%;
  max-width: 270px;
  scroll-behavior: smooth;
  gap: 11px;
  margin-top: 24px;
  padding-left: 5.3%;
  scroll-snap-align: start;
}
.sns-slide {
  flex: 0 0 80%;
  height: auto;
  scroll-snap-align: center;
}

.sns-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.sns-links {
  margin-top: 24px;
}
.sns-text {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 700;
}

.slash {
  margin: 0 5px;
  color: var(--txt-black, #000);
}

.sns-buttons{
  margin-top: 15px;
}

.btn-icon {
  width: 14px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.sns-buttons a {
  margin: 0 13px;
}

.btn--youtube,
.btn--instagram{
  padding: 15px 17px;
  line-height: 1.7rem; 
}


/* sns pc*/
@media (min-width: 768px) {
  .sns-slider-wrapper {
    padding: 0 4.1%;
  }

  .sns-slider {
    max-width: 412px;
    gap: 42px;
    margin-top: 54px;
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  .pic_wrapper {
    margin: 0 4.1%;
    justify-content: center;
  }

  .yajirusi{
    max-width: none;
    width: 50px;
    height: 23px;
  }

  .sns-links {
    margin-top: 55px;
  }

  .sns-text {
    font-size: 1.8rem;
  }

  .slash {
    margin: 0 15px;
  }

  .sns-buttons {
    margin-top: 28px;
  }

  .sns-buttons a {
    margin: 0 20px;
  }

  .btn--youtube, .btn--instagram {
    padding: 18px 28px;
    line-height: 1.8rem;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .section--sns {
    padding-bottom: 127px;
  }
}

/* recruit */
.section--recruit{
  color: var(--color-beige,#F3F1ED);
  padding-bottom: 52px;
  text-align: center;
  background-image: url(../img/garage.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit--ttl{
  line-height: 4rem;
  padding-top: 59px;
}

.recruit__subtxt{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  margin-top: 16px;
}

.recruit-item{
  color: var(--color-black,#000);
  background-image:url(../img/card-sp.svg);
  background-size: cover;
  background-position: center;
  border: 3px solid black;
  border-radius: 34px;
  padding: 20px 5.2% 34px;
  position: relative;
  width: 89.0%;
  margin: auto;
  margin-top: 37px;
}

.recruit-item:last-child{
  margin-top: 26px;
}

.recruit__ttl{
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
font-family: Agbalumo;
font-size: 2.4rem;
line-height: 2.2rem;
padding-bottom: 18px;
border-bottom: 1px dashed black;
}

.recruit__subttl{
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 17.3px;
}

.recruit__txt{
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-top: 23px;
  text-align: left;
}

.btn--recruit{
  margin-top: 20px;
}
.btn--partner{
  margin-top: 20px;
}

/* recruit pc*/
@media (min-width: 768px) {
  .section--recruit {
    background-image: url(../img/garage_pc.png);
  }

  .spBr{
    display: none;
  }

  .recruit--ttl {
    line-height: 9.1rem;
    padding-top: 96px;
  }

  .recruit__ttl {
    gap: 14px;
    font-size: 4.2rem;
    line-height: 5.0rem;
    padding-bottom: 31px;
    border-bottom: 2px dashed black;
  }

  .recruit__subtxt {
    font-size: 2.0rem;
    letter-spacing: 1.5px;
    margin-top: 82px;
  }

  .recruit__subttl {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 17.3px;
}

  .recruit{
    display: flex;
    gap: 42px;
    margin: 86px 6.5% 167px;
  }

  .recruit-item:last-child {
    margin:0;
  }

  .recruit-item {
    margin-top: auto;
    padding: 31px 3.6% 65px;
  }

  .recruit__txt {
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 600;
    letter-spacing: 0.36px;
    margin-top: 73px;
    text-align: left;
  }

  .btn--recruit,.btn--partner {
    margin-top: 66px;
  }
}

/* ====================================
footer
==================================== */
.footer {
  position: relative;
}

.footerSlide{
  position: relative;
  background: transparent;
}

.footerSlide__textWrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.footerSlide__txt{
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
  color: rgba(0, 0, 0, 0.50);
  text-align: center;
  font-family: Agbalumo;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 4.2rem;
  letter-spacing: 2.1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%); 
  }
  100% {
    transform: translateX(-100%); 
  }
}

.footerSlide__icon{
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  z-index: 100;
  pointer-events: none;
  
}

.footerNav{
  border-radius: 34px 34px 0px 0px;
  background: var(--color-yellow,#E1A302);
  position: relative; 
  z-index: 1;
}

.footerNav__item{
  font-family: Agbalumo;
  font-size: 3.2rem;
  line-height:1;
  margin-top: 32px;
}

.footerNav__item:first-of-type{
  margin-top: 0;
}

.footerNav__list{
  padding: 53px 5.3%;
}

.footerNav__list2{
  margin-top: 41px;
}

.footerNav__item2{
  font-size: 1.6rem;
  margin-left: 20px;
  margin-top: 25px;
}

.footerNav__item2:first-child{
  margin-top: 0;
}

.footerNav__log{
  display: block;
  margin: auto;
  width: 234px;
  height: 51.089px;
  flex-shrink: 0;
}

.footerNav__txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  font-size: 1.3rem;
  font-weight: 500;
  
}
.footerNav__info {
  text-align: center;
}

.copy{
  display: block;
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 20px;
}

.footerNav__top{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background-color: var(--color-yellow,#E1A302);
  border-top: 1px solid #333;
}

.top_txt{
  font-family: Agbalumo;
  font-size: 1.4rem;
  letter-spacing: 0.28px;
}

.footerNav__link {
  position: relative;
  display: block;
}

.footerNav__link .en,
.footerNav__link .jp {
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: left;
  white-space: nowrap; /* 折り返しを防止 */
}

.footerNav__link .jp {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP";
}

.jp.jp-txt {
  font-size: 1.3rem;
}

.footerNav__link:hover .en {
  opacity: 0;
  transform: translateY(-10%);
}

.footerNav__link:hover .jp {
  opacity: 1;
  transform: translateY(0);
}

/* footer pc */
@media (min-width: 1100px) {
  
.footerSlide__txt {
  font-size: 15.3rem;
  line-height: 15.3rem;
  letter-spacing: 9.18px;
  margin-bottom:auto;
  margin-top: 109px;
}

.footerSlide__icon {
  width: 253px;
  height: 110px;
  bottom: -20px;
}

.footerNav{
  display:flex;
  align-items: flex-start;
  padding: 139px 6.7% 85px 3.2%;
  justify-content: space-around;
}

.footer--box{
  margin-left: 5vw;
}

.footer--1 {
  order: 2; /* 順番後ろに */
}

.footer--2 {
  order: 1; /* 順番前に */
  flex: none;
}

.footerNav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5vw;
  padding: 0;
}
.footerNav__item {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: 2.4rem;
}

.footerNav__list2 {
  margin-top: 20px;
}

.footerNav__item2 {
  font-size: 1.4rem;
  margin-left: 0;
  line-height: 1.4rem;
  margin-top: 20px;
}

.footerNav__log {
  margin: 0;
  width: 239px;
  height: 58px;
}

.footerNav__txt {
  align-items: start;
  gap: 11px;
  margin-top: 43px;
  font-size: 1.4rem;
}

.copy {
  align-items: start;
  display: flex;
  margin-top: 11px;
  font-size: 1.4rem;
  padding-bottom: 0;
}
}

/* ====================================
recruit-page
==================================== */

.recruit-visual{
  margin-top: 47px;
}

.image-right{
  display: none;
}

.recruit-message{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.32px;
  margin-top: 43px;
  padding: 0 5.3%;
}

.recruit-box{
  border-radius: 29px;
  border: 2px solid #000;
  background: var(--base-white, #FFF);
  margin: 45px 5.3% 42px;
  padding: 24px 5.3% 64px;
}

.recruit-pageTtl{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.recruit-name{
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.32px;
  margin-top: 25px;
}

.recruit-nameTxt{
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.32px;
  margin-top: 20px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--color-black, #000);
}

.note{
  margin-top: 26px;
  margin-bottom: 52px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.btn-wrap{
  display:flex;
  justify-content: center;
  align-items: center;
}

.btn-page{
  border-radius: 23.5px;
  padding: 10px 40px;
}

/* recruit-page pc */
@media (min-width: 768px) {
  .recruit-visual {
    margin-top: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-right{
    display: flex;
  }

  .image-left,.image-right{
    max-width:720px;
    height: 540px;
  }

  .recruit-message {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
    margin-top: 86px;
    padding: 0 5.3%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .recruit-box {
    border-radius: 29px;
    border: 5px solid #000;
    background: var(--base-white, #FFF);
    margin: 100px 16.6% 0;
    padding: 63px 4.1%;
  }

  .recruit-pageTtl {
    text-align: start;
  }

  .recruit-row{
    display: flex;
    padding: 33px 0 32px;
    border-bottom: 1px solid var(--color-black, #000);
  }

  .recruit-nameTxt {
    font-size: 1.6rem;
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-left: 7.43vw;
    width: 100%;
  }

  .recruit-name {
    font-size: 1.8rem;
    margin-top: 0;
    width: 25%;
  }

  .note {
    margin-top: 33px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
  }

  /* .btn-wrap {
    margin-top: 40px;
  } */

  .btn-page {
    margin-top: 0;
    padding: 14px 90px;
    font-size: 2.4rem;
  }
}

/* ====================================
CONTACT-page
==================================== */
.contact-form{
  padding: 31px 8.2% 64px;
  margin: 47px 5.3% 37px;
  border: 2px solid #000;
  background: #FFF;
  border-radius: 29px;
}

.question_dox{
  margin-top:26px ;
}

.question{
  font-size: 1.6rem;
  font-weight: 700;
  margin: 26px 0;
}

.questions{
  font-size: 1.6rem;
  font-weight: 700;
  margin: 26px 0;
}

.question::before{
  display: inline-block;
  content: '必須';
  height: 25px;
  width: 49px;
  text-align: center;
  background-color:var(--color-yellow,#E1A302);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
  margin-right: 14px;
}

.question_list{
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 11px;
  position: relative;
}

.question_list input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.wpcf7-list-item {
  cursor: pointer;
}

.wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label,
.wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label{
  position: relative;
  padding-left: 40px;
  display: inline-block;
}

.wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label::before,
.wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label::before{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #eaeaea;
  border-radius: 50%;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after,
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 2.5px;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color:var(--color-black,#000);
  border-radius: 50%;
}

.wpcf7-spinner{
  display: none;
}


.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: #eaeaea;
  border: none;
  padding: 12px;
  font-size: 1.4rem;
}

.contact-form input[type="checkbox"] {
  width: 19px;
  height: 19px;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  background-color: #eaeaea;
  margin-right: 10px;
  aspect-ratio: 1/1;
}

.privacy-box{
  padding: 27px 4.0% 20px;
  border: 1px solid #000;
  margin: 46px 0 26px;
}

.privacy-box__txt{
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 14px;
}

.input_down{
  display: flex;
}

/* CONTACT-page pc */
@media (min-width: 768px) {
.contact-form {
  padding: 66px 4.3% 109px;
  margin: 74px 4.8% 0;
  border: 5px solid #000;
  background: #FFF;
  border-radius: 29px;
}

.question {
  font-size: 2.4rem;
  margin: 21px 0;
}

.last_question{
  margin-bottom: 72px;
}

.question::before {
  height: 29px;
  width: 64px;
  font-size: 1.9rem;
}

.questions{
  font-size: 2.4rem;
  margin: 21px 0;
}

.question_list {
  display: inline-block;
  font-size: 2.4rem;
  margin-right: 71px;
  margin-top: 0;
}

.contact-form input[type="checkbox"] {
  margin-right: 14px;
  width: 24px;
  height:24px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-size: 2.0rem;
}

.privacy-box {
  padding: 23px 6.8% 40px;
  margin: 68px 0 30px;
}

.privacy-box__txt {
  font-size: 2.0rem;
  font-weight: 400;
  margin-top: 24px;
}
}

/* ====================================
completion page
==================================== */

.completion-page{
  margin-bottom: 36px;
}

.completion__box{
  margin: 47px 0 36px;
  padding: 0 5.3%;
}

.completion__txt{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  margin-top:16px;
}

/* completion-page pc */
@media (min-width: 768px) {
.completion__box {
  text-align: center;
  margin: 73px 0 80px;
}

.completion__txt {
  font-size: 2.4rem;
  letter-spacing: 0.48px;
  margin-top: 24px;
}
}