:root{
  --bg-cream2: #fff2d9;
  --bg-pink: #fff2e5;
  --bg-yellow: #ffffdd;
  
  --job-max-width: 800px;
}
/*****************************************
  見出し
******************************************/
.txt-sub-job{
  font-size: 1.7rem;
  color: var(--job-color);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.txt-sub-job::before,
.txt-sub-job::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--job-color);
}

/*****************************************
  背景色
******************************************/
.bg-cream{
  --svg-color: var(--color-cream);
  background: var(--color-cream);
}
.bg-cream2{
  --svg-color: var(--bg-cream2);
  background: var(--bg-cream2);
}
.bg-green{
  --svg-color: #e1f3f0;
  background: #e1f3f0;
}
.bg-green2{
  --svg-color: #e4f6f6;
  background: #e4f6f6;
}
.bg-pink{
  --svg-color: var(--bg-pink);
  background: var(--bg-pink);
}
.bg-yellow{
  --svg-color: var(--bg-yellow);
  background: var(--bg-yellow);
}

/*****************************************
  セクション
******************************************/
/* svgセクション区切り */
.section {
  line-height: 0;
  background:none;
}
.section svg{
  display: block;
  width: 100%;
  height: 70px;
}
.section path {
  fill: var(--svg-color);
}
/* セクション余白 */
.section-pt{
  padding-top: 40px;
}
.section-pb{
  padding-bottom: 50px;
}

/*****************************************
  職種ページ用ロゴ
******************************************/
.job-logo-header {
  border-bottom: 1px solid #eee;
}
.job-logo-header > *{
  display:flex;
  align-items:center;
  gap:16px;
  padding:8px var(--wrap) 12px;
  width: fit-content;
}
.job-logo{
  display: inline-grid;
  grid-template-columns: auto;
  --logo-corp-font: clamp(1.4rem, 3vw, 1.5rem);
  --logo-title-font: clamp(1.8rem, 3vw, 2.8rem);
  --logo-sub-font: clamp(1.2rem, 2vw, 1.6rem);
}
.job-logo .logo-corp-wrap{
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.job-logo .logo-corp{
  margin-right: 10px;
}
.job-logo .logo-sub{
  padding: 4px 0.8em;
  margin-left: auto;
}
.logo-back{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#7cc7c2;
  font-size:2rem;
  width: 12px;
}

/*****************************************
  パンくず
******************************************/
.breadcrumb-nav{
  padding: 8px var(--wrap);
  background: #f4ffff;
}
.site-breadcrumb {
  display: inline-flex;
  align-items: center;
  list-style: none;
  text-align: center;
  font-size: 1.4rem;
}
.site-breadcrumb li {
  display: flex;
  align-items: center;
}
.site-breadcrumb li:first-child::before {
  content: "\f500";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-brown);
  margin-right: 6px;
}
.site-breadcrumb li + li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-brown);
  margin: 0 7px;
}


