@charset "utf-8";


/*--------------------------------------------------------
ファーストビュー
--------------------------------------------------------*/
.top-fv{
  display: block;
}
.top-fv-sp{
  display: none;
}

.top-fv {
  margin-top: 90px;
  position: relative;
}
.top-fv-img {
	width: 96%;
  margin: 0 auto;
}
.top-fv img {
	width: 100%;
}

.top-fv-textblock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 70%;
  justify-content: space-between;
  align-items: center;

  background-color: rgba(238, 134, 154, 0.7); 

  /*-background-color: #EE869A;---*/
  padding:40px 20px;
  border-radius: 10px;
}

.top-fv-message{
  width: 40%;
  margin: 20px;
}

.top-fv-copy{
  width: 55%;
  font-size: var(--fs-h1);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4em;
}
.top-fv-copy-small{
  position: relative;
  display: inline-block; /* 疑似要素を左右に置くため */
  font-size: var(--fs-h2);
  color: #fff;
  margin-top: 30px;
  padding: 0 20px;
}
.top-fv-copy-small::before,
.top-fv-copy-small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7vw;   /* 画面幅の10%（例：幅1000px → 線の長さ100px） */
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.top-fv-copy-small::before {
  right: 100%;              /* テキストの左外側に配置 */
  margin-right: 10px;       /* ← ここで「空き」をつくる（お好みで20〜40px） */
}

.top-fv-copy-small::after {
  left: 100%;               /* テキストの右外側に配置 */
  margin-left: 10px;        /* → ここで「空き」をつくる */
}

/***********************************************************************************************************************************************************************************
************************************************************************************************************************************************************************************
ファーストビュー     スマホ用の設定 ここから
************************************************************************************************************************************************************************************
************************************************************************************************************************************************************************************/
@media screen and (max-width:640px) {

  html, body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

/*--------------------------------------------------------
　ファーストビュー
--------------------------------------------------------*/
.top-fv{
  display: none;
}
.top-fv-sp{
  display: block;
  margin-top: 60px;
  width: 100%;

}
.top-fv-sp-img {
  width: 96%;
  margin: 0 auto;
}
.top-fv-sp-img img {
  width: 100%;
  height: auto;
}


.top-fv-textblock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: space-between;
  align-items: center;

  background-color: rgba(238, 134, 154, 0.7); 

  /*-background-color: #EE869A;---*/
  padding:30px 20px;
}

.top-fv-message{
  width: 90%;
  margin: 6px;
}

.top-fv-copy{
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6em;
}
.top-fv-copy-small{
  position: relative;
    width: 48%;
  display: inline-block; /* 疑似要素を左右に置くため */
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
  padding: 0 20px;

}
.top-fv-copy-small::before,
.top-fv-copy-small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12vw;   /* 画面幅の10%（例：幅1000px → 線の長さ100px） */
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.top-fv-copy-small::before {
  right: 100%;              /* テキストの左外側に配置 */
  margin-right: 10px;       /* ← ここで「空き」をつくる（お好みで20〜40px） */
}

.top-fv-copy-small::after {
  left: 100%;               /* テキストの右外側に配置 */
  margin-left: 10px;        /* → ここで「空き」をつくる */
}
}



/*--------------------------------------------------------
  新着情報
--------------------------------------------------------*/
.news-sec{
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
}
.news-sec-title{
  font-size: var(--fs-h2);
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 15px;
}
.news-background {
  background-color: #F6F6F6;
}
.sec-title-text{
  color: #4D4D4D;
}
.news-inner {
  width: 100%;
  display: block;
  padding: 24px 10px 16px;
  position: relative;
  overflow: hidden; /* 疑似要素がはみ出さないように */
transition: background-color 1s ease; /* 背景色の変化を0.5秒 */
  border-bottom: solid 1px #d4d4d4;
  display: flex;
}
/* hover時：背景をlightblue、シャドウなし */
.news-inner:hover {
  background-color: #FFE6E6;   /* 背景色変更 */
}
/* オーバーレイ */
.news-inner::before,
.news-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 1s ease; /* 背景の変化を0.5秒 */
}
/* 初期状態（透明） */
.news-inner::before {
  background: rgba(0,0,0,0);
}
/* hover時：白のオーバーレイ */
.news-inner:hover::after {
  background: rgba(255,255,255,0.6); /* 白60%で明るく見える */
}

