:root{
  --primary:#1B49A3;
  --secondary:#F5F9FF;
  --fonten:"Barlow Condensed", sans-serif;
  --fontjp:"Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden;
}

/* ----------------------------------------------
- Layout
---------------------------------------------- */
.l-container{
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 80px;
}

@media screen and (max-width:768px) {
  .l-container{
    padding-inline: 20px;
  }
}

/* ----------------------------------------------
- Commpornent
---------------------------------------------- */
.c-heading{
  margin-bottom: 56px;
  color: var(--primary);
  font-family: var(--fonten);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-heading-jp{
  display: block;
  width: fit-content;
  padding-left: 32px;
  background: url(../img/icon-heading_bl.svg) no-repeat left center / 16px;
  font-family: var(--fontjp);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-heading-wh{
  color: #fff;
}

.c-heading-wh > .c-heading-jp{
  background: url(../img/icon-heading_wh.svg) no-repeat left center / 16px;
}

.c-heading-center{
  text-align: center;
}

.c-heading-center > .c-heading-jp{
  margin: auto;
}

.c-button-center{
  text-align: center;
  margin-top: 40px;
}

.c-button-wh{
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (max-width:768px) {
  .c-heading{
  margin-bottom: 40px;
  font-size: 56px;
}

.c-heading-jp{
  font-size: 16px;
}

}

/* ----------------------------------------------
- Object
---------------------------------------------- */
/* header
---------------------------------------------- */
.p-header{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 16px 16px 16px 32px;
}

.p-header__logo{
  position: relative;
  height: 80px;
  z-index: 1;
}

.p-header__logo img{
  width: auto;
  height: 100%;
  -webkit-filter: drop-shadow(0px 0 10px rgba(255, 255, 255, 1));
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

.p-header__nav{
  display: flex;
  align-items: center;
  margin-left: auto;
}

.p-globalNav{
  margin-right: 40px;
}

.p-globalNav__list{
  display: flex;
  gap: 1em;
}

.p-globalNav__link{
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.p-globalNav__btn{
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--fonten);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-globalNav__btn span{
  font-size: 10px;
  font-weight: 700;
  font-family: var(--fontjp);
  line-height: 1.5;
}

.p-globalNav__btn img{
  width: 34px;
  height: 34px;
  margin-left: 8px;
}

.p-header__fixed{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
}


.p-header__fixed .p-header__logo{
  height: 60px;
}

.p-header__fixed .p-globalNav__link{
  color: var(--primary);
}

.p-hamburger{
  display: none;
}

@media screen and (max-width:1050px) {
    .p-header__logo{
    height: 60px;
  }

  .p-globalNav{
    margin-right: 24px;
  }
}

@media screen and (max-width: 1000px) {
  .p-header{
    padding: 16px;
  }

  .p-header__fixed .p-header__logo{
    height: 50px;
  }

  .p-globalNav__link{
    font-size: 13px;
  }

  .p-globalNav__btn{
    padding: 12px 16px;
    font-size: 20px;
  }

  .p-globalNav__btn img{
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 850px){
  .p-header__fixed .p-header__logo{
    height: 40px;
  }

  .p-header__nav{
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity;
  }

  .p-globalNav{
    margin-left: 0;
    margin-bottom: 40px;
  }

  .p-globalNav__list{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .p-globalNav__link{
    font-size: 20px;
  }

  .p-globalNav__btn{
  padding: 16px 24px;
  font-size: 28px;
}

.p-globalNav__btn img{
  width: 30px;
  height: 30px;
}

.p-hamburger{
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin: auto 0 auto auto;
  z-index: 1;
}

.p-hamburger__line{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  margin: auto;
  background-color: var(--primary);
  transition: 0.3s;
}

.p-hamburger__line::after,
.p-hamburger__line::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: 0.3s;
}
.p-hamburger__line::after{
  top: -8px;
}
.p-hamburger__line::before{
  top: 8px;
}

.is-active .p-header__nav{
  opacity: 1;
  pointer-events: all;
}

.is-active .p-hamburger__line{
  background-color: transparent;
}

.is-active .p-hamburger__line::before{
  transform: rotate(45deg);
  top: 0;
}

.is-active .p-hamburger__line::after{
  transform: rotate(-45deg);
  top: 0;
}

.is-active .p-globalNav__link{
  color: var(--primary);
}
}

/* hero
---------------------------------------------- */
.p-hero{
  width: 100%;
  /* height: 100vh; */
  height: 80vh;
  background: url(../img/hero.jpg) no-repeat center / cover;
}

/* about
---------------------------------------------- */
.p-about{
  display: flex;
  /* justify-content: center; */
  padding-inline: 80px;
  overflow: hidden;
}

.p-about__textBox{
  position: relative;
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 80px;
  background-color: #1B49A3;
  color: #fff;
  z-index: -1;
}

.p-about__textBox::before{
  content: "";
  position: absolute;
  top: 0;
  left: -11vw;
  width: 11vw;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
}

.p-about__textBox::after{
  content: "";
  position: absolute;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
}

.p-about__read{
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}

.p-about__image{
  align-self: flex-start;
  width: 40%;
  max-width: 650px;
  /* margin-right: auto; */
  padding-block: 80px;
}

@media screen and (max-width:960px) {
  .p-about{
  display: flex;
  padding-inline: 40px;
  overflow: hidden;
}

.p-about__textBox{
  padding: 80px 0 80px 40px;
}
}

@media screen and (max-width:768px) {
  .p-about{
    flex-direction: column-reverse;
    padding-inline: 0;
  }

  .p-about__textBox{
    padding: 64px 0 210px 20px;
  }

  .p-about__read{
    font-size: 18px;
  }
  .p-about__read br.pc {
    display: none;
  }

  .p-about__image{
    position: relative;
    width: 100%;
    max-width: none;
    margin-top: -160px;
    padding-block: 0;
    z-index: 1;
  }
}

/* wanted
---------------------------------------------- */
.p-wanted{
  padding: 80px;
  background: url(../img/wanted-bg.jpg) no-repeat center / cover;
  text-align: center;
  color: #fff;
}

.p-wanted__read{
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width:768px){
  .p-wanted{
    margin-top: 40px;
    padding: 64px 24px;
    background-position: right;
  }

  .p-wanted__read{
    font-size: 14px;
  }
}

/* service
---------------------------------------------- */
.p-service{
  margin-top: 80px;
}

.p-service__block + .p-service__block{
  margin-top: 72px;
}

.p-service__image{
  display: block;
  width: calc(50vw + 500px);
  max-width: calc(100% - 80px);
  margin-bottom: 48px;
}

.p-service__block:nth-child(even) .p-service__image{
  margin-left: auto;
}
.p-service__contents{
  display: flex;
  gap: 80px;
}

.p-service__heading{
  flex-shrink: 0;
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-service__num{
  display: block;
  margin-bottom: 8px;
  font-family: var(--fonten);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.p-service__textBox{
  flex: 1;
}

.p-service__title{
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-service__read{
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-case{
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.p-case__textBox{
  /* flex: 1; */
}

.p-case__title{
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

.p-case__list{
  font-size: 14px;
  line-height: 2;
}

.p-case__image{
  align-self: flex-start;
  width: 500px;
}

@media screen and (max-width:1000px) {
  .p-case{
    flex-wrap: wrap;
    row-gap: 16px;
  }
}

@media screen and (max-width:768px){
  .p-service{
    margin-top: 64px;
  }

  .p-service__block + .p-service__block{
  margin-top: 48px;
}

.p-service__image{
  max-width: calc(100% - 20px);
  margin-bottom: 24px;
}

  .p-service__contents{
    flex-direction: column;
    gap: 24px;
  }

  .p-service__heading{
  font-size: 20px;
}

.p-service__num{
  margin-bottom: 8px;
  font-size: 40px;
}

.p-service__title{
  font-size: 16px;
}

.p-service__read{
  margin-top: 16px;
}

.p-case{
  flex-direction: column;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.p-case__title{
  margin-bottom: 8px;
  font-size: 14px;
}

.p-case__list{
  font-size: 12px;
}

.p-case__image{
  align-self: flex-start;
  width: 300px;
}
}

/* company
---------------------------------------------- */
.p-company{
  position: relative;
  margin-top: 200px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 90vw, #fff 90vw, #fff 100vw);
}

.p-company__body{
  display: flex;
}

.p-company__contents{
  flex-shrink: 0;
  width: 400px;
  margin-right: auto;
  padding-block: 80px;
}

.p-company__image{
  position: relative;
  top: -80px;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}

.p-company__image img{
  width: 100%;
  height: auto;
}

.p-company__item{
  display: flex;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.p-company__item + .p-company__item{
  margin-top: 16px;
}

.p-company__item dt{
  flex-shrink: 0;
  width: 110px;
  font-weight: 400;
}

@media screen and (max-width:960px){
  .p-company{
    margin-top: calc(30% + 64px);
  }
  .p-company__body{
    flex-direction: column-reverse;
  }

  .p-company__contents{
    padding-block: 40px 64px;
  }

  .p-company__image{
    position: static;
    margin-top: -30%;
  }
}

@media screen and (max-width:768px){
  .p-company{
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) calc(100% - 20px), #fff calc(100% - 20px), #fff 100vw);
  }

  .p-company__contents{
    width: 100%;
    padding-inline: 8px;
  }
}

/* message
---------------------------------------------- */
.p-message{
  margin-top: 120px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0, #fff 10vw, var(--secondary) 10vw, var(--secondary) 100vw);
}

.p-message__body{
  position: relative;
  display: flex;
  gap: 80px;
  padding: 120px 0 120px 80px;
}

.p-message__body .c-heading{
  flex-shrink: 0;
  margin-bottom: 0;
}

.p-message__contents{
  flex: 1;
  padding-top: 32px;
}

.p-message__textBox{
  position: relative;
  /* padding-block: 56px; */
  /* background-color: var(--secondary); */
}

.p-message__read{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-message__sign{
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.p-message__sign span{
  display: block;
  width: 277px;
  margin-top: 16px;
}

@media screen and (max-width:960px){
  .p-message__body{
    flex-direction: column;
    gap: 24px;
    padding: 80px 0;
  }

  .p-message__contents{
    width: 100%;
    padding-top: 0;
  }

  .p-message__textBox{
    padding: 40px;
  }

  .p-message__textBox::before{
    content: none;
  }

  .p-message__image{
    position: relative;
    width: calc(100% + 80px);
    max-width: none;
    margin-left: -80px;
    margin-top: -100px;
    z-index: 1;
  }

  .p-message__image::after{
    content: "";
    position: absolute;
    right: -80px;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
    z-index: -1;
  }
}

@media screen and (max-width:768px){
  .p-message{
    margin-top: 64px;
    background: linear-gradient(90deg, #fff 0, #fff 20px, var(--secondary) 20px, var(--secondary) 100vw);
  }

  .p-message__body{
    padding-left: 32px;
  }

  .p-message__textBox{
    padding: 24px 0 0;
  }

  .p-message__contents .c-heading{
    padding-bottom: 40px;
  }

  .p-message__image::after{
    right: -20px;
  }

}

/* contact
---------------------------------------------- */
.p-contact{
  margin-top: 120px;
  padding-block: 96px;
  background: url(../img/contact-bg.jpg) no-repeat center / cover;
  color: #fff;
}

.p-contact__body{
  display: flex;
  justify-content: center;
  gap: 120px;
}

.p-contact__body .c-heading{
  align-self: center;
  margin-bottom: 0;
}

.p-contact__read{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-contact__tel{
  margin-top: 16px;
  font-family: var(--fonten);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-contact__tel img{
  width: 70px;
  height: 70px;
  margin-right: 16px;
}

.p-contact__add{
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:960px){
  .p-contact__body{
  flex-direction: column;
  gap: 40px;
}

.p-contact__body .c-heading{
  align-self: flex-start;
}
}

@media screen and (max-width:768px){
  .p-contact__read{
    font-size: 18px;
  }

  .p-contact__tel{
    font-size: 40px;
  }

  .p-contact__tel img{
    width: 42px;
    height: 42px;
    margin-right: 8px;
  }

  .p-contact__add{
    font-size: 14px;
  }
}

/* footer
---------------------------------------------- */
.p-footer{
  padding: 56px 40px 40px;
  background-color: #103782;
}

.p-footer__contents{
  display: flex;
  justify-content: center;
  gap: 80px;
}

.p-footer__logo{
  width: auto;
  height: 80px;
}

.p-footer__addBox{
  align-self: center;
  display: flex;
  gap: 48px;
}

.p-footer__add{
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-footer__button{
  align-self: center;
  display: inline-block;
  width: 150px;
  padding: 4px 16px 8px;
  border-radius: 20px;
  background-color: #fff;
  color: var(--primary);
  text-align: center;
  font-family: var(--fonten);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-footer__copy{
  margin-top: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (max-width:768px) {
  .p-footer__contents{
    flex-direction: column;
    gap: 32px;
  }

  .p-footer__logo{
    height: 48px;
  }

  .p-footer__addBox{
    flex-direction: column;
    gap: 16px;
  }

  .p-footer__add{
    text-align: center;
  }
}

/* wanted
---------------------------------------------- */
.p-wantedHero{
  position: relative;
  margin-top: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 65vw, #fff 65vw, #fff 100vw);
}

.p-wantedHero__body{
  display: flex;
  /* gap: 64px; */
}

.p-wantedHero__contents{
  flex-shrink: 0;
  width: 550px;
  margin-right: auto;
  padding-block: 120px;
}

.p-wantedHero__read{
  color: #fff;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-wantedHero__image{
  align-self: center;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 64px;
}

.p-wantedHero__image img{
  width: 100%;
  height: auto;
}

@media screen and (max-width:1100px) {
.p-wantedHero__contents{
  width: 400px;
  padding-block: 80px;
}

.p-wantedHero__image{
  margin-left: 48px;
}
}

@media screen and (max-width:960px){
  .p-wantedHero{
    margin-top: 82px;
    background: linear-gradient(var(--primary) 0%, var(--primary) 75%, #fff 75%, #fff 100%);
  }

  .p-wantedHero__body{
    flex-direction: column;
  }

  .p-wantedHero__contents{
    width: 100%;
  }

  .p-wantedHero__image{
    margin-left: 0;
  }
}

@media screen and (max-width:768px) {
  .p-wantedHero{
    margin-top: 72px;
    background: linear-gradient(var(--primary) 0%, var(--primary) 82%, #fff 82%, #fff 100%);
  }

  .p-wantedHero__contents{
    padding-block: 64px 32px;
  }

  .p-wantedHero__read{
    font-size: 16px;
  }
}

.p-wantedMain{
  margin-top: 120px;
}

.p-wantedMain__copy{
  max-width: 1160px;
  margin: auto;
  padding-inline: 80px;
  color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-wantedFlow{
  margin-top: 48px;
  padding-block: 56px;
  background:linear-gradient(90deg, #fff 0, #fff 80px, #F5F9FF 80px, #F5F9FF 100%);
}

.p-wantedFlow__item{
  position: relative;
  display: flex;
  z-index: 0;
}

.p-wantedFlow__item::before{
  content: "";
  position: absolute;
  bottom:-100px;
  left: 45px;
  width: 2px;
  height: calc(100% + 32px);
  background-color: var(--primary);
  z-index: -1;
}


.p-wantedFlow__item:last-child:before{
  content: none;
}

.p-wantedFlow__item + .p-wantedFlow__item{
  margin-top: 64px;
}

.p-wantedFlow__step{
  flex-shrink: 0;
  align-self: center;
  padding: 16px 24px;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--fonten);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-wantedFlow__icon{
  width: 164px;
  height: auto;
  margin-inline: 72px 80px;
}

.p-wantedFlow__textBox{
  align-self: center;
}

.p-wantedFlow__title{
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.p-wantedFlow__text{
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-wantedFlow__text span{
  color: #00B900;
  font-weight: 600;
}

.p-wantedFlow__att{
  margin-top: 32px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
  .p-wantedMain{
  margin-top: 64px;
}

.p-wantedMain__copy{
  padding-inline: 20px;
  font-size: 20px;
}

.p-wantedFlow{
  margin-top: 24px;
  padding-block: 40px;
  background:linear-gradient(90deg, #fff 0, #fff 20px, #F5F9FF 20px, #F5F9FF 100%);
}

.p-wantedFlow__item{
  display: block;
  margin-left: 20px;
  padding-left: 110px;
}

.p-wantedFlow__item::before{
  /* content: none; */
  bottom: -40px;
  left: 36px;
}

.p-wantedFlow__item + .p-wantedFlow__item{
  margin-top: 40px;
}

.p-wantedFlow__step{
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 16px;
  font-size: 16px;
}

.p-wantedFlow__icon{
  margin-inline: 0;
}

.p-wantedFlow__textBox{
  margin-top: 16px;
}

.p-wantedFlow__title{
  font-size: 16px;
}

.p-wantedFlow__text{
  font-size: 14px;
}

.p-wantedFlow__att{
  margin-top: 24px;
  font-size: 13px;
}
}

.p-wantedLine{
  display: flex;
  justify-content: center;
  gap: 32px 64px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding: 56px 40px;
  background: url(../img/border-top.svg) no-repeat top center / 100%, url(../img/border-bottom.svg) no-repeat bottom center / 100%;
}

.p-wantedLine__read{
  flex-shrink: 0;
  align-self: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-wantedLine__list{
  display: flex;
  gap: 24px 40px;
}

.p-wantedLine__item + .p-wantedLine__item{
  /* margin-top: 24px; */
}

.p-wantedLine__title{
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-wantedLine__bnr{
  width: 210px;
  height: auto;
}

.p-wantedLine__id{
  width: 210px;
  padding: 14px;
  border: 1px solid var(--primary);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.p-wantedLine__qr{
  display: block;
  width: 156px;
  margin: auto;
}

@media screen and (max-width:768px) {
  .p-wantedLine{
  gap: 24px;
  margin-top: 48px;
  padding: 40px 20px;
  background: url(../img/border-top_sp.svg) no-repeat top center / 100%, url(../img/border-bottom_sp.svg) no-repeat bottom center / 100%;
}

.p-wantedLine__read{
  flex-shrink: auto;
  text-align: center;
  font-size: 16px;
}

  .p-wantedLine__list{
    flex-direction: column;
  }

.p-wantedLine__title{
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

}

/* ----------------------------------------------
- Utility
---------------------------------------------- */
.u-scrollPrevent{
  overflow: hidden;
}
