@charset "utf-8";
/*=======================================================
==========================================================
　　　　　　　　　　　　　PC start
==========================================================
========================================================*/
@media screen and (min-width:768px) {
/*singlepage設定*/
.page-title{
  padding:60px 0 20px;
  text-align: center;
}
p.h1-p{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  position:relative;
  font-size:5rem;
  font-weight: 500;
  color: #221715;
  line-height: 1em;
  margin:0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.single-box{
  padding: 0 0 8%;
}

/*セクションタイトル（トップページと統一）*/
.section-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-title .title-label{
  width: 45px;
  margin-bottom: 10px;
}
.section-title .title-label img{
  width: 100%;
  display: block;
}
.section-h2{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #221715;
  line-height: 1em;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* カテゴリーリンク */
.jd-category{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
}
.jd-category-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .8em 0;
  width: 14em;
  background: #fff;
  border: 1px solid #FFE402;
  border-radius: 50px;
  box-shadow: 3px 3px #FFE402;
  font-size: 1.5rem;
  font-weight: bold;
  color: #221715;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.jd-category-btn:hover{
  background: #FFE402;
  box-shadow: none;
  transform: translate(3px, 3px);
}

/* セクション */
.jd-section{
  padding: 80px 0 0;
}
.jd-section-sub{
  font-size: 1.8rem;
  font-weight: bold;
  color: #221715;
  margin: 0.5em 0 0;
  letter-spacing: 0.05em;
}

/* 求人カード */
.jd-card{
  background: #fff;
  border-radius: 16px;
  padding: 0;
  margin: 30px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.jd-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* カードヘッダー */
.jd-card-header{
  display: flex;
  gap: 8px;
  padding: 24px 32px 0;
}
.jd-badge{
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.jd-badge--fulltime{
  background: #221715;
  color: #fff;
}
.jd-badge--parttime{
  background: #FFE402;
  color: #221715;
}

/* カードタイトル */
.jd-card-title{
  font-size: 2.4rem;
  font-weight: bold;
  color: #221715;
  padding: 12px 32px 0;
  margin: 0;
  line-height: 1.4;
}
.jd-card-subtitle{
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #888;
  margin-top: 4px;
}

/* カード本体 */
.jd-card-body{
  padding: 0 32px 32px;
}

/* ハイライト（給与・休日・賞与） */
.jd-highlights{
  display: flex;
  gap: 0;
  margin: 20px 0 28px;
  background: #f9f7f3;
  border-radius: 12px;
  overflow: hidden;
}
.jd-highlight-item{
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.jd-highlight-item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e0dcd6;
}
.jd-highlight-label{
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.jd-highlight-value{
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #221715;
  line-height: 1.5;
}
.jd-highlight-value strong{
  font-size: 2.2rem;
  font-weight: bold;
  color: #221715;
}
.jd-highlight-value small{
  font-size: 1.1rem;
  color: #888;
  font-weight: normal;
}

/* テーブル */
.jd-table{
  width: 100%;
  border-collapse: collapse;
}
.jd-table tr{
  border-bottom: 1px solid #f0ebe4;
}
.jd-table tr:last-child{
  border-bottom: none;
}
.jd-table th{
  font-size: 1.3rem;
  font-weight: 700;
  color: #221715;
  padding: 16px 20px 16px 0;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  width: 140px;
  background: transparent;
  border: none;
  position: relative;
}
.jd-table th::before{
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #FFE402;
  border-radius: 2px;
}
.jd-table td{
  font-size: 1.4rem;
  color: #555;
  padding: 16px 0;
  line-height: 1.8;
  border: none;
}

/* エントリーCTA */
.jd-cta{
  margin: 80px 0 0;
  padding: 60px 40px;
  background: #221715;
  border-radius: 20px;
  text-align: center;
}
.jd-cta-text{
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 0.08em;
}
.jd-cta-btn{
  display: inline-block;
  padding: 18px 80px;
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #221715;
  background: #FFE402;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #b3a000;
}
.jd-cta-btn:hover{
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b3a000;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* キャリアデザイン セクション PC */
.cd-jobs{
  padding: 60px 0 50px;
  background: #fff;
}
.cd-jobs-header{
  text-align: center;
  margin-bottom: 50px;
}
.cd-jobs-en{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFE402;
  letter-spacing: .15em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.cd-jobs-title{
  font-size: 2.8rem;
  font-weight: 700;
  color: #221715;
  margin: 0 0 16px;
  letter-spacing: .08em;
}
.cd-jobs-lead{
  font-size: 1.8rem;
  font-weight: 700;
  color: #221715;
  line-height: 2;
  margin: 0 0 44px;
  text-align: center;
  letter-spacing: .06em;
  position: relative;
  padding-bottom: 28px;
}
.cd-jobs-lead::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #FFE402;
  border-radius: 2px;
}
.cd-jobs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cd-jobs-block{
  background: #faf8f5;
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cd-jobs-block:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
}
.cd-jobs-block-icon{
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
}
.cd-jobs-block-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cd-jobs-block-num{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(0,0,0,.35);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.cd-jobs-block-title{
  font-size: 2rem;
  font-weight: 700;
  color: #221715;
  margin: 0 0 10px;
  letter-spacing: .04em;
}
.cd-jobs-block-desc{
  font-size: 1.3rem;
  color: #888;
  line-height: 1.7;
  margin: 0 0 20px;
}
.cd-jobs-block-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-jobs-block-list li{
  padding: 12px 0;
  border-top: 1px solid #e8e4de;
}
.cd-jobs-block-list li:last-child{
  padding-bottom: 0;
}
.cd-jobs-facility{
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #221715;
  margin-bottom: 4px;
}
.cd-jobs-roles{
  display: block;
  font-size: 1.2rem;
  color: #888;
  line-height: 1.6;
}


}/*=======================================================
==========================================================
　　　　　　　　　　　　　PC end
==========================================================
==========================================================
========================================================*/

/*=======================================================
==========================================================
  　　　　　　　　　　　　　SPstart
==========================================================
========================================================*/
@media screen and (max-width:768px) {
/*singlepage設定*/
.page-title{
  padding: 30px 0 10px;
  text-align: center;
}
p.h1-p{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  position:relative;
  font-size:3.5rem;
  font-weight: 500;
  color: #221715;
  line-height: 1em;
  margin:0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.single-box{
  padding: 15px 0 30px;
}
.sp-head-logo{
  display: flex;
  align-items: center;
  height: 58px;
  border-bottom: 6px solid #FFE402;
  width: 100%;
  margin: 0;
  mix-blend-mode: multiply;
}
.sp-head-logo img{
  width: auto;
  height: 48px;
  padding: 0 0 0 12px;
  object-fit: contain;
  margin: 0;
  mix-blend-mode: multiply;
}

/*セクションタイトル SP*/
.section-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-title .title-label{
  width: 35px;
  margin-bottom: 8px;
}
.section-title .title-label img{
  width: 100%;
  display: block;
}
.section-h2{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #221715;
  line-height: 1em;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* カテゴリーリンク SP */
.jd-category{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
}
.jd-category-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .7em 0;
  width: calc(50% - 5px);
  background: #fff;
  border: 1px solid #FFE402;
  border-radius: 50px;
  box-shadow: 2px 2px #FFE402;
  font-size: 1.3rem;
  font-weight: bold;
  color: #221715;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

/* セクション SP */
.jd-section{
  padding: 50px 0 0;
}
.jd-section-sub{
  font-size: 1.5rem;
  font-weight: bold;
  color: #221715;
  margin: 0.3em 0 0;
  letter-spacing: 0.05em;
}

/* 求人カード SP */
.jd-card{
  background: #fff;
  border-radius: 12px;
  padding: 0;
  margin: 20px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* カードヘッダー SP */
.jd-card-header{
  display: flex;
  gap: 6px;
  padding: 18px 20px 0;
}
.jd-badge{
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.jd-badge--fulltime{
  background: #221715;
  color: #fff;
}
.jd-badge--parttime{
  background: #FFE402;
  color: #221715;
}

/* カードタイトル SP */
.jd-card-title{
  font-size: 1.9rem;
  font-weight: bold;
  color: #221715;
  padding: 10px 20px 0;
  margin: 0;
  line-height: 1.4;
}
.jd-card-subtitle{
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
  margin-top: 3px;
}

/* カード本体 SP */
.jd-card-body{
  padding: 0 20px 20px;
}

/* ハイライト SP */
.jd-highlights{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 16px 0 20px;
  background: #f9f7f3;
  border-radius: 10px;
  overflow: hidden;
}
.jd-highlight-item{
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.jd-highlight-item:not(:last-child){
  border-bottom: 1px solid #e8e4de;
}
.jd-highlight-item:not(:last-child)::after{
  display: none;
}
.jd-highlight-label{
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #999;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 60px;
}
.jd-highlight-value{
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #221715;
  line-height: 1.4;
}
.jd-highlight-value strong{
  font-size: 1.8rem;
  font-weight: bold;
  color: #221715;
}
.jd-highlight-value small{
  font-size: 1rem;
  color: #888;
  font-weight: normal;
}

/* テーブル SP */
.jd-table{
  width: 100%;
  border-collapse: collapse;
}
.jd-table tr{
  border-bottom: 1px solid #f0ebe4;
}
.jd-table tr:last-child{
  border-bottom: none;
}
.jd-table th{
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #221715;
  padding: 12px 0 4px 12px;
  text-align: left;
  white-space: nowrap;
  background: transparent;
  border: none;
  position: relative;
}
.jd-table th::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #FFE402;
  border-radius: 2px;
}
.jd-table td{
  display: block;
  font-size: 1.2rem;
  color: #555;
  padding: 2px 0 12px 12px;
  line-height: 1.7;
  border: none;
}

/* エントリーCTA SP */
.jd-cta{
  margin: 50px 0 0;
  padding: 40px 20px;
  background: #221715;
  border-radius: 16px;
  text-align: center;
}
.jd-cta-text{
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: 0.05em;
}
.jd-cta-btn{
  display: inline-block;
  padding: 14px 50px;
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #221715;
  background: #FFE402;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #b3a000;
}
.jd-cta-btn:active{
  transform: translateY(4px);
  box-shadow: 0 0 0 #b3a000;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* キャリアデザイン セクション SP */
.cd-jobs{
  padding: 40px 0 30px;
  background: #fff;
}
.cd-jobs-header{
  text-align: center;
  margin-bottom: 30px;
}
.cd-jobs-en{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFE402;
  letter-spacing: .12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.cd-jobs-title{
  font-size: 2.2rem;
  font-weight: 700;
  color: #221715;
  margin: 0 0 12px;
  letter-spacing: .06em;
}
.cd-jobs-lead{
  font-size: 1.5rem;
  font-weight: 700;
  color: #221715;
  line-height: 1.9;
  margin: 0 0 30px;
  text-align: center;
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 22px;
}
.cd-jobs-lead::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #FFE402;
  border-radius: 2px;
}
.cd-jobs-grid{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cd-jobs-block{
  background: #faf8f5;
  border-radius: 12px;
  padding: 24px 20px 20px;
}
.cd-jobs-block-icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}
.cd-jobs-block-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cd-jobs-block-num{
  font-family: "Futura", "Futura-Medium", "Century Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(0,0,0,.35);
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.cd-jobs-block-title{
  font-size: 1.7rem;
  font-weight: 700;
  color: #221715;
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.cd-jobs-block-desc{
  font-size: 1.2rem;
  color: #888;
  line-height: 1.7;
  margin: 0 0 16px;
}
.cd-jobs-block-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-jobs-block-list li{
  padding: 10px 0;
  border-top: 1px solid #e8e4de;
}
.cd-jobs-block-list li:last-child{
  padding-bottom: 0;
}
.cd-jobs-facility{
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #221715;
  margin-bottom: 3px;
}
.cd-jobs-roles{
  display: block;
  font-size: 1.1rem;
  color: #888;
  line-height: 1.5;
}


}/*=======================================================
==========================================================
　　　　　　　　　　　　　SPend
==========================================================
========================================================*/
/*=======================================================
==========================================================
　　　　　　　　　　　　　IPAD start
==========================================================
========================================================*/
@media screen and (min-width:768px) and ( max-width:1190px) {




}/*=======================================================
==========================================================
　　　　　　　　　　　　　IPAD end
==========================================================
==========================================================
========================================================*/
/*=======================================================
==========================================================
　　　　　　　　　　　　　共通コード
==========================================================
========================================================*/
#main{
    background-color: #f5f5f5;
    overflow: hidden;
}
#footer {
    background-color: #fff;
}


/*=======================================================
==========================================================
　　　　　　　　　　　　　共通end
==========================================================
========================================================*/
