@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;800&display=swap");
@import url("https://use.typekit.net/yvr1aan.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bound {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  20% {
    transform: translateY(20px);
    opacity: 0;
  }
  40% {
    transform: translateY(-20px);
    opacity: 1;
  }
  60% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* ---------------------------------------------------------page--------------------------------------------------------- */
.deco {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  z-index: 5;
}
.deco.on {
  animation-name: bound;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-direction: normal;
}
.deco.d1 {
  width: 446px;
  top: 144px;
  left: -40px;
}
.deco.d1.on {
  animation-delay: 0.25s;
}
.deco.d2 {
  width: 335px;
  bottom: 88px;
  left: calc(100% - 335px - 40px);
}
.deco.d5 {
  width: 329px;
  bottom: 64px;
  right: -56px;
}
.deco.d5.on {
  animation-delay: 0.5s;
}
.deco.d6 {
  width: 446px;
  top: calc(50% - 97px);
  left: -224px;
}
.deco.d6.on {
  animation-delay: 0.25s;
}
.deco.d7 {
  width: 246px;
  top: calc(50% - 97px);
  right: 64px;
}
.deco.d8 {
  width: 318px;
  bottom: -32px;
  left: -40px;
}
.deco.d8.on {
  animation-delay: 0s;
}

main {
  width: 100%;
  padding: 88px 0 0 0;
  margin: 0px;
  position: relative;
  overflow: hidden;
}
main .scroll {
  width: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: calc(100% - 95px);
  left: 15px;
  z-index: 5;
}
main .scroll p {
  width: 100%;
  height: 95px;
  background-image: url(../images/arrow_scroll.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  display: block;
}
main #visual {
  width: 100%;
  padding: 0px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #visual.on {
  opacity: 1;
}
main #visual .invisual {
  width: calc(100% - 80px);
  max-height: calc(100vh - 88px - 40px - 84px);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
main #visual .invisual .swiper-wrapper {
  width: 100%;
}
main #visual .invisual .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
main #visual .swiper-pagination {
  width: 8px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
  position: absolute;
  top: calc(50% - 4px);
  left: 16px;
  z-index: 15;
}
main #visual .swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 8px;
  background-color: #FFF;
  border: solid 1px #000;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main #visual .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  display: block;
}
main #lead {
  width: 100%;
  padding-bottom: 265px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
main #lead.on h3 {
  opacity: 1;
}
main #lead h3 {
  width: calc(100% - 80px);
  height: calc((100vw - 80px) * 0.05754);
  background-image: url(../images/lead.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 272px;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #lead .line {
  width: 100%;
  gap: 0 48px;
}
main #lead .line:not(:last-child) {
  margin-bottom: 88px;
}
main #lead .line.on .ph::before {
  opacity: 1;
}
main #lead .line.on .ph figure {
  opacity: 1;
}
main #lead .line.on .text {
  opacity: 1;
}
main #lead .line.r {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
main #lead .line.r .ph {
  width: 42.1875%;
  padding: 0 0 32px 32px;
  position: relative;
}
main #lead .line.r .ph::before {
  content: "";
  width: 100%;
  height: 22.65vw;
  border-radius: 16px 0 0 16px;
  background-image: url(../images/bg_photo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
}
main #lead .line.r .ph figure {
  width: 100%;
  border-radius: 16px 0 0 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
main #lead .line.l {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #lead .line.l .ph {
  width: 42.1875%;
  padding: 0 32px 32px 0;
  position: relative;
}
main #lead .line.l .ph::before {
  content: "";
  width: 100%;
  height: 22.65vw;
  border-radius: 0 16px 16px 0;
  background-image: url(../images/bg_photo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
}
main #lead .line.l .ph figure {
  width: 100%;
  border-radius: 0 16px 16px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