/*****************************************
  職種メインビジュアル
******************************************/
.job-header{
  padding: 22px var(--wrap);
  background: #fff center center /auto 100% no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height: 280px;
  --job-header-bg: #000;
}
.header-dr-kids{
  background-image:url("images/header-dr-kids.webp");
}
.header-dr-vis{
  background-image:url("images/header-dr-vis.webp");
}
.header-dh{
  background-image:url("images/header-dh.webp");
}
.header-dh-vis{
  background-image:url("images/header-dh-vis.webp");
}
.header-asst-rec{
  background-image:url("images/header-asst-rec.webp");
}
.header-tour{
  background-image:url("images/header-tour.webp");
}
.job-visual-title{
  font-size: clamp(3rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-top: 15px;
  color: var(--job-header-color);
}
.job-visual-dept{
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
  color: #fff !important;
  padding: 8px 2.6rem;
  display: inline-block;
  background: var(--job-header-bg);
  
  clip-path:polygon(
    0 0,
    100% 0,
    96% 50%,
    100% 100%,
    0 100%,
    4% 50%
  );
}
.job-visual-sub{
  font-size: 1.8rem;
  margin-top: 12px;
  color: var(--color-brown);
}
.job-header.job-opd{
  --job-header-bg: var(--job-opd);
  --job-header-color: var(--job-opd);
}
.job-header.job-vis{
  --job-header-bg: var(--job-vis);
  --job-header-color: var(--job-vis);
}


/*****************************************
  あいさつ
******************************************/
.job-greet{
  display:grid;
  grid-template-columns:0.6fr 1fr;
  gap:28px;
  margin-bottom: 30px;
}
.job-greet-content{
  line-height:1.8;
}
.job-greet-content p{
  margin-bottom: 1.2em;
}
.job-greet-img{
  text-align: center;
}
.job-greet-img img{
  max-width: 100%;
  border-radius: 100vh;
  filter: drop-shadow(var(--shadow2));
}
/* メッセージ見出し */
.heading-ms{
  font-size:clamp(2.1rem, 2.5vw, 2.6rem);
  border-bottom: 3px dotted #9fd9c5;
  padding: 0 13px 13px;
  line-height:1.5;
  margin: 1em 0 1.2em;
}
/* マーク色 */
mark {
    background: none;
    font-weight: 700;
    color: var(--markfColor);
}
.m1{--markfColor:#e0707a;}
.m2{--markfColor:#ca87bd;}
.m3{--markfColor:#52b6e4;}
.m4{--markfColor:#59c68e;}


/*****************************************
  続きを読む
******************************************/
.text-more{
  position:relative;
}
.text-more-content{
  max-height:12em;
  overflow:hidden;
  position:relative;
  transition:max-height .5s ease;
}
/* グラデーション */
.text-more-content::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:5em;
  background:linear-gradient(
    rgba(255,255,255,0),
    #fff
  );
  transition:opacity .3s;
}
.text-more-btn{
  --btn-padding:10px 1em;
}
.text-more.open .text-more-content {
  max-height: 1000vh;
}
.text-more.open .text-more-content::after{
  opacity:0;
}
.text-more.open .text-more-btn{
  display:none;
}

/*****************************************
  魅力
******************************************/
.feature-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content img";
  gap: 20px 26px;
  padding: 35px 0 50px;
  border-bottom: 3px dotted #f2d8bf;
  align-items: start;

  --accent-color: var(--color-font);
  --accent-color-num: var(--color-teal);
}
.feature-item:last-child{
 border:none;
}
.feature-item:first-child{
 padding-top:10px;
}
/* 奇数番目は画像を左、テキストを右 */
.feature-item:nth-child(odd){
  grid-template-areas: "img content";
}

.feature-content{
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}
.feature-heading{
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 画像 */
.feature-img{
  grid-area: img;
  text-align: center;
  align-self: start;
}
.feature-img img{
  max-width: 100%;
  border-radius: var(--top-radius);
  filter: drop-shadow(var(--shadow2));
}

.feature-title{
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-bronze);
  line-height: 1.4;
}
.feature-title span{
  color: var(--accent-color);
}
.feature-num{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-color-num);
  font-family: 'arial',sans-serif;
}
.feature-num small{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: -0.3em;
}

/* 見出し数値 */
.feature {
  counter-reset: feature;
}
.feature-heading {
  counter-increment: feature;
}
.feature-num::after {
  content: counter(feature);
}

/* リスト */
.feature-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  padding: 16px 14px;
  line-height: 1.4;
}
.feature-list li i{
  font-size: 24px;
  color: var(--accent-color);
}
.feature-list li span{
  color: var(--accent-color);
  font-weight: 700;
}
.feature-list-tit{
  display: inline-block;
  font-size: 1.65rem;
  margin-bottom: 2px;
}
.feature-icon-column .feature-list-tit{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* アイコン色 */
.feature-item:nth-child(1){ --accent-color:#70c6c4; --accent-color-num:#70c6c4; }
.feature-item:nth-child(2){ --accent-color:#ed93b2; --accent-color-num:#ed93b2; }
.feature-item:nth-child(3){ --accent-color:#e2a54c; --accent-color-num:#e2a54c; }
.feature-item:nth-child(4){ --accent-color:#77c9dd; --accent-color-num:#77c9dd; }
.feature-item:nth-child(5){ --accent-color:#ca87bd; --accent-color-num:#c98cbf; }
.feature-item:nth-child(6){ --accent-color:#8ec675; --accent-color-num:#8ec675; }

/* カラム変更 */
.feature-list li.full {
  grid-column: 1 / -1;
}
.feature-icon-column li{
    flex-direction: column;
    gap: 8px;
}


/* 吹き出し */
.feature-note {
  --feature-note-color: color-mix(in srgb, var(--accent-color) 50%, white); 
  position: relative;
  background: var(--feature-note-color);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 30px;
}
.feature-note::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid var(--feature-note-color);
}
.feature-note p{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.feature-note i{
  color: var(--accent-color);
  font-size: 18px;
  background: #fff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 時間 */
.feature-schedule{
  line-height: 1.4;
  margin-top: 18px;
  font-weight: 700;
}
.feature-schedule-title{
  font-size: 1.7rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}
.feature-schedule ul{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feature-schedule li{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  padding: 10px 16px;
  flex: 1;
}
.feature-schedule li i{
  font-size: 12px;
  color: #fff;
  background: var(--accent-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* テキスト */
.feature-text{
  line-height: 1.4;
}
.feature-text span{
  color: var(--accent-color);
  font-weight: 700;
}
.feature-text p + p{
  margin-top: 5px;
}
.feature-text:not(:last-child) {
  margin-bottom: 12px;
}
.feature-text:not(:first-child) {
  margin-top: 12px;
}
.feature-text-tit{
  font-size: 1.7rem;
  color: var(--accent-color);
  font-weight: 700;
}

/*****************************************
  魅力２
******************************************/
.charm{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.charm-item{
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.charm-item:nth-child(1){ --accent-color:#70c6c4; --accent-color-num:#70c6c4; }
.charm-item:nth-child(2){ --accent-color:#ed93b2; --accent-color-num:#ed93b2; }
.charm-item:nth-child(3){ --accent-color:#e2a54c; --accent-color-num:#e2a54c; }
.charm-item:nth-child(4){ --accent-color:#77c9dd; --accent-color-num:#77c9dd; }
.charm-item:nth-child(5){ --accent-color:#ca87bd; --accent-color-num:#c98cbf; }
.charm-item:nth-child(6){ --accent-color:#509844; --accent-color-num:#509844; }

.charm-img{
  background:none;
  box-shadow:none;
  padding: 0;
  display: flex;
  align-items: center;
}
.charm-img img{
  max-width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}

.charm-heading{
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  --charm-heading-bg: color-mix(in srgb, var(--accent-color) 20%, white);
}
.charm-heading i{
  font-size: 20px;
  color: var(--accent-color);
  background: var(--charm-heading-bg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--top-radius);
  flex-shrink: 0;
  position: relative;
}
.charm-heading i::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent var(--charm-heading-bg);
}
.charm-title{
  font-size: 2rem;
  color: var(--color-bronze);
  font-weight: 700;
  line-height: 1.3;
}
.charm-item p{
  line-height: 1.5;
}
/* 現役の声 */
.charm-voice{
  padding: 12px;
  margin-top: 12px;
  border-radius: var(--top-radius);
  background: color-mix(in srgb, var(--accent-color) 15%, white);
}
.charm-voice-title{
  font-size: 1.5rem;
  color:#fff;
  padding: 6px 12px;
  border-radius: 100vh;
  display: inline-block;
  background: var(--accent-color);
  margin-bottom: 8px;
}
.charm-voice p + p{
  margin-top: 10px;
}

/*****************************************
  ある一日
******************************************/
.job-day{
  max-width: 900px;
  margin: 0 auto;
}
.job-day .slider-item{
  padding: 6px 16px;
}
.job-day-content{
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
}
.job-day-header{
  font-size: 1.9rem;
  padding: 10px 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: var(--top-radius) var(--top-radius) 0 0;
  background: var(--job-day-item-color);
}
.slider-item-1{
  --job-day-item-color: #f8b62d;
}
.slider-item-2{
  --job-day-item-color: #ffa09d;
}
.slider-item-3{
  --job-day-item-color: #8cc06c;
}
.slider-item-4{
  --job-day-item-color: #68a7e0;
}
.slider-item-5{
  --job-day-item-color: #a992cb;
}
.job-day-body{
  padding: 0 20px 16px;
}
.job-day-body p{
  line-height: 1.5;
}
.job-day-body p + p{
  margin-top: 10px;
}
.job-day-body img{
  max-width: 100%;
  max-height: 120px;
}
.job-day-body-title{
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 10px;
  padding: 8px 3px;
  margin: 0px auto 16px;
  line-height: 1.3;
  border-bottom: 3px dotted var(--job-day-item-color);
}
.job-day-body-title i{
  font-size: 20px;
  color: var(--job-day-item-color);
}
.job-day-body mark{
  color: color-mix(in srgb, var(--job-day-item-color) 95%, black);
  font-weight: 700;
}


/*****************************************
  インタビュー
******************************************/
.interview {
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  padding: 24px 18px;
  max-width: 900px;
  margin: 0 auto;

}
.interview p{
  line-height: 1.6;
}
.interview p + p{
  margin-top: 12px;
}
.interview-img{
  text-align: center;
  margin-bottom: 16px;
}
.interview-img img{
  max-width: 100%;
  max-height: 250px;
}
.interview-title {
  font-size: 1.8rem;
  color: #74c7aa;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.interview-title::before,
.interview-title::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: #74c7aa;
}


/*****************************************
  働き方モデルケース
******************************************/
.work-case{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work-case-item{
  padding: 20px 14px;
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  text-align: center;
  font-weight: 700;
}
.work-case-item i{
  font-size: 24px;
  margin-bottom: 10px;
  color:#94cacc;
}
.time-title{
  line-height: 1.3;
}
.time-badge{
  display: inline-block;
  border-radius: 100vh;
  padding: 6px 18px;
  background: #b7e0e0;
  margin-top: 10px;
  line-height: 1.2;
}

/*****************************************
  おすすめ
******************************************/
.ideal{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ideal-item{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  padding: 16px 14px;
  line-height: 1.4;
  font-weight: 700;
}
.ideal-item i{
  color: #fff;
  font-size: 24px;
  background: var(--ideal-color);
  box-shadow: var(--shadow2);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.ideal-item:nth-child(1) i{--ideal-color:#7fc9db;}
.ideal-item:nth-child(2) i{--ideal-color:#f8bd77;}
.ideal-item:nth-child(3) i{--ideal-color:#9cce87;}

/*****************************************
  エピソード
******************************************/
.episode{
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow2);
  border: 6px double #f2d8bf;
  padding: 20px 16px;
  margin: 0 auto;
  line-height: 1.4;
  max-width:var(--job-max-width);
}
.episode-title{
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-bronze);
  margin-bottom: 16px;
  text-align: center;
}
.episode p + p{
  margin-top: 12px;
}

/*****************************************
  フロー
******************************************/
.flow {
  --flow-circle-size: 58px;
  --flow-gap: 20px;
  --flow-color: #cea870;
  
  margin: 0 auto;
  max-width: var(--job-max-width);
}
.flow-item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-bottom: var(--flow-gap);
}
.flow-item:last-child {
  padding-bottom: 0;
}
/* ライン */
.flow-marker-wrap {
  position: relative;
  flex: 0 0 var(--flow-circle-size);
  width: var(--flow-circle-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  --flow-marker-margin: 5px;
}
.flow-marker-wrap::after {
  content: "";
  position: absolute;
  top: var(--flow-circle-size);
  bottom: calc((var(--flow-gap) + var(--flow-marker-margin)) * -1);
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px dotted #edc9a8;
}
.flow-item:last-child .flow-marker-wrap::after {
  display: none;
}
/* 丸枠 */
.flow-marker {
  width: var(--flow-circle-size);
  height: var(--flow-circle-size);
  border-radius: 50%;
  background: var(--flow-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow2);
  position: relative;
  z-index: 1;
  margin-top: var(--flow-marker-margin);
}
/* STEPテキスト */
.flow-step {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}
.flow-step strong {
  font-size: 2.2rem;
  display: block;
  margin-top: 1px;
  font-family: 'arial',sans-serif;
}
/* アイコン */
.flow-marker i{
  font-size: 24px;
  line-height: 1;
}
/*  本文  */
.flow-card {
  flex: 1;
  background: #fff;
  border-radius: var(--top-radius);
  padding: 18px 24px;
  box-shadow: var(--shadow2);
  min-height: var(--flow-circle-size);
}
.flow-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}
.flow-title-color{
  color: color-mix(in srgb, var(--flow-color) 95%, black);
}

.flow-note{
  --flow-color: #edc9a8;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
  margin-top: 10px;
}
.flow-note-title{
  --flow-color: var(--color-brown);
  font-size: 1.7rem;
  color: var(--flow-color);
  font-weight: 700;
}
.flow-note.flow-opd,
.flow-opd > .flow-note-title{
  --flow-color: var(--job-opd);
}
.flow-note.flow-vis,
.flow-vis > .flow-note-title{
  --flow-color: var(--job-vis);
}

.flow-time{
  font-size: 1.8rem;
  margin: 0 0 8px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-brown);
}
.flow-text {
  margin: 8px 0 0;
  line-height: 1.5;
}
/* 色 */
.flow {
  --flow-brown: #cea870;
  --flow-mint: #7cc1c1;
  --flow-pink: #efa599;
  --flow-sky: #77c9dd;
  --flow-orange: #f8bd77;
  --flow-green: #9cce87;
  --flow-purple: #c496c4;
}
.flow-brown  { --flow-color: var(--flow-brown); }
.flow-mint   { --flow-color: var(--flow-mint); }
.flow-pink   { --flow-color: var(--flow-pink); }
.flow-sky    { --flow-color: var(--flow-sky); }
.flow-orange { --flow-color: var(--flow-orange); }
.flow-green  { --flow-color: var(--flow-green); }
.flow-purple { --flow-color: var(--flow-purple); }

.flow-rainbow .flow-item:nth-child(1){ --flow-color: var(--flow-mint); }
.flow-rainbow .flow-item:nth-child(2){ --flow-color: var(--flow-pink); }
.flow-rainbow .flow-item:nth-child(3){ --flow-color: var(--flow-sky); }
.flow-rainbow .flow-item:nth-child(4){ --flow-color: var(--flow-orange); }
.flow-rainbow .flow-item:nth-child(5){ --flow-color: var(--flow-green); }
.flow-rainbow .flow-item:nth-child(6){ --flow-color: var(--flow-purple); }


/*****************************************
  募集概要(ボタン)
******************************************/
.job-info{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 20px;
  justify-content: center;
}
/* 1個だけの場合 */
.job-info:not(:has(> .job-info-item ~ .job-info-item)) {
  grid-template-columns: minmax(0, 400px);
}
.job-info-item{
  background: #fff;
  border: 1px solid #add3d3;
  padding: 16px;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-info-title i{
  color: var(--job-color);
}
.job-info-body{
  background:#e1f3f0;
  padding: 14px 16px;
  border-radius: var(--top-radius);
  display: flex;
  align-items:baseline;
  justify-content: center;
  gap: 10px;
}
.job-info .btn{
  --btn: var(--job-color);
  margin-inline: auto;
}
.job-guidance{
  max-width: var(--job-max-width);
  line-height: 1.4;
  font-size: 1.8rem;
  background:#fff;
  padding: 14px 16px;
  border: 1px solid #add3d3;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow2);
}

/*****************************************
  募集概要(詳細)
******************************************/
.lity-url{
  margin-bottom: calc((var(--bottom-menu-height) + env(safe-area-inset-bottom)) * -1);
}
.summary{
  --summary-color:#2c8089;
  --summary-bg: #eef8f6;
  --summary-border:#3aa8a0;
  --summary-border-line:#e5d6ba;
  
  --summary-box-bg: #fcfbf8;
  --summary-box-border: #e5dcce;
  background: #fff;
}
.summary-header{
  color: #fff;
  background: var(--summary-border);
  padding: 20px var(--wrap);
  text-align: center;
}
.summary-header-tag{
  font-size: 1.7rem;
  color: var(--summary-border);
  display: inline-block;
  padding: 6px 12px;
  background: #e0f2ef;
  border-radius: 100vh;
  font-weight: 700;
}
.summary-header-title{
  margin: 10px 0;
}
.summary-main{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}
.summary-title{
  color: var(--summary-color);
  background: var(--summary-bg);
  padding: 10px var(--wrap);
  margin-bottom: 10px;
  border-top: 1px solid var(--color-line);
  border-bottom: 2px solid var(--summary-border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.summary-title h2{
  font-size: 1.7rem;
}
.summary-title > span{
  font-size: 14px;
  color: #fff;
  background: var(--summary-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
/* 本文 */
.summary-body{
  padding-left: var(--wrap);
  padding-right: var(--wrap);
}
.summary-body p{
  line-height: 1.5;
}
.summary-body p + p{
  margin-top: 10px;
}
.summary-body li{
  line-height: 1.5;
}

/* 文字・見出し */
.summary-f-lg{
  font-size: 1.7rem;
  font-weight: 700;
}
.summary-f-mk{
  color: var(--summary-color);
  font-weight: 700;
}
.summary-f-label{
  color: #fff;
  display: inline-block;
  background: var(--summary-border);
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* BOX */
.summary-box{
  padding: 10px;
  margin-top: 12px;
  background: var(--summary-box-bg);
  border: 1px solid var(--summary-box-border);
  border-radius: var(--top-radius);
}
.summary-box2{
  --summary-box-bg: #f5f9ff;
  --summary-box-border: #dbe8fb;
}
.summary-box-note{
  --summary-box-bg: #fff;
  border: 1px solid var(--summary-border-line);
}

.summary-box-emphasis{
  background: #eafaf3;
  border: 1px solid #7aafad;
  padding: 10px;
  border-radius: var(--top-radius);
}
.summary-box-emphasis + .summary-box-emphasis{
  margin-top: 10px;
}
/* BOXリスト アイコン */
.summary-box-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.summary-box-list li{
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: #fff;
  border-radius: var(--top-radius);
  border: 1px solid var(--summary-box-border);
  padding: 10px;
}
.summary-box-list li i{
  color: #fff;
  font-size: 12px;
  background: var(--summary-border);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* アイコン */
.summary-icon{
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
}
.summary-icon i{
  color: var(--summary-border);
  margin-top: 0.3em;
}

/* リスト 区切り線 */
.summary-list-line li{
  padding:0 3px;
}
.summary-list-line li:not(:last-child){
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 2px dashed var(--summary-border-line);
}
/* リスト アイコン */
.summary-list-icon:not(:first-child){
  margin-top: 10px;
}
.summary-list-icon:not(:last-child){
  margin-bottom: 10px;
}
.summary-list-icon > * {
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
}
.summary-list-icon > * + *{
  margin-top: 8px;
}
.summary-list-icon > * > i {
  color: var(--summary-border);
  flex: 0 0 auto;
  margin-top: 0.3em;
}

/* リスト 丸 */
.summary-list-disc li + li{
  margin-top: 10px;
}
.summary-list-disc li{
  position: relative;
  padding-left: 1em;
}
.summary-list-disc li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.6em;
  font-size: 8px;
  color: var(--summary-border);
}
/* 余白調整 */
.summary-f-label + .summary-list-icon {
  margin-top: 5px;
}
.summary-list-icon .summary-box{
  margin-top: 12px;
}
.summary-mt{
  margin-top: 15px;
}
.summary-mts{
  margin-top: 8px;
}
span.summary-mt,
span.summary-mts {
  display: inline-block;
}

/* 閉じるボタン */
.btn-close{
  --btn: var(--color-brown);
  --btn-padding:12px 2em;
  margin-top: 15px;
}

/*****************************************
  職場見学
******************************************/
/* フッター */
.f-tour-title{
  line-height: 1.4;
  margin: 15px 0 25px;
}
.f-tour-text{
  line-height: 1.4;
}
.f-tour .tour-btn + .tour-btn {
  margin-top:15px;
}

/* 見学のススメ */
.tour{
  color: #f29b8c;
}
.job-header.tour{
  --job-header-bg: #f29b8c;
}
.tour-reason{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 20px;
  justify-content: center;
}
.tour-reason-item{
  background: #fff;
  padding: 20px;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}
.tour-reason-item i{
  color: #f29b8c;
  font-size: 32px;
}
.tour-reason-title{
  color: var(--color-brown);
}
/*****************************************
  よくある質問
******************************************/
.faq{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 20px;
  justify-content: center;
}
.faq-item{
  background: #fff;
  padding: 20px;
  border-radius: var(--top-radius);
  box-shadow: var(--shadow);
}
.faq-item > *{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding:10px 0;
  line-height: 1.4;
}
.faq-item > * + *{
  border-top: 2px dashed #e5d6ba;
}
.faq-badge{
  font-size: 2rem;
  font-weight: 900;
  margin-top: -0.15em;
}
.faq-q p{
  font-weight: 700;
}
.faq-q .faq-badge{
  color: #7cc1c1;
}
.faq-a .faq-badge{
  color: #efa599;
}
.faq-text p + p{
  margin-top: 8px;
}
