@charset "UTF-8";

/* ----------------------------------------
   RECRUIT COLOR
---------------------------------------- */
.recruit-color{
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
}

/* ----------------------------------------
   ヘッダー（青＋アーチ）
---------------------------------------- */
.recruit-color__head{
  position: relative;
  background: #1759A5;
  height: 1000px; /* ← 少し増やす */
  overflow: hidden;
}

.recruit-color__head::after{
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  width: 3840px;   /* ← 少し拡大 */
  height: 3500px;   /* ← 比率維持して拡大 */

  top: 200px;      /* ← 下げる（ここが重要） */

  background: #FFFFFF;
  border-radius: 50%;
}

.recruit-color__head-inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 70px 20px 0;
  text-align: center;
}

.recruit-color__title{
  margin: 0;
  color: #FFFFFF;
  font-family: "century-gothic-std", "Century Gothic", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.recruit-color__subtitle{
  margin: 14px 0 0;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

/* ----------------------------------------
   コンテンツ
---------------------------------------- */
.recruit-color__body{
  position: relative;
  margin-top: -780px; /* アーチの形に合わせて調整 */
  z-index: 2;
}

.recruit-color__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.recruit-color__list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.recruit-color__item{
  text-align: center;
}

.recruit-color__icon{
  margin: 0 auto 34px;
  width: 250px;
  line-height: 0;
}

.recruit-color__icon img{
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------------
   テキスト
---------------------------------------- */
.recruit-color__item-title{
  margin: 0 0 20px;
  color: #2F2F2F;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.recruit-color__item-text{
  margin: 0;
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
}

/* ----------------------------------------
   ボタン
---------------------------------------- */
.recruit-color__button-wrap{
  margin-top: 60px;
  text-align: center;
}

.recruit-color__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 351px;
  height: 56px;

  background: #1759A5;
  color: #fff;

  font-size: 16px;
  font-weight: 500;

  text-decoration: none;
  border: 1px solid #1759A5;
  border-radius: 999px;

  position: relative;
  transition: .3s ease;

  margin: 0 auto;
}

/* 矢印（SVGに統一） */
.recruit-color__button::after{
  content: "";
  position: absolute;
  right: 20px;

  width: 16px;
  height: 16px;

  background: url("/wp-content/themes/tch/assets/img/recruit/recruit_arrow.svg") no-repeat center;
  background-size: contain;
}

/* hover */
.recruit-color__button:hover{
  background: #fff;
  color: #1759A5;
  text-decoration: none;
}

/* hover時 矢印色変換 */
.recruit-color__button:hover::after{
  filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(800%) hue-rotate(190deg);
}

.recruit-color__button-text{
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}



/* ----------------------------------------
   1299px以下
---------------------------------------- */
@media screen and (max-width: 1299px){
  .recruit-color__list{
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .recruit-color__item{
    max-width: 700px;
    margin: 0 auto;
  }
}

/* ----------------------------------------
   767px以下
---------------------------------------- */
/* ----------------------------------------
   767px以下
---------------------------------------- */
@media screen and (max-width: 767px){
  .recruit-color__head{
    height: 420px;
  }

.recruit-color__head::after{
  width: 170%;
  height: 430px;
  left: 50%;
  top: auto;
  bottom: -220px;
  transform: translateX(-50%);
}

  .recruit-color__head-inner{
    padding: 64px 20px 0;
  }

  .recruit-color__title{
    font-size: 58px;
  }

  .recruit-color__subtitle{
    margin-top: 12px;
    font-size: 24px;
  }

  .recruit-color__body{
    margin-top: -200px;
    position: relative;
    z-index: 2;
  }

  .recruit-color__inner{
    padding: 0 20px 80px;
  }

  .recruit-color__list{
    gap: 0;
  }

  .recruit-color__item{
    max-width: 100%;
  }

  .recruit-color__icon{
    width: 200px;
    margin-bottom: 0;
  }

  .recruit-color__item-title{
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.6;
  }

  .recruit-color__item-text{
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
  }

  .recruit-color__button{
    width: 100%;
    max-width: 351px;
  }
}