main #lead .line .ph::before {
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main #lead .line .ph figure {
  opacity: 0;
  transition: all 0.3s ease-in 0.5s;
}
main #lead .line .text {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px 0;
  opacity: 0;
  transition: all 0.3s ease-in 0.75s;
}
main #lead .line .text p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.1em;
  text-align: left;
  font-feature-settings: "palt";
}
main .sec#pickup {
  width: 100%;
  padding: 16px 0 80px 0;
  position: relative;
  background-image: url(../images/bg_pickup.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup.on {
  opacity: 1;
}
main .sec#pickup.on .title {
  clip-path: inset(0 0 0 0);
}
main .sec#pickup.on .wrapper {
  clip-path: inset(0 0 0 0);
}
main .sec#pickup .title {
  width: calc(100% - 64px);
  margin-bottom: 16px;
  clip-path: inset(0 100% 0 0);
  transition: all 0.35s ease-in 0.5s;
}
main .sec#pickup .title h3 {
  width: 100%;
  height: auto;
}
main .sec#pickup .wrapper {
  width: 100%;
  padding: 88px 0;
  position: relative;
  clip-path: inset(0 0 0 100%);
  transition: all 0.35s ease-in 0.75s;
}
main .sec#pickup .wrapper .catch {
  width: calc((100vw - 16px) / 3);
  height: calc(100% - 144px - 88px);
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 144px;
  left: calc((100vw - 16px) / 3 / 2);
  z-index: 5;
}
main .sec#pickup .wrapper .catch h4 {
  width: 344px;
  height: 106px;
  background-image: url(../images/catch_pickup.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
}
main .sec#pickup .wrapper .catch p {
  color: #603813;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0em;
  text-align: left;
}
main .sec#pickup .wrapper .arrow {
  width: 56px;
  height: 56px;
  background-color: #fb4b23;
  background-image: url(../../common/images/triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  position: absolute;
  top: calc(50% - 28px);
  z-index: 5;
  transition: all 0.3s ease-in 0s;
  cursor: pointer;
}
main .sec#pickup .wrapper .arrow:hover {
  background-color: #f7931e;
}
main .sec#pickup .wrapper .arrow.pprev {
  left: calc(50% - 28px);
}
main .sec#pickup .wrapper .arrow.pnext {
  right: calc(16.6666666667vw - 28px);
  transform: rotate(180deg);
}
main .sec#pickup .wrapper .inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
  mask-image: linear-gradient(to right, #000 0%, #000 calc((50vw - 24px) / 1.5 / 2), transparent calc((50vw - 24px) / 1.5 / 2), transparent 50%, #000 50%, #000 50%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc((50vw - 24px) / 1.5 / 2), transparent calc((50vw - 24px) / 1.5 / 2), transparent 50%, #000 50%, #000 50%, #000 100%);
}
main .sec#pickup .wrapper .inner .pslider {
  width: 50%;
  position: relative;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper {
  width: 100%;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide {
  width: 100%;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a:hover > div figure {
  scale: 1.05;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a:hover > div p {
  color: #FFF;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4 {
  color: #603813;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  position: relative;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::before, main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: #603813;
  display: block;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::before {
  transform: rotate(-30deg);
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::after {
  transform: rotate(30deg);
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a > div {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a > div figure {
  width: 100%;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a > div p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
  padding: 24px;
  background-color: #fb4b23;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .interview {
  width: 100%;
  padding: 40px 0;
  margin-bottom: 80px;
  overflow: hidden;
}
main .sec#pickup .interview.on .ititle {
  opacity: 1;
}
main .sec#pickup .interview.on .islider {
  opacity: 1;
}
main .sec#pickup .interview .ititle {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
  margin-bottom: 40px;
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .interview .ititle h3 {
  width: 366px;
  height: 44px;
  background-image: url(../images/title_interview.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main .sec#pickup .interview .ititle p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  background-color: #fb4b23;
  padding: 8px;
}
main .sec#pickup .interview .islider {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in 0.25s;
}
main .sec#pickup .interview .islider .swiper-wrapper {
  width: 100%;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a {
  padding-bottom: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover figure img {
  transform: scale(1.05);
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover > div dl dt, main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover > div dl dd {
  color: #FFF;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a figure {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a figure img {
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div {
  background-image: url(../images/bg_pickup_each.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 32px);
  padding: 40px 0;
  position: relative;
  margin: -40px 0 0 0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl {
  text-align: left;
  padding: 0 16px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 0;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl dt {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl dd {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .interview .islider .arrow {
  width: 56px;
  height: 56px;
  background-color: #fb4b23;
  background-image: url(../../common/images/triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-radius: 28px;
  position: absolute;
  top: calc(50% - 28px);
  z-index: 5;
  transition: all 0.3s ease-in 0s;
  cursor: pointer;
}
main .sec#pickup .interview .islider .arrow:hover {
  background-color: #f7931e;
}
main .sec#pickup .interview .islider .arrow.iprev {
  left: 120px;
}
main .sec#pickup .interview .islider .arrow.inext {
  right: 120px;
  transform: rotate(180deg);
}
main .sec#pickup .work {
  width: 100%;
}
main .sec#pickup .work.on .banners .banner {
  opacity: 1;
}
main .sec#pickup .work .banners {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0 10px;
}
main .sec#pickup .work .banners .banner {
  width: 100%;
  position: relative;
  flex-shrink: 1;
  transition: all 0.3s ease-in 0s;
  opacity: 0;
}
main .sec#pickup .work .banners .banner:nth-child(2) {
  transition-delay: 0.25s;
}
main .sec#pickup .work .banners .banner:nth-child(3) {
  transition-delay: 0.5s;
}
main .sec#pickup .work .banners .banner .point {
  width: 128px;
  height: 128px;
  border-radius: 64px;
  background-color: #fb4b23;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -64px;
  right: 16px;
  z-index: 1;
}
main .sec#pickup .work .banners .banner .point span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
main .sec#pickup .work .banners .banner a {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
main .sec#pickup .work .banners .banner a:hover figure {
  transform: scale(1.05);
}
main .sec#pickup .work .banners .banner a figure {
  width: 100%;
  transition: all 0.3s ease-in 0s;
}
main .sec#pickup .work .banners .banner a > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
main .sec#pickup .work .banners .banner a p {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px 0;
}
main .sec#pickup .work .banners .banner a p span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  padding: 8px;
  background-color: #fb4b23;
}
main .sec#message {
  width: 100%;
  position: relative;
}
main .sec#message.on .inner h3 {
  opacity: 1;
}
main .sec#message .inner {
  width: 100%;
  height: 680px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .sec#message .inner h3 {
  width: 578px;
  height: 248px;
  background-image: url(../images/text_message.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .entry {
  width: 100%;
}
main .entry > div {
  width: 100%;
}
main .entry > div a {
  width: 100%;
  height: 224px;
  background-image: url(../../common/images/bg_entry.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in 0s;
}
main .entry > div a:hover {
  filter: brightness(1.5);
}
main .entry > div a:hover span {
  font-size: 3rem;
}
main .entry > div a span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.3s ease-in 0s;
}

@media screen and (max-width: 1280px) {
  /*
  main{
  	#visual{
  		.invisual{
  			width: calc(100% - 80px);
  			clip-path: none;
  		}
  	}		
  }
  */
}
/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  .deco {
    position: absolute;
    z-index: 5;
  }
  .deco.d1 {
    width: 222px;
    top: 144px;
    left: calc(100% - 222px + 45px);
  }
  .deco.d2 {
    width: 168px;
    top: calc(100% - 120px);
    left: -48px;
  }
  .deco.d3 {
    width: 220px;
    top: 168px;
    right: -80px;
  }
  .deco.d4 {
    width: 168px;
    bottom: 160px;
    left: -40px;
  }
  .deco.d5 {
    width: 208px;
    bottom: 64px;
    right: -40px;
  }
  .deco.d6 {
    width: 160px;
    top: 40px;
    left: -24px;
  }
  .deco.d7 {
    width: 120px;
    top: 320px;
    right: 16px;
  }
  .deco.d8 {
    width: 160px;
    top: -40px;
    bottom: auto;
    left: -40px;
  }

  main {
    width: 100%;
    padding: 105px 0 0 0;
    margin: 0px;
    position: relative;
    overflow: hidden;
  }
  main .scroll {
    width: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: calc(100% - 95px - 48px);
    left: 11px;
    z-index: 5;
  }
  main .scroll p {
    width: 100%;
    height: 95px;
  }
  main #visual {
    margin-bottom: 24px;
  }
  main #visual .invisual {
    width: calc(100% - 32px);
    margin: 0 0 0 auto;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
  }
  main #visual .swiper-pagination {
    top: calc(50% - 4px - 48px);
    left: 12px;
  }
  main #lead {
    width: 100%;
    padding-bottom: 120px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #lead h3 {
    width: calc(100% - 64px);
    height: calc((100vw - 64px) * 0.266);
    background-image: url(../images_sp/lead.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-bottom: 160px;
  }
  main #lead .line {
    width: 100%;
    gap: 56px 0;
  }
  main #lead .line:not(:last-child) {
    margin-bottom: 56px;
  }
  main #lead .line.r {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #lead .line.r .ph {
    width: calc(100% - 48px);
    padding: 0 0 16px 16px;
    margin: 0 0 0 auto;
    position: relative;
    order: 2;
  }
  main #lead .line.r .ph::before {
    content: "";
    width: 100%;
    height: calc((100vw - 48px) * 0.565);
    border-radius: 16px 0 0 16px;
  }
  main #lead .line.r .ph figure {
    width: 100%;
    border-radius: 16px 0 0 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  main #lead .line.r .text {
    order: 1;
  }
  main #lead .line.l {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #lead .line.l .ph {
    width: calc(100% - 48px);
    padding: 0 16px 16px 0;
    margin: 0 auto 0 0;
    position: relative;
    order: 2;
  }
  main #lead .line.l .ph::before {
    content: "";
    width: 100%;
    height: calc((100vw - 48px) * 0.565);
    border-radius: 0 16px 16px 0;
  }
  main #lead .line.l .ph figure {
    width: 100%;
    border-radius: 0 16px 16px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  main #lead .line.l .text {
    order: 1;
  }
  main #lead .line .ph::before {
    transition-delay: 0.25s;
  }
  main #lead .line .ph figure {
    transition-delay: 0.75s;
  }
  main #lead .line .text {
    width: calc(100% - 32px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px 0;
    transition-delay: 0s;
  }
  main #lead .line .text p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: left;
  }
  main .sec#pickup {
    width: 100%;
    padding: 16px 0 24px 0;
    position: relative;
  }
  main .sec#pickup .title {
    width: 100%;
    margin-bottom: 16px;
  }
  main .sec#pickup .title h3 {
    background-image: url(../images/title_pickup.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 5.825vw;
  }
  main .sec#pickup .wrapper {
    width: 100%;
    padding: 40px 0;
    position: relative;
  }
  main .sec#pickup .wrapper .catch {
    width: 100%;
    height: auto;
    padding: 0 24px;
    margin-bottom: 40px;
    position: relative;
    top: auto;
    left: auto;
    z-index: 5;
  }
  main .sec#pickup .wrapper .catch h4 {
    width: 235px;
    height: 72px;
    background-image: url(../images/catch_pickup.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-bottom: 24px;
  }
  main .sec#pickup .wrapper .catch p {
    color: #603813;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.875;
    letter-spacing: 0em;
    text-align: left;
  }
  main .sec#pickup .wrapper .arrow {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border-radius: 20px;
    top: calc(100% - 40px - 144px);
  }
  main .sec#pickup .wrapper .arrow:hover {
    background-color: #fb4b23;
  }
  main .sec#pickup .wrapper .arrow.pprev {
    left: 8px;
  }
  main .sec#pickup .wrapper .arrow.pnext {
    right: 8px;
    transform: rotate(180deg);
  }
  main .sec#pickup .wrapper .inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
    mask-image: none;
    -webkit-mask-image: none;
  }
  main .sec#pickup .wrapper .inner .pslider {
    width: 100%;
    position: relative;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper {
    width: 100%;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide {
    width: 100%;
    transition: all 0.3s ease-in 0s;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a:hover > div figure {
    scale: 1.05;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a:hover > div p {
    color: #FFF;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4 {
    color: #603813;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    gap: 0 16px;
    position: relative;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::before, main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::after {
    content: "";
    width: 2px;
    height: 40px;
    background-color: #603813;
    display: block;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::before {
    transform: rotate(-30deg);
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a h4::after {
    transform: rotate(30deg);
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a > div {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
  main .sec#pickup .wrapper .inner .pslider .swiper-wrapper .swiper-slide a > div p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    padding: 16px;
  }
  main .sec#pickup .interview {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  main .sec#pickup .interview .ititle {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    margin-bottom: 24px;
  }
  main .sec#pickup .interview .ititle h3 {
    width: 266px;
    height: 32px;
    background-image: url(../images/title_interview.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  main .sec#pickup .interview .ititle p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    background-color: #fb4b23;
    padding: 8px;
  }
  main .sec#pickup .interview .islider {
    width: 100%;
    position: relative;
  }
  main .sec#pickup .interview .islider .swiper-wrapper {
    width: 100%;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover figure img {
    transform: scale(1.05);
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover > div dl dt, main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a:hover > div dl dd {
    color: #FFF;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a figure {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a figure img {
    transition: all 0.3s ease-in 0s;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div {
    width: calc(100% - 32px);
    padding: 16px 0;
    margin: -32px 0 0 0;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl {
    text-align: left;
    padding: 0 16px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl dt {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.3s ease-in 0s;
  }
  main .sec#pickup .interview .islider .swiper-wrapper .swiper-slide a > div dl dd {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.3s ease-in 0s;
  }
  main .sec#pickup .interview .islider .arrow {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border-radius: 20px;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 5;
    transition: all 0.3s ease-in 0s;
    cursor: pointer;
  }
  main .sec#pickup .interview .islider .arrow:hover {
    background-color: #f7931e;
  }
  main .sec#pickup .interview .islider .arrow.iprev {
    left: 8px;
  }
  main .sec#pickup .interview .islider .arrow.inext {
    right: 8px;
  }
  main .sec#pickup .work {
    width: 100%;
  }
  main .sec#pickup .work .banners {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-sart;
    align-items: center;
    gap: 24px 0;
  }
  main .sec#pickup .work .banners .banner {
    width: calc(100% - 48px);
    position: relative;
    flex-shrink: 1;
  }
  main .sec#pickup .work .banners .banner .point {
    width: 96px;
    height: 96px;
    border-radius: 48px;
    top: -16px;
    right: auto;
    left: -16px;
  }
  main .sec#pickup .work .banners .banner .point span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main .sec#pickup .work .banners .banner a {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  main .sec#pickup .work .banners .banner a:hover figure {
    transform: scale(1.05);
  }
  main .sec#pickup .work .banners .banner a figure {
    width: 100%;
    transition: all 0.3s ease-in 0s;
  }
  main .sec#pickup .work .banners .banner a p {
    gap: 8px 0;
  }
  main .sec#pickup .work .banners .banner a p span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec#message {
    width: 100%;
    position: relative;
  }
  main .sec#message .inner {
    width: 100%;
    height: 384px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  main .sec#message .inner h3 {
    width: 289px;
    height: 124px;
    background-image: url(../images/text_message.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  main .entry {
    width: 100%;
  }
  main .entry > div a {
    width: 100%;
    height: 160px;
  }
  main .entry > div a:hover span {
    font-size: 2rem;
  }
  main .entry > div a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.3s ease-in 0s;
  }
}

/*# sourceMappingURL=style_home.css.map */