.news-date{
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  background-color: var(--lightgray);  
  padding: 8px 12px;
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 10px;
}

.news-date-large{
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (max-width:640px) {
  .news-date{
  font-size: 12px;
}
.news-date-large{
  font-size: 15px;
}
}

.news-item{
  font-weight: 500;
  font-size: var(--fs-body);
  padding-left: 14px;
  line-height: 1.6em;
  margin-top: 0.3em;
}

/* 詳しく見る */
/*--------------------------------------------------------
  サークルhover
--------------------------------------------------------*/

/*円エフェクト-moreボタン*/
.more-center {
  text-align: center;
  width: 50%;
	margin: 60px auto;
}
@media screen and (max-width:640px) {
  .more-center {
  text-align: center;
  width: 90%;
	margin: 30px auto 0;
}
}

/* ボタン本体 */
.more_style {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #83CCD2;
  color: #333;
  font-weight: 700;
    font-size: var(--fs-body);
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  z-index: 0; /* スタッキング文脈を明確化 */
  border-radius: 6px;
}

.more_style > a {
  position: relative;
  display: flex; /* ←横並びに */
  justify-content: center; /* 中央寄せ（お好みでstart/endでもOK） */
  align-items: center;      /* 縦方向の中央揃え */
  gap: 10px;                /* テキストとアイコンの間隔 */
  color: #333;
  text-decoration: none;
  z-index: 2;
  transition: color 0.4s ease;
  padding: 18px 60px;
}
.more-arrow{
  width: 24px;
}

/* 円 */
.more_style .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  pointer-events: none;
  z-index: 1; /* 背景より上、テキストより下 */
}

/* hover時のエフェクト */
.more_style:hover .circle {
  transform: translate(-50%, -50%) scale(5);
  opacity: 1;
}

.more_style:hover {
  background-color: #69AEB4;
  color: #fff;
}

/* リンクの状態別指定 */
.more_style > a:link,
.more_style > a:visited {
  color: #333;
  text-decoration: none;
}

.more_style > a:hover,
.more_style > a:active {
  color: #fff; /* hover時は白文字でコントラストUP */
  text-decoration: none;
}

