@charset "utf-8";

/* * * アイキャッチ * * */ 
.p-eye-catch {
  margin-top: 80px;
  position: relative;
}

.p-eye-catch__image {
  width: 100%;
  object-fit: contain;
}

.p-eye-catch-text {
  font-size: calc(56 / var(--pc-screen-base-size) * 100vw);
  letter-spacing: 0.1em;
  font-weight: bold;
  position: absolute;
  left: calc(150 / var(--pc-screen-base-size) * 100vw);
  top: calc(200 / var(--pc-screen-base-size) * 100vw);
}

.p-eye-catch-text-name {
  display: flex;
}

.p-eye-catch-text__text {
  margin-bottom: calc(57 / var(--pc-screen-base-size) * 100vw);
  line-height: 1.65;
}

.p-eye-catch-text-name-box {
  position: relative;
  background-color: var(--color-blue);
  width: calc(118 / var(--pc-screen-base-size) * 100vw);
  height: calc(118 / var(--pc-screen-base-size) * 100vw);
}

.p-eye-catch-text-name-box p {
  font-size: calc(72 / var(--pc-screen-base-size) * 100vw);
  color: var(--color-white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-eye-catch-text-name-box:first-of-type {
  margin-right: calc(6 / var(--pc-screen-base-size) * 100vw);
}

.p-eye-catch-text-name-box:not(:first-of-type):not(:last-of-type) {
  margin-left: calc(6 / var(--pc-screen-base-size) * 100vw);
  margin-right: calc(6 / var(--pc-screen-base-size) * 100vw);
}

.p-eye-catch-text-name-box:last-of-type {
  margin-left: calc(6 / var(--pc-screen-base-size) * 100vw);
}

@media screen and (max-width: 767px) {
  .p-eye-catch{
    margin-top: 64px;
  }
  .p-eye-catch-text {
    font-size: calc(32 / var(--sp-screen-base-size) * 100vw);
    letter-spacing: 0.1em;
    left: calc(24 / var(--sp-screen-base-size) * 100vw);
    top: calc(32 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text__text {
    margin-bottom: calc(20 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text-name-box {
    width: calc(61 / var(--sp-screen-base-size) * 100vw);
    height: calc(61 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text-name-box p {
    font-size: calc(37 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text-name-box:first-of-type {
    margin-right: calc(3 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text-name-box:not(:first-of-type):not(:last-of-type) {
    margin-left: calc(3 / var(--sp-screen-base-size) * 100vw);
    margin-right: calc(3 / var(--sp-screen-base-size) * 100vw);
  }

  .p-eye-catch-text-name-box:last-of-type {
    margin-left: calc(3 / var(--sp-screen-base-size) * 100vw);
  }
}
/* * * アイキャッチ /E * * */ 


/* * * イントロ * * */ 
.p-intro {
  margin-top: -7vw;
  margin-bottom: calc(80 / var(--pc-screen-base-size) * 100vw);
  position: relative;
}

.p-intro-contents {
  text-align: center;
  position: relative;

  background-image: url(../img/intro-makimono-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;      
  position: relative;
  transform: translateX(-100%);  
  transition: transform 600ms 300ms ease-out;
}

.p-intro-bg__illust--left,
.p-intro-bg__illust--right{
  display: block;
  position: absolute;
}

.p-intro-bg__illust--left{
  width: 16%;
  left: 3%;
  bottom: 22%;
}

.p-intro-bg__illust--right{
  width: 14%;
  right: 11%;
  bottom: 19.5%;
}

.p-intro-info{
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.p-intro__title {
  /* font-size: 43px; */
  font-size: calc(43 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  letter-spacing: 0.1em;

  display: inline;
  background-image: linear-gradient(to bottom, #FFF500, #FFF500);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 30px;
  transition: background 600ms 300ms ease-out;
  cursor: pointer;
}

.highlighted {
  background-size: 100% 30px;
}

.p-intro-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* height: calc(540 / var(--pc-screen-base-size) * 100vw); */
  /* height: 501px; */
  height: 30vw;
}

.p-intro-makimono__image{
  display: block;
  height: 100%;
  width: auto;
}

.p-intro-makimono-area{
  width: 100%;
  height: 100%;
  
  overflow: hidden;
}

.open-makimono{
  transform: translateX(0) !important;
}

.p-intro__title span ruby {
  color: var(--color-blue);
  /* font-size: 57px; */
  font-size: calc(57 / var(--pc-screen-base-size) * 100vw);
  letter-spacing: 0.1em;
}

.p-intro__title span ruby rt {
  /* font-size: 12px; */
  font-size: calc(18 / var(--pc-screen-base-size) * 100vw);
  color: var(--color-black);
  ruby-align: center;
  letter-spacing: 0.5em;
  margin-bottom: 0.3vw;
}

.p-intro__sub-title {
  /* font-size: 36px; */
  font-size: calc(36 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 1vw;
  margin-bottom: 1.8vw;
}

.p-intro__text {
  /* font-size: 18px; */
  font-size: max(calc(18 / var(--pc-screen-base-size) * 100vw), 12px);
}

@media (min-width: 768px) and (max-width: 1200px) {
  .p-intro-container{
    height: calc(330 / 1200 * 100vw);
  }

  .p-intro-bg__illust--right{
    right: 7%;
  }

  .p-intro__title{
    font-size: calc(43px * 0.5);
  }

  .p-intro__title span ruby {
    font-size: calc(57px * 0.5);
  }
  
  .p-intro__title span ruby rt {
    font-size: calc(12px * 0.5);
  }
  
  .p-intro__sub-title {
    font-size: calc(36px * 0.5);
  }
  
  .p-intro__text {
    font-size: calc(18px * 0.5);
  }

  .highlighted {
    background-size: 100% 13px;
  }
}

@media screen and (max-width: 767px) {
  .p-intro {
    margin-bottom: calc(30 / var(--sp-screen-base-size) * 100vw);
    padding-left: calc(10 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-intro-contents {
    /* margin-top: calc(34 / var(--sp-screen-base-size) * 100vw * -1);
    padding-top: calc(40 / var(--sp-screen-base-size) * 100vw);
    padding-bottom: calc(40 / var(--sp-screen-base-size) * 100vw);

    padding-left: calc(24 / var(--sp-screen-base-size) * 100vw) !important;
    padding-right: calc(24 / var(--sp-screen-base-size) * 100vw) !important; */

    background-image: url(../img/intro-makimono-bg-sp.png);
    background-position: top;
    max-width: 290px;
    margin: 0 auto;
    position: relative;
    transform: translateY(-100%);  
  }

  .open-makimono{
    transform: translateY(0%) !important;
  }

  .p-intro-container{
    display: block;
    height: auto;
  }

  .p-intro-makimono-area{

  }

  .p-intro-makimono__image{
    width: 100%;
    max-width:350px;
    height: auto;  
    margin: 0 auto;  
  }

  .p-intro-info{
    
    width: 100%;
    margin: 0 auto;
    padding: 20px 30px 36px;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .p-intro__title {
    font-size: 24px;
    letter-spacing: 0.1em;

    background-size: 0% 16px;
  }

  .highlighted {
    background-size: 100% 16px;
  }

  .p-intro__title span ruby {
    font-size: 34px;
  }

  .p-intro__title span ruby rt {
    font-size: 10px;
    letter-spacing: 0.5em
  }

  .p-intro__sub-title {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: calc(12 / var(--sp-screen-base-size) * 100vw);
    margin-bottom: calc(12 / var(--sp-screen-base-size) * 100vw);
  }

  .p-intro__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .p-intro-bg__illust--left{
    width: 29%;
    max-width: 100px;
    left: -9%;
    bottom: inherit;
    top: 28%;
  }

  .p-intro-bg__illust--right {
    width: 26%;
    right: -4%;
    bottom: inherit;
    top: 26%;
  }
}
/* * * イントロ /E * * */ 


/* * * ABOUT * * */ 
.p-about {
  background-color: var(--color-gray);
  border-radius: 80px 80px 0 0;
}

.p-about-top {
  text-align: center;
  position: relative;
}

.p-about-top-bg__illust--left{
  display: block;
  width: 17%;
  position: absolute;
  left: 21%;
  top: 37%;
  transform: translate(-50%, -50%);
}

.p-about-top-bg__illust--right{
  display: block;
  width: 17%;
  position: absolute;
  right: 4.5%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.p-about-top__en-title {
  color: var(--color-white);
  /* font-size: 100px; */
  font-size: calc(100 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: calc(65 / var(--pc-screen-base-size) * 100vw);
}

.p-about-top__title {
  /* font-size: 40px; */
  font-size: calc(40 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  margin-top: calc(60 / var(--pc-screen-base-size) * 100vw * -1);
  margin-bottom: calc(32 / var(--pc-screen-base-size) * 100vw);
}

.p-about-top__title span {
  color: var(--color-blue);
}

.p-about-top__text {
  font-size: 20px;
  margin-bottom: calc(50 / var(--pc-screen-base-size) * 100vw);
}

.p-about-top__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(93 / var(--pc-screen-base-size) * 100vw);
}

.p-about-top__image--icon {
  border-radius: 50%;
  width: calc(170 / var(--pc-screen-base-size) * 100vw);
  height: calc(170 / var(--pc-screen-base-size) * 100vw);
}

.p-about-top__image--batsu {
  width: calc(43 / var(--pc-screen-base-size) * 100vw);
  height: calc(43 / var(--pc-screen-base-size) * 100vw);
}

@media (min-width: 768px) and (max-width: 1200px) {
  .p-about-top__text{
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-about {
    border-radius: 32px 32px 0 0;
  }

  .p-about-top-bg__illust--left{
    width: 19%;
    left: 0;
    top: 36%;
    transform: translate(0%, 0%);
  }
  
  .p-about-top-bg__illust--right{
    width: 19%;
    right: 2.5%;
    top: 36%;
    transform: translate(0%, 0%);
  }

  .p-about-top__en-title {
    font-size: 56px;
    letter-spacing: 0.1em;
    padding-top: calc(40 / var(--sp-screen-base-size) * 100vw);
  }

  .p-about-top__title {
    font-size: 32px;
    line-height: 1.35;
    margin-top: calc(38 / var(--sp-screen-base-size) * 100vw * -1);
    margin-bottom: calc(22 / var(--sp-screen-base-size) * 100vw);
  }

  .p-about-top__text {
    font-size: 16px;
    margin-left: calc(20 / var(--sp-screen-base-size) * 100vw);
    margin-right: calc(20 / var(--sp-screen-base-size) * 100vw);
    margin-bottom: calc(22 / var(--sp-screen-base-size) * 100vw);
  }

  .p-about-top__contents {
    display: none;
  }

  .p-about-top__image--sp {
    width: calc(280 / var(--sp-screen-base-size) * 100vw);
    max-width: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(32 / var(--sp-screen-base-size) * 100vw);
    ;
  }
}
/* * * ABOUT /E * * */ 


/* * * ABOUT - スライドコンテンツ * * */ 
.section {
  height: 100vh;
  position: relative;
}

.section:nth-of-type(1) {
  background-color: var(--color-white);
  border-radius: 80px 80px 0 0;
}

.section:nth-of-type(2) {
  background-color: var(--color-white);
}

.section:nth-of-type(3) {
  background-color: var(--color-sky-blue);
}

.section:nth-of-type(4) {
  background-color: var(--color-white);
}

.section:nth-of-type(odd)::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 80px 80px 0 0;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}


.section:nth-of-type(even)::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 80px 80px 0 0;
  background-color: var(--color-sky-blue);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}


.section__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  place-items: center;
  z-index: 3;
}

.p-about-point__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: calc(1400 / var(--pc-screen-base-size) * 100vw); */
  /* max-width: calc(1600 / var(--pc-screen-base-size) * 100vw); */
  max-width: 1800px;
  height: calc(680 / var(--pc-screen-base-size) * 100vw);
  position: relative;
}

.p-about-point__bg-word {
  font-size: calc(280 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  writing-mode: vertical-rl;
  position: absolute;
  left: -2vw;
  top: 0;
  z-index: -1;
}

.p-about-point__title {
  /* font-size: 34px; */
  font-size: calc(34 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  letter-spacing: 0.06em;
}

.p-about-point__text {
  margin-top: calc(50 / var(--pc-screen-base-size) * 100vw);
}

.p-about-point__item--left{
  width: 50%;
  padding: 0 5vw 0 11.5vw;
  margin-top: -4vw;
}

.p-about-point__item--right {
  /* margin-left: calc(75 / var(--pc-screen-base-size) * 100vw); */
  width: 50%;
}

.p-about-point__item--right img {
  /* width: calc(803 / var(--pc-screen-base-size) * 100vw);
  object-fit: contain; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-right: 4vw;
  padding-left: 1.2vw;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .p-about-point__title{
    font-size: calc(34px * 0.5);
  } 

  .p-about-point__text{
    font-size: 14px;
  }
  
  .p-about-point__item--left{
    padding-right: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .section {
    height: 200vw;
    margin-left: calc(10 / var(--sp-screen-base-size) * 100vw);
    margin-right: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .section:nth-of-type(1) {
    background-color: var(--color-white);
    border-radius: 32px 32px 0 0;
  }

  .section:nth-of-type(odd)::before {
    border-radius: 32px 32px 0 0;
  }


  .section:nth-of-type(even)::before {
    border-radius: 32px 32px 0 0;
  }

  .p-about-point__contents {
    display: block;
    height: 100svh;
    width: 90vw;
    position: relative;
    max-width: none;
    padding-left: calc(10 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-about-point__bg-word {
    font-size: calc(150 / var(--sp-screen-base-size) * 100vw);
    left: -10vw;
    top: 0;
  }

  .p-about-point__title {
    font-size: 20px;
    margin-top: calc(32 / var(--sp-screen-base-size) * 100vw);

  }

  .p-about-point__text {
    font-size: 14px;
    line-height: 1.7em;
    margin-top: calc(16 / var(--sp-screen-base-size) * 100vw);
    margin-bottom: calc(52 / var(--sp-screen-base-size) * 100vw);
  }

  .p-about-point__item--left{
    width: 100%;
    padding: 5vw 1vw 0;
  }

  .p-about-point__item--right {
    margin-left: 0;
    width: 100%;
  }

  .p-about-point__item--right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* * * ABOUT - スライドコンテンツ /E * * */ 


/* * * WORKS * * */ 
.p-works {
  background-image: url(../img/bg-check.jpg);
  background-size: cover;
  padding-bottom: calc(263 / var(--pc-screen-base-size) * 100vw);
}

.p-works__title-en {
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  color: var(--color-sky-blue);
  padding-top: calc(64 / var(--pc-screen-base-size) * 100vw);
}

.p-works__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: calc(60 / var(--pc-screen-base-size) * 100vw * -1);
  margin-bottom: calc(54 / var(--pc-screen-base-size) * 100vw);
}

.p-works__container {
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: calc(100 / var(--pc-screen-base-size) * 100vw);
}

.p-works-item{
  width: 100%;
}

/* .p-works-item:nth-of-type(2) {
  margin: 0 calc(100 / var(--pc-screen-base-size) * 100vw);
} */

.p-works-item__image {
  margin-bottom: calc(24.5 / var(--pc-screen-base-size) * 100vw);
  width: 100%;
}


/* ポップアップ実装 */
.p-works-item-pop{
  display: none;
  background-color: rgba(0,0,0,0.75);
  width: 100%;
  height: 100%;

  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.p-works-item-pop-containaer{
  position: fixed;
  height: 50%;
  width: 50%;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-works-item-pop-wrapper{
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-works-item-pop-wrapper .swiper-pagination{
  transform: translateY(-100%);
}

.swiper-works-pop .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.swiper-button-next, .swiper-button-prev{
  color: var(--color-blue);
}

.p-works-item-pop__close-btn{
  font-size: calc(48 / var(--pc-screen-base-size) * 100vw);
  font-weight: bold;
  color: white;
  position: absolute;
  right: 1%;
  top: 0;
  z-index: 2;
}

/* ポップアップ実装 /E */


/* 20250722 修正 start */
.p-works-slide-container{
  position: relative;
}

.p-works-item__text{
  text-align: left;
  white-space: pre-wrap;
  color: var(--color-black);
}

.p-work-item-pop__open-btn{
  opacity: 1;
  transition: all ease .3s;
}

.p-work-item-pop__open-btn:hover{
  opacity: 0.7;
}

.swiper-pagination--works-slide{
  position: absolute;
  left: 0;
  top: 105% !important;
}


.swiper-works-slider .swiper-button-next,
.swiper-works-slider .swiper-button-prev{
  top: 10.5vw;
}
/* 20250722 修正 end */

@media screen and (max-width: 767px) {
  .p-works {
    padding-bottom: calc(205 / var(--sp-screen-base-size) * 100vw);
  }

  .p-works__title-en {
    font-size: 56px;
    padding-top: calc(20 / var(--sp-screen-base-size) * 100vw);
  }

  .p-works__title {
    font-size: 32px;
    margin-top: calc(35 / var(--sp-screen-base-size) * 100vw * -1);
    margin-bottom: calc(32 / var(--sp-screen-base-size) * 100vw);
  }

  .p-works__container {
    grid-template-columns: 100%;
    gap: calc(32 / var(--sp-screen-base-size) * 100vw);

    padding-left: calc(26 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(26 / var(--sp-screen-base-size) * 100vw);
  }

  .p-works-item:nth-of-type(2) {
    margin: 0;
  }

  /* .p-works-item:not(:last-of-type) {
    margin-bottom: calc(32 / var(--sp-screen-base-size) * 100vw);
  } */

  .p-works-item__image {
    margin-bottom: calc(9 / var(--sp-screen-base-size) * 100vw);
    width: 100%;
  }

  .p-works-item__text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ポップアップ実装 */
  .p-works-item-pop-containaer{
    width: 90%;
  }

  .p-works-item-pop__close-btn{
    font-size: calc(24 / var(--sp-screen-base-size) * 100vw);
  }

  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: calc(24 / var(--sp-screen-base-size) * 100vw)
  }

  .p-works-item-pop-wrapper .swiper-pagination{
    transform: translateY(-50%);
  }
  /* ポップアップ実装 /E */
  

  /* 20250722 修正 start */
  .swiper-works-slider .swiper-button-next,
  .swiper-works-slider .swiper-button-prev{
    top: 35vw;
  }

  .p-works-slide-container{
    padding-left: calc(22.5 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(22.5 / var(--sp-screen-base-size) * 100vw); 
  }
  /* 20250722 修正 end */
}
/* * * WORKS /E * * */ 


/* * * リクルート * * */ 
/* 特殊設置 */
.p-recruit-image {  
  display: flex;
  justify-content: center;
  margin-top: calc(210 / var(--pc-screen-base-size) * 100vw * -1);

  position: relative;
  z-index: 4;
}

.p-recruit-image img {
  width: calc(420 / var(--pc-screen-base-size) * 100vw);
  object-fit: contain;
  transform: translate(300%, 0);
  /* transform: translate(0, 0); */
}

.p-recruit-image img.active{
  animation: rotate360 3s;
}

/* ジャンプアニメーション */
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-100px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-30px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

/* 横揺れアニメーション */
@keyframes shakeX {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(calc(var(--shake-distance) * -1)); }
  20%  { transform: translateX(var(--shake-distance)); }
  30%  { transform: translateX(calc(var(--shake-distance) * -1)); }
  40%  { transform: translateX(var(--shake-distance)); }
  50%  { transform: translateX(calc(var(--shake-distance) * -1)); }
  60%  { transform: translateX(var(--shake-distance)); }
  70%  { transform: translateX(calc(var(--shake-distance) * -1)); }
  80%  { transform: translateX(var(--shake-distance)); }
  90%  { transform: translateX(calc(var(--shake-distance) * -1)); }
  100% { transform: translateX(0); }
}

/* 回転アニメーション */
@keyframes rotate360 {
  0%   { transform: translate(300%, 0) rotate(180deg); }
  100% { transform: translate(-300%, 0) rotate(540deg); }
}


/* 特殊設置 /E */

.p-recruit {
  background-color: var(--color-blue);
  color: var(--color-white);

  margin-top: calc(210 / var(--pc-screen-base-size) * 100vw * -1);
  padding-bottom: calc(135 / var(--pc-screen-base-size) * 100vw);
  position: relative;
  z-index: 3;
}

.p-recruit-bg-text {
  align-items: center;
  color: rgba(255, 255, 255, 0.22);
  display: flex;
  overflow: hidden;
  width: 100vw;
  white-space: nowrap;
  z-index: -1;
  padding-top: calc(270 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-bg-text ul {
  animation: flowing 60s linear infinite;
  font-size: 324px;
  font-weight: bold;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}

.p-recruit-bg-text ul li {
  display: inline-block;
  padding-right: 10px;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.p-recruit-intro {
  text-align: center;
  margin-top: calc(145 / var(--pc-screen-base-size) * 100vw * -1);
  position: relative;
  z-index: 1;
}

.p-recruit-intro__title {
  font-size: 40px;
  margin-top: -3vw;
  margin-bottom: calc(28 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-intro__text {
  font-size: 20px;
  margin-bottom: calc(87 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-look {
  text-align: center;
}

.p-recruit-look__title {
  /* font-size: 32px; */
  font-size: calc(32 / var(--pc-screen-base-size) * 100vw);
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(40 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-look__title::before,
.p-recruit-look__title::after {
  border-top: 4px solid;
  content: "";
  width: 30%;
}

.p-recruit-look__container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: calc(83.5 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-look__item {
  position: relative;
}

.p-recruit-look__item:nth-of-type(2) {
  margin: 0 calc(70 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-look-card-front,
.p-recruit-look-card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.2s;
}

.p-recruit-look-card-front {
  transform: translate(0%, 0%);
  transition: 0.2s;
}

.p-recruit-look-card-back {
  position: absolute;
  left: 0;
  top: 0;

  transform: translate(0%, 0%) rotateY(-180deg);
}

.p-recruit-look__item:hover .p-recruit-look-card-front {
  transform: translate(0%, 0%) rotateY(180deg);
}

.p-recruit-look__item:hover .p-recruit-look-card-back {
  transform: translate(0%, 0%) rotateY(0deg);
}

.p-recruit-look-card__bg {
  position: relative;
  width: 100%;
}

.p-recruit-look-card__bg img {
  width: 100%;
}

.p-recruit-look-card-info {
  color: var(--color-black);
  width: 100%;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-recruit-look-card-info__text {
  font-size: 24px;
  font-weight: bold;
  padding: calc(15 / var(--pc-screen-base-size) * 100vw);
}

.p-recruit-look-card-info__image {
  border-radius: 50%;
  width: calc(206 / var(--pc-screen-base-size) * 100vw) !important;
  object-fit: contain;
}

.p-recruit-look__more-btn {
  font-size: 24px;
  font-size: max((24 / var(--pc-screen-base-size) * 100vw), 18px);
  letter-spacing: 0.05em;
  font-weight: bold;
  color: var(--color-white);
  background-color: #20BF7A;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(111 / var(--pc-screen-base-size) * 100vw);
  width: calc(536 / var(--pc-screen-base-size) * 100vw);
  border-radius: 100px;
  margin: 0 auto;
  text-decoration: none;
  position: relative;
}

.p-recruit-look__more-btn::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 100%;

  position: absolute;
  right: 9%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-recruit-bg__illust-bottom{
  display: block;
  width: 11.6%;
  position: absolute;
  right: 21%;
  bottom: 0;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .p-recruit-bg-text ul{
    font-size: calc(324px * 0.7);
  }

  .p-recruit-look__title{
    font: 24px;
  }

  .p-recruit-look__more-btn{
    font-size: calc(24px * 0.6);
  }

  .p-recruit-look-card-info__text{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {

  /* 特殊設置 */
  .p-recruit-image {
    margin-top: calc(175 / var(--sp-screen-base-size) * 100vw * -1);
    /* width: 100%;
    overflow-x: hidden; */
  }

  .p-recruit-image img {
    width: calc(180 / var(--sp-screen-base-size) * 100vw);
    object-fit: contain;
  }

  .p-recruit-image img:nth-of-type(even) {
    position: relative;
    top: calc(40 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-image img:not(:first-of-type):not(:last-of-type) {
    margin-left: 0;
    margin-right: 0;
  }

  /* 特殊設置 /E */


  .p-recruit {
    margin-top: calc(102 / var(--sp-screen-base-size) * 100vw * -1);
    padding-bottom: calc(40 / var(--sp-screen-base-size) * 100vw);

  }

  .p-recruit-bg-text {
    padding-top: calc(85 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-bg-text ul {
    font-size: 123px;
  }

  .p-recruit-intro {
    margin-top: calc(60 / var(--sp-screen-base-size) * 100vw * -1);
    position: relative;
    z-index: 1;
  }

  .p-recruit-intro__title {
    font-size: 32px;
    margin-top: -2vw;
    margin-bottom: calc(28 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-intro__text {
    font-size: 16px;
    padding-left: calc(26 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(26 / var(--sp-screen-base-size) * 100vw);
    margin-bottom: calc(40 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look {
    text-align: center;
  }

  .p-recruit-look__title {
    font-size: 24px;
    margin-bottom: calc(24 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look__title::before,
  .p-recruit-look__title::after {
    border-top: 4px solid;
    content: "";
    width: 10%;
  }

  .p-recruit-look__title::before {
    margin-left: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look__title::after {
    margin-right: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look__container {
    display: block;
    width: 100%;
    margin-bottom: calc(28 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look__item {
    margin-left: calc(22.5 / var(--sp-screen-base-size) * 100vw) !important;
    margin-right: calc(22.5 / var(--sp-screen-base-size) * 100vw) !important;
  }

  .p-recruit-look__item:not(:last-child) {
    margin-bottom: calc(20 / var(--sp-screen-base-size) * 100vw) !important;
  }

  .p-recruit-look-card-info__text {
    font-size: 18px;
    padding: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-recruit-look-card-info__image {
    border-radius: 50%;
    width: calc(200 / var(--sp-screen-base-size) * 100vw) !important;
  }

  .p-recruit-look__more-btn {
    font-size: 14px;
    height: calc(60 / var(--sp-screen-base-size) * 100vw);
    width: calc(257 / var(--sp-screen-base-size) * 100vw);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: calc(22.5 / var(--sp-screen-base-size) * 100vw) !important;
    margin-right: 0;
  }

  .p-recruit-bg__illust-bottom{
    width: 24.6%;
    right: 0;
  }

  .p-recruit-look__more-btn::after{
    right: 3%;
  }
}
/* * * リクルート /E * * */ 


/* * * 会社概要 * * */ 
.p-company {
  background-color: var(--color-gray);
  padding-bottom: calc(112.5 / var(--pc-screen-base-size) * 100vw);
}

.p-company__title-en {
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  color: var(--color-white);

  padding-top: calc(65 / var(--pc-screen-base-size) * 100vw);
}

.p-compnay__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;

  margin-top: calc(70 / var(--pc-screen-base-size) * 100vw * -1);
  margin-bottom: calc(70 / var(--pc-screen-base-size) * 100vw);
}

.p-compnay__info {
  font-size: 18px;
  height: 22.2vw;
  margin-bottom: calc(53 / var(--pc-screen-base-size) * 100vw);
  padding-left: 5vw;
}

.p-company-info__illust{
  display: block;
  /* width: 11.5vw; */
  /* width: 18vw; */
  width: max(18vw, 300px);

  position: absolute;
  /* right: 7%; */
  right: 0;
  /* bottom: 3%; */
  bottom: 0;
  transform: translate(400%, 400%);
  transition: transform .3s ease;
}

.p-company-info__illust.active{
  transform: translate(0, 0);
}

.p-compnay__info tr {
  /* height: calc(41 / var(--pc-screen-base-size) * 100vw); */
  height: 41px;
}

.p-compnay__info tr th {
  color: var(--color-blue);
  white-space: nowrap;
  text-align: left;
  font-weight: normal;
}

.p-compnay__info tr td {
  /* padding-left: calc(80 / var(--pc-screen-base-size) * 100vw); */
  padding-left: 80px;
  height: 80px;
}

.p-company__map {
  height: calc(400 / var(--pc-screen-base-size) * 100vw);
}

@media (min-width: 768px) and (max-width: 1200px){
  .p-company-info__illust{
    /* width: 20vw; */
  }
}

@media screen and (max-width: 767px) {
  .p-company {
    padding-bottom: calc(40 / var(--sp-screen-base-size) * 100vw);
  }

  .p-company__title-en {
    font-size: 56px;
    padding-top: calc(16 / var(--sp-screen-base-size) * 100vw);
  }

  .p-compnay__title {
    font-size: 32px;

    margin-top: calc(32 / var(--sp-screen-base-size) * 100vw * -1);
    margin-bottom: calc(39 / var(--sp-screen-base-size) * 100vw);
  }

  .p-compnay__info {
    font-size: 18px;
    height: auto;
    padding-left: calc(22.5 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(22.5 / var(--sp-screen-base-size) * 100vw);
    margin-bottom: calc(10 / var(--sp-screen-base-size) * 100vw);

  }

  .p-company-info__illust{
    /* width: 39%;
    right: 4%; */
    width: 50%;
    right: 0;
  }

  .p-compnay__info tr {
    height: calc(41 / var(--sp-screen-base-size) * 100vw);
  }

  .p-compnay__info tr th {
    display: block;
    width: 100%;
    margin-bottom: calc(10 / var(--sp-screen-base-size) * 100vw);
  }

  .p-compnay__info tr:first-of-type td {
    line-height: 1.7;
  }

  .p-compnay__info tr td {
    font-size: 14px;
    display: block;
    width: 100%;
    height: auto;
    padding-left: 0;
    margin-bottom: calc(21 / var(--sp-screen-base-size) * 100vw);
  }

  .p-company__map {
    height: calc(133 / var(--sp-screen-base-size) * 100vw);
    ;
    padding-left: calc(22.5 / var(--sp-screen-base-size) * 100vw);
    padding-right: calc(22.5 / var(--sp-screen-base-size) * 100vw);
  }
}
/* * * 会社概要 /E * * */ 


/* * * Instagram * * */ 
.p-instagram {
  padding-bottom: calc(112 / var(--pc-screen-base-size) * 100vw);
}

.p-instagram__title-en {
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  color: var(--color-sky-blue);

  padding-top: calc(80 / var(--pc-screen-base-size) * 100vw);
}

.p-instagram__text {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: calc(78 / var(--pc-screen-base-size) * 100vw * -1);
  margin-bottom: calc(86 / var(--pc-screen-base-size) * 100vw);
}

.p-instagram-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: calc(56 / var(--pc-screen-base-size) * 100vw);
  gap: 20px;
}

.p-instagram-list__item {
  margin: 0 auto;
}

.p-instagram-list__item img{
  width: 100%;
}

@media screen and (max-width: 767px){
  .p-instagram__title-en{
    font-size: 56px;
  }

  .p-instagram__text{
    font-size: 32px;
    margin-top: -10vw;
  }

  .p-instagram-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-left: calc(22.5 / var(--sp-screen-base-size)* 100vw);
    padding-right: calc(22.5 / var(--sp-screen-base-size)* 100vw);
  }

  .p-recruit-look__more-btn--instagram{
    font-size: 16px;
    width: 80%;
    margin: 0 auto !important;
  }
}
/* * * Instagram /E * * */ 