/*--------------------------------------------------------
メッセージ
--------------------------------------------------------*/
.message-sec-title{
  width: 90%;
  max-width: 1585px;
  margin: 100px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-mark{
  width: 16%;
}
.message-mark img{
  width: 100%;
}
.message-title{
  width: 80%;
  text-align: left;
  font-size: var(--fs-h1);
  font-weight: bold;
  margin-top: 6%;
}



/* 本文 */
.message-sec-inner{
  width: 100%;
  margin: 60px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  height: 600px;
  
}
.message-sec-left{
  width: 47%;
    margin-left: 8%;
    font-size: var(--fs-body);
    line-height: 2em;
    padding-right: 6%;
}
.message-sec-right{
  width: 45%;
  height: 450px;
}
.message-sec-right img{
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* 背景 */
.message-sec-back{
  position: absolute;
  top: 200px;
  width: 100%;
  height: 360px;
  background: linear-gradient(to bottom, #fff 0%, #FFE6E6 100%);
  z-index: -10;
}

/*--------------------------------------------------------
メッセージ max-width:767px
--------------------------------------------------------*/
@media screen and (max-width:767px) {
  .message-sec-title{
  margin: 20px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-mark{
  width: 35%;
}
.message-mark img{
  width: 100%;
}
.message-title{
  width: 60%;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin-top: 5%;
  line-height: 1.5em;
    margin-left: 2%;
}
/* 本文 */
.message-sec-inner{
  width: 100%;
  margin: 0px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  height: 840px;
}
.message-sec-left{
  width: 100%;
    margin-left: 5%;
    font-size: var(--fs-body);
    line-height: 2em;
    padding-right: 5%;
    margin-top: 10px;
    text-align: justify;
}
.message-sec-right{
  width: 100%;
  height: 300px;
}
.message-sec-right img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* 背景 */
.message-sec-back{
  position: absolute;
  top: 200px;
  width: 100%;
  height: 360px;
  background: linear-gradient(to bottom, #fff 0%, #FFE6E6 100%);
  z-index: -10;
}
}

/*--------------------------------------------------------
先輩社員の声
--------------------------------------------------------*/
.voice-sec-title{
  width: 90%;
  max-width: 1585px;
  margin: 80px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.voice-mark{
  width: 16%;
}
.voice-mark img{
  width: 100%;
}
.voice-title{
  width: 80%;
  text-align: right;
  font-size: var(--fs-h1);
  font-weight: bold;
  margin-top: 6%;
}

/* 本文 */
.voice-sec-inner{
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.voice-sec-pic{
  width: 45%;
  height: 450px;
}
.voice-sec-pic img{
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.voice-sec-body{
  width: 47%;
    margin-left: 8%;
    font-size: var(--fs-body);
    line-height: 2em;
    padding-right: 6%;
}
/*円エフェクト-moreボタン*/
.more-voice {
  text-align: center;
  width: 80%;
	margin: 80px auto 0;
}

/*--------------------------------------------------------
先輩社員の声 max-width:767px
--------------------------------------------------------*/
@media screen and (max-width:767px) {
.voice-sec-title{
  width: 90%;
  max-width: 1585px;
  margin: 0px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.voice-mark{
  width: 30%;
  margin-left: auto;
}
.voice-mark img{
  width: 100%;
}
.voice-title{
  width: 65%;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: 12%;
}

/* 本文 */
.voice-sec-inner{
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.voice-sec-pic{
  width: 100%;
  height: 250px;
}
.voice-sec-pic img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.voice-sec-body{
  width: 100%;
    margin-left: 5%;
    font-size: var(--fs-body);
    line-height: 2em;
    padding-right: 5%;
    margin-top: 20px;
    text-align: justify;
}

/*円エフェクト-moreボタン*/
.more-voice {
  text-align: center;
  width: 100%;
	margin: 30px auto 0;
}

}


/*--------------------------------------------------------
数字で見る
--------------------------------------------------------*/
.numbers-sec{
  width: 100%;
  background-color: #FFF6E9;
  margin: 60px 0;
}
.numbers-sec-title{
  width: 90%;
  max-width: 1585px;
  margin: 100px auto 40px;
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.numbers-mark{
  width: 16%;
}
.numbers-mark img{
  width: 100%;
}
.numbers-title{
  width: 80%;
  text-align: left;
  font-size: var(--fs-h1);
  font-weight: bold;
  margin-top: 6%;
}

/* 本文 */
.numbers-sec-inner{
  width: 100%;
  margin: 60px auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 80px;
}
.numbers-sec-left{
  width: 46%;
  margin-left: 6%;
  font-size: var(--fs-body);
  line-height: 2em;
  padding-right: 6%;
}
.numbers-sec-right{
  width: 40%;
  display: flex;
  justify-content: space-between;
  margin-right: 8%;
}

.numbers-sec-item{
  width: 46%;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 30px 10px 35px;
}

.numbers-item-title{
  font-size: var(--fs-h2);
  font-weight: bold;
  text-align: center;;
}
.numbers-icon{
  margin: 0% auto;
  width: 50%;
}
.numbers-number{
    font-size: clamp(2.875rem, 1.557rem + 3.41vw, 5.625rem) !important;
  font-weight: 800;
  font-family: inter, sanserif;
  text-align: center;
  color: #EE869A;
}

.colon {
  margin-left: -0.3em; /* 左を詰める */
  margin-right: -0.3em; /* 右を詰める */
  display: inline-block; /* marginを効かせるため */
}
.numbers-number-text{
  font-size: var(--fs-h2);
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.numbers-caption{
    font-size: var(--fs-caption);
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
}
/*-----　1119　修正ここまで　---------------------------------------------------*/


/*--------------------------------------------------------
数字で見る max-width:1050px 1119調整あり
--------------------------------------------------------*/
@media screen and (max-width:1050px) {
.numbers-sec{
  width: 100%;
  background-color: #FFF6E9;
  margin: 20px 0;
}
.numbers-sec-title{
  width: 90%;
  max-width: 1585px;
  margin: 40px auto 40px;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.numbers-mark{
  width: 30%;
}
.numbers-mark img{
  width: 100%;
}
.numbers-title{
  width: 65%;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10%;
}

/* 本文 */
.numbers-sec-inner{
  width: 100%;
  margin: 30px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
}
.numbers-sec-left{
  order: 2;
  width: 100%;
    margin-left: 5%;
    font-size: var(--fs-body);
    line-height: 2em;
    padding-right: 5%;
    margin-top: 20px;
    text-align: justify;
}
.numbers-sec-right{
  order: 1;
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin-right: 5%;
  margin-left: 5%;
}

}



/*--------------------------------------------------------
募集要項
--------------------------------------------------------*/
.guidelines-sec{
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;

box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  
}
.guidelines-inner {
  background-image: url("/recruit/upload/guidelines-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 60px;
    border-radius: 10px;
}
.guidelines-title{
  font-size: var(--fs-h1);
  text-align: center;
  font-weight: bold;
}

/* 詳しく見る */
/*--------------------------------------------------------
  サークルhover
--------------------------------------------------------*/

/*円エフェクト-moreボタン*/
.more-guidelines {
  text-align: center;
  width: 50%;
	margin: 40px auto 0px;
}

/* ボタン本体 */
.more-guidelines_style {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  color: #333;
  padding: 18px 60px;
  font-weight: 700;
    font-size: var(--fs-body);
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  z-index: 2; /* スタッキング文脈を明確化 */
    border-radius: 6px;
}

.more-guidelines_style > a {
  position: relative;
  display: flex; /* ←横並びに */
  justify-content: center; /* 中央寄せ（お好みでstart/endでもOK） */
  align-items: center;      /* 縦方向の中央揃え */
  gap: 10px;                /* テキストとアイコンの間隔 */
   color: inherit; 
  text-decoration: none;
  z-index: 2;
  transition: color 0.4s ease;
}

/* 円 */
.more-guidelines_style .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: #69AEB4;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  pointer-events: none;
   z-index: 0;
}

/* hover時：#69AEB4の円が広がる */
.more-guidelines_style:hover .circle {
  transform: translate(-50%, -50%) scale(5);
  opacity: 0.3;
}

/* リンクの状態別指定 */
.more-guidelines_style > a:link,
.more-guidelines_style > a:visited,
.more-guidelines_style > a:hover,
.more-guidelines_style > a:active {
  color: #333;
  text-decoration: none;
}

/*--------------------------------------------------------
募集要項 max-width:767px
--------------------------------------------------------*/
@media screen and (max-width:767px) {
.guidelines-sec{
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.guidelines-inner {
  background-image: url("/recruit/upload/guidelines-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0 30px;
    border-radius: 10px;
}
.guidelines-title{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

/*円エフェクト-moreボタン*/
.more-guidelines {
  text-align: center;
  width: 80%;
	margin: 30px auto 0px;
}


}

