@charset "UTF-8";
/*#qanda .qa_list .block .button_box .btn button {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: var(--pink);
  border-radius: 10px;
  border: solid 1px var(--pink);
  line-height: 50px;
  background-color: #FFF;
  width: 100%;
  cursor: pointer;
  transition: 0.1s;
}

#qanda .qa_list .block .button_box .btn.reap button {
  background-color: var(--blue);
  border: solid 1px var(--blue);
  color: var(--white);
}

#qanda .qa_list .block .button_box .btn.dele button {
  background-color: #FFF;
  border: solid 1px var(--pink);
  color: var(--pink);
}
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
  font-size: 13px;
  font-family: "Inter", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--brown);
  counter-reset: number 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  color: var(--brown);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #EBEEF0;
  margin:20px 0;
  padding:0;
}

input,
select,
button {
  font-family: "Inter", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  vertical-align: middle;
}
input[type="text"], input[type="email"], input[type="password"],
select:not(:has(option[value=""]:checked)) {
  color: #8A6C73 !important;
}

button {
  cursor: pointer;
}

::placeholder {
  color: rgba(187, 187, 187, 1);
}

textarea {
	color: #8A6C73;
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  border-radius: 8px;
  width: 100%;
  padding: 10px;
}

/* 英記フォント */
.en {
  font-family: "Inter", sans-serif;
}


ol,
ul {
  list-style: none;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;

	/* safari向け svgぼやけ防止 */
  image-rendering: -webkit-optimize-contrast;
  shape-rendering: crispEdges;
  text-rendering: geometricPrecision;
}

table {
  border-collapse: collapse;
}

a.inactive {
  pointer-events: none !important;
}

p {
  font-size: 14px;
  line-height: 150%;
}

/* 共通色 */
:root {
  --img_pink: invert(74%) sepia(36%) saturate(4260%) hue-rotate(304deg) brightness(108%) contrast(101%);
  --img_white: brightness(0) invert(1);
  --img_brown: invert(43%) sepia(15%) saturate(513%) hue-rotate(296deg) brightness(99%) contrast(87%);
  --img_blue: brightness(0) saturate(100%) invert(71%) sepia(43%) saturate(414%) hue-rotate(134deg) brightness(92%) contrast(91%);

  --white: #FFF;
  --brown: #8A6C73;
  --blue: #62C8CC;
  --bg_blue: #F7FCFC;
  --dark_blue: #9fc2dc;
  --bg_pink: #FFF3F5;
  --pink: #FF839A;
  --dark_pink: #e73862;
  --light_pink: #fff9fa;
  --yellow: #FFCA75;
  --keep_gray: #C9DCEA;/* キープボタンのボーダー色 */
  --gray: #ebeef0;
  --light_gray: #f7f8f9;
  --light_orange: #fff7ea;
  --dark_orange: #ffca75;
  --bg_orange: #fffcf8;
  --border_orange: #ffebcb;
  /* 共通余白 */
  --sp_pd: 15px;
}

.colorBlue {color: var(--blue);}
.colorPink {color: var(--pink);}

.flex {
  display: flex;
  align-items: flex-start;
}
.gap10 {gap: 10px;}
.gap20 {gap: 20px;}

.x_scroll {
  overflow-x: auto;
  padding: 0 15px;
  display: flex;
  gap: 10px;
}
.x_scroll div {
  margin-inline: 0 !important;
  min-width: 300px;
  text-align: left;/* center打ち消し */
}

/* 余白 */
.pt0 {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt10 {padding-top: 10px!important;}
.pt20 {padding-top: 20px!important;}

.pb5 {padding-bottom: 5px!important;}
.pb10 {padding-bottom: 10px!important;}
.pb20 {padding-bottom: 20px!important;}

.mt0 {margin-top: 0!important;}
.mt5 {margin-top: 5px!important;}
.mt10 {margin-top: 10px!important;}
.mt20 {margin-top: 20px!important;}

.mb0 {margin-bottom: 0px!important;}
.mb5 {margin-bottom: 5px!important;}
.mb10 {margin-bottom: 10px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb40 {margin-bottom: 40px!important;}

.m20{ margin: 20px!important; }

@media screen and (min-width: 850px) {
  .pc_mt20 {
    margin-top: 20px !important;
  }
}

/* 幅 */
.w100 {width: 100% !important;}
.w50 {width: 50% !important;}
.mw100 {max-width: 100% !important;}

/* 影 */
.shadow.under {
  box-shadow: 0 0 0 0px rgba(104, 71, 161, .1);
  position: relative;
  z-index: 10;
}

.center {
  text-align: center;
}

/* btn */
button.btn.pink,
/* 0620菅近 postで送信が必要な箇所があるため追加 */
.btn.pink a {
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #FF839A;
  border-radius: 8px;
  position: relative;
    box-shadow: 0 5px 15px 0px rgba(251, 147, 172, 0.5);
  transition: 0.1s;
  color: #FFF;
    line-height: 60px;
  border: none;
}

.btn.pink.select_off a {
	line-height: 58px;
  font-weight: 700;
  background-color: rgba(255, 131, 154, 0.05);
  color: #FF839A;
  border: solid 1px #FF839A;
}

.btn.blue a {
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #62C8CC;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 15px 1px rgba(104, 71, 161, .2);
  transition: 0.1s;
  color: #FFF;
  line-height: 50px;
  border: none;
}

.btn.brown a, .btn.brown p {
  font-weight: 700;
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #8A6C73;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 15px 1px rgba(104, 71, 161, .2);
  transition: 0.1s;
  color: #FFF;
    line-height: 60px;
  border: none;
}

.btn.cyan p {
  font-weight: 700;
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #62c8cc;
  border-radius: 30px;
  position: relative;
  transition: 0.1s;
  color: #FFF;
  line-height: 60px;
  border: none;
}

.btn.gray p {
  font-weight: 700;
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #EBEEF0;
  border-radius: 30px;
  position: relative;
  transition: 0.1s;
  line-height: 60px;
  border: none;
}

.btn.gray a {
  font-weight: 700;
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  background: #EBEEF0;
  border-radius: 8px;
  position: relative;
  transition: 0.1s;
  color: #8A6C73;
  line-height: 50px;
  border: none;
}

button.btn:hover,
/* 0620菅近 追加 */
.btn a:hover,
.prof_autofill .btn:hover {
  opacity: 0.8;
}

a.underline {
  color: #2878C2;
  text-align: center;
  display: block;
  text-decoration: underline;
  cursor: pointer;
}
a.underline:hover {text-decoration: none;}
.wrap {
  background-color: var(--bg_blue);
}

/* 画面幅850px以上のとき */
.sp_parts {display: none;}
.pc_parts {display: block;}

main {
  border-top: 5px solid;
  border-image: linear-gradient(to right, #FEEFDB, #FFC7BA, #CDABE9, #ACDAF3, #ADEFED) 1;
  background-image: url("/img/front/pc_bg.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 0 0 50px;
  margin-top: 70px;
  scroll-margin-top: 70px;/* スクロール位置指定 */
}

#flex_area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
}

.side_bar {
  display: block;
  width: 100%;
  max-width: 218px;
}

.side_bar .box {
  border-radius: 10px;
  background-color: var(--white);
  padding: 30px 15px;
  margin-bottom: 10px;
}
.side_bar .box section.contents__inner,
.side_bar .box section.contents__inner > * {/* 0711 サイドバー右のコラム用 */
  background-color: var(--white);
  padding: 0;
  margin: 0;
}

.side_bar .box .icon {
  position: relative;
  background: var(--pink);
  border-radius: 90px;
  padding: 0 10px;
  max-width: 58px;
  width: 58px;
  height: 58px;
  margin: auto;
}

.side_bar .box .icon img {
  width: 24px;
  height: auto;
  filter: var(--img_white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.side_bar .box .box_ttl {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 20px;
}

.side_bar .box .form {}

.side_bar .box .form .text_box {
  position: relative;
  display: flex;
  width: 100%;
}

.side_bar .box .form input[type="text"] {
  flex-grow: 1;
  padding: 15px;
  height: 50px;
  background-color: #F6F5F3;
  border: none;
  width: 100%;
  border-radius: 5px;
}

.side_bar .box .form button {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 15px;
  height: 50px;
  border: none;
  background: none;
}

.side_bar .box .form img {
  width: 20px;
  height: 20px;
  filter: var(--img_brown);
}

.side_bar .box .search_menu {
  margin-top: 30px;
}

.side_bar .box .search_menu .ctgr {
  color: #62C8CC;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.side_bar .box .search_menu ul {
  border-top: solid 1px #EBEEF0;

}

.side_bar .box .search_menu ul li {
  border-bottom: solid 1px #EBEEF0;
}

.side_bar .box .search_menu ul li a {
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 0;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iIzhBNkM3MyIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik01MTcuODUtNDgwIDM1NC45Mi02NDIuOTJxLTguMy04LjMxLTguNS0yMC44OS0uMTktMTIuNTcgOC41LTIxLjI3IDguNy04LjY5IDIxLjA4LTguNjkgMTIuMzggMCAyMS4wOCA4LjY5bDE3OS43NyAxNzkuNzdxNS42MSA1LjYyIDcuOTIgMTEuODUgMi4zMSA2LjIzIDIuMzEgMTMuNDZ0LTIuMzEgMTMuNDZxLTIuMzEgNi4yMy03LjkyIDExLjg1TDM5Ny4wOC0yNzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNTE3Ljg1LTQ4MFoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right center;
}

.side_bar .box .search_menu ul li a:hover {
  color: var(--pink);
}

.side_bar .box .search_menu ul li a.inactive {
  color: #BEBEBE;
}

.side_bar .contents__inner .ttl {
  display: none !important;
}
.side_bar .box .column,
.side_bar #column_list .content-card {
  margin-bottom: 15px;
}

.side_bar #column_list {
  display: block;
  padding: 0 0 10px;
}

.side_bar #column_list .content-card {
  background: var(--white);
  text-align: left;
  box-shadow: none;
  border-radius: 0;
}

.side_bar .content-card figure .detail {
  padding: 0;
}

.side_bar .box .column figure img,
.side_bar #column_list .content-card figure img {
  border-radius: 5px;
  margin-bottom: 10px;
}

.side_bar .box .column .ctgr,
.side_bar #column_list .content-card .ctgr {
  margin-bottom: 5px;
  border-radius: 90px;
  background-color: rgba(255, 131, 154, 0.15);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  padding: 6px 10px;
  display: inline-block;
}

.side_bar .box .column .ctgr:before,
.side_bar #column_list .content-card .ctgr::before {
  content: '#';
  margin-right: 3px;
}

.side_bar .box .column figcaption,
.side_bar #column_list .content-card figcaption {
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*.side_bar .box .column .data*/
.side_bar #column_list .content-card .data {
  color: #BEBEBE;
  font-size: 12px;
  line-height: 18px;
}

/* sidebar 最近見た求人 */
.side_bar .box .job_blk {
  margin-bottom: 15px;
}

.side_bar .box .job_blk a .banner img {
  border-radius: 5px;
  margin-bottom: 10px;
}

.side_bar .box .job_blk .shop .shop_name {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.side_bar .box .job_blk .shop .area {
  font-size: 12px;
  color: #D9D9D9;
  display: block;
}

.side_bar .box .job_blk ul li {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 13px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 25px;
  margin-top: 3px;
}

.side_bar .box .job_blk ul li.pay {
  background-image: url("/img/front/icon/icon38.svg");
}

.side_bar .box .job_blk ul li.add {
  background-image: url("/img/front/icon/icon39.svg");
  background-position: left 4px center;
}

body.no-side_bar .side_bar {
  display: none;
}

/* header */
#header {
	background-color:rgba(255,255,255,0.9);
	width: 100%;
  position: fixed;
  top: 0;
  padding: 0 15px;
  z-index: 1000;
}

#header .wrapper {
  height: 70px;/* 規定値 */
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#head_logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#head_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

#head_logo a img {
  width: 120px;/* 規定値 */
  height: 30px;/* 規定値 */
}

#head_logo a .area {
  background-color: #FF839A;
  font-size: 12px;
  color: #FFF;
  text-align: center;
  line-height: 25px;
  border-radius: 30px;
  padding: 0px 10px;
  white-space: nowrap;
}
.nationwide #head_logo a .area { display: none;}

/* slide_menu スライドメニュー */
.global-menu {
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(98, 200, 204, 0.05) 0%,
      rgba(98, 200, 204, 0.05) 100%),
    linear-gradient(0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%);
  transition: transform 0.3s ease;
  z-index: 9800;
  padding: 0;
}

.left-menu {
  left: 0;
  transform: translateX(-100%);
}

.right-menu {
  right: 0;
  transform: translateX(100%);
}

.slide_menu .right-menu .ttl {
  border-bottom: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.global-menu.open {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9000;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.close_btn {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGZpbGw9IiM5ZDlkOWQiIGQ9Ik00ODAtNDM3Ljg1IDI3Ny4wOC0yMzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNDM3Ljg1LTQ4MCAyMzQuOTItNjgyLjkycS04LjMtOC4zMS04LjUtMjAuODktLjE5LTEyLjU3IDguNS0yMS4yNyA4LjctOC42OSAyMS4wOC04LjY5IDEyLjM4IDAgMjEuMDggOC42OUw0ODAtNTIyLjE1bDIwMi45Mi0yMDIuOTNxOC4zMS04LjMgMjAuODktOC41IDEyLjU3LS4xOSAyMS4yNyA4LjUgOC42OSA4LjcgOC42OSAyMS4wOCAwIDEyLjM4LTguNjkgMjEuMDhMNTIyLjE1LTQ4MGwyMDIuOTMgMjAyLjkycTguMyA4LjMxIDguNSAyMC44OS4xOSAxMi41Ny04LjUgMjEuMjctOC43IDguNjktMjEuMDggOC42OS0xMi4zOCAwLTIxLjA4LTguNjlMNDgwLTQzNy44NVoiLz48L3N2Zz4=");
  background-position: center;
  background-size: 30px auto;
  background-repeat: no-repeat;
}

#right_menu .close_btn {
  left: auto;
  right: 20px;
}

#left_menu {}

#left_menu .btn {
  background-color: var(--bg_pink);
  width: 44px;
  height: 44px;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
}

#left_menu .btn .toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
	width: 18px;/* レンダリングサイズ18ｐｘ */
	height: 12px;
  background-image: url("/img/front/icon_hamburger_menu_pink.svg");
  background-repeat: no-repeat;
  background-position: center;
}

#right_menu .btn {
  background-color: var(--bg_pink);
  width: 44px;
  height: 44px;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
}

#right_menu .btn .toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url("/img/front/icon/icon2.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.search-wrapper {
  margin-right: auto;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #F6F5F3;
  border-radius: 18px;
  cursor: pointer;
  padding: 0 10px;
}

.search-input {
  width: 0;
  opacity: 0;
  margin-right: 0;
  transition:
    width 0.4s ease,
    opacity 0.4s ease,
    margin-right 0.4s ease;
  border: none;
  font-size: 14px;
  background-color: #F6F5F3;
  outline: none;
}

.search-wrapper:hover .search-input,
.search-wrapper:focus-within .search-input {
  width: 160px;
  opacity: 1;
  margin-right: 10px;
}

.search-button {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 44px;
  border: none;
  background-color: inherit;
}

.search-wrapper {
  padding-left: 6px;
}

.search-button img {
  filter: var(--img_brown);
  width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);/* Safari用 */
  transform: translate(-50%, -50%);
}

#header .keep_btn {}

#header .keep_btn a {
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0ZGODM5QSIgZD0ibTguMTI1IDcuMDkyIDIuNjA4LTMuNDdjLjE1OS0uMjE1LjM0OC0uMzcyLjU2Ni0uNDcyLjIxOS0uMS40NTItLjE1LjcwMS0uMTUuMjQ5IDAgLjQ4Mi4wNS43MDEuMTUuMjE4LjEuNDA3LjI1Ny41NjYuNDcxbDIuNjA4IDMuNDcxIDQuMDIgMS4zNjhjLjM1Ni4xMi42My4zMjIuODIyLjYwNS4xOTMuMjg0LjI4OS41OTcuMjg5Ljk0IDAgLjE1OC0uMDIzLjMxNS0uMDcuNDcxYTEuNDQgMS40NCAwIDAgMS0uMjI4LjQ0OWwtMi42MzUgMy41NzMuMSAzLjgzYTEuNTIgMS41MiAwIDAgMS0uNDY2IDEuMTg5IDEuNTggMS41OCAwIDAgMS0xLjE0My40ODNsLS40NTQtLjA1NkwxMiAxOC43MzNsLTQuMTEgMS4yMTFhLjY5My42OTMgMCAwIDEtLjI0LjA1MyA4LjI4IDguMjggMCAwIDEtLjIxNC4wMDNjLS40NDMgMC0uODI2LS4xNjEtMS4xNS0uNDgzYTEuNTMgMS41MyAwIDAgMS0uNDU5LTEuMTg4bC4xLTMuODU2LTIuNjI5LTMuNTQ4YTEuNDU4IDEuNDU4IDAgMCAxLS4yMjgtLjQ1MyAxLjY0IDEuNjQgMCAwIDEgLjIyNy0xLjQxNGMuMTk3LS4yOS40NzQtLjQ5Ni44MjgtLjYxN2w0LTEuMzQ5Wm0uNjI5Ljg2TDQuNDYyIDkuMzk4YS42MDYuNjA2IDAgMCAwLS4zOTUuMzk0LjU0OC41NDggMCAwIDAgLjA4Ny41NDlsMi43OTIgMy44NC0uMTE5IDQuMTZhLjU3NC41NzQgMCAwIDAgLjIzLjUxOC41OC41OCAwIDAgMCAuNTU4LjA5N0wxMiAxNy42OTZsNC4zODQgMS4yODVhLjU4MS41ODEgMCAwIDAgLjU1OC0uMDk3LjU3NC41NzQgMCAwIDAgLjIzMS0uNTE4bC0uMTItNC4xODUgMi43OTMtMy43OWEuNTQ4LjU0OCAwIDAgMCAuMDg3LS41NDkuNjA2LjYwNiAwIDAgMC0uMzk1LS4zOTRsLTQuMjkyLTEuNDk2LTIuNzY1LTMuNjgzQS41NTMuNTUzIDAgMCAwIDEyIDQuMDJhLjU1Mi41NTIgMCAwIDAtLjQ4LjI1TDguNzUzIDcuOTUyWiIvPjwvc3ZnPg==");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 28px;
}

#header .keep_btn a:hover {
  color: var(--pink);
}

#header .keep_btn a .static-count {
  background-color: var(--pink);
  display: inline-block;
  vertical-align: text-bottom;
  width: 18px;
  line-height: 18px;
  text-align: center;
  color: #FFF;
  font-size: 10px;
  border-radius: 50%;
  margin-left: 5px;
}

#header .browsing-history {
  margin: 0 10px;
}

#header .browsing-history a {
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGZpbGw9IiNGRjgzOUEiIGQ9Ik00NzkuMjMtMTQwcS0xMjAuNjEgMC0yMTIuNjEtNzMuNjItOTItNzMuNjEtMTE3LjkzLTE4OC4zOC0zLjIzLTExLjkyIDMuODktMjEuOTIgNy4xMS0xMCAyMC4xNS0xMS42MiAxMi4yNy0xLjYxIDIyIDQuODV0MTMuNTggMTlRMjMxLjE1LTMxOSAzMDYuNzMtMjU5LjV0MTcyLjUgNTkuNXExMTcgMCAxOTguNS04MS41dDgxLjUtMTk4LjVxMC0xMTctODEuNS0xOTguNVQ0NzkuMjMtNzYwcS02NS41NCAwLTEyMi44NCAyOS4xMi01Ny4zMSAyOS4xMS05OC43IDgwLjExaDc0LjYycTEyLjc1IDAgMjEuMzcgOC42MyA4LjYzIDguNjMgOC42MyAyMS4zOCAwIDEyLjc2LTguNjMgMjEuMzctOC42MiA4LjYyLTIxLjM3IDguNjJIMTk1LjM5cS0xNS4zNyAwLTI1Ljc2LTEwLjQtMTAuNC0xMC4zOS0xMC40LTI1Ljc2di0xMzYuOTJxMC0xMi43NSA4LjYzLTIxLjM3IDguNjMtOC42MyAyMS4zOS04LjYzIDEyLjc1IDAgMjEuMzcgOC42MyA4LjYxIDguNjIgOC42MSAyMS4zN3Y2NC43N3E0OC42OS01Ny40NiAxMTYuNjItODkuMTlRNDAzLjc3LTgyMCA0NzkuMjMtODIwcTcwLjggMCAxMzIuNjMgMjYuNzd0MTA3LjgzIDcyLjc3cTQ2IDQ2IDcyLjc3IDEwNy44MiAyNi43NyA2MS44MyAyNi43NyAxMzIuNjJ0LTI2Ljc3IDEzMi42M3EtMjYuNzcgNjEuODUtNzIuNzcgMTA3Ljg1LTQ2IDQ2LTEwNy44MyA3Mi43N1E1NTAuMDMtMTQwIDQ3OS4yMy0xNDBabTMxLjE1LTM1Mi4xNSAxMTAgMTEwcTguMzEgOC4zIDguNSAyMC44OC4yIDEyLjU4LTguNSAyMS4yNy04LjY5IDguNjktMjEuMDcgOC42OS0xMi4zOSAwLTIxLjA4LTguNjlsLTExNy0xMTdxLTUuNjEtNS42Mi04LjIzLTEyLjI0LTIuNjEtNi42Mi0yLjYxLTEzLjY4Vi02NTBxMC0xMi43NSA4LjYyLTIxLjM4IDguNjMtOC42MiAyMS4zOS04LjYyIDEyLjc1IDAgMjEuMzcgOC42MiA4LjYxIDguNjMgOC42MSAyMS4zOHYxNTcuODVaIi8+PC9zdmc+");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 28px;
}

#header .browsing-history a:hover {
  color: var(--pink);
}

.slide_menu .ttl {
  height: 70px;
  line-height: 70px;
  box-sizing: border-box;
  color: #8A6C73;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  background-color: #FFF;

  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #FEEFDB, #FFC7BA, #CDABE9) 1;
  margin-inline: auto;
}

.slide_menu .search_area {
  padding: 20px 0;
}

.slide_menu .search_menu {
  margin: 0 30px 20px;
}
.slide_menu .search_menu.prej {margin: 0 0px 20px;}
.slide_menu .search_menu.prej .ctgr {margin: 0 30px 5px;}
.slide_menu .search_menu.prej ul { padding-left: 30px;}

.slide_menu .search_menu .ctgr {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.slide_menu .search_menu ul.list {
  background-color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0 15px;
}

.slide_menu .search_menu ul.list li {
  border-bottom: solid 1px #EBEEF0;
  display: flex;
  align-items: center;
}
.slide_menu .search_menu ul.list li:last-child {border: none;}

.slide_menu .search_menu ul.list li a {
  padding: 15px 0;
  width: 100%;
  color: #8A6C73;
  display: block;
  font-size: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGODM5QSIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik01MTcuODUtNDgwIDM1NC45Mi02NDIuOTJxLTguMy04LjMxLTguNS0yMC44OS0uMTktMTIuNTcgOC41LTIxLjI3IDguNy04LjY5IDIxLjA4LTguNjkgMTIuMzggMCAyMS4wOCA4LjY5bDE3OS43NyAxNzkuNzdxNS42MSA1LjYyIDcuOTIgMTEuODUgMi4zMSA2LjIzIDIuMzEgMTMuNDZ0LTIuMzEgMTMuNDZxLTIuMzEgNi4yMy03LjkyIDExLjg1TDM5Ny4wOC0yNzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNTE3Ljg1LTQ4MFoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right center;
}

.slide_menu .search_menu ul.list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.slide_menu .search_menu ul.list li.qa::before {
  background-image: url("/img/front/icon/icon49.svg");
}

.slide_menu .search_menu ul.list li.column::before {
  background-image: url("/img/front/icon/icon50.svg");
}

.slide_menu .search_menu ul.list li.flow::before {
  background-image: url("/img/front/icon/icon51.svg");
}

.slide_menu .search_menu ul.list li.category::before {
  background-image: url("/img/front/icon/icon52.svg");
}

.slide_menu .search_menu ul.list li.chat::before {
  background-image: url("/img/front/icon/icon53.svg");
}

.slide_menu .search_menu ul.list li.merit::before {
  background-image: url("/img/front/icon/icon54.svg");
}

.slide_menu .search_menu ul.list li.reason::before {
  background-image: url("/img/front/icon/icon55.svg");
}

.slide_menu .search_menu ul.list li.glossary::before {
  background-image: url("/img/front/icon/icon56.svg");
}

.slide_menu .search_menu ul.list li.job::before {
  background-image: url("/img/front/icon/icon57.svg");
}

.slide_menu .search_menu ul.list li.ranking::before {
  background-image: url("/img/front/icon/icon58.svg");
}

.slide_menu .search_menu ul.list li.new::before {
  background-image: url("/img/front/icon/icon59.svg");
}

.slide_menu .search_menu ul.list li.salary::before {
  background-image: url("/img/front/icon/icon60.svg");
}

.slide_menu .search_menu ul.list li.interview::before {
  background-image: url("/img/front/icon/icon61.svg");
}

.slide_menu .search_menu ul.list li.notice::before {
  background-image: url("/img/front/icon/icon62.svg");
}

.slide_menu .search_menu ul.list li.keep::before {
  background-image: url("/img/front/icon/icon63.svg");
}

.slide_menu .search_menu ul.list li.history::before {
  background-image: url("/img/front/icon/icon64.svg");
}

.slide_menu .search_menu ul.list li.bonus::before {
  background-image: url("/img/front/icon/icon65.svg");
}

.slide_menu .search_menu ul.list li.match::before {
  background-image: url("/img/front/icon/icon66.svg");
}

.slide_menu .search_menu ul.list li.viewed::before {
  background-image: url("/img/front/icon/icon67.svg");
}

.slide_menu .search_menu ul.list li.profile::before {
  background-image: url("/img/front/icon/icon68.svg");
}

.slide_menu .search_menu ul.list li.block::before {
  background-image: url("/img/front/icon/icon69.svg");
}

.slide_menu .search_menu ul.list li.mypage a {
  color: var(--blue);
}

.slide_menu .search_menu ul.list li.mypage::before {
  background-image: url("/img/front/icon/icon70.svg");
}

.slide_menu .search_menu ul.list li .badge {
  background-color: var(--pink);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  margin-left: auto;
  float: right;
  margin-right: 30px;
  width: 23px;
  line-height: 23px;
  text-align: center;
}


.slide_menu .search_menu ul.scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.slide_menu .search_menu ul.scroll li {
  flex: 0 0 auto;
  margin-bottom: 5px;
}

.slide_menu .search_menu ul.scroll li a {
  padding: 0 20px;
  line-height: 56px;
  box-sizing: border-box;
  border-radius: 50px;
  border: solid 1px var(--pink);
  background-color: #FFF;
  display: block;
  font-weight: 700;
  text-align: center;
  color: var(--pink);
}

.slide_menu .other {
  padding: 0 30px;
}

.slide_menu .other ul {}

.slide_menu .other ul li {
  width: 100%;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 39%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 50px;
  padding: 3px;
  margin-bottom: 10px;
}

.slide_menu .other.logout form {
  width: 100%;
  background: linear-gradient(90deg, #C9DCEA 0%, #C9DCEA 100%);
  border-radius: 50px;
  padding: 3px;
  margin-bottom: 10px;
}

.mypage .other .logout form {
  width: 100%;
  background: linear-gradient(90deg, #C9DCEA 0%, #C9DCEA 100%);
  border-radius: 50px;
}

.slide_menu .other.logout .logout-btn,
.mypage .other .logout .logout-btn {
  border: none;
  color: #8A6C73;
  width: 100%;
  padding: 13px;
  line-height: 25px;
  border-radius: 50px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
}

.slide_menu .other ul li a {
  display: block;
  width: 100%;
  padding: 13px;
  line-height: 25px;
  border-radius: 50px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
}

#breadcrumb {
  background-color: #FFF;
}

#breadcrumb ol {
  margin: 0;
  padding: 15px 15px;
  display: flex;
  line-height: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  -webkit-overflow-scrolling: touch; /* iOSスクロール */
}
@media screen and (min-width:849px) {
  #breadcrumb ol {
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
  }
}

#breadcrumb ol li {
  display: flex;
  flex: 0 0 auto;
  padding: 0;
  font-size: 12px;
  align-items: baseline;
  height: 18px;
  white-space: nowrap;
}

#breadcrumb ol li + li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 10px;
  background: url("/img/front/breadcrumb-arrow.svg") no-repeat center/contain;
  margin: 4px 6px;
  flex: 0 0 auto;
}

#breadcrumb ol li:nth-of-type(1) {
  padding: 0;
  background: none;
}

#breadcrumb ol li a {
  display: inline-block;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: fit-content;
}

#breadcrumb ol li a:hover {
  text-decoration: underline;
}

#contents {
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--white);
  width: 800px;
  max-width: 800px;
  box-shadow: 0 5px 85px rgba(154, 210, 212, 0.2);
}

/* footer フッター */
#footer {
  height: 311px;/* 規定値 */
  text-align: center;
  background-color: #8A6C73;
  padding: 50px 30px 0;/* 規定値 */
}

#footer .wrapper {}

#footer .logo {
  margin: 0 auto 40px;/* 規定値 */
}

#footer .logo img {
  width: 102px;/* 規定値 */
  height: 26px;/* 規定値 */
}

#footer #footer_navi {
  margin-bottom: 20px;
}

#footer #footer_navi ul {}

#footer #footer_navi ul li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  position: relative;
}

#footer #footer_navi ul li:after {
  content: '';
  width: 1px;
  height: 14px;
  margin: auto;
  background: linear-gradient(0deg, rgba(138, 108, 115, 0.30) 0%, rgba(138, 108, 115, 0.30) 100%), #8A6C73;
  background-blend-mode: multiply, normal;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -13px;
}

#footer #footer_navi ul li:last-child:after {
  display: none;
}

#footer #footer_navi ul li a {
  font-size: 13px;
  color: var(--white);
}

#footer #footer_navi ul li a:hover {
  text-decoration: underline;
}


#footer .copyright {
  font-size: 10px;
  color: var(--white);
  margin-bottom: 10px;
}

#footer .note {
  font-size: 10px;
  color: var(--white);
  line-height: 150%;
}


/* pagination ページネーション */
.pagination_box {
  width: 60%;
  min-width: 340px;
  margin: auto;
  padding: 0 10px;
}

@media screen and (max-width: 374px) {
  .pagination_box {
    min-width: 100%;
  }
}

.pagination_box .btn {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.pagination_box .btn a {
  width: 100%;
  display: block;
  background-color: #8A6C73;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  line-height: 50px;
  border-radius: 10px;
}

a.disabled,
.pagination_box .btn a.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.pagination_box .link_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination_box .link_box .arrow {
  margin: 0;
  width: 36px;
  text-indent: -9999px;
  display: inline-block;
}

.pagination_box .link_box .arrow.front {
  background: url("/img/front/arrow_prev.svg") no-repeat center center;
}

.pagination_box .link_box .arrow.last {
  background: url("/img/front/arrow_next.svg") no-repeat center center;
}

.pagination_box .link_box .arrow.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.pagination_box .page_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.pagination_box .page_list a {
  display: block;
  color: #8A6C73;
  font-size: 16px;
}

.pagination_box .page_list .current {
  font-size: 16px;
  background-color: #8A6C73;
  color: #FFF;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 90px;
}

.pagination_box .page_list .extend {
  font-size: 16px;
}

.section_area {
  padding: 30px 0;
}

.sd #qanda.section_area {
  padding: 30px 0 0;
}

.section_area.bgBlue {
  background-color: rgba(98, 200, 204, 0.15);
}

.section_area .ttl {
  display: block;
  text-align: center;
  position: relative;
}

.section_area .ttl p {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  position: absolute;
  top: 41px;
  left: 0;
  right: 0;
  margin: auto;
  color: #ffeef2;
  -webkit-text-stroke: 1px #808080;
  text-stroke: 1px #808080;
  font-size: 35px;
  letter-spacing: -2px;
}

.section_area .ttl p span {
  font-size: 22px;
}

.section_area .ttl img {
  width: auto;
  max-width: 100%;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 20em;
  display: block;
  word-break: break-all;
}
.ellipsis.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  max-width: 100%;
}

#news {
  position: relative;
  background-color: #61c8cc;
  color: #FFF;
  padding: 15px 40px;
  margin: 0 0px 30px;
  box-shadow: 0 0 0 0px rgba(154, 210, 212, 0.5);
}

#news:before {
  content: '';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23fff%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M210-204.62q-12.75%200-21.37-8.62-8.63-8.63-8.63-21.39%200-12.75%208.63-21.37%208.62-8.61%2021.37-8.61h42.31v-298.47q0-80.69%2049.81-142.69%2049.8-62%20127.88-79.31V-810q0-20.83%2014.57-35.42Q459.14-860%20479.95-860q20.82%200%2035.43%2014.58Q530-830.83%20530-810v24.92q78.08%2017.31%20127.88%2079.31%2049.81%2062%2049.81%20142.69v298.47H750q12.75%200%2021.37%208.62%208.63%208.63%208.63%2021.39%200%2012.75-8.63%2021.37-8.62%208.61-21.37%208.61H210Zm270-293.07Zm-.07%20405.38q-29.85%200-51.04-21.24-21.2-21.24-21.2-51.07h144.62q0%2029.93-21.26%2051.12-21.26%2021.19-51.12%2021.19Zm-167.62-172.3h335.38v-298.47q0-69.46-49.11-118.57-49.12-49.12-118.58-49.12-69.46%200-118.58%2049.12-49.11%2049.11-49.11%20118.57v298.47Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: left center;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#news:after {
  content: '';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23fff%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M517.85-480%20354.92-642.92q-8.3-8.31-8.5-20.89-.19-12.57%208.5-21.27%208.7-8.69%2021.08-8.69%2012.38%200%2021.08%208.69l179.77%20179.77q5.61%205.62%207.92%2011.85%202.31%206.23%202.31%2013.46t-2.31%2013.46q-2.31%206.23-7.92%2011.85L397.08-274.92q-8.31%208.3-20.89%208.5-12.57.19-21.27-8.5-8.69-8.7-8.69-21.08%200-12.38%208.69-21.08L517.85-480Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  width: 20px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#news a {
  color: #FFF;
}

#news .data {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin-bottom: 5px;
}

#news .txt {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.cont_top {
  position: relative;
	text-align: center;
}
.back-btn, .close-btn {
  position: absolute;
  left: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
  background-color: transparent;
  padding: 0 0;
  border: none;
  cursor: pointer;
  width: 16px;
}

.back-btn._position {
  top: 0px;
  transform: translateY(0);
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.back-btn._position span {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--brown);
}

.back-btn._position img {
  width: 6.5px;
  height: 12px;
}
@media screen and (max-width:850px) {
  .back-btn._position {
    display: flex;
  }
}
.cont_top .area_ttl {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin: 30px auto 30px;
  max-width: 20em;
}
.section_area .area_ttl {margin: 0px auto 30px;}
.area_ttl:before,
.area_ttl:after {
  content: '';
  position: absolute;
  top: 4px;
  width: 28px;
  height: 24px;
  background-image: url("/img/front/icon/icon6.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.area_ttl:before {
  left: -40px;
}

.area_ttl:after {
  right: -40px;
  transform: scale(-1, 1);
}
.area_ttl.plain:before,
.area_ttl.plain:after { display: none;}

#search_job {
  position: relative;
  background-color: #FFF3F5;
  margin-top: 70px;
  padding-top: 130px;
  padding-bottom: 30px;
}

#search_job:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 250px;
  height: 80px;
  border-radius: 50% / 100% 100% 0 0;
  background-color: #FFF3F5;
}

#search_job .ttl {
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

#search_job .ttl img {
  width: auto;
}

#search_job .area {
  background-color: #f7fcfc;
  border: solid 1px #c9dcea;
  margin: 30px;
  padding: 30px;
  border-radius: 15px;
}

#search_job .area.one-line,
#search_job .area.two-lines {
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: initial;
    text-overflow: initial;
    white-space: initial;
}

#search_job .area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#search_job .area.one-line ul.other,
#search_job .area.two-lines ul.other {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#search_job .area.one-line ul,
#search_job .area.two-lines ul {
  display: grid;
  gap: 7px;
}

#search_job .area.one-line ul {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 849px) {
  #search_job .area.one-line ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

#search_job .area.two-lines ul {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 849px) {
  #search_job .area.two-lines ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

#search_job .area ul li {
  width: 164px;
}

#search_job .area.one-line ul li,
#search_job .area.two-lines ul li {
  width: auto;
  overflow: hidden;
  min-width: 0;
}

#search_job .area ul li a {
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 50px;
  border: solid 1px #c9dcea;
  background-color: #fffcf8;
  display: block;
  font-weight: bold;
  text-align: center;
  line-height: 42px;
  height: 42px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#search_job .area p.other-area {
  position: relative;
  margin: 15px 0;
  font-size: 13px;
  font-weight: bold;
  color: var(--blue);
}

#search_job .area p.other-area:before {
  content: '';
  width: 83%;
  height: 1px;
  border-top: solid 1px #C9DCEA;
  position: absolute;
  right: 0;
  top: 8px;
}

#search_job .area p.other-area span {
  display: inline-block;
  width: 110px;
  position: relative;
  z-index: 10;
  background-color: #f7fcfc;
}

#search_job .area .toggle,
#search_job .area .label {
  display: none;
}

#search_job .area ul.other li {
  width: auto;
}

#search_job .area ul.other li a {
  border-radius: 8px;
  font-size: 13px;
  line-height: 39px;
  height: 39px;
}

.search-box {
  position: relative;
  margin-bottom: 10px;
}

.search-box .icon {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  padding: 15px;
  height: 50px;
  border: none;
  background: none;
}

.search-box input {
  position: relative;
  border: solid 1px #c9dcea;
  background-color: #fff;
  border-radius: 5px;
  flex-grow: 1;
  padding: 15px 15px 15px 40px;
  height: 50px;
  width: 100%;
}

#search_job .select_search {
  border: solid 1px #c9dcea;
  background-color: #fff;
  border-radius: 5px;
}

#search_job .select_search .ctgr {
  padding: 0 15px;
  border-bottom: solid 1px #c9dcea;
}

#search_job .select_search .ctgr3 {
  border-bottom: none;
}

#search_job .select_search .ctgr p {
  color: var(--brown);
  font-weight: normal;
  display: flex;
  gap: 7px;
  justify-content: flex-start;
  align-items: center;
  padding: 13px 0;
  cursor: pointer;
}

#search_job .select_search .ctgr p:before {
  content: '';
  display: block;
  position: inherit;
  border: none;
  background-image: url("/img/front/icon/icon43.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

#search_job .select_search .ctgr.ctgr1 p:before {
  background-image: url("/img/front/icon/icon43.svg");
}

#search_job .select_search .ctgr.ctgr2 p:before {
  background-image: url("/img/front/icon/icon44.svg");
}

#search_job .select_search .ctgr.ctgr3 p:before {
  background-image: url("/img/front/icon/icon45.svg");
}

#search_job .select_search .ctgr.ctgr4 p:before {
  background-image: url("/img/front/icon/icon71.svg");
}

#search_job .select_search .ctgr p:after {
  content: '+';
  font-size: 18px;
  margin-left: auto;
}

#search_job .select_search .ctgr ul {
  margin-bottom: 0;
}

#search_job .select_search .ctgr ul li {
  background-color: rgba(255, 202, 117, 0.15);
  font-size: 12px;
  width: auto;
  padding: 2px 5px;
  border-radius: 3px;
  margin-bottom: 10px;
}


#search_condition {}

#search_condition .ttl {
  position: relative;
}

#search_condition .ttl img {
  width: auto;
}

#search_condition .list {
  padding: 0 15px;
}

#search_condition .list ul li {
  width: auto;
  background: none;
}

.section_area .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.section_area .list ul li {
  width: 230px;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 30%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 50px;
  padding: 3px;
}

.section_area .list ul li a {
  display: block;
  background-color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  margin-inline: auto;
  padding: 0 10px;
  line-height: 54px;
}
.section_area .list ul li:hover { cursor: pointer;}
.section_area .list ul li a img {
  position: absolute;
  filter: var(--img_blue);
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  height: 40px;
}

.section_area .list ul li a {
  display: block;
  background-color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  margin-inline: auto;
  padding: 0 10px;
  line-height: 54px;
}
.section_area .list ul li .icon {
  position: absolute;
  color: var(--blue);
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
}

.section_area .list ul li a span {
  display: block;
  position: relative;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 30%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 50px;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.section_area .list ul li a span:after {
  content: '';
  z-index: 1;
  border-radius: 50px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  transition: .1s;
}

.section_area .list ul li a:hover span:after {
  width: 65px;
  height: 65px;
}

/* エリアトップバナー表示
========================================================================*/
.pict-sample-area .sample-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 550px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding-inline: 15px;
}

@media screen and (max-width: 849px) {
  .pict-sample-area .sample-row {
    max-width: 680px;
  }
}

body:not(:has(#search_condition)) .pict-sample-area {
  padding-top: 30px;
}

body:not(:has(#banner_ad)) .pict-sample-area {
  padding-bottom: 20px;
}


#recommend_job {
  background-color: var(--bg_pink);
}

#recommend_job .ttl {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: table;
  margin: 0 auto 25px;
  color: #FF839A;
}

#recommend_job .ttl:before,
#recommend_job .ttl:after {
  content: '';
  position: absolute;
  top: 3px;
  width: 28px;
  height: 24px;
  background-image: url("/img/front/icon/icon12.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px auto;
}

#recommend_job .ttl:before {
  left: -33px;
}

#recommend_job .ttl:after {
  right: -33px;
  transform: scale(-1, 1);
}

#recommend_job .job_list {
  justify-content: flex-start;
}

#recommend_job .recoSlide {
  overflow: hidden;
  margin-bottom: 40px;
}

#recommend_job .recoSlide img {
  border-radius: 8px;
}

#banner_ad .recoSlide img {
  border-radius: 8px;
  aspect-ratio: 800/440;
  object-fit: cover;
}

#recommend_job .recoSlide .caption {
  font-size: 14px;
  font-weight: bold;
  padding-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.more_btn {
  margin: 0 auto;
  padding: 1px;
  max-width: 240px;
  background: #FF839A;
  border-radius: 90px;
  position: relative;
	box-shadow: 0 5px 15px 0px rgba(251, 147, 172, 0.5);
	transition:0.3s;
}

.more_btn a {
  padding: 12px 10px;
  line-height: 1em;
  font-size: 14px;
  text-align: center;
  border-radius: 90px;
  color: #FFF;
  font-weight: bold;
  display: block;
  transition: all .5s;
}

.more_btn.blue {
  background-color: var(--blue);
	box-shadow: 0 5px 15px 0px rgba(154, 210, 212, 0.5);
}

.more_btn:hover {
  opacity: 0.8;
}

/* スライダー */
.swiper-button-next, .swiper-button-prev {
  top: auto;
  bottom: 10px;
  right: 30px;
  width: 54px;
  height: 54px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 30px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '';
  width: 54px;
  height: 54px;
}

.swiper-button-next:after {
  background-image: url("/img/front/swiper_button_next.svg");
}

.swiper-button-prev:after {
  background-image: url("/img/front/swiper_button_prev.svg");
}

.swiper-pagination-bullet {
  background: #FFF;
  border: solid 1px var(--brown);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brown);
}

.swiper-pagination {
  bottom: 0 !important;
}

.pickup_flex {
  display: flex;
}

@media screen and (max-width: 1199px) {
  .pickup_flex:has(> .pickup_cast.section_area:nth-child(2)) {
    flex-direction: column;
  }

  .pickup_flex:has(> .pickup_cast.section_area:nth-child(2))
  > .pickup_cast.section_area {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .pickup_flex.is-double {
    flex-direction: column;
  }

  .pickup_flex.is-double .pickup_cast {
    width: 100%;
  }
}

.pickup_cast {
  background-color: #b0e3e5;
  width: 50%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1199px) {
  .pickup_cast {
    min-height: auto;
  }
}

#pay_slip.pickup_cast {
	background-color:rgba(255,131,154,0.5);
}

.pickup_cast .ttl {}

.pickup_cast .cast_prof {
  margin: 0 15px;
  padding: 30px 15px;
  background-color: #FFF;
  border-radius: 10px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pickup_cast .cast_prof .photo {
  width: 100px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto 15px;
  max-width: 136px;
  padding: 4px;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 39%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 180px;
  box-sizing: border-box;
  overflow: hidden;
}

.pickup_cast .cast_prof .photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 180px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  object-fit: cover;
}

.pickup_cast .cast_prof .name {
  font-size: 13px;
  margin-bottom: 5px;
}

.pickup_cast .cast_prof .name.flex {
  align-items: baseline;
  margin: 0 auto;
}

.pickup_cast .cast_prof .name.flex .name-title {
  white-space: nowrap;
}

.pickup_cast .cast_prof .name span {
  font-size: 16px;
  padding-right: 10px;
}

.pickup_cast .cast_prof .name span.ellipsis {
  max-width: 15em;
}

.pickup_cast .cast_prof .age {
  font-size: 12px;
  margin-bottom: 10px;
}

.pickup_cast .cast_prof .area {
  font-size: 12px;
  color: #D9D9D9;
}

.pickup_cast .cast_prof .shop {
  font-size: 13px;
  margin: 0 auto 25px;
}

.pickup_cast .cast_prof .data {
  display: flex;
  margin-bottom: 20px;
  border-top: solid 1px #EBEEF0;
}

.pickup_cast .cast_prof .data dl {
  border-bottom: solid 1px #EBEEF0;
  width: 50%;
  padding: 15px;
}

.pickup_cast .cast_prof .data dl dt {
  margin: 0 auto 10px auto;
  padding: 10px;
  background: var(--blue);
  color: #FFF;
  border-radius: 90px;
  position: relative;
}

.pickup_cast .cast_prof .data dl dd {
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pickup_cast .cast_prof .qa_title {
  text-align: left;
  margin-bottom: 20px;
  color: #ffc0cb;
}

.pickup_cast .cast_prof .qa {
  margin-bottom: 30px;
}

.pickup_cast .cast_prof .qa dt,
.pickup_cast .cast_prof .qa dd {
  display: flex;
  align-items: baseline;
  text-align: left;
  margin-bottom: 10px;
  line-height: 150%;
  align-items: anchor-center;
}

.pickup_cast .cast_prof .qa dt {}

.pickup_cast .cast_prof .qa dd {}

.pickup_cast .cast_prof .qa dt span,
.pickup_cast .cast_prof .qa dd span {
  background: var(--blue);
  border-radius: 90px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  margin-right: 15px;
  line-height: 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
  font-size: 15px;
}

.pickup_cast .cast_prof .qa dd span {
  background: var(--pink);
}

.pickup_cast .cast_prof .qa {
  margin-bottom: 30px;
}

.pickup_cast .cast_prof .more_btn {
  margin-top: auto;
  width: 100%;
}

#pay_slip.pickup_cast .cast_prof .data {
  display: block;
}

#pay_slip.pickup_cast .cast_prof .data dl {
  display: flex;
  width: 100%;
  padding: 15px;
  margin-bottom: 0;
  align-items: center;
  justify-content: space-between;
}

#pay_slip.pickup_cast .cast_prof .data dl dt,
#pay_slip.pickup_cast .cast_prof .data dl dd {
  height: 30px;
  line-height: 30px;
}

#pay_slip.pickup_cast .cast_prof .data dl dt {
  background: var(--pink);
  margin: 0;
  padding: 0 20px;
}

#pay_slip.pickup_cast .cast_prof .data dl dd {
  font-weight: normal;
}

#pay_slip.pickup_cast .items {
  width: 100%;
  margin-top: -10px;
  margin-bottom: 30px;
  border-bottom: solid 1px #EBEEF0;
}

#pay_slip.pickup_cast .items tr {}

#pay_slip.pickup_cast .items tr:nth-of-type(even) {
  background-color: #F9F9F9;
}

#pay_slip.pickup_cast .items th,
#pay_slip.pickup_cast .items td {
  padding: 15px 5px;
  font-size: 12px;
}

#pay_slip.pickup_cast .items tr.basic th {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 20px;
}

#pay_slip.pickup_cast .items tr.basic.total th {
  padding-top: 20px;
}

#pay_slip.pickup_cast .items tr.basic .price {
  color: var(--pink);
  font-size: 18px;
}

#pay_slip.pickup_cast .items th {
  font-weight: normal;
  text-align: left;
}

#pay_slip.pickup_cast .items td {
  text-align: right;
}

#pay_slip.pickup_cast .items td.price {
  font-size: 14px;
  font-weight: bold;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

#pay_slip.pickup_cast .items span {
  background-color: var(--bg_pink);
  border-radius: 90px;
  padding: 5px 10px;
  white-space: nowrap;
}

#qanda {
  background-color: #FFF;
}

#qanda .ttl {}

#qanda .qa_list {
  margin: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sd #qanda .qa_list,
.dx #qanda .qa_list {
  margin: 0;
}

#qanda .qa_list .block {
  position: relative;
  background-color: rgba(255, 131, 154, 0.05);
  border: solid 0px rgba(255, 131, 154, 0.2);
  padding: 16px;
  border-radius: 15px;
  width: calc((100% / 2) - 8px);
}
#qanda .qa_list .block.remand { margin-bottom: 10px;}

#qanda .qa_list .block a {
  display: block;
  height: 100%;
}

#qanda .qa_list .block.solution:before {
  content: "";
  top: -5px;
  right: -5px;
  width: 52px;
  height: 52px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0ZGODM5QSIgZD0iTTQzLjk5NyAwSDYuNDg3QzEuMTQzIDAtMS41MzYgNi40NjMgMi4yNDQgMTAuMjQzbDM5LjUxNCAzOS41MTRDNDUuNTM3IDUzLjUzNyA1MiA1MC44NiA1MiA0NS41MTVWOGMwLTQuNDE4LTMuNTg1LTgtOC4wMDMtOFoiLz48L3N2Zz4=");
  background-position: right top;
  background-repeat: no-repeat;
  filter: var(--img__pink);
  position: absolute;
  z-index: 100;
  border-radius: 10px;
}

#qanda .qa_list .block.solution:after {
  content: "解決！";
  transform: rotate(45deg);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  top: 7px;
  right: -5px;
  position: absolute;
  z-index: 101;
}

#qanda .qa_list .block .status {
  margin: -20px -20px 20px;
  background-color: #8A6C73;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  line-height: 40px;
}
#qanda .qa_list .block.review .status {background-color: #8A6C73;}
#qanda .qa_list .block.remand .status {background-color: #FF839A;}

#qanda .qa_list .block .ctgr {
  margin-bottom: 18px;
	display: flex;
}

#qanda .qa_list .block .ctgr li {
  border-radius: 90px;
  background-color: #FFF;
  color: var(--pink);
  font-size: 12px;
  padding: 5px 10px;
  display: inline-block;
}

#qanda .qa_list .block .ctgr li:before {
  content: '#';
  margin-right: 3px;
}

#qanda .qa_list .block .question {
 position: relative;
 margin-bottom: 15px;
 min-height: calc(1.5em * 2 + 1.5em);
 display: flex;
 flex-direction: column;
  justify-content: space-between;
}

#qanda .qa_list .block .question:after {
  content: 'Q';
  font-family: "Inter", sans-serif;
  border-radius: 50%;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #FFF;
  font-size: 16px;
  background-color: var(--blue);
  text-align: center;
  position: absolute;
  left: 0;
  top: -3px;
}
#qanda .qa_list .block .question .text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#qanda .qa_list .block .question p {
  padding-left: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
}

#qanda .qa_list .block .question p span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
#qanda .qa_list .block .question .name {
  display: block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 40px;
}
#qanda .qa_list .block .answer {
  position: relative;
}

#qanda .qa_list .block .answer:after {
  content: 'A';
  font-family: "Inter", sans-serif;
  border-radius: 50%;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #FFF;
  font-size: 16px;
  background-color: var(--pink);
  text-align: center;
  position: absolute;
  left: 0;
  top: -3px;
}

#qanda .qa_list .block .answer p {
  padding-left: 40px;
  font-size: 14px;
  line-height: 150%;
}

#qanda .qa_list .block .count {
  display: flex;
  align-items: center;
  margin: 15px 0 0;
}

#qanda .qa_list .block .count li {
  font-size: 12px;
  margin-right: 10px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding: 5px 0px 5px 23px;
}
#qanda .qa_list .block .count li.good {background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjOEE2QzczIj48cGF0aCBkPSJNODE1LjM4LTYwMHEyNS4wOCAwIDQ0Ljg1IDE5Ljc3UTg4MC01NjAuNDYgODgwLTUzNS4zOHY0OS4yM3EwIDUuNTktMS4yMyAxMS45OS0xLjIzIDYuMzktMy4yMyAxMS44NUw3NjYuMjctMjAzLjI5cS04LjE5IDE4LjM3LTI3LjY1IDMwLjgzUTcxOS4xNS0xNjAgNjk4LjE4LTE2MEgyOTYuOTJ2LTQ0MGwyMjUuMzktMjIzLjM4cTguODQtOC44NSAxOS43My0xMC45NyAxMC44OC0yLjExIDIwLjY1IDMuMjcgOS43NyA1LjM5IDE0LjE2IDE1LjcgNC4zOCAxMC4zIDEuNjkgMjEuNjFMNTM3LjM4LTYwMGgyNzhabS00NzguNDYgMTcuMDhWLTIwMGgzNjEuNTRxOC40NiAwIDE3LjMxLTQuNjIgOC44NS00LjYxIDEzLjQ2LTE1LjM4TDg0MC00ODB2LTU1LjM4cTAtMTAuNzctNi45Mi0xNy43LTYuOTMtNi45Mi0xNy43LTYuOTJINDg3LjY5TDUzNC03NzguNDYgMzM2LjkyLTU4Mi45MlpNMTg0LjYyLTE2MHEtMjYuNjYgMC00NS42NC0xOC45OFQxMjAtMjI0LjYydi0zMTAuNzZxMC0yNi42NiAxOC45OC00NS42NFQxODQuNjItNjAwaDExMi4zdjQwaC0xMTIuM3EtMTAuNzcgMC0xNy43IDYuOTItNi45MiA2LjkzLTYuOTIgMTcuN3YzMTAuNzZxMCAxMC43NyA2LjkyIDE3LjcgNi45MyA2LjkyIDE3LjcgNi45MmgxMTIuM3Y0MGgtMTEyLjNabTE1Mi4zLTQwdi0zODIuOTJWLTIwMFoiLz48L3N2Zz4=");}
#qanda .qa_list .block .count li.look {background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzhBNkM3MyIgZD0iTTkuMDAzIDguNjI4Yy44NDcgMCAxLjU2Ni0uMjk2IDIuMTU2LS44OS41OS0uNTkyLjg4NS0xLjMxMi44ODUtMi4xNTkgMC0uODQ2LS4yOTYtMS41NjUtLjg4OS0yLjE1NWEyLjk0NiAyLjk0NiAwIDAgMC0yLjE2LS44ODZjLS44NDYgMC0xLjU2NS4yOTctMi4xNTUuODlhMi45NDYgMi45NDYgMCAwIDAtLjg4NSAyLjE1OWMwIC44NDcuMjk2IDEuNTY1Ljg4OSAyLjE1Ni41OTMuNTkgMS4zMTIuODg1IDIuMTYuODg1Wk05IDcuODMzYTIuMTcgMi4xNyAwIDAgMS0xLjU5My0uNjU2IDIuMTcgMi4xNyAwIDAgMS0uNjU3LTEuNTk0YzAtLjYyNS4yMi0xLjE1Ni42NTctMS41OTRhMi4xNyAyLjE3IDAgMCAxIDEuNTkzLS42NTYgMi4xNyAyLjE3IDAgMCAxIDEuNTk0LjY1NmMuNDM4LjQzOC42NTYuOTcuNjU2IDEuNTk0YTIuMTcgMi4xNyAwIDAgMS0uNjU2IDEuNTk0QTIuMTcgMi4xNyAwIDAgMSA5IDcuODMzWk05IDExYTguMjk1IDguMjk1IDAgMCAxLTQuNTMzLTEuMzA4IDEwLjIwNSAxMC4yMDUgMCAwIDEtMy4zMy0zLjQzIDEuMjk0IDEuMjk0IDAgMCAxLS4xNDktLjMzOCAxLjMzNiAxLjMzNiAwIDAgMSAwLS42ODNjLjAzLS4xMS4wOC0uMjIzLjE0OS0uMzM3YTEwLjIwNSAxMC4yMDUgMCAwIDEgMy4zMy0zLjQzQTguMjk0IDguMjk0IDAgMCAxIDkgLjE2N2MxLjY0OCAwIDMuMTU5LjQzNSA0LjUzMyAxLjMwN2ExMC4yMDUgMTAuMjA1IDAgMCAxIDMuMzMxIDMuNDNjLjA3LjExNC4xMTkuMjI3LjE0OS4zMzhhMS4zMzYgMS4zMzYgMCAwIDEgMCAuNjgzIDEuMyAxLjMgMCAwIDEtLjE0OS4zMzggMTAuMjA1IDEwLjIwNSAwIDAgMS0zLjMzIDMuNDNBOC4yOTQgOC4yOTQgMCAwIDEgOC45OTggMTFabTAtLjgzNGMxLjU3IDAgMy4wMS0uNDEzIDQuMzIzLTEuMjRhOC4xNDQgOC4xNDQgMCAwIDAgMy4wMS0zLjM0MyA4LjE0NCA4LjE0NCAwIDAgMC0zLjAxLTMuMzQ0QTcuOTU0IDcuOTU0IDAgMCAwIDkgMWMtMS41NjkgMC0zLjAxLjQxNC00LjMyMyAxLjI0YTguMTQ0IDguMTQ0IDAgMCAwLTMuMDEgMy4zNDQgOC4xNDQgOC4xNDQgMCAwIDAgMy4wMSAzLjM0NEE3Ljk1NCA3Ljk1NCAwIDAgMCA5IDEwLjE2N1oiLz48L3N2Zz4=");}
#qanda .qa_list .block .count li.cmnt {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzhBNkM3MyIgZD0iTTEuMzU1IDExLjUyQTkuODQ4IDkuODQ4IDAgMCAxIC43MyA5LjggNy4wOTMgNy4wOTMgMCAwIDEgLjUgOGMwLTEuMDM3LjE5Ni0yLjAxMy41OS0yLjkyNWE3LjU3NSA3LjU3NSAwIDAgMSAxLjYwMi0yLjM4MSA3LjU3IDcuNTcgMCAwIDEgMi4zOC0xLjYwM0E3LjI5OCA3LjI5OCAwIDAgMSA3Ljk5OC41YTcuMzEgNy4zMSAwIDAgMSAyLjkyNS41OSA3LjU4IDcuNTggMCAwIDEgMi4zODMgMS42MDMgNy41NjggNy41NjggMCAwIDEgMS42MDQgMi4zOGMuMzkzLjkxMi41OSAxLjg4Ny41OSAyLjkyNGE3LjMwOSA3LjMwOSAwIDAgMS0uNTkgMi45MjUgNy41OCA3LjU4IDAgMCAxLTEuNjAzIDIuMzgzIDcuNTcyIDcuNTcyIDAgMCAxLTIuMzgxIDEuNjA0IDcuMyA3LjMgMCAwIDEtMi45MjYuNTkxIDcuMDk1IDcuMDk1IDAgMCAxLTEuOC0uMjMgOS44NDMgOS44NDMgMCAwIDEtMS43MTktLjYyNmwtMy4yNDkuOTUxYS42MTguNjE4IDAgMCAxLS42Ni0uMTY3LjYxOC42MTggMCAwIDEtLjE2Ny0uNjZsLjk1MS0zLjI0OVptLS4wNjQgMy4xODggMi42NjctLjc5MWMuMjE2LS4wNTYuNDE0LS4wODIuNTk0LS4wNzlhMS4zIDEuMyAwIDAgMSAuNTczLjE2MmMuNDQ0LjIyMi45MS4zODkgMS4zOTUuNS40ODYuMTExLjk4LjE2NyAxLjQ4LjE2NyAxLjg2IDAgMy40MzctLjY0NiA0LjcyOS0xLjkzOEMxNC4wMiAxMS40MzggMTQuNjY2IDkuODYxIDE0LjY2NiA4YzAtMS44NjEtLjY0Ni0zLjQzOC0xLjkzNy00LjczLTEuMjkyLTEuMjktMi44NjgtMS45MzctNC43My0xLjkzNy0xLjg2IDAtMy40MzcuNjQ2LTQuNzI5IDEuOTM4QzEuOTggNC41NjMgMS4zMzMgNi4xMzkgMS4zMzMgOGMwIC41LjA1NS45OTMuMTY3IDEuNDguMTEuNDg1LjI3Ny45NS41IDEuMzk1LjA5Ny4xOC4xNTEuMzcxLjE2NC41NzMuMDEyLjIwMS0uMDE1LjQtLjA4MS41OTRsLS43OTIgMi42NjZaIi8+PC9zdmc+");
  background-size: 16px auto;
}

#qanda .qa_list .block .count li.dating {
  padding: 0;
  margin-right: 0px;
  margin-left: auto;
}

#qanda .qa_list .block .date {
  font-size: 12px;
  margin-top: 20px;
}

#qanda .qa_list .block .reason {
  background-color: #FFF;
    border-radius: 8px;
    padding: 15px;
}

#qanda .qa_list .block .reason .cap {
  font-size: 14px;
  font-weight: bold;
  color: var(--pink);
	margin-bottom: 5px;
}
#qanda .qa_list .block .reason p {
	margin-bottom: 10px;
}
#qanda .qa_list .block .button_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

#qanda .qa_list .block .button_box .btn {
  width: 100%;
}

#qanda .qa_list .block .button_box .btn a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: var(--pink);
  border-radius: 10px;
  border: solid 1px var(--pink);
  line-height: 50px;
  background-color: #FFF;
}

#qanda .qa_list .block .button_box .btn.reap a {
  background-color: var(--blue);
  border: solid 1px var(--blue);
  color: var(--white);
}
#qanda .answer {
  width: 100%;
}

#column {
  background-color: var(--bg_pink);
}

#column .ttl {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: table;
  margin: 0 auto 25px;
  color: #FF839A;
}

#column .ttl:before,
#column .ttl:after {
  content: '';
  position: absolute;
  top: 3px;
  width: 28px;
  height: 24px;
  background-image: url("/img/front/icon/icon12.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px auto;
}

#column .ttl:before {
  left: -33px;
}

#column .ttl:after {
  right: -33px;
  transform: scale(-1, 1);
}

@media screen and (min-width:850px) {
  #column .column_list .column_box {
    background-color: #FFF;
    box-shadow: 0 0 2px 1px rgba(104, 71, 161, .2);
    border-radius: 8px;
    margin: 0 15px 20px;
    overflow: hidden;
  }
}

#column .column_list .column_box a {
  display: block;
}

#column .column_list .column_box img {
  margin-bottom: 15px;
}

#column .column_list .column_box .ctgr {
  margin: 0 15px 10px;
  border-radius: 90px;
  background-color: rgba(255, 131, 154, 0.15);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  padding: 0 15px;
  line-height: 25px;
  display: inline-block;
}

#column .column_list .column_box figcaption {
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  margin: 0 15px 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#column .column_list .column_box .data {
  font-size: 12px;
  color: #BEBEBE;
  margin: 0 15px 20px;
}

#hot_job {}

#hot_job .job_list .job_blk {
  max-width: 100%;
}

#hot_job .job_list .job_blk .banner {
  width: 335px;
}

#hot_job .job_list .job_blk .detail {
  width: 50%;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}

#hot_job .job_list .job_blk p {
  margin-top: auto;
}

.job_list {
  justify-content: center;
}

.job_list .job_blk {
  background-color: #FFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 0 40px 15px;
  overflow: hidden;
  max-width: 300px;
}

.job_list .job_blk a {
  display: flex;
  padding: 8px;
}

.job_list .job_blk .banner {}

.job_list .job_blk .banner img {
  border-radius: 8px;
}

.job_list .job_blk .detail {
  padding: 15px;
}

.job_list .job_blk .detail h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 150%;
  color: var(--pink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.job_list .job_blk .detail p {}

.job_list .job_blk .detail p .area {
  font-size: 12px;
  color: #BEBEBE;
  display: block;
}

.job_list .job_blk .detail p .shop {
  font-size: 13px;
}

.job_list.x_scroll .job_blk {
  margin-bottom: 10px !important;
}

.job_list.x_scroll .job_blk a {
  display: block;
  padding: 0;
}

.job_list.x_scroll .job_blk .banner img {
  border-radius: 0;
}

#cast_interview {
  background-color: var(--white);
}

#cast_interview .ttl {}

#cast_interview .int_list {
  margin: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#cast_interview .int_list .blk {
  width: calc((100% / 2) - 8px);
}

#cast_interview .int_list .blk .cast {
  background-color: rgba(255, 131, 154, 0.05);
  border: solid 1px rgba(255, 131, 154, 0.2);
  padding: 16px;
  border-radius: 15px;
  overflow: hidden;
}
#cast_interview .int_list .blk .cast {}
#cast_interview .int_list .blk .cast .info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  width: 100%;
  min-width: 0;
}

#cast_interview .int_list .blk .cast .photo {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  text-align: center;
  padding: 3px;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 39%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 180px;
  box-sizing: border-box;
  overflow: hidden;
}

#cast_interview .int_list .blk .cast .photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 180px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  object-fit: cover;
}

#cast_interview .int_list .blk .cast .prof {}

#cast_interview .int_list .blk .cast .prof .name {
  font-size: 14px;
  margin-bottom: 4px;
  align-items: baseline;
}
/* キャストインタビューと給与明細共有 */
.blk .cast .prof .name.flex {
  gap: 0;
  align-items: center;
}

.blk .cast .prof .name.flex .name-title {
  white-space: nowrap;
  font-size: 13px;
}
.blk .cast .prof .name .ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 16em;
}

@media (max-width: 400px) {
  .blk .cast .prof .name.flex .ellipsis {
    max-width: 10em;
  }
}
#cast_interview .int_list .blk .cast .prof .area,
#everyone_pay .blk .cast .prof .area {
  color: #BBBBBB;
  font-size: 12px;
}

#cast_interview .int_list .blk .cast .prof *:not(.name-title),
#everyone_pay .blk .cast .prof *:not(.name-title) {
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 16em;
}

@media screen and (max-width: 1250px) and (min-width: 850px) {
  #cast_interview .int_list .blk .cast .prof *:not(.name-title),
  #everyone_pay .blk .cast .prof *:not(.name-title) {
    max-width: 10em;
  }
}

@media screen and (max-width: 359px) {
  #cast_interview .int_list .blk .cast .prof *:not(.name-title),
  #everyone_pay .blk .cast .prof *:not(.name-title) {
    max-width: 13em;
  }
}

#cast_interview .int_list .blk .cast .data {
  clear: both;
  display: flex;
  column-gap: 10px;
  justify-content: space-between;
}

#cast_interview .int_list .blk .cast .data p,
#cast_interview .int_list .blk .cast .data .com-box {
  width: 100%;
  font-size: 14px;
  background-color: rgba(255, 131, 154, 0.15);
  border-radius: 90px;
  display: flex;
  line-height: 22px;
  align-items: center;
  justify-content: space-between;
  padding-right: 13px;
  font-weight: bold;
}

#cast_interview .int_list .blk .cast .data .com-box {
  width: 50%;
}
#cast_interview .int_list .blk .cast .data .com-box .ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#cast_interview .int_list .blk .cast .data p span,
#cast_interview .int_list .blk .cast .data .com-box span {
  padding: 5px 10px;
  background: var(--pink);
  color: #FFF;
  font-size: 12px;
  font-weight: normal;
  border-radius: 90px;
  white-space: nowrap;
}

#cast_interview .int_list .blk .cast .qa {}

#cast_interview .int_list .blk .cast .qa dt,
#cast_interview .int_list .blk .cast .qa dd {
  display: flex;
  align-items: baseline;
  text-align: left;
  line-height: 150%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#cast_interview .int_list .blk .cast .qa dt {
  margin-bottom: 10px;
}

#cast_interview .int_list .blk .cast .qa dt span,
#cast_interview .int_list .blk .cast .qa dd span {
  background: var(--blue);
  border-radius: 90px;
  display: inline-block;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  margin-right: 15px;
  line-height: 30px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  font-size: 15px;
}

#cast_interview .int_list .blk .cast .qa dd span {
  background: var(--pink);
}

#cast_interview .int_list .blk .cast .qa dt .ellipsis,
#cast_interview .int_list .blk .cast .qa dd .ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

#cast_interview .blk .shop_info {
  padding: 0 10px;
	margin-top: 10px;
  margin-bottom: 20px;
}

#cast_interview .blk:last-child .shop_info {
  margin-bottom: 0px;
}

#cast_interview .blk .shop_info .area {
  font-size: 12px;
  color: #BEBEBE;
  display: block;
}

#cast_interview .blk .shop_info .shop {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#new_job {
  padding: 30px 0;
  background-color: rgba(98, 200, 204, 0.15);
}

#new_job .ttl {
  text-align: center;
}

#new_job .ttl img {
  width: auto;
}

#new_job .job_list {
  margin-bottom: 30px;
}

#new_job .job_list ul {
  padding-bottom: 10px;
  overflow-x: auto;
  padding: 10px 20px 0;
  display: flex;
  gap: 10px;
}

#new_job .job_list ul li {
  background-color: #FFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  min-width: 300px;
  margin-bottom: 10px;
}

#new_job .job_list ul li a {}

#new_job .job_list ul li .banner {}

#new_job .job_list ul li .detail {
  padding: 15px;
}

#new_job .job_list ul li .detail h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 150%;
  color: var(--blue);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

#new_job .job_list ul li .detail p {}

#new_job .job_list ul li .detail p .area {
  font-size: 12px;
  color: #D9D9D9;
  display: block;
  margin-bottom: 0;
}

#new_job .job_list ul li .detail p .shop {
  font-size: 13px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



#everyone_pay {
  background-color: #FFF;
}

#everyone_pay .pay_list {
  margin: 0 40px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#everyone_pay .blk {
  width: calc((100% / 2) - 8px);
}

@media screen and (max-width: 1199px) {
  #everyone_pay .blk {
    width: 100%;
  }
}

#everyone_pay .blk .cast {
  background-color: rgba(255, 131, 154, 0.05);
  border: solid 1px rgba(255, 131, 154, 0.2);
  padding: 15px 15px 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}

#everyone_pay .blk .cast .info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
}

#everyone_pay .blk .cast .photo {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  text-align: center;
  padding: 3px;
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 39%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 180px;
  box-sizing: border-box;
  overflow: hidden;
}

#everyone_pay .blk .cast .photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 180px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  object-fit: cover;
}

#everyone_pay .blk .cast .prof {}

#everyone_pay .blk .cast .prof .name {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.5;
}

#everyone_pay .blk .cast .prof .age {
  font-size: 12px;
  white-space: nowrap;
}

#everyone_pay .blk .cast .prof .age span {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23FF839A%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M160-120q-33%200-56.5-23.5T80-200v-440q0-33%2023.5-56.5T160-720h160v-80q0-33%2023.5-56.5T400-880h160q33%200%2056.5%2023.5T640-800v80h160q33%200%2056.5%2023.5T880-640v440q0%2033-23.5%2056.5T800-120H160Zm0-80h640v-440H160v440Zm240-520h160v-80H400v80ZM160-200v-440%20440Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px auto;
  margin-left: 15px;
  padding-left: 20px;
}

#everyone_pay .blk .cast .items {
  clear: both;
  width: 100%;
}

#everyone_pay .blk .cast .items th,
#everyone_pay .blk .cast .items td {
  padding: 15px 5px;
  font-size: 14px;
  border-top: solid 1px rgba(255, 131, 154, 0.2);
}

#everyone_pay .blk .cast .items th {
  font-weight: bold;
  text-align: left;
}

#everyone_pay .blk .cast .items td {
  text-align: right;
}

#everyone_pay .blk .cast .items th span.maru {
  background-color: var(--pink);
  border-radius: 90px;
  padding: 7px 18px;
  font-size: 12px;
  color: #FFF;
  font-weight: 400;
}

#everyone_pay .blk .cast .items td span {
  background-color: var(--bg_pink);
  border-radius: 90px;
  padding: 5px 10px;
  font-size: 12px;
  white-space: nowrap;
}

#everyone_pay .blk .cast .items tr .price {
  color: var(--pink);
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

#everyone_pay .blk .cast .items tr .price span {
  font-weight: 400;
  color: var(--brown);
  margin-right: 10px;
}

#everyone_pay .blk .shop_info {
  padding: 0 10px;
	margin-bottom: 10px;
}

#everyone_pay .blk:last-child .shop_info {
  margin-bottom: 0px;
}

#everyone_pay .blk .shop_info .area {
  font-size: 12px;
  color: #BEBEBE;
  display: block;
}

#everyone_pay .blk .shop_info .shop {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#everyone_pay + .layout-wrap {
  margin-top: 50px;
}

#ranking {
  padding: 30px 0;
  background-color: rgba(98, 200, 204, 0.15);
}

#ranking .ttl {
  text-align: center;
}

#ranking .ttl img {
  width: auto;
}

#ranking .job_list {
  margin-bottom: 30px;
}

#ranking .job_list ul {
  overflow-x: auto;
  display: flex;
  gap: 10px;
  padding: 10px 20px 0;
}

#ranking .job_list ul li {
  position: relative;
  background-color: #FFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-width: 300px;
  margin-bottom: 10px;
}

#ranking .job_list ul li:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 60px;
  height: 60px;
  z-index: 100;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0JCQkJCQiIgZD0iTTQzLjk5NyAwSDYuNDg3QzEuMTQzIDAtMS41MzYgNi40NjMgMi4yNDQgMTAuMjQzbDM5LjUxNCAzOS41MTRDNDUuNTM3IDUzLjUzNyA1MiA1MC44NiA1MiA0NS41MTVWOGMwLTQuNDE4LTMuNTg1LTgtOC4wMDMtOFoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  transform: scaleX(-1);
}

#ranking .job_list ul li.rank1:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0ZGQ0E3NSIgZD0iTTQzLjk5NyAwSDYuNDg3QzEuMTQzIDAtMS41MzYgNi40NjMgMi4yNDQgMTAuMjQzbDM5LjUxNCAzOS41MTRDNDUuNTM3IDUzLjUzNyA1MiA1MC44NiA1MiA0NS41MTVWOGMwLTQuNDE4LTMuNTg1LTgtOC4wMDMtOFoiLz48L3N2Zz4=");
}

#ranking .job_list ul li.rank2:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0ZGODM5QSIgZD0iTTQzLjk5NyAwSDYuNDg3QzEuMTQzIDAtMS41MzYgNi40NjMgMi4yNDQgMTAuMjQzbDM5LjUxNCAzOS41MTRDNDUuNTM3IDUzLjUzNyA1MiA1MC44NiA1MiA0NS41MTVWOGMwLTQuNDE4LTMuNTg1LTgtOC4wMDMtOFoiLz48L3N2Zz4=");
}

#ranking .job_list ul li.rank3:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzYyQzhDQyIgZD0iTTQzLjk5NyAwSDYuNDg3QzEuMTQzIDAtMS41MzYgNi40NjMgMi4yNDQgMTAuMjQzbDM5LjUxNCAzOS41MTRDNDUuNTM3IDUzLjUzNyA1MiA1MC44NiA1MiA0NS41MTVWOGMwLTQuNDE4LTMuNTg1LTgtOC4wMDMtOFoiLz48L3N2Zz4=");
}

#ranking .job_list ul li:after {
  counter-increment: number 1;
  content: counter(number) " ";
  color: #fff;
  font-size: 16px;
  top: 5px;
  left: 11px;
  position: absolute;
  z-index: 101;
}

#ranking .job_list ul li a {}

#ranking .job_list ul li .banner {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

#ranking .job_list ul li .detail {
  padding: 15px;
}

#ranking .job_list ul li .detail p {}

#ranking .job_list ul li .detail p .area {
  font-size: 12px;
  color: #D9D9D9;
  display: block;
}

#ranking .job_list ul li .detail p .shop {
  font-size: 13px;
}


#jobs_area {}

#jobs_area .job_blk {
  padding: 0 40px;
  margin-bottom: 20px;
}

#jobs_area .job_blk h2 {
  position: relative;
  background-color: #FFCA75;
  text-align: center;
  line-height: 55px;
  border-radius: 90px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px 1px rgba(255, 178, 132, 0.5);
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23fff%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M517.85-480%20354.92-642.92q-8.3-8.31-8.5-20.89-.19-12.57%208.5-21.27%208.7-8.69%2021.08-8.69%2012.38%200%2021.08%208.69l179.77%20179.77q5.61%205.62%207.92%2011.85%202.31%206.23%202.31%2013.46t-2.31%2013.46q-2.31%206.23-7.92%2011.85L397.08-274.92q-8.31%208.3-20.89%208.5-12.57.19-21.27-8.5-8.69-8.7-8.69-21.08%200-12.38%208.69-21.08L517.85-480Z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 20px center;
}

#jobs_area .job_blk h2:before {
  margin: 0 0 0 -7px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  background: #FFCA75;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  z-index: 1;
}

#jobs_area .job_blk.blk2 h2 {
  background-color: var(--pink);
  box-shadow: 0 0 15px 1px rgba(251, 147, 172, 0.5);
}

#jobs_area .job_blk.blk2 h2:before {
  background: var(--pink);
}

#jobs_area .job_blk h2 a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
}

#jobs_area .job_blk .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#jobs_area .job_blk .job {
  background-color: #FFF;
  border-radius: 10px;
  border: solid 1px #EBEEF0;
  margin-bottom: 15px;
  overflow: hidden;
  width: calc((100% / 2) - 8px);
}

#jobs_area .job_blk .job a {
  display: block;
}

#jobs_area .job_blk .job .banner {}

#jobs_area .job_blk .job .detail {
  padding: 15px;
}

#jobs_area .job_blk .job .detail h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 150%;
  color: var(--blue);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#jobs_area .job_blk .job .detail p {}

#jobs_area .job_blk .job .detail p .area {
  font-size: 12px;
  color: #D9D9D9;
  display: block;
}

#jobs_area .job_blk .job .detail p .shop {
  font-size: 13px;
}


#about {
  position: relative;
  background: #eff9fa;
  padding: 90px 45px 10px;
}

#about:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 250px;
  height: 80px;
  border-radius: 50% / 100% 100% 0 0;
  background-color: #eff9fa;
}

#about .ttl {
  width: 100%;
  display: block;
  position: relative;
  margin: -90px auto 30px;
  z-index: 10;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  background-image: url("/img/front/icon/icon16.svg");
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 40px;
}

#about .image {
  border-radius: 10px;
  overflow: hidden;
  /* height: 240px; */
  margin: 20px 15px 30px;
}

#about .image img {
  width: 100%;
}

#about .about_blk {
  margin-bottom: 30px;
  padding: 0 15px;
}

#about .about_blk h3 {
  line-height: 150%;
  font-size: 16px;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
}

#about .about_blk p {
  line-height: 180%;
  font-size: 13px;
}

/* お悩みQ&A */
#qa.detail {
  margin: 0 30px;
}

#qa.detail #qanda .qa_list {
  margin: 0;
}

#qa.detail .box {
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  width: 100%;
  padding: 30px;
}

#qa.detail .status p {
  display: block;
  text-align: center;
  width: 100%;
  background: #FF839A;
  border-radius: 90px;
  position: relative;
  color: #FFF;
  font-weight: bold;
  line-height: 35px;
  border: none;
  margin: 0 0 20px;
}

#qa.detail .qa_list .block {
  background-color: #FFF;
  /*border: none;
  padding: 0px;
  border-radius: 0;
  overflow: hidden;
  */
  width: 100%;
}

#qa.detail .qa_list .block .ctgr {
  display: flex;
}
/* タグと最終更新のレイアウト */
@media screen and (max-width: 999px) {
  #qa.detail .qa_list .block .ctgr._column,
  #qanda.detail .qa_list .block .ctgr._column {
    flex-direction: column;
    gap: 8px;
  }
  /* タグと最終更新のレイアウト */
  #qa.detail .qa_list .block .ctgr._column li,
  #qanda.detail .qa_list .block .ctgr._column li {
    width: fit-content;
  }
  /* 最終更新のレイアウト */
  #qa.detail .qa_list .block .ctgr._column li.dating,
  #qanda.detail .qa_list .block .ctgr._column li.dating {
    margin-left: 0;
  }
}
#qa.detail .qa_list .block .ctgr li {
  background-color: rgba(255, 131, 154, 0.1);
  color: var(--pink);
}


#qa.detail .qa_list .block .ctgr li.dating {
  padding: 0;
  margin-right: 0px;
  margin-left: auto;
  background-color: transparent;
  color: var(--brown);
}

#qa.detail .qa_list .block .ctgr li.dating:before {
  display: none
}

#qa.detail .answer dt {
  color: #8A6C73;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 10px;
}

#qa.detail .answer dd {
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  padding: 20px;
  min-height: 122px;
}

#qa.detail .answer dd p {
  line-height: 150%;
}
.other_answer { padding-bottom: 40px;}
.sd .other_answer {
  padding-bottom: 0px;
}

.other_answer .answer_list {
  border: solid 1px #EBEEF0;
  border-radius: 10px;
  background-color: rgba(98, 200, 204, 0.05);
  padding: 30px;
}
/* 回答詳細の回答の間隔 */
.other_answer .answer_list .block + .block {
  margin-top: 20px;
}

.other_answer .answer_list .data {
  border: solid 1px #EBEEF0;
  background-color: #FFF;
  border-radius: 90px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
}

.other_answer .answer_list .responder {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
/* .answer_box内に入れた.responderのレイアウト */
.other_answer .answer_list .answer_box .responder {
  margin-top: 0px;
}

.other_answer .answer_list .responder .image {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #C9DCEA;
  margin-right: 10px;
  margin-bottom: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI2ZmZiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik00ODAtNDkyLjMxcS01Ny43NSAwLTk4Ljg3LTQxLjEyUTM0MC01NzQuNTYgMzQwLTYzMi4zMXEwLTU3Ljc1IDQxLjEzLTk4Ljg3IDQxLjEyLTQxLjEzIDk4Ljg3LTQxLjEzIDU3Ljc1IDAgOTguODcgNDEuMTNRNjIwLTY5MC4wNiA2MjAtNjMyLjMxcTAgNTcuNzUtNDEuMTMgOTguODgtNDEuMTIgNDEuMTItOTguODcgNDEuMTJaTTE4MC0yNDguNDZ2LTI4LjE2cTAtMjkuMzggMTUuOTYtNTQuNDIgMTUuOTYtMjUuMDQgNDIuNjYtMzguNSA1OS4zLTI5LjA3IDExOS42NS00My42MSA2MC4zNS0xNC41NCAxMjEuNzMtMTQuNTR0MTIxLjczIDE0LjU0cTYwLjM1IDE0LjU0IDExOS42NSA0My42MSAyNi43IDEzLjQ2IDQyLjY2IDM4LjVRNzgwLTMwNiA3ODAtMjc2LjYydjI4LjE2cTAgMjUuMy0xNy43MyA0My4wNC0xNy43MyAxNy43My00My4wNCAxNy43M0gyNDAuNzdxLTI1LjMxIDAtNDMuMDQtMTcuNzNRMTgwLTIyMy4xNiAxODAtMjQ4LjQ2Wm02MCAuNzdoNDgwdi0yOC45M3EwLTEyLjE1LTcuMDQtMjIuNS03LjA0LTEwLjM0LTE5LjExLTE2Ljg4LTUxLjctMjUuNDYtMTA1LjQyLTM4LjU4UTUzNC43LTM2Ny42OSA0ODAtMzY3LjY5cS01NC43IDAtMTA4LjQzIDEzLjExLTUzLjcyIDEzLjEyLTEwNS40MiAzOC41OC0xMi4wNyA2LjU0LTE5LjExIDE2Ljg4LTcuMDQgMTAuMzUtNy4wNCAyMi41djI4LjkzWm0yNDAtMzA0LjYycTMzIDAgNTYuNS0yMy41dDIzLjUtNTYuNXEwLTMzLTIzLjUtNTYuNXQtNTYuNS0yMy41cS0zMyAwLTU2LjUgMjMuNXQtMjMuNSA1Ni41cTAgMzMgMjMuNSA1Ni41dDU2LjUgMjMuNVptMC04MFptMCAzODQuNjJaIi8+PC9zdmc+");
  background-position: center;
  background-repeat: no-repeat;
}

.other_answer .answer_list .responder .area {
  font-size: 12px;
  color: #BEBEBE;
  margin-bottom: 10px;
}

.other_answer .answer_list .responder .name {
  font-size: 13px;
  display: block;
  color: var(--brown);
}
/*  ベストアンサーの枠 */
.other_answer .answer_list .answer_wrap {
  padding: 10px;
  background: var(--dark_orange);
  border-radius: 8px;
}
/* ベストアンサーのアイコンとテキストのレイアウト */
.other_answer .answer_list .answer_text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px 10px;
}
/* アイコンのレイアウト */
.other_answer .answer_list .answer_icon {
  width: 19px;
  display: flex;
  align-items: center;
}
/* ベストアンサーのテキストレイアウト */
.other_answer .answer_list .answer_text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-left: 10px;
}
/* ベストアンサー時のアンサーボックスの背景 */
.other_answer .answer_list .answer_wrap .answer_box {
  background: var(--light_orange);
}


.other_answer .answer_list .answer_box {
  border-radius: 8px;
  border: solid 1px #EBEEF0;
  background-color: #FFF;
  padding: 20px;
}

.other_answer .answer_list .answer_box p {}

.other_answer .answer_list .answer_box .action_btn {
  border-top: dotted 1px #EBEEF0;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ベストアンサーにするを中央へ */
.other_answer .answer_list .answer_box .action_btn._center {
  justify-content: center;
}
/* 基本の構造からレイアウト調整 */
.other_answer .answer_list .answer_box .action_btn._goodanswer {
  margin-top: 0;
  border-top: 0;
  position: relative;
  margin-bottom: 15px;
}
/* ボーダー作成 */
.other_answer .answer_list .answer_box .action_btn._goodanswer::before {
  content: "";
  position: absolute;
  top: 0;
  width: auto;
  height: 1px;
  background: var(--gray);
  right: -20px;
  left: -20px;
}
/* 基本の構造からレイアウト調整 */
.other_answer .answer_list .answer_box .action_btn._goodanswer .good::before,
.other_answer .answer_list .answer_box .action_btn._goodanswer .good::after {
  display: none;
}
/* グッドアンサーラベルと投稿日時のレイアウト */
.other_answer .answer_list .answer_box .action_btn._goodanswer .flex-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
/* グッドアンサーラベルのレイアウト */
.other_answer .answer_list .answer_box .action_btn._goodanswer .goodanswer_label {
  background: var(--pink);
  border-radius: 50px;
  text-align: center;
  color: var(--white);
  padding-block: 2px;
}
/* 既存のグッドの構造からレイアウト調整 */
.other_answer .answer_list .answer_box .action_btn._goodanswer .good {
  flex-shrink: 0;
  width: 80px;
  justify-content: flex-end;
}
/* グッドアイコンの背景とボーダーのcolor */
.other_answer .answer_list .answer_box .action_btn._goodanswer .good a {
  background: var(--bg_orange);
  border-color: var(--border_orange);
}

.other_answer .answer_list .answer_box .action_btn .good {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100px;
}

.other_answer .answer_list .answer_box .action_btn .good:before {
  content: 'Goodアンサー';
  background-color: var(--pink);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  padding: 3px 8px;
  position: absolute;
  top: -30px;
  left: 0;
}

.other_answer .answer_list .answer_box .action_btn .good:after {
  content: "";
  background-color: var(--pink);
  position: absolute;
  top: -13px;
  left: 17px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  z-index: 1;
}

.other_answer .answer_list .answer_box .action_btn .good a {
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
}

.other_answer .answer_list .answer_box .action_btn .good img {
  position: absolute;
  top: 50%;
  left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  width: 20px;
  height: auto;
  filter: var(--img_brown);
}

.other_answer .answer_list .answer_box .action_btn .good.on a {
  background-color: var(--blue);
}

.other_answer .answer_list .answer_box .action_btn .good.on img {
  filter: var(--img_white);
}

.other_answer .answer_list .answer_box .action_btn .good.on:before,
.other_answer .answer_list .answer_box .action_btn .good.on:after {
  display: none;
}

.other_answer .answer_list .answer_box .action_btn .bestanswer a {
  border-radius: 90px;
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzhBNkM3MyIgZD0iTTYgNy43MyA0LjY5NiA4Ljc0N2MtLjA3My4wNDgtLjE0My4wNS0uMjEuMDAzcy0uMDg3LS4xMDgtLjA2LS4xODRsLjQ5NC0xLjY1My0xLjI5OC0uOTQzYy0uMDctLjA0OC0uMDg3LS4xMTItLjA1NC0uMTkxLjAzMy0uMDguMDg3LS4xMi4xNjMtLjEyaDEuNjE2bC40OTMtMS42NDRjLjAyOC0uMDc2LjA4MS0uMTE0LjE2LS4xMTQuMDggMCAuMTMzLjAzOC4xNi4xMTRsLjQ5NCAxLjY0NGgxLjYxYy4wNzcgMCAuMTMyLjA0LjE2Ny4xMi4wMzQuMDguMDE3LjE0My0uMDUzLjE5MWwtMS4zMDIuOTQzLjQ5MyAxLjY1M2MuMDI4LjA3Ni4wMDguMTM3LS4wNi4xODQtLjA2Ni4wNDYtLjEzNi4wNDUtLjIxLS4wMDNMNiA3LjczWm0wIDYuOTA1LTMuMzAzLjk4N2EuNTkuNTkgMCAwIDEtLjU5Mi0uMDk2LjY1OS42NTkgMCAwIDEtLjI3MS0uNTQ3di00LjU4NmE1LjUyMyA1LjUyMyAwIDAgMS0xLjIzLTEuODI0IDUuNzMgNS43MyAwIDAgMS0uNDM3LTIuMjM2YzAtMS42MjYuNTY2LTMuMDA1IDEuNjk3LTQuMTM2QzIuOTk1IDEuMDY2IDQuMzc0LjUgNiAuNWMxLjYyNiAwIDMuMDA1LjU2NiA0LjEzNyAxLjY5NyAxLjEzMSAxLjEzMSAxLjY5NyAyLjUxIDEuNjk3IDQuMTM2IDAgLjc5NC0uMTQ2IDEuNTQtLjQzOCAyLjIzNmE1LjUyNCA1LjUyNCAwIDAgMS0xLjIyOSAxLjgyNHY0LjU4NmMwIC4yMjUtLjA5LjQwNy0uMjcyLjU0N2EuNTkuNTkgMCAwIDEtLjU5Mi4wOTZMNiAxNC42MzVabTAtMy4zMDJjMS4zOSAwIDIuNTctLjQ4NiAzLjU0Mi0xLjQ1OFMxMSA3LjcyMiAxMSA2LjMzM2MwLTEuMzg5LS40ODYtMi41Ny0xLjQ1OC0zLjU0MUM4LjU3IDEuODE5IDcuMzg5IDEuMzMzIDYgMS4zMzNjLTEuMzg5IDAtMi41Ny40ODYtMy41NDEgMS40NTlDMS40ODYgMy43NjQgMSA0Ljk0NCAxIDYuMzMzYzAgMS4zOS40ODYgMi41NyAxLjQ1OSAzLjU0Mi45NzIuOTcyIDIuMTUyIDEuNDU4IDMuNTQxIDEuNDU4Wm0tMy4zMzMgMy4zN0w2IDEzLjc3bDMuMzM0LjkzNHYtMy42MDhhNS40ODEgNS40ODEgMCAwIDEtMS41NS43OTIgNS42ODQgNS42ODQgMCAwIDEtMS43ODQuMjggNS42ODQgNS42ODQgMCAwIDEtMS43ODQtLjI4IDUuNDgxIDUuNDgxIDAgMCAxLTEuNTQ5LS43OTJ2My42MDhaIi8+PC9zdmc+);
  background-position: left 15px center;
  background-repeat: no-repeat;
  padding-left: 35px;
}

.other_answer .answer_list .answer_box .action_btn .bestanswer.on a {
	pointer-events: none;
  background-color: #FFCA75;
  color: #FFF;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTYgNy43MyA0LjY5NiA4Ljc0N2MtLjA3My4wNDgtLjE0My4wNS0uMjEuMDAzcy0uMDg3LS4xMDgtLjA2LS4xODRsLjQ5NC0xLjY1My0xLjI5OC0uOTQzYy0uMDctLjA0OC0uMDg3LS4xMTItLjA1NC0uMTkxLjAzMy0uMDguMDg3LS4xMi4xNjMtLjEyaDEuNjE2bC40OTMtMS42NDRjLjAyOC0uMDc2LjA4MS0uMTE0LjE2LS4xMTQuMDggMCAuMTMzLjAzOC4xNi4xMTRsLjQ5NCAxLjY0NGgxLjYxYy4wNzcgMCAuMTMyLjA0LjE2Ny4xMi4wMzQuMDguMDE3LjE0My0uMDUzLjE5MWwtMS4zMDIuOTQzLjQ5MyAxLjY1M2MuMDI4LjA3Ni4wMDguMTM3LS4wNi4xODQtLjA2Ni4wNDYtLjEzNi4wNDUtLjIxLS4wMDNMNiA3LjczWm0wIDYuOTA1LTMuMzAzLjk4N2EuNTkuNTkgMCAwIDEtLjU5Mi0uMDk2LjY1OS42NTkgMCAwIDEtLjI3MS0uNTQ3di00LjU4NmE1LjUyMyA1LjUyMyAwIDAgMS0xLjIzLTEuODI0IDUuNzMgNS43MyAwIDAgMS0uNDM3LTIuMjM2YzAtMS42MjYuNTY2LTMuMDA1IDEuNjk3LTQuMTM2QzIuOTk1IDEuMDY2IDQuMzc0LjUgNiAuNWMxLjYyNiAwIDMuMDA1LjU2NiA0LjEzNyAxLjY5NyAxLjEzMSAxLjEzMSAxLjY5NyAyLjUxIDEuNjk3IDQuMTM2IDAgLjc5NC0uMTQ2IDEuNTQtLjQzOCAyLjIzNmE1LjUyNCA1LjUyNCAwIDAgMS0xLjIyOSAxLjgyNHY0LjU4NmMwIC4yMjUtLjA5LjQwNy0uMjcyLjU0N2EuNTkuNTkgMCAwIDEtLjU5Mi4wOTZMNiAxNC42MzVabTAtMy4zMDJjMS4zOSAwIDIuNTctLjQ4NiAzLjU0Mi0xLjQ1OFMxMSA3LjcyMiAxMSA2LjMzM2MwLTEuMzg5LS40ODYtMi41Ny0xLjQ1OC0zLjU0MUM4LjU3IDEuODE5IDcuMzg5IDEuMzMzIDYgMS4zMzNjLTEuMzg5IDAtMi41Ny40ODYtMy41NDEgMS40NTlDMS40ODYgMy43NjQgMSA0Ljk0NCAxIDYuMzMzYzAgMS4zOS40ODYgMi41NyAxLjQ1OSAzLjU0Mi45NzIuOTcyIDIuMTUyIDEuNDU4IDMuNTQxIDEuNDU4Wm0tMy4zMzMgMy4zN0w2IDEzLjc3bDMuMzM0LjkzNHYtMy42MDhhNS40ODEgNS40ODEgMCAwIDEtMS41NS43OTIgNS42ODQgNS42ODQgMCAwIDEtMS43ODQuMjggNS42ODQgNS42ODQgMCAwIDEtMS43ODQtLjI4IDUuNDgxIDUuNDgxIDAgMCAxLTEuNTQ5LS43OTJ2My42MDhaIi8+PC9zdmc+");
}

.other_answer .answer_list .block .time {
  text-align: right;
  font-size: 12px;
  padding: 5px 0 0;
}

@media screen and (max-width: 1199px) {
  #qanda .qa_list {
    flex-direction: column;
  }
}

@media screen and (max-width: 1199px) {
  #qanda .qa_list .block {
    width: 100%;
  }
}

@media screen and (max-width: 849px) {
  #qanda .qa_list {
    padding-inline: 15px;
  }

  .sd #qanda .qa-bg__area {
    background: #fff;
    padding-block: 20px;
  }
}

@media screen and (max-width: 849px) {
  .dx #qanda .qa_list,
  #qanda.detail .qa_list,
  #qanda.shopcont_area .qa_list,
  .main_top #qanda .qa_list,
  .area_top #qanda .qa_list,
  .shop_contents .shopcont_area #qanda .qa_list {
    padding-inline: 0px;
  }
}

/* コラム */
#column_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 0 30px;
}

#column_list .blk {
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  width: calc((100% / 2) - 8px);
  overflow: hidden;
  background-color: #FFF;
}

#column_list .blk a {
  display: block;
}

#column_list .blk img {
  margin-bottom: 10px;
}

#column_list .blk .ctgr {
  margin: 0 15px 5px;
  border-radius: 90px;
  background-color: rgba(255, 131, 154, 0.15);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  padding: 6px 10px;
  display: inline-block;
}

#column_list .blk .ctgr:before {
  content: '#';
  margin-right: 3px;
}

#column_list .blk figcaption {
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  margin: 0 15px 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}

#column_list .blk .data {
  color: #BEBEBE;
  font-size: 12px;
  line-height: 18px;
  margin: 0 15px 20px;
}

#sub_menu {
  padding: 60px;
  background-color: #FFF;
}

#sub_menu .search {}

#sub_menu .search ul {
  display: flex;
  column-gap: 10px;
  justify-content: space-between;
}

#sub_menu .search ul li {
  background-color: var(--pink);
  width: 100%;
  border-radius: 8px;
}
#sub_menu .search ul li a {
  display: block;
  color: #FFF;
  font-size: 14px;
  line-height: 130%;
  padding: 15px 15px 15px 45px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik00ODAtMTM3Ljc3cS05LjM4IDAtMTguNzctMy4wOC05LjM4LTMuMDctMTcuMzEtMTAtNDIuNjktMzkuMjMtODYuNTQtODcuMzgtNDMuODQtNDguMTUtNzkuNjUtOTkuNzMtMzUuODEtNTEuNTgtNTguNjktMTA1LjMxLTIyLjg5LTUzLjczLTIyLjg5LTEwNC44OCAwLTEyNi45MyA4Mi42Ni0yMDkuMzlRMzYxLjQ2LTg0MCA0ODAtODQwcTExOC41NCAwIDIwMS4xOSA4Mi40NiA4Mi42NiA4Mi40NiA4Mi42NiAyMDkuMzkgMCA1MS4xNS0yMi44OSAxMDQuNS0yMi44OCA1My4zNC01OC4zMSAxMDUuMy0zNS40MiA1MS45Ny03OS4yNyA5OS43My00My44NCA0Ny43Ny04Ni41MyA4Ny03LjY1IDYuOTMtMTcuMzggMTAuMzktOS43NCAzLjQ2LTE5LjQ3IDMuNDZabS4xNC0zNTNxMjYuNzEgMCA0NS41OS0xOS4wMiAxOC44OS0xOS4wMiAxOC44OS00NS43MyAwLTI2LjcxLTE5LjAzLTQ1LjZRNTA2LjU3LTYyMCA0NzkuODYtNjIwcS0yNi43MSAwLTQ1LjU5IDE5LjAyLTE4Ljg5IDE5LjAyLTE4Ljg5IDQ1LjczIDAgMjYuNzEgMTkuMDMgNDUuNiAxOS4wMiAxOC44OCA0NS43MyAxOC44OFoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 35px auto;
}
#sub_menu .search ul li.part a {background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik0zNjAtMjUwLjc3aDI0MHE4LjU0IDAgMTQuMjctNS43M3Q1LjczLTE0LjI3cTAtOC41NC01LjczLTE0LjI3VDYwMC0yOTAuNzdIMzYwcS04LjU0IDAtMTQuMjcgNS43M1QzNDAtMjcwLjc3cTAgOC41NCA1LjczIDE0LjI3dDE0LjI3IDUuNzNabTAtMTA0LjYxaDI0MHE4LjU0IDAgMTQuMjctNS43NCA1LjczLTUuNzMgNS43My0xNC4yNiAwLTguNTQtNS43My0xNC4yN1Q2MDAtMzk1LjM4SDM2MHEtOC41NCAwLTE0LjI3IDUuNzNUMzQwLTM3NS4zOHEwIDguNTMgNS43MyAxNC4yNiA1LjczIDUuNzQgMTQuMjcgNS43NFptMTIwLTMwOS41NHEtMTUuODUtMTkuNjItMzAuMzUtMzEuOTYtMTQuNS0xMi4zNS00MS42NS0xMi4zNS0yOC4zMSAwLTQ4LjE1IDE5Ljg1UTM0MC02NjkuNTQgMzQwLTY0MS4yM3EwIDQ5LjE1IDQyLjg1IDg2LjY1IDQyLjg0IDM3LjUgNzUuNTMgNjcuMiA4LjcgOC42OSAyMS42MiA4LjY5IDEyLjkyIDAgMjEuNjItOC42OSAzMi42OS0yOC45MyA3NS41My02Ni44MVE2MjAtNTkyLjA4IDYyMC02NDEuMjNxMC0yOC4zMS0xOS44NS00OC4xNS0xOS44NC0xOS44NS00OC4xNS0xOS44NS0yNy4xNSAwLTQxLjY1IDEyLjM1LTE0LjUgMTIuMzQtMzAuMzUgMzEuOTZaTTY5NS4zOC0xMjBIMjY0LjYycS0yNy42MiAwLTQ2LjEyLTE4LjVRMjAwLTE1NyAyMDAtMTg0LjYydi01OTAuNzZxMC0yNy42MiAxOC41LTQ2LjEyUTIzNy04NDAgMjY0LjYyLTg0MGg0MzAuNzZxMjcuNjIgMCA0Ni4xMiAxOC41UTc2MC04MDMgNzYwLTc3NS4zOHY1OTAuNzZxMCAyNy42Mi0xOC41IDQ2LjEyUTcyMy0xMjAgNjk1LjM4LTEyMFoiLz48L3N2Zz4=");}

#sub_menu .other {}

#sub_menu .other ul {
  display: flex;
	justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#sub_menu .other ul li {
  width: calc((100% / 2) - 8px);
  background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 39%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  border-radius: 50px;
  padding: 3px;
}

#sub_menu .other ul li.logout {
  display: none;
}
#sub_menu .other ul li a {
  display: block;
  width: 100%;
  padding: 13px;
  line-height: 25px;
  border-radius: 50px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
}
#sub_menu .other ul li:hover { cursor: pointer;}
#search_area details {}

#search_area {
	background-color: #fffaf1;
}

#search_area summary {
  padding: 20px 30px;
  background: var(--blue);
  color: #FFF;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  list-style: none;
  position: relative;
}

#search_area details summary::-webkit-details-marker {
  display: none;
}

#search_area summary:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 2px;
  top: 50%;
  right: 20px;
  background: #FFF;
  transform: translateY(-50%);
}

#search_area summary:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13px;
  height: 2px;
  background: #FFF;
  transition: .4s;
  transform: translateY(-50%) rotate(90deg);
}

#search_area .pref-ttl:before,
#search_area .pref-ttl:after {
  background: rgba(138, 108, 115, 1);
}

/* アコーディオン表示の際に回転する */
#search_area details[open] .ttl:after {
  transform: translateY(-50%) rotate(180deg);
}

#search_area .area-accordion[open] .area-ttl:after {
  transform: translateY(-50%) rotate(180deg);
}

#search_area .pref-accordion[open] .pref-ttl:after {
  transform: translateY(-50%) rotate(180deg);
}

/* 出稼ぎ歓迎のオススメエリアも追加 */
#notice_area .notice_list li a,
#search_area.dekasegi_area .notice_list li a {
  display: block;
  padding: 20px 40px 20px 15px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGODM5QSIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik01MTcuODUtNDgwIDM1NC45Mi02NDIuOTJxLTguMy04LjMxLTguNS0yMC44OS0uMTktMTIuNTcgOC41LTIxLjI3IDguNy04LjY5IDIxLjA4LTguNjkgMTIuMzggMCAyMS4wOCA4LjY5bDE3OS43NyAxNzkuNzdxNS42MSA1LjYyIDcuOTIgMTEuODUgMi4zMSA2LjIzIDIuMzEgMTMuNDZ0LTIuMzEgMTMuNDZxLTIuMzEgNi4yMy03LjkyIDExLjg1TDM5Ny4wOC0yNzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNTE3Ljg1LTQ4MFoiLz48L3N2Zz4=");
  background-position: right 10px center;
  background-repeat: no-repeat;
}
/* 出稼ぎ歓迎のオススメエリアのaタグのボーダー */
#search_area.dekasegi_area .notice_list li .ttl::before {
  content: "";
  position: absolute;
  width: 98%;
  height: 1px;
  background: var(--gray);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 出稼ぎ歓迎のオススメエリアのレイアウト */
#search_area .area-ttl,
#search_area.dekasegi_area .area-ttl {
  background: rgba(138, 108, 115, 1);
  border-bottom: solid 1px #FFF;
  text-align: left;
}

#search_area .pref-ttl {
	background: #FFFCF8;
  color: var(--brown);
  text-align: left;

}
#search_area .pref-accordion {
	border-top: solid 1px #C9DCEA;
}
#search_area .pref-accordion:first-of-type { border-top: none;}

#search_area .pref-accordion .city-list {
  /*background-color: rgba(98, 200, 204, 0.1);
  border-bottom: solid 1px #C9DCEA;*/
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 30px;
	border-top: solid 1px #C9DCEA;
}

#search_area .pref-accordion .city-list a {
	background-color: #FFF;
  border: solid 1px #C9DCEA;
  border-radius: 8px;
  padding: 10px 15px;
  display: block;
  font-size: 13px;
  font-weight: bold;
}

#search_area .area_blk {
  padding: 40px 40px;
  background: rgba(255, 202, 117, 0.1);
}

#search_area .area_blk ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#search_area .area_blk ul li {
  background-color: #FFFCF8;
  border: solid 1px #C9DCEA;
  border-radius: 8px;
}

#search_area .area_blk ul li a {
  padding: 10px 15px;
  display: block;
  font-size: 13px;
  font-weight: bold;
}


/* ---------- 都道府県を変更する ---------- */
/* ---------- 検索一覧 ---------- */
#popup-search {}

#popup-search .open-popup {
  position: fixed;
  z-index: 999;
  width: 800px;
  max-width: 90%;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0;
  height: 60px;
  background-color: var(--brown);
  text-align: center;
  display: block;
  color: var(--white);
  line-height: 60px;
  font-weight: bold;
  cursor: pointer;
}

#pref-change .popup-overlay,
#popup-search .popup-overlay,
.refine-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9900;
  display: none;
  transition: transform 0.2s;
}

#pref-change .pref-detail,
#popup-search .popup-detail {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  max-width: 90%;
  background: #fff;
  padding: 30px;
  z-index: 9950;
  border-radius: 8px;
  display: none;
  transition: transform 0.2s;
}

#pref-change .close-popup,
#popup-search .close-popup {
  position: fixed;
  top: 0;
  right: -40px;
}

#pref-change .close-popup img,
#popup-search .close-popup img {
  filter: var(--img_white);
}
.popup-ttl,
#pref-change .pref-detail .popup-ttl,
#popup-search .popup-detail .popup-ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #EBEEF0;
}

#popup-search .popup-detail form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#popup-search .popup-detail .search-box {
  margin-bottom: 20px;
}

#popup-search .popup-detail .search-box input {
  border: solid 1px #EBEEF0;
}

#popup-search .popup-detail dl {
  max-height: 40vh;
  overflow-y: auto;
}
#popup-search .popup-detail dl dt p {
	margin-bottom: 5px;
}
#popup-search .popup-detail dl dd {}

#popup-search .popup-detail ul.select-list {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}

#popup-search .popup-detail ul.select-list li {
  flex: 0 0 auto;
  background-color: rgba(255, 202, 117, 0.15);
  font-size: 12px;
  font-weight: 400;
  width: auto;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

#popup-search .popup-detail ul.select-list li:after {
  content: '×';
  font-size: 15px;
  color: #BBBBBB;
  padding-left: 3px;
}

#popup-search .popup-detail ul.select-list li.no-select:after {
  display: none;
}

#popup-search .popup-detail .select_box ul {
  margin-bottom: 30px;
}

#popup-search .popup-detail .select_box ul li {
  width: 164px;
}

#popup-search .popup-detail .select_box ul li input {}

#popup-search .popup-detail .treat-name {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

#popup-search .popup-detail .actions-btn {
  display: flex;
  gap: 10px;
  padding-top: 30px;
}

#popup-search .popup-detail .actions-btn .reset {
  width: 20%;
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: bold;
  padding: 13px 15px;
  border-radius: 8px;
}

#popup-search .popup-detail .actions-btn .submit {
  border: none;
  background-color: var(--brown);
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  width: 80%;
}

.promotion {
  margin-bottom: 20px;
  overflow: hidden;
}
.promotion a  {
  display: block;
  color: #FFF;
  line-height: 130%;
	padding: 25px 150px 25px 10%;
	background-color: #6EA1D6;
    background-image: url("/img/front/promotion_icon.svg");
  background-repeat: no-repeat;
	background-position: right 15% center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
  margin: auto;
}

.promotion.disabled a  {
  display: block;
  color: #FFF;
  line-height: 130%;
	padding: 25px 150px 25px 10%;
	background-color: var(--gray);
    background-image: url("/img/front/promotion_icon.svg");
  background-repeat: no-repeat;
	background-position: right 15% center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
  margin: auto;
}

.promotion h2 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.promotion p {
  font-size: 12px;
  line-height: 150%;
}

.promotion.interview {
  background-color: transparent;
  padding: 0;
  box-shadow: 0 0 0px 0px;
}

.promotion.interview a {
  background-color: var(--pink);
  background-image: url("/img/front/interview_icon.svg");
  background-position: right 15% center;
  width: 100%;
}

/* interviewでQAアイコンがほゆじされるため削除
.promotion.interview a {
  background-color: var(--blue);
  background-image: url("/img/front/qa_icon.svg");
  background-position: right 15% center;
  width: 100%;
  padding: 25px 30px 25px 100px;
}*/

.promotion.interview .ex_box {
	margin: 0 25px 0;
  padding: 25px;
  border-radius: 8px;
  border: solid 1px #EBEEF0;
}

.promotion.interview .ex_box .txt {
  font-size: 13px;
  line-height: 150%;
}

.promotion.interview .ex_box .btn {
  margin-top: 20px;
}

.promotion.interview .ex_box .btn a {
  background-image: none;
  background-color: var(--pink);
  padding: 0;
}

#job_list {
  background-color: var(--bg_white);
	background-size: 3px auto;
  padding: 20px 30px;
}
/* #job_listの上の.ｍｓg-area */
@media (min-width: 850px) {
  .upper-job_list.msg-area {
    padding: 0 30px;
  }
}
.shopcont_area #tab2.tab-content {background-image: url("/img/front/bg_jobtab2.png");}
.shopcont_area #tab3.tab-content {background-image: url("/img/front/bg_jobtab3.png");}
.shopcont_area #tab4.tab-content {background-image: url("/img/front/bg_jobtab4.png");}
.shopcont_area #tab5.tab-content {background-image: url("/img/front/bg_jobtab5.png");}
.shopcont_area #tab6.tab-content {background-image: url("/img/front/bg_jobtab6.png");}

#job_list.ctgr2 {background-image: url("/img/front/bg_jobtab2.png");}
#job_list.ctgr3 {background-image: url("/img/front/bg_jobtab3.png");}
#job_list.ctgr4 {background-image: url("/img/front/bg_jobtab4.png");}
#job_list.ctgr5 {background-image: url("/img/front/bg_jobtab5.png");}
#job_list.ctgr6 {background-image: url("/img/front/bg_jobtab6.png");}

#job_list .match {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: -20px;
  margin-bottom: 20px;
	padding: 6px 10px;
  background-color: #FF839A;
  display: flex;
  align-items: center;
}

#job_list .match h3 {
  font-size: 12px;
  font-weight: bold;
  background-color: #FFF;
  color: var(--pink);
  border-radius: 50px;
  font-size: 13px;
  text-align: center;
  line-height: 25px;
  padding: 0 15px;
  margin-right: 15px;
}

#job_list .match ul {
  display: flex;
}
#job_list .match ul li { margin-right: 3px;}
#job_list .match ul.heart4 li:nth-child(n+5) {opacity: 0.5;}
#job_list .match ul.heart3 li:nth-child(n+4) {opacity: 0.5;}
#job_list .match ul.heart2 li:nth-child(n+3) {opacity: 0.5;}
#job_list .match ul.heart1 li:nth-child(n+2) {opacity: 0.5;}
#job_list .match ul.heart0 li:nth-child(n+1) {opacity: 0.5;}
#job_list .match p {
  margin: 0 0 0 auto;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

#job_list .match p span {
  font-size: 16px;
  padding-left: 3px;
}

.page_navi_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page_navi_top .result-text {
  width: 50%;
}

.page_navi_top .result-text .num {
  font-size: 18px;
  font-weight: bold;
  color: var(--pink);
  padding-right: 5px;
}

.page_navi_top p {
  font-family: "Inter", sans-serif;
  width: 50%;
  text-align: right;
}

#job_list .ctgr {
  margin-bottom: 30px;
}

#job_list .ctgr ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5px;
}

#job_list .ctgr ul li {
  width: 100%;
  text-align: center;
}

#job_list .ctgr ul li a {
  display: block;
  border: solid 3px #C9DCEA;
  color: #C9DCEA;
  background-color: #FFF;
  border-radius: 90px;
  font-weight: bold;
  line-height: 35px;
}

#job_list .ctgr ul li a:hover,
#job_list .ctgr ul li a.select {
  border: solid 3px #62C8CC;
  color: #62C8CC;
}

#job_list .job_blk {
  border: solid 1px #EBEEF0;
  background-color: #FFF;
	padding: 25px 30px 10px;
  margin-bottom: 20px;
  position: relative;
    box-shadow: 0 0 0 0px rgba(104,71,161,.1);
  border-radius: 10px;
  overflow: hidden;
}

#job_list .job_blk.history_blk {
  padding: 25px 30px;
}

#job_list .job_blk:before {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid;
	border-image: linear-gradient(to right, #FFF) 1;
}
#job_list .job_blk.dx_plan:before {
	border-image: linear-gradient(to right, #FEEFDB, #FFC7BA, #CDABE9, #ACDAF3, #ADEFED) 1;
}
#job_list .job_blk.sd_plan:before {
  border-image: linear-gradient(to right, #EBEEF0) 1;
}
#job_list .job_blk.free_plan:before { display: none;}
#job_list .job_blk.free_plan .shop {
  border-bottom: solid 1px #EBEEF0;
  font-size: 12px;
  color: #BEBEBE;
}

#job_list .job_blk.free_plan .data {
  border-top: none;
}

#job_list .job_blk.free_plan .data .row:last-child {
  border-bottom: none;
}

#job_list .job_blk .shop {
  padding: 0 0 15px;
  border-bottom: none;
}

#job_list .job_blk .shop .area {
  font-size: 12px;
  color: #BEBEBE;
  display: block;
}

#job_list .job_blk .shop .shop_name {
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#job_list .job_blk.free_plan .shop .shop_name {
  font-size: 14px;
  color: var(--brown);
}
#job_list .job_blk .shop .shop_name a { font-size: 16px;}
#job_list .job_blk .image {
  flex: 1.6;
  position: relative;
  width: 100%;
  margin-right: 2%;
  overflow: hidden;
  border-radius: 8px;
}

#job_list .job_blk .image a {
  display: block;
  height: 100%;
}

#job_list.ranking .job_blk .image a:before {
  content: "";
  top: 0px;
  left: 0px;
  border-bottom: 60px solid transparent;
  border-left: 60px solid #BBB;
  position: absolute;
  z-index: 100;
}

#job_list.ranking .job_blk.rank1 .image a:before {
  border-left: 4.5em solid #FFCA75;
}

#job_list.ranking .job_blk.rank2 .image a:before {
  border-left: 4.5em solid #FF839A;
}

#job_list.ranking .job_blk.rank3 .image a:before {
  border-left: 4.5em solid #62C8CC;
}

#job_list.ranking .job_blk .image a:after {
  counter-increment: number 1;
  content: counter(number) " ";
  color: #fff;
  font-size: 16px;
  top: 7px;
  left: 15px;
  position: absolute;
  z-index: 101;
}

#job_list .job_blk .image img {
  width: 100%;
  height: auto;
}

#job_list .job_blk .pc_parts {
  flex: 1;
}

#job_list .job_blk .pc_parts .action_btn {
  display: block;
  margin: 0;
}

#job_list .job_blk .pc_parts .action_btn .special {
  margin: auto;
  padding: 10px 10px;
}

#job_list .job_blk .pc_parts .action_btn .special:before {
  display: none;
}

#job_list .job_blk .btn.app {
  margin: 10px 10px 0;
}

#job_list .job_blk .image a p {
  background-color: rgba(68, 68, 68, 0.9);
  text-align: center;
  color: #FFF;
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 40px;
  font-size: 13px;
  font-weight: bold;
}

#job_list .job_blk .image a p span {
  padding: 0 5px;
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}

#job_list .job_blk .pr {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 15px 0 0;
  line-height: 150%;
  color: var(--pink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}

#job_list .job_blk .special {
  background-color: var(--pink);
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px 14px;
  margin: 0 15px;
  border-radius: 10px;
  position: relative;
}

#job_list .job_blk .special:before {}

#job_list .job_blk .special .ttl {
  font-size: 13px;
  margin-bottom: 5px;
}

#job_list .job_blk .special p {
  font-size: 14px;
}

#job_list .job_blk .special p span {
  font-size: 20px;
  padding: 0 3px;
}

#job_list .job_blk .data {
  margin: 0 0;
  border-top: dotted 1px #EBEEF0;
}

#job_list .job_blk .data .row {
  display: flex;
  align-items: center;
  border-bottom: dotted 1px #EBEEF0;
  padding: 10px 0;
  overflow: hidden;
  word-break: break-all;
}

#job_list .job_blk .data dt {
  /*width: 60px;*/
  font-weight: normal;
  font-size: 10px;
  text-align: center;
  position: relative;
  padding: 0px 10px 0px 5px;
}

#job_list .job_blk .data dt:before {
  content: '';
  display: block;
  align-items: center;
  margin: auto;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background-color: rgba(98, 200, 204, 0.15);
  background-image: url("/img/front/icon/icon38.svg");
  background-position: center;
  background-repeat: no-repeat;
}

#job_list .job_blk .data dt.add:before {
  background-image: url("/img/front/icon/icon39.svg");
}

#job_list .job_blk .data dd {
  line-height: 150%;
}

#job_list .job_blk .center {
  font-size: 12px;
  text-align: center;
  padding: 15px 10px 0;
}

#job_list .job_blk .welcome_point {
  margin-bottom: 20px;
}

#job_list .job_blk .welcome_point .speech-bubble {
  background-color: var(--pink);
  position: relative;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  border-radius: 8px;
  margin-bottom: 20px;
}

#job_list .job_blk .welcome_point .speech-bubble:before {
  margin: 0 0 0 -7px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  background: var(--pink);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  z-index: 1;
}

#job_list .job_blk .welcome_point .speech-bubble:before {}

#job_list .job_blk .welcome_point ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

#job_list .job_blk .welcome_point ul li {
  background-color: #fff9fa;
  border: solid 1px var(--pink);
  padding: 0 12px;
  min-height: 33px;
  line-height: 1.4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-align: center;
  display: grid;
  place-items: center;
}

#job_list.migrantwork .job_blk .welcome_point ul.stretch,
#job_list.experience .job_blk .welcome_point ul.stretch {
  display: grid;
}

#job_list.migrantwork .job_blk .welcome_point ul.stretch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#job_list.experience .job_blk .welcome_point ul.stretch {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 850px) {
  #job_list.migrantwork .job_blk .welcome_point ul.stretch {
    grid-template-columns: repeat(auto-fit, minmax(129px, 1fr));
  }
}
@media (max-width: 1023px) {
  #job_list.experience .job_blk .welcome_point ul.stretch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#job_list/*.migrantwork*/ .job_blk .welcome_point ul.stretch + .stretch {
  margin-top: 8px;
}

#job_list .job_blk .welcome_point ul.stretch li {
  width: 100%;
}

#job_list.experience .job_blk .welcome_point ul.stretch li {
  /* width: auto;
  background-color: #fff;
  border: none;
  padding: 0 0 0 17px;
  min-height: initial;
  line-height: normal;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--brown);
  text-align: left;
  display: block;
  position: relative; */
}

#job_list .job_blk .welcome_point ul.stretch li.off {
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  color: #BBBBBB;
}

#job_list .job_blk .welcome_point .body-type {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#job_list .job_blk .welcome_point .body-type .type {
  background-image: url("/img/front/body_plump.svg");
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 50px;
  min-width: 45px;
}

#job_list .job_blk .welcome_point .body-type .type p {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

#job_list .job_blk .highlight {
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #FFF;
  overflow: hidden;
}

#job_list .job_blk .highlight h4 {
  background: #F9F9F9;
  line-height: 35px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

#job_list .job_blk .highlight ul {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  padding: 5px 15px 15px;
}

#job_list .job_blk .highlight ul li {
  position: relative;
  padding-left: 17px;
  font-size: 14px;
}

#job_list .job_blk .highlight ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  margin-right: 8px;
}

#job_list .job_blk .highlight ul.flex {
  display: flex;
  flex-wrap: wrap;
}

#job_list .job_blk .highlight.payment .list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px 20px;
}

#job_list .job_blk .highlight.payment .list .blk {
  width: 100%;
}

#job_list .job_blk .highlight.payment .blk h5 {
  text-align: center;
  background-color: var(--blue);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 25px;
  border-radius: 50px;
  margin-bottom: 10px;
}

#job_list .job_blk .highlight.payment .blk dl {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#job_list .job_blk .highlight.payment .blk dl dt {}

#job_list .job_blk .highlight.payment .blk dl dd {
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

#job_list .job_blk .motivation {
  margin-bottom: 10px;
}

#job_list .job_blk .section_heading_ttl {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

#job_list .job_blk .motivation .interview {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
  margin: 0 auto 8px;
}

#job_list .job_blk .motivation .interview .icon {}

#job_list .job_blk .motivation .interview .speech-bubble {
  background-color: var(--blue);
  color: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
  width: 100%;
}

#job_list .job_blk .motivation .interview .speech-bubble:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: var(--blue);
}

#job_list .job_blk .motivation.novice .interview .speech-bubble:before {
  display: none;
}

#job_list .job_blk .cast_prof {
  padding-bottom: 30px;
}

#job_list .job_blk .cast_prof .cast_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#job_list .job_blk .cast_prof .cast_list .blk {
  border: solid 1px rgba(255, 131, 154, 0.15);
  border-radius: 8px;
  background-color: rgba(255, 131, 154, 0.05);
  padding: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#job_list .job_blk .cast_prof .cast_list .blk .info {
  display: flex;
  align-items: center;
  gap: 15px;
}

#job_list .job_blk .cast_prof .cast_list .blk .info .photo {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  text-align: center;
  padding: 3px;
  background: linear-gradient(135deg, #FEEFDB 0%, #FFC7BA 39%, #CDABE9 54%, #ACDAF3 74%, #ADEFED 100%);
  border-radius: 180px;
  box-sizing: border-box;
  overflow: hidden;
}

#job_list .job_blk .cast_prof .cast_list .blk .info .photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 180px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  object-fit: cover;
}

#job_list .job_blk .cast_prof .cast_list .blk .info .prof p {
  font-size: 13px;
  margin-bottom: 3px;
}

#job_list .job_blk .cast_prof .cast_list .blk .data {
  clear: both;
  width: 40%;
  border-top: none;
}

#job_list .job_blk .cast_prof .cast_list .blk .data p {
  width: 100%;
  font-size: 12px;
  background-color: rgba(255, 131, 154, 0.15);
  border-radius: 90px;
  display: flex;
  line-height: 22px;
  align-items: center;
  justify-content: space-between;
  padding-right: 13px;
  font-weight: bold;
}

#job_list .job_blk .cast_prof .cast_list .blk .data p:first-child {
  margin-bottom: 10px;
}

#job_list .job_blk .cast_prof .cast_list .blk .data p span {
  padding: 5px 10px;
  background: var(--pink);
  color: #FFF;
  font-weight: normal;
  border-radius: 90px;
}

#job_list .job_blk .cast_prof .cast_list .blk .info .prof .child {
  font-size: 12px;
  color: var(--pink);
}

#job_list .job_blk .cast_prof .cast_list .blk .info .prof .child span {
  font-weight: 700;
}

#job_list.beginner .job_blk .cast_prof .cast_list .blk {
  display: block;
}

#job_list.beginner .cast_prof .cast_list .blk .items {
  width: 100%;
  border-top: solid 1px rgba(255, 131, 154, 0.2);
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

#job_list.beginner .cast_prof .cast_list .blk .items li {
  padding: 15px 5px;
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
}

#job_list.beginner .cast_prof .cast_list .blk .items li p {
  color: #8A6C73;
  font-size: 14px;
  display: inline-block;
  padding-right: 5px;
}

#job_list.beginner .cast_prof .cast_list .blk .items li span {
  text-align: left;
  color: var(--pink);
  font-size: 14px;
}

#job_list.beginner .cast_prof .cast_list .blk .note {
  border-top: dotted 1px #FF839A;
  padding-top: 20px;
}

#job_list .job_blk .special_gift {
  background-color: rgba(255, 202, 117, 0.05);
  text-align: center;
  border: solid 1px #FFCA75;
  border-radius: 10px;
  overflow: hidden;
}

#job_list .job_blk .special_gift .cap {
  background-color: #FFCA75;
  line-height: 35px;
  color: #FFF;
  font-weight: bold;
}

#job_list .job_blk .special_gift p {
  padding: 15px 15px;
  font-weight: bold;
  color: var(--pink);
  line-height: 150%;
}

#job_list .job_blk .special_gift p span {
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

#job_list .job_blk .action_btn {
	margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}

#job_list .job_blk .action_btn .btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  box-shadow: 0px 0px 0px 0px;
}

#job_list .job_blk .action_btn .btn a {
  line-height: 50px;
  padding: 0 10px;
  box-shadow: 0px 0px 0px 0px;
}

#job_list .job_blk .action_btn .btn.more_btn {
  border-radius: 8px;
}

#job_list .job_blk .action_btn .btn.more_btn a:hover {}

#job_list .job_blk .action_btn .btn.keep a,
#job_list .job_blk .action_btn .btn.guest-keep a {
  display: block;
  border: solid 4px #C9DCEA;
  text-align: center;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 43px;
  height: 100%;
  transition: 0.1s;
}

#job_list .job_blk .action_btn .btn.keep span,
#job_list .job_blk .action_btn .btn.guest-keep span {
  transition: 0.3s;
  background-image: url("/img/front/icon/icon20.svg");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 20px;
}
#job_list .job_blk .action_btn .btn.keep a:hover {border: solid 4px #FFCA75;}
#job_list .job_blk .action_btn .btn.keep.comp a:hover {border: solid 4px var(--keep_gray);}
/* スマホ・タブレット用 */
@media (hover: none) {
  /* キープ中は黄色枠をキープ */
  #job_list.keep_box-wrap .job_blk .action_btn .btn.keep.comp a,
  #job_list.keep_box-wrap .job_blk .action_btn .btn.keep.comp a:focus,
  #job_list.keep_box-wrap .job_blk .action_btn .btn.keep.comp a:hover,
  #job_list.keep_box-wrap .job_blk .action_btn .btn.keep.comp a:active {
    border: solid 4px #FFCA75;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
  }
}
#job_list .job_blk .action_btn .btn.keep a:hover span {	color: #FFCA75;}
#job_list .job_blk .action_btn .btn.keep.comp a {
  border: solid 4px #FFCA75;
}
#job_list .job_blk .action_btn .btn.keep.comp a:hover span {	color: var(--brown);}

#job_list .job_blk .limit {
  text-align: center;
  color: #8E8E8E;
  font-weight: bold;
  padding: 20px 10px;
}

#job_list .job_blk .app_data {
	padding: 10px 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	gap: 10px;
}
#job_list .job_blk .app_data .item {
	display: flex;
	align-items: center;
	gap: 5px;
}

#job_list .job_blk .app_data dt,
#job_list .job_blk .app_data dd {
	font-size: 12px;
}

#job_list .job_blk .app_data dt {
	width: 75px;
  background-color: #F9F9F9;
  text-align: center;
  border-radius: 3px;
  line-height: 25px;
}

#job_list .job_blk .app_data dd {
  font-family: "Inter", sans-serif;
}

#job_list .job_blk .reason {
	padding: 10px 0;
}

#job_list .job_blk .reason .cap {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--pink);
}

#job_list .job_blk .reason p {
  font-size: 14px;
  line-height: 1.5;
}

#job_list.no_margin {
  padding: 20px 0;
}

#job_list.no_margin .page_navi_top {
  margin: 0 15px 20px;
}

#job_list .job_blk .salary_blk {
  border: solid 1px var(--blue);
  background-color: rgba(98, 200, 204, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

#job_list .job_blk .salary_blk .caption {
  background-color: var(--blue);
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 15px;
}

#job_list .job_blk .salary_blk .summary {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--blue);
  padding: 0 15px 15px;
}

#job_list .job_blk .salary_blk .summary span {
  font-weight: normal;
  color: var(--brown);
  padding-right: 5px;
}

#job_list.migrantwork .job_blk .salary_blk .summary {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

#job_list #everyone_pay,
#job_list #cast_interview,
#job_list #qanda {
  padding: 10px 0;
}

#job_list #everyone_pay .pay_list {
  margin: 0;
}
#job_list #cast_interview .int_list,
#job_list #qanda .qa_list {
  margin: 0;
  gap: 10px;
}
#job_list .pay-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行まで */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

#pickup_job {
  padding: 10px 25px 20px;
}

#pickup_job .blk {
  border: solid 1px #EBEEF0;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto 30px;
  max-width: 742px;
}

#pickup_job .blk .image {
  max-height: 246px;
  overflow: hidden;
}
#pickup_job .blk .image img {
	object-fit: cover;
}

#pickup_job .blk a {
  display: block;
}

#pickup_job .blk .detail {
  padding: 20px;
}

#pickup_job .blk .ttl {
  font-size: 16px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 10px;
}

#pickup_job.detail .blk {
  margin-top: -10px;
  margin-bottom: 0;
}

#body_type {
  padding: 0 30px;
}

@media screen and (max-width: 849px) {
  #body_type {
    padding: 0 15px;
  }
}

#body_type .form_area .prof_autofill {
  border-top: none;
  padding: 0px 30px 30px;
}

@media screen and (max-width: 339px) {
  #body_type .form_area .prof_autofill {
    padding: 0px 20px 30px;
  }
}

#helpful_cont {
  padding: 20px 30px 40px;
}

#bmiTypeText.bmi-type.active {
  font-size: 20px;
  color: var(--pink);
}

#body_type .notes_text {
  color: #bebebe;
  font-size: 12px;
}

/* サイトトップ */
#Toparea {}

#Toparea .top_visual {
  position: relative;
  text-align: center;
  background-image: url("/img/front/pc_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  margin: 15px;
  padding: 75px 15px;
}

#Toparea .top_visual.nationwide {
  background-image: url("/img/front/fv-bg.png");
  margin: 14px;
  padding: 80px 15px;
}

#Toparea .top_visual.nationwide._other-bg {
  background-image: url("/img/front/dekasegi-bg_lg.png");
  padding-block: 54px;
}

#Toparea .top_visual.about {
  padding: 57px 8px 60px;
}

#Toparea .icon {
  position: relative;
}

#Toparea .icon span {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 25px;
  margin-bottom: 30px;
  z-index: 10;
}
#Toparea .icon img {
	width: 80px;
	height: auto;
}

#Toparea .icon:after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0px;
  right: 0;
  margin: auto;
  background-image: url("/img/front/bg_icon_logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 165px auto;
  width: 150px;
  height: 150px;
}

#Toparea .pr {
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
  line-height: 150%;
  margin-bottom: 30px;
}
#Toparea .top_visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-wrapper {
    flex-direction: column;
  }
}

#Toparea .top_visual-wrapper._other-wrap {
  padding-right: 7.5%;
  gap: 8px;
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-wrapper._other-wrap {
    padding-right: 0;
    gap: initial;
    flex-direction: column-reverse;
  }
}

#Toparea .top_visual-wrapper::after {
  content: "";
  left: calc(50% - 680px / 2);
  top: calc(50% - 302px / 2);
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--white);
  width: 632px;
  max-width: 100%;
  height: 302px;
  z-index: -1;
  backdrop-filter: blur(20px);
  border-radius: 10px;
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-wrapper::after {
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
  }
}
#Toparea .top_visual.about .top_visual-wrapper {
  gap: 15px;
  margin-bottom: 52px;
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual.about .top_visual-wrapper {
    margin-bottom: 16px;
  }
}

#Toparea .top_visual.about .top_visual-wrapper::after {
  display: none;
}
/* 出稼ぎトップでぼかし背景の位置 */
#Toparea .top_visual-wrapper._other-wrap::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-wrapper._other-wrap::after {
    transform: translate(-50%, -55%);
  }
}

#Toparea .top_visual-text--wrap {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

#Toparea .top_visual-text {
  color: var(--dark_pink);
  font-size: 18px;
  font-weight: 700;
  line-height: 13px;
}

#Toparea .top_visual-text._other-text {
  line-height: 26px;
}

#Toparea .top_visual-text--wrap a,
#Toparea .top_visual-text--wrap .logo {
  max-width: 267px;
  margin-inline: auto;
}

@media screen and (max-width: 849px) {
  #Toparea .top_visual-text--wrap .logo {
    width: 70vw;
  }
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-img {
    margin-block: 15px 20px;
  }
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual.about .top_visual-wrapper .top_visual-img {
    margin-block: 0;
  }
}

#Toparea .top_visual-img img {
  width: 313px;
  max-width: 100%;
}

#Toparea ._other-wrap .top_visual-img img {
  width: 100%;
}

#Toparea .top_visual.about .top_visual-wrapper .top_visual-img img {
  width: 200px;
  max-width: 100%;
}

#Toparea .attention {
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 1px #fff;
  border-radius: 90px;
  padding: 10px;
  font-size: 12px;
  max-width: 400px;
  margin: auto;
}
#Toparea .attention._pc {
  padding: 10px 15px;
  margin-top: 9px;
}

@media screen and (max-width: 1189px) {
  #Toparea .attention._pc {
    display: none;
  }
}

#Toparea .attention._sp {
  display: none;
}

@media screen and (max-width: 1189px) {
  #Toparea .attention._sp {
    display: block;
  }
}

@media screen and (max-width: 1189px) {
  #Toparea .top_visual-wrapper._other-wrap::after {
    transform: translate(-50%, -55%);
  }
}

#head_logo a ._sp-hidden {
  display: none;
}

.dekasegi_area .title {
    padding: 20px 30px;
    background: var(--blue);
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }

#notice_area.dekasegi_area {
    padding-bottom: 0px;
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    margin-bottom: 10px;
  }

#notice_area.dekasegi_area .notice_list {
    border-radius: 0;
    margin-bottom: 0;
    padding-inline: 15px;
  }

#notice_area.dekasegi_area .notice_list li:last-child {
    border-bottom: none;
  }

#notice_area.dekasegi_area .notice_list li .ttl {
    margin-bottom: 0;
  }

#Toparea .point {}
#Toparea .point ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 10px;
}
#Toparea .point ul li {
	border-radius: 8px;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
	width: 100%;
	max-width: 340px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	box-shadow: 0px 4px 40px 2px rgba(255, 255, 255, 1) inset;
	box-shadow: 0px 0px 24px 0px rgba(219, 239, 240, 1);
}

@media screen and (max-width: 359px) {
  #Toparea .point ul li {
    font-size: 12px;
  }
}

#job_area {
  background-color: #FFF;
  padding: 30px 15px 50px;
}
.jp #job_area {
  margin-bottom: 40px;
}

#pref-change.section_area {
  padding: 0;
  background-color: #FFF;
}
#pref-change .list ul li,
#job_area .list ul li {
  width: 170px;
}
#pref-change .pref-detail.area.list ul:has(li + li) li,
#job_area .list .popup-detail.area ul:has(li + li) li {
  width: auto;
}
#pref-change .pref-detail.area,
#job_area .popup-detail.area {
	width: 600px;
	padding: 35px;
}
#pref-change .pref-detail.area ul,
#job_area .popup-detail.area ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 480px) {
  #job_area .popup-detail.area ul:has(li + li) {
    grid-template-columns: repeat(2, 1fr);
  }
}

#pref-change .pref-detail.area ul li,
#job_area .popup-detail.area ul li {
	background: inherit;
	border-radius: 8px;
	background-color: var(--pink);
}
#pref-change .pref-detail.area ul li a,
#job_area .popup-detail.area ul li a {
	border-radius: 0;
	background-color: var(--pink);
	color: #FFF;
}

#sns_area {
  padding-bottom: 100px;
  text-align: center;
}

#sns_area .sns_btn {
  background-color: var(--pink);
  border-radius: 8px;
  margin: 15px 10px 0;
  display: inline-block;
  width: 45%;
}

@media screen and (max-width: 999px) {
  #sns_area .sns_btn {
    display: block;
    width: auto;
  }
}

#sns_area .sns_btn a {
  display: block;
  box-sizing: border-box;
  color: #FFF;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  line-height: 130%;
  padding: 25px 45px 25px 15px;
  background-image: url("/img/front/sns_x.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

#sns_area .sns_btn.x {
  background-color: var(--brown);
}

#sns_area .sns_btn.youtube a {
  background-image: url("/img/front/sns_youtube.svg");
}
@media screen and (max-width: 849px) {
  #pref-change .pref-detail.area,
  #job_area .popup-detail.area {
    width: 100%;
  }
}

/* ログイン・会員登録 */
.modal_top_ttl {
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #FEEFDB, #FFC7BA, #CDABE9, #ACDAF3, #ADEFED) 1;
  margin-inline: auto;
  /*background-color: #FFF; 背景色は半透明 */
  padding: 0 15px;
  position: relative;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.top_actionBtn {
  position: absolute;
  left: 15px;
  top: 20px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 30px;
  height: 30px;
  background-image: url("/img/front/btn_close.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.top_actionBtn.prev {
  background-image: url("/img/front/btn_prev.svg");
}

#mypage_wrap {
  background-color: #FFF;
}

#mypage_wrap .wrap {
  padding: 30px 0 0;
}

#mypage_wrap .loginform {
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  padding: 30px 30px 20px;
  margin: 0 30px 30px;
}
#mypage_wrap .form_area {
	background-color: #FFF;
}
#mypage_wrap .form_area .save {
  display: flex;
}

#mypage_wrap .form_area .save input {
  display: none;
}

#mypage_wrap .form_area .save label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: max-content;
}

#mypage_wrap .form_area .save label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #EBEEF0;
  box-sizing: border-box;
  margin: 0 10px 0 0
}

#mypage_wrap .form_area .save label::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: url("/img/front/icon/icon21.svg");
  opacity: 0;
  box-sizing: border-box;
}

#mypage_wrap .form_area .lost-pw {
	padding: 20px 15px 30px;
}

#mypage_wrap .other_area .txt {
  font-size: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

#mypage_wrap .other_area .txt::before,
#mypage_wrap .other_area .txt::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #C9DCEA;
  margin: 0 10px;
}

#mypage_wrap .other_area .btn {
  overflow: hidden;
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  height: 55px;
  width: 100%;
  margin-bottom: 10px;
}

#mypage_wrap .other_area .btn a {
  display: block;
  text-align: center;
  line-height: 55px;
  background-image: url("/img/front/logo_google.svg");
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 22px auto;
}

#mypage_wrap .other_area .btn.google a {
  background-image: url("/img/front/logo_google.svg");
}

#mypage_wrap .other_area .btn.yahoo a {
  background-image: url("/img/front/logo_yahoo.svg");
}

#mypage_wrap .other_area .btn.line a {
  background-image: url("/img/front/logo_line.svg");
  background-color: #00B900;
  color: #FFF;
}

#mypage_wrap .other_area .btn.apple a {
  background-image: url("/img/front/logo_apple.svg");
  background-color: #000;
  color: #FFF;
}

#mypage_wrap .other_area .btn.x a {
  background-image: url("/img/front/logo_x.svg");
  background-color: #000;
  color: #FFF;
}

#mypage_wrap .first_user {
	padding: 0 30px 30px;
	background: #FFF;
}

#mypage_wrap .first_user .inner {
  border-radius: 8px;
  background-color: rgba(98, 200, 204, 0.1);
  border: solid 1px #C9DCEA;
	padding: 40px;
}

#mypage_wrap .first_user p {
  line-height: 180%;
  margin-bottom: 20px;
}

#mypage_wrap .first_user p span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #62C8CC;
  margin-bottom: 10px;
}
#mypage_wrap .first_user #sub_menu .other ul li {
	width: 100%;
}

#mypage_wrap #sub_menu {
  padding: 0;
  background-color: transparent;
}
#mypage_wrap .mail_register {
  margin-bottom: 20px;
}
#mypage_wrap .mail_register p {
  color: var(--pink);
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 20px;
}
#mypage_wrap .mail_register .btn {}
#mypage_wrap .mail_register .btn a {}
#mypage_wrap .other_area {
  background-color: #FFF;
  padding-top: 20px;
}

#mypage_wrap .other_area h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
}

#mypage_wrap .other_area h2 span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

.accordion_btn {
  margin: 0 auto 30px;
  position: relative;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  border: solid 1px var(--blue);
  color: var(--blue);
  font-weight: bold;
  line-height: 60px;
  text-align: center;
}

.accordion_btn::before,
.accordion_btn::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: var(--blue);
}

.accordion_btn::after {
  transform: rotate(-90deg);
  transition: transform 0.1s;
}

.accordion_btn.active::after {
  transform: rotate(0deg);
}

.addition_form {
  display: none;
  margin-bottom: 30px;
}

.form_area .submit button,
.form_area .submit input,
.form_area .submit .btn {
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background: #FF839A;
  border-radius: 8px;
  position: relative;
    box-shadow: 0 5px 15px 0px rgba(251, 147, 172, 0.5);
  transition: 0.1s;
  color: #FFF;
	font-size: 14px;
  font-weight: bold;
  border: none;
  margin: 10px 0 0;
}

.form_area .submit .btn {
  display: block;
  text-align: center;
  line-height: 60px;
}

.form_area .submit input:hover,
.form_area .submit .btn:hover {
  opacity: 0.8;
}



#register_form_box {
	border: solid 1px #EBEEF0;
    border-radius: 8px;
    padding: 30px 30px 20px;
    margin: 0 30px 30px;
}
#register_form_box #user_info {
    padding: 0px 0 30px;
}
.registration-steps {
    padding: 20px 15px;
    max-width: 400px;
    margin: auto;
}
.registration-steps ul {
  display: flex;
  justify-content: space-evenly;
  margin: 20px auto 20px;
}
.registration-steps ul li {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #8A6C73;
  padding-top: 35px;
}
.registration-steps ul li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-family: "Inter", sans-serif;
  z-index: 10;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  background: #EBEEF0;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto
}

.registration-steps ul li.active {
  box-sizing: border-box;
  color: #FF839A;
}
.registration-steps ul li.active::before {
  background: linear-gradient(to top, #F44263, #FF839A);
  color: #FFF;
	box-shadow: 0 5px 15px 0px rgba(251, 147, 172, 0.5);
}

 .registration-steps ul li::after {
  content: '';
  background-color: #EBEEF0;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
}
 .registration-steps ul li:last-child::after { display: none;}


#register_form_box .form_area {}
.form_area dl {
  margin-bottom: 20px;
}

.form_area dl dt {
  color: #8A6C73;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 10px;
}

.form_area dl dd input.form,
.form_area dl dd select.form {
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  border-radius: 8px;
  height: 44px;
  width: 200px;/* 0730修正 */
  padding: 10px;
  margin-bottom: 5px;
}

.form_area.body_type .flex_area .blk .form {
  width: 100%;
  max-width: 100%;
}
.form_area.body_type .flex_area {
  flex-wrap: nowrap;
}

.form_area dl dd select.form {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 20px 10px 10px;
  background-image: url("/img/front/arrow-bottom.svg");
  background-repeat: no-repeat;
	background-size: 9px auto; /* 画像のサイズ（幅 高さ）*/
	background-position: right 12px center; /* 画像の位置 */
}

.form_area dl .req {
  background-color: #FF839A;
  width: 5px;
  height: 5px;
  display: inline-block;
  vertical-align: super;
  border-radius: 50%;
  margin-left: 5px;
}

.form_area .kome {
  font-size: 12px;
  line-height: 150%;
}

.form_area .kome.pink {
  color: var(--pink);
}

.form_area .sub_cap {
  font-size: 12px;
  font-weight: bold;
  color: var(--pink);
  margin-top: 5px;
  margin-bottom: 10px;
}

.form_area .sub_cap:before {
  content: '';
  background-color: #FF839A;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 5px;
}

.form_area .select_box ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form_area .select_box ul.nowrap {
  flex-wrap: nowrap;
}

.form_area .select_box ul li {
  width: calc(50% - 10px);
  max-width: 162px;
}

.form_area .select_box input[type=radio],
.form_area .select_box input[type=checkbox] {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  visibility: hidden;
}

.form_area .select_box label {
  display: block;
  border-radius: 10px;
  cursor: pointer;
  background-color: #F9F9F9;
  line-height: 44px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-inline: 8px;
}

.form_area .select_box input[type=radio]:checked+label,
.form_area .select_box input[type=checkbox]:checked+label {
  background-color: var(--pink);
  color: #fff;
}

.form_area input[type=file]::file-selector-button {
  text-align: center;
  cursor: pointer;
  background-color: #62C8CC;
  border-radius: 8px;
  position: relative;
  border: none;
  color: #FFF;
  line-height: 40px;
  padding: 0 20px;
}

.form_area .flex_area {
  display: flex;
  gap: 15px;
}

.form_area .flex_area .blk {
  width: 100%;
}

/* 260121 プロフ設定＞セレクトは除外 */
.form_area .flex_area .blk input.form {
  width: 100%;
}

.form_area .unit {
  padding-left: 5px;
  min-width: max-content;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 10px;
}

.form_area .flex_area .photo {
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 1100px) and (min-width:850px) {
  .form_area .flex_area {
    flex-wrap: wrap;
  }
  .form_area .flex_area .blk .form {
    width: 100%;
    max-width: 200px;
  }
}

.form_area .btn.line {
  overflow: hidden;
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  height: 55px;
  width: 100%;
  margin-bottom: 10px;
}

.form_area .btn.line a {
  display: block;
  text-align: center;
  line-height: 55px;
  background-image: url("/img/front/logo_line.svg");
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-color: #00B900;
  color: #FFF;
}

.form_area .notice_set ul li {
  margin-bottom: 10px;
}

.form_area .notice_set ul li p {
  font-display: 14px;
}

.form_area .txt_imp {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--blue);
}

.form_area .prof_autofill {
  border-top: solid 1px #EBEEF0;
  text-align: center;
  padding: 30px 10px;
}
/*.form_area .prof_autofill input[type=button]*/
.form_area .prof_autofill .btn {
  box-shadow: 0 5px 15px 0px rgba(251, 147, 172, 0.5);
  background-color: var(--pink);
  cursor: pointer;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: block;
  border-radius: 30px;
  line-height: 35px;
  text-align: center;
  width: 230px;
  margin: 0 auto 15px;
}

/* 未ログイン時のボタン */
.form_area .prof_autofill .btn.guest {
  pointer-events: none;
  opacity: 1;
}

.form_area .txt_info {
  text-align: center;
  font-weight: bold;
}

.form_area .txt_info a {
  color: #2878C2;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.confirm .form_area dl {
  margin-bottom: 15px;
}

.confirm .form_area dl dt {
  border-top: dotted 1px #EBEEF0;
  padding-top: 15px;
  padding-bottom: 8px;
}

.confirm .form_area dl dt,
.confirm .form_area dl dd {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}

/* ===== 時間選択（WEB応募） ===== */
.form_area .form-row.grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.form_area .form-row.grid .date {
  width: auto;
  min-width: 120px;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 1020px) and (min-width:850px) {
  .form_area .form-row.grid {
    display: block;
  }
  .form_area .form-row.grid .date {
    width: 100%;
    min-width: 150px;
  }
}
@media screen and (max-width: 450px) {
  .form_area .form-row.grid {
    display: block;
  }
  .form_area.confirm .form-row.grid {
    display: grid;
  }
  .form_area .form-row.grid .date {
    width: 100%;
  }
}
.form_area .form-row .time-block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: center;
  gap: 10px;
}
.form_area .form-row .time-block .parts {
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  gap: 5px;
  align-items: center;
}
.form_area .form-row .time-block .parts .time {
  width: auto;
  min-width: fit-content;
}
.form_area .form-row .time-block .parts span {
  text-align: center;
}

/* ===== 確認画面 ===== */
.form_area.confirm .form-row.grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
}
.form_area.confirm .form-row.grid .date {
  width: 200px;
}
.form_area.confirm .form-row .time-block {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.form_area.confirm dl dd input.form.time {
  width: 100px;
  appearance: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 480px) {
  .form_area.confirm .form-row.grid {
    display: block;
  }
  .form_area.confirm .form-row.grid .date {
    width: 100%;
  }
  .form_area.confirm .form-row .time-block {
    display: grid;
    grid-template-columns: 1fr 10px 1fr;
    gap: 10px;
  }
  .form_area.confirm .form-row .time-block .form.time {
    width: 100%;
  }
}

.form_area input[type="file"] {
  margin-bottom: 5px;
}

.form_area .preview {
  background-color: #F9F9F9;
  border: solid 1px #EBEEF0;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 5px;
  overflow: auto;
}

.form_area .preview:empty {
  display: none;
}

.form_area .preview img {
  max-width: 100%;
  height: 100px;
  object-fit: cover;
  margin: 10px;
}

.form_area .ttl_shopinfo {
  border-top: solid 1px #EBEEF0;
  border-bottom: solid 1px #EBEEF0;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--blue);
  margin: 30px auto 30px;
}

.form_area .terms-box {
  height: 240px;
  overflow-y: scroll;
  border: solid 1px #EBEEF0;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 20px;
}

.checkbox_flex {}

.checkbox_flex input[type="checkbox"] {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.checkbox_flex input[type="checkbox"]+p::before {
  content: "";
  display: inline-block;
	vertical-align: text-bottom;
  width: 1rem;
  height: 1rem;
  background-color: #EBEEF0;
  border-radius: 5px;
  margin-right: 5px;
}

.checkbox_flex input[type="checkbox"]:checked+p::before {
  background-image: url("/img/front/icon/icon21.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
	background-size: 100% auto;
  border: none;
}

.checkbox_flex label::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: url("/img/front/icon/icon21.svg");
  opacity: 0;
  box-sizing: border-box;
}

.checkbox_flex.multiple {
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-bottom: 20px;
}

.checkbox_flex.multiple.checkbox-type-label-wrap {
  display: flex;
  gap: 10px 5px;
  flex-wrap: wrap;
}

#information_box {
	padding: 0 30px 30px;
}
#information_box .ttl-box {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.20);
    margin: 0 0 30px;
}
#information_box .ttl-box .new {
    margin-bottom: 10px;
    border-radius: 90px;
    background-color: rgba(255, 131, 154, 0.15);
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    display: inline-block;
}
#information_box .ttl-box h2 {
    font-size: 20px;
    font-weight: bold;
}
#information_box .ttl-box .data {
    color: rgba(0, 0, 0, 0.20);
    font-size: 12px;
    line-height: 18px;
    margin: 5px 0 20px;
}
#information_box .main-txt {
	margin-bottom: 10px;
}
#information_box .image_box {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}
#information_box .image_box .item {
	border-radius: 8px;
	overflow: hidden;
	width: 30%;
}
.section_intro {
	background: #EBEEF0;
    border-radius: 8px;
	text-align: center;
	color: #BBBBBB;
	font-size: 20px;
	font-weight: 700;
	padding: 200px 30px;
	margin: 0 30px 20px;
}

.section_intro._other-types {
  margin: 0 0 25px;
  border-radius: 0;
  background: var(--light_pink);
}

.section_intro._other-types.p-0 {
  padding: 25px 15px;
}

#support {
	padding: 50px 100px 20px;
}
#support .item {
	text-align: center;
	margin-bottom: 60px;
}
#support .item .icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 15px;
}
#support .item .ttl {
	color: var(--blue);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
#support .item .txt {
	line-height: 160%;
	font-size: 14px;
	text-align: left;
}

/* マイページ */
#user_info {
	padding: 30px 30px 30px;
  text-align: center;
}

#user_info .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

#user_info .login {
  color: #BBBBBB;
  font-size: 12px;
}

#user_info .area {
  color: #BBBBBB;
  font-size: 12px;
  margin-bottom: 5px;
}

.pref_area {
	margin: 0 30px 20px;
  padding: 15px;
  background-color: rgba(255, 202, 117, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.pref_area h2 {
  font-size: 16px;
  font-weight: bold;
  width: 25%;
  min-width: 110px;
}

.pref_area ul {
  display: flex;
  flex-wrap: wrap;
	justify-content: flex-end;
  gap: 5px;
  width: 75%;
}

.pref_area ul li {
  background-color: rgba(255, 202, 117, 0.5);
  border-radius: 50px;
  font-size: 13px;
  text-align: center;
  line-height: 32px;
  padding: 0 15px;
}
.mypage #news {
	margin: 0 30px 30px;
	border-radius: 8px;
}

#user_content_menu {
	padding:  10px 50px 40px;
}

#user_content_menu ul {
	display : flex;
	flex-wrap : wrap;
	justify-content:flex-start;
	gap: 40px;
}

#user_content_menu ul li {
	position: relative;
  text-align: center;
	min-width: 80px;
}

#user_content_menu ul li a {
  display: block;
  font-size: 12px;
  padding-top: 38px;
  background-image: url("/img/front/icon/icon23.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 30px;
}

/**/
#user_content_menu ul li.keep a {background-image: url("/img/front/icon/icon23.svg");}
#user_content_menu ul li.chat a {background-image: url("/img/front/icon/icon22.svg");}
#user_content_menu ul li.scout a {background-image: url("/img/front/icon/icon25.svg");}
#user_content_menu ul li.request a {background-image: url("/img/front/icon/icon30.svg");}
#user_content_menu ul li.job a {background-image: url("/img/front/icon/icon28.svg");}
#user_content_menu ul li.qa a {background-image: url("/img/front/icon/icon24.svg");}
#user_content_menu ul li.history a {background-image: url("/img/front/icon/icon29.svg");}
#user_content_menu ul li.prof a {background-image: url("/img/front/icon/icon27.svg");}
#user_content_menu ul li.block a {background-image: url("/img/front/icon/icon26.svg");}

#user_content_menu ul li .count {
    background-color: var(--pink);
    display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
    width: 18px;
    line-height: 18px;
    text-align: center;
    color: #FFF;
    font-size: 10px;
    border-radius: 50%;
    margin-left: 5px;
}
#Topslide.has-pickup .swiper-slide,
.mypage .swiper-slide {
	/* padding: 70px 30px 0; */
	padding: 70px 0px 0;
}
.mypage #Topslide .swiper-slide img {
	/* border-radius: 8px; */
}
.mypage .job_ttl {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	padding-left: 5px;
	border-left: solid 4px #FF839A;
}
.mypage .job_ttl span {
	float: right;
}
.mypage .job_ttl span a {
	position: relative;
	color: #62C8CC;
	font-size: 12px;
}
.mypage .job_ttl span a:after {
	content: '';
	display: inline-block;
	vertical-align: text-bottom;
    margin-left: 10px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #66cdd2; /* 明るい青緑 */
	border-right: 2px solid #66cdd2;
	transform: translate(-50%, -50%) rotate(45deg);
}
#job_list.match .job_blk {
	padding: 70px 30px 10px;
}
#job_list.match .job_blk .match {
	position: absolute;
    top: 20px;
	left: 0;
	width: 100%;
}
#job_list.match .job_blk:before {
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    top: 50px;
    left: 0;
    border-top: 10px solid;
}
.mypage #job_list #qanda {
	padding: 0;
}
.mypage #qanda .job_ttl {
	margin: 0 30px 15px;
}
.mypage #qanda.detail .qa_list {}
.mypage #qanda .qa_list {
	margin: 0 30px;
}
.mypage #everyone_pay .pay_list {
	margin: 0 30px;
}
.important_notice {
	border: solid 1px #EBEEF0;
    border-radius: 8px;
    padding: 30px 30px;
    margin: 0 30px 20px;
}
.important_notice.comp {
    padding: 30px 100px;
}
.important_notice.comp.verify_email {
    padding: 30px 80px;
}

.important_notice p {
  line-height: 150%;
  font-size: 14px;
}

.important_notice .comp_area {
  border-bottom: solid 1px #EBEEF0;
  text-align: center;
  padding-bottom: 20px;
	margin-bottom: 40px;
}

.important_notice .comp_area img {
  margin: auto;
  width: 100px;
  height: auto;
}

.important_notice .comp_area p {
  font-size: 16px;
  font-weight: bold;
  color: var(--blue);
	padding-top: 40px;
}

@media screen and (min-width: 400px) {
  .important_notice .comp_area .hidden-pc{
    display: none;
  }
}

.important_notice ol {
  list-style: disc;
  margin-left: 20px;
}

.important_notice ol li {
  font-size: 14px;
}

#notice_area {
	padding: 0 30px 20px;
}
#notice_area .page_navi {
	padding:  20px 0 0;
}

#notice_area .notice_list {
  background-color: #FFF;
	border-top: solid 1px #EBEEF0;
	border-radius: 0;
  margin-bottom: 20px;
}

#notice_area .notice_list li {
  border-bottom: solid 1px #EBEEF0;
}

#notice_area .notice_list li a {
  display: block;
  padding: 20px 40px 20px 15px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGODM5QSIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik01MTcuODUtNDgwIDM1NC45Mi02NDIuOTJxLTguMy04LjMxLTguNS0yMC44OS0uMTktMTIuNTcgOC41LTIxLjI3IDguNy04LjY5IDIxLjA4LTguNjkgMTIuMzggMCAyMS4wOCA4LjY5bDE3OS43NyAxNzkuNzdxNS42MSA1LjYyIDcuOTIgMTEuODUgMi4zMSA2LjIzIDIuMzEgMTMuNDZ0LTIuMzEgMTMuNDZxLTIuMzEgNi4yMy03LjkyIDExLjg1TDM5Ny4wOC0yNzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNTE3Ljg1LTQ4MFoiLz48L3N2Zz4=");
  background-position: right 10px center;
  background-repeat: no-repeat;
}

#notice_area .notice_list li .ttl {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  color: #8A6C73;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

#notice_area .notice_list li.unread .ttl:before {
  content: '';
  background-color: #FF839A;
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: baseline;
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 3px;
}

#notice_area .notice_list li p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#notice_area .notice_list li .txt {
  margin-bottom: 8px;
}

#notice_area .notice_list li .data {}

#notice_area.block_list_wrap .notice_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#notice_area.block_list_wrap .notice_list li a {
    width: 85%;
	background-image: none;
	padding: 20px 15px;
}

#notice_area.block_list_wrap .notice_list li .ttl {
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 5px;
}

#notice_area.block_list_wrap .notice_list li .block_btn {
  min-width: 80px;
  height: 32px;
}

#notice_area.block_list_wrap .notice_list li .block_btn a {
  line-height: 32px;
  font-size: 11px;
  font-weight: bold;
  color: var(--brown);
  text-align: center;
  border: 1px solid #EBEEF0;
  background-color: #F9F9F9;
  border-radius: 5px;
  display: block;
  padding: 0 15px;
}


#about_withdrawal {
	padding: 20px 30px 50px;
  border-bottom: solid 1px #EBEEF0;
}

.tab_box {
	background-color: var(--bg_blue);
  border-top: solid 1px #EBEEF0;
  border-bottom: solid 1px #EBEEF0;
  height: 58px;
}

.tab_box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;/* お悩みQ＆A */
}

.tab_box ul li {
  flex: 1;
  text-align: center;
  line-height: 58px;
    max-width: 200px;
}

.tab_box ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.tab_box ul li a.active {
	color: var(--blue);
  font-weight: bold;
}

.tab_box ul li a.active:after {
  content: "";
  width: 90%;
  height: 4px;
  line-height: 4px;
  display: block;
	background-color: var(--blue);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
}

.tab_box ul li a p {
  position: relative;
  display: inline-block;
  height: 100%;/* 0730 */
  line-height: 55px;
}

.tab_box ul li a p .count {
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 5px;/* 0730 */
  right: -30px;
  width: 23px;
	background-color: var(--blue);
  height: 23px;
  line-height: 23px;
  color: #FFF;
  font-size: 12px;
  border-radius: 20px;
}

#mypage_wrap .tab_box ul li a p .count {
  top: 16px;
}

/* MYページ お悩みQ＆A */
.mypage #qanda.pend {
	padding: 0;
}
.mypage #qanda.pend .qa_list {
	margin: 0;
}
.mypage #qanda.pend .qa_list .block {
    padding: 15px;
    border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
.mypage #qanda.pend .qa_list .block .ctgr li.dating {
	padding: 0;
    margin-right: 0px;
    margin-left: auto;
    background-color: transparent;
    color: var(--brown);
}
.mypage #qanda.pend .qa_list .block .ctgr li.dating:before {
  display: none;
}

/* 最終更新日の表示 */
.mypage #qanda.pend .qa_list .block .ctgr li.dating._sp-show {
  display: none;
}
/* 最終更新日の表示 */
@media screen and (max-width: 899px) {
  .mypage #qanda.pend .qa_list .block .ctgr li.dating._sp-hidden {
    display: none;
  }

  .mypage #qanda.pend .qa_list .block .ctgr li.dating._sp-show {
    display: flex;
    margin-left: 0;
  }
}

/* チャット */
#chat_page #mypage_wrap {
	position: relative;
	z-index: 1000;
}
#chat_page #footer {
    padding: 40px 30px 150px;
}

.chat_action .btn.gray {
	pointer-events: none;
}
#chat_container {
  position: relative;
	margin: 0 30px 30px;
}

#chat_messages {
	border-radius: 10px;
	border: solid 1px #EBEEF0;
  overflow-y: auto;
	padding: 30px;
  background-color: var(--bg_blue);
}

#chat_input_container {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
  z-index: 999;
}

#chat_input_container .chat_send_inner {
  display: flex;
}
#chat_input_container .chat_send_inner textarea {
  border: solid 1px #EBEEF0;
  background-color: #F9F9F9;
  border-radius: 8px;
  height: 80px;
  width: 100%;
  padding: 10px;
	color: #7F7F83;
}
#chat_input_container .chat_send_inner button {
  border: none;
  background-color: transparent;
  color: var(--pink);
  font-weight: 700;
  width: 70px;
  cursor: pointer;
}


#chat_input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  resize: none; /* サイズ変更を無効化 */
  height: auto;
  min-height: 50px; /* 最小高さ */
  max-height: 150px; /* 最大高さ */
  overflow-y: auto; /* 高さを超えた場合スクロール */
  box-sizing: border-box;
}

#chat_messages .text_detail {
  min-width: 100px;
}

#chat_messages .speech_bubble p {
  font-size: 14px;
  line-height: 150%;
}

#chat_messages .time_blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat_messages .time_blk p {
  font-size: 12px;
}

#chat_messages .time_blk .delete:hover {
  cursor: pointer;
}

#chat_messages .time_blk .time {}

#chat_messages .chat_date {
  width: 100%;
  line-height: 30px;
  margin-bottom: 25px;
  background: #FFF;
  border-radius: 100px;
  outline: 1px #EBEEF0 solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

#chat_messages .recipient_side {
  padding-right: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  display: flex;
  margin-bottom: 20px;
}

#chat_messages .recipient_side .icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik00ODAtNDkyLjMxcS01Ny43NSAwLTk4Ljg3LTQxLjEyUTM0MC01NzQuNTYgMzQwLTYzMi4zMXEwLTU3Ljc1IDQxLjEzLTk4Ljg3IDQxLjEyLTQxLjEzIDk4Ljg3LTQxLjEzIDU3Ljc1IDAgOTguODcgNDEuMTNRNjIwLTY5MC4wNiA2MjAtNjMyLjMxcTAgNTcuNzUtNDEuMTMgOTguODgtNDEuMTIgNDEuMTItOTguODcgNDEuMTJaTTE4MC0yNDguNDZ2LTI4LjE2cTAtMjkuMzggMTUuOTYtNTQuNDIgMTUuOTYtMjUuMDQgNDIuNjYtMzguNSA1OS4zLTI5LjA3IDExOS42NS00My42MSA2MC4zNS0xNC41NCAxMjEuNzMtMTQuNTR0MTIxLjczIDE0LjU0cTYwLjM1IDE0LjU0IDExOS42NSA0My42MSAyNi43IDEzLjQ2IDQyLjY2IDM4LjVRNzgwLTMwNiA3ODAtMjc2LjYydjI4LjE2cTAgMjUuMy0xNy43MyA0My4wNC0xNy43MyAxNy43My00My4wNCAxNy43M0gyNDAuNzdxLTI1LjMxIDAtNDMuMDQtMTcuNzNRMTgwLTIyMy4xNiAxODAtMjQ4LjQ2Wm02MCAuNzdoNDgwdi0yOC45M3EwLTEyLjE1LTcuMDQtMjIuNS03LjA0LTEwLjM0LTE5LjExLTE2Ljg4LTUxLjctMjUuNDYtMTA1LjQyLTM4LjU4UTUzNC43LTM2Ny42OSA0ODAtMzY3LjY5cS01NC43IDAtMTA4LjQzIDEzLjExLTUzLjcyIDEzLjEyLTEwNS40MiAzOC41OC0xMi4wNyA2LjU0LTE5LjExIDE2Ljg4LTcuMDQgMTAuMzUtNy4wNCAyMi41djI4LjkzWm0yNDAtMzA0LjYycTMzIDAgNTYuNS0yMy41dDIzLjUtNTYuNXEwLTMzLTIzLjUtNTYuNXQtNTYuNS0yMy41cS0zMyAwLTU2LjUgMjMuNXQtMjMuNSA1Ni41cTAgMzMgMjMuNSA1Ni41dDU2LjUgMjMuNVptMC04MFptMCAzODQuNjJaIi8+PC9zdmc+");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px auto;
  min-width: 30px;
  width: 30px;
  height: 30px;
  background-color: #C9DCEA;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: flex;
}

#chat_messages .recipient_side .speech_bubble {
  padding: 15px;
  margin-bottom: 5px;
  background: white;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: 1px #EBEEF0 solid;
  outline-offset: -1px;
}

#chat_messages .sender_side {
  justify-content: flex-end;
  padding-left: 80px;
  gap: 10px;
  display: flex;
  margin-bottom: 25px;
  width: 100%;
}

#chat_messages .sender_side .speech_bubble {
  color: #FFF;
  padding: 15px;
  margin-bottom: 5px;
  background: linear-gradient(0deg, #FF839A 0%, #FF839A 100%), white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  outline-offset: -1px;
}

#chat_messages .sender_side .text_detail.delete .speech_bubble {
  background: #FFF;
  outline: 1px #EBEEF0 solid;
  color: #BBBBBB;
}

#chat_messages .sender_side .delete .time_blk p {
  margin-left: auto;
}
.mypage .important_notice.comp {
	padding: 40px 100px;
}

#savedPhotos.hidden {
  display: none;
}
/* 全国TOP認証モーダル
========================================================================*/
/* ヒメログキャラの配置 */
.authentication-top {
  position: fixed;
  width: 141px;
  max-width: 100%;
  margin-top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

/* ヒメログキャラのサイズ */
.authentication-top img {
  width: 141px;
  height: auto;
}

/* モーダルのレイアウト */
.authentication-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  width: 327px;
  overflow: auto;
  border: none;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  z-index: 999;
  overscroll-behavior-y: none;
}

/* フォーカスを非表示 */
.authentication-modal:focus,
.authentication_btn button {
  outline: none;
}

/* ヒメログタイトルのレイアウト */
.authenticarion-head {
  text-align: center;
  padding-block: 11px;
}

/* ヒメログタイトルのサイズ */
.authenticarion-head img {
  width: 173px;
}

/* モーダル内文章のレイアウト */
.authentication-body {
  margin-top: 17px;
  text-align: center;
  color: var(--brown);
  margin-inline: auto;
  max-width: 243px;
}

/* 文章間の余白 */
.authentication-body p:not(:first-child) {
  margin-top: 17px;
  font-weight: 600;
}

/* ボタンのレイアウト */
.authentication_btn {
  margin-top: 17px;
  display: flex;
  gap: 10px;
}

/* ボタンのレイアウト */
.authentication_btn button {
  padding-block: 19px;
  border-radius: 8px;
  border-width: 1px;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 14px;
  font-weight: 700;
}

/* ボタンのレイアウト */
.authentication_btn button:hover {
  opacity: 0.8;
}
/* ボタンのレイアウト */
.authentication_btn button.yes {
  background: var(--pink);
  border-color: transparent;
  color: var(--white);
  flex: 1;
}
/* ボタンのレイアウト */
.authentication_btn button.no {
  color: var(--pink);
  background: var(--white);
  border: 1px solid var(--pink);
  flex: 1;
}
/* モーダル時の背景 */
.authentication-modal::backdrop {
  background: #000;
  opacity: 0.8;
}

/* 画面幅849px以下のとき */
@media screen and (max-width: 849px) {
  /** フォントサイズの標準化 */
  html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;/* 自動縮小を止める（iOSの文字縮小対策) */
    text-size-adjust: 100%;
  }
  input, textarea, select, button {
    font: inherit;
    font-size: max(1rem, 12px);
  }
  input, textarea, select {
    font-size: 16px;
  }
  input::placeholder, textarea::placeholder {
    font-size: inherit;
  }
  option{ font-size: inherit; }  /* Android用 */

  .sp_parts {
    display: block;
  }

  .pc_parts {
    display: none;
  }

  /* 影 */
  .shadow.under {
    box-shadow: 0 1px 2px 0px rgba(104, 71, 161, .1);
    position: relative;
    z-index: 10;
  }

  .cont_top .area_ttl {
    margin: 30px auto 30px;
    max-width: 65%;
  }
	.cont_top.sp_header {
		position: fixed;
		z-index: 1500;
		top: 0;
		width: 100%;
		height: 70px;
		background-color: #FFF;
	}
	.cont_top.sp_header .area_ttl {
		margin: 20px auto 20px;
		max-width: 65%;
	}
	.cont_top.sp_header .area_ttl:before,.cont_top.sp_header .area_ttl:after { display: none;}
	.back-btn, .close-btn {
		position: absolute;
		left: 15px;
		top: 50%;
		-webkit-transform: translateY(-50%); /* Safari用 */
		transform: translateY(-50%);
	}
  main {
    background-image: none;
    display: block;
    padding: 0;
    margin-top: 70px;
  }

  #flex_area {
    display: block;
    padding-top: 0;
  }

  #header {}

  #header .wrapper {}

  #head_logo {}

  #head_logo a {
    display: flex;
    align-items: center;
  }

  #head_logo a img {
    max-width: 150px;
  }
	#head_logo a .area {
	}
	.search-wrapper { display: none;}
	#header .keep_btn { display: none;}
	#header .browsing-history { display: none;}
  /* slide_menu */
  .slide_menu .search_menu.prej .ctgr {
    margin: 0 15px 5px;
  }

  .slide_menu .search_menu.prej ul {
    padding-left: 15px;
  }

  .slide_menu .search_menu {
    margin: 0 15px 20px;
  }

  .slide_menu .other {
    padding: 0 15px;
  }

  /*#breadcrumb {
    background-color: #FFF;
  }

  #breadcrumb ol {
    padding: 15px 15px;
    display: flex;
    overflow-x: auto;
    align-items: center;
    margin: auto;
  }*/

  .side_bar {
    display: none;
  }

  #contents {
    border-radius: 0;
    width: 100%;
		max-width: 100%;
    box-shadow: 0 0 0 rgba(154, 210, 212, 0.2);
  }

  /* footer */
  #footer {
    text-align: left;
    height: 349px;/* 規定値 */
    padding: 45px 30px 0;/* 上余白規定値 */
  }

  #footer .wrapper {}

  #footer .logo {
    margin: 0 auto 30px;
  }

  #footer .logo img {
    width: 100px;
  }

  #footer #footer_navi {
    margin-bottom: 20px;
  }

  #footer #footer_navi ul {}

  #footer #footer_navi ul li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 15px;
  }

  #footer #footer_navi ul li:after {
    display: none;
  }

  #footer #footer_navi ul li a {
    font-size: 13px;
    color: var(--white);
  }

  #footer #footer_navi ul li a:hover {
    text-decoration: underline;
  }

  #footer .copyright {
    font-size: 10px;
    color: var(--white);
    margin-bottom: 10px;
  }

  #footer .note {
    font-size: 10px;
    color: var(--white);
    line-height: 150%;
  }

  /* ページネーション */
  .pagination_box {
    padding: 0 10px;
  }

  .pagination_box .btn {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .section_area {
    padding: 30px 0;
  }

  .section_area.bgBlue {
    background-color: rgba(98, 200, 204, 0.15);
  }

  .section_area .ttl {
    display: block;
    text-align: center;
  }

  .section_area .ttl img {}

  #news {
    padding: 15px 40px;
    margin: 0 15px 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px 1px rgba(154, 210, 212, 0.5);
  }

  #news a {
    color: #FFF;
  }

  #news .data {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    margin-bottom: 5px;
  }

  #news .txt {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  #search_job {
    margin-top: 150px;
    padding-top: 80px;
  }

  #search_job:before {
    top: -110px;
    width: 360px;
    height: 200px;
  }

  #search_job .ttl {
    top: -80px;
  }

  #search_job .ttl img {}

  #search_job .area {
    margin: 15px 15px;
    padding: 20px 15px;
  }

  #search_job .area ul {
    margin-bottom: 20px;
  }

  #search_job .area ul li {
    width: calc(50% - 10px);
  }

  #search_job .area ul li a {}

  #search_job .area p:before {
    display: none;
  }

  #search_job .area p.other-area {
    display: none;
  }

  #search_job .area .toggle {
    display: none;
  }

  #search_job .area .label {
    cursor: pointer;
    display: block;
  }

  .area .other-area-cont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #search_job .area .toggle:checked~.other-area-cont {
    max-height: 1000px;
  }

  #search_job .area .toggle:checked~.label .more {
    display: none;
  }

  #search_job .area .toggle:checked~.label .close {
    display: block;
  }

  #search_job .area .label .label_btn {
    margin: 0 auto;
    padding: 1px;
    max-width: 180px;
    background: #FF839A;
    border-radius: 90px;
    box-shadow: 0 0 15px 1px rgba(251, 147, 172, 0.5);
    transition: 0.3s;
    padding: 12px 10px;
    line-height: 1em;
    font-size: 12px;
    text-align: center;
    border-radius: 90px;
    color: #FFF;
    display: block;
  }

  #search_job .area .label .close {
    display: none;
  }

  #search_condition {}

  #search_condition .ttl {}

  #search_condition .list {
    padding: 0 15px;
  }

  #search_condition .list ul li {
    width: 160px;
    background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 30%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
  }

  .section_area .list ul {
    gap: 10px;
  }

  .section_area .list ul li {
    width: 160px;
  }

  .section_area .list ul li a {
    padding: 10px 0;
    line-height: 35px;
		display: flex;
        align-items: center;
        justify-content: center;
  }
	.section_area .list ul li .icon {
    position: initial;
    transform: translate(0%, 0%);
		height: 25px;
		color: var(--brown);
    width: auto;
  }

  .section_area .list ul li a span {
    display: contents;
		width: auto;
		height: auto;
  }

  .section_area .list ul li a span:after {
    display: none;
  }

  #recommend_job,
  .sp_parts .contents__inner {
    background-color: #FFF3F5;
  }
  .sp_parts section.contents__inner {
    padding: 20px;
    margin: 0;
    background-color: #FFF3F5;
    text-align: center;
  }

  #recommend_job .ttl,
  .sp_parts .ttl {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    display: table;
    margin: 0 auto 25px;
    color: #FF839A;
  }

  #recommend_job .ttl:before,
  #recommend_job .ttl:after,
  .sp_parts .ttl::before,
  .sp_parts .ttl::after {
    content: '';
    position: absolute;
    top: 2px;
    width: 28px;
    height: 24px;
    background-image: url("/img/front/icon/icon12.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px auto;
  }

  #recommend_job .ttl:before,
  .sp_parts .ttl:before {
    left: -33px;
  }

  #recommend_job .ttl:after,
  .sp_parts .ttl::after {
    right: -33px;
    transform: scale(-1, 1);
  }

  #recommend_job .recoSlide {
    overflow: hidden;
    margin-bottom: 40px;
  }

/*
  .more_btn {
    margin: 0 auto;
    padding: 1px;
    max-width: 240px;
    background: #FF839A;
    border-radius: 90px;
    position: relative;
    box-shadow: 0 0 15px 1px rgba(104, 71, 161, .2);
    transition: 0.3s;
  }

  .more_btn a {}

  .more_btn.blue {
    background-color: var(--blue);
  }

  .more_btn:hover {
    opacity: 0.8;
  }*/

  #banner_ad {}

  #banner_ad.swiper {
    padding: 40px 20px;
    padding-bottom: 30px;
  }

  #banner_ad.swiper .swiper-slide {
    text-align: center;
  }

  .pickup_flex {
    display: block;
  }

  .pickup_cast {
    width: 100%;
  }

  #pay_slip.pickup_cast {}

  .pickup_cast .ttl {}

  .pickup_cast .cast_prof {}

  .pickup_cast .cast_prof .photo {}

  .pickup_cast .cast_prof .photo img {}

  .pickup_cast .cast_prof .name {
    font-size: 13px;
  }

  .pickup_cast .cast_prof .name span {
    font-size: 16px;
    padding-right: 10px;
  }

  .pickup_cast .cast_prof .area {
    font-size: 12px;
    color: #D9D9D9;
  }

  .pickup_cast .cast_prof .shop {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .pickup_cast .cast_prof .data {
    display: flex;
    margin-bottom: 20px;
    border-top: solid 1px #EBEEF0;
  }

  .pickup_cast .cast_prof .data dl {
    border-bottom: solid 1px #EBEEF0;
    width: 50%;
    padding: 15px;
  }

  .pickup_cast .cast_prof .data dl dt {
    margin: 0 auto 10px auto;
    padding: 10px;
    background: var(--blue);
    color: #FFF;
    border-radius: 90px;
    position: relative;
  }

  .pickup_cast .cast_prof .data dl dd {
    font-size: 14px;
    font-weight: bold;
  }

  .pickup_cast .cast_prof .qa {
    margin-bottom: 30px;
  }

  .pickup_cast .cast_prof .qa dt,
  .pickup_cast .cast_prof .qa dd {
    display: flex;
    /*align-items: baseline;*/
    text-align: left;
    margin-bottom: 10px;
    line-height: 150%;
  }

  .pickup_cast .cast_prof .qa dt {}

  .pickup_cast .cast_prof .qa dd {}

  .pickup_cast .cast_prof .qa dt span,
  .pickup_cast .cast_prof .qa dd span {
    background: var(--blue);
    border-radius: 90px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    margin-right: 15px;
    line-height: 30px;
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .pickup_cast .cast_prof .qa dd span {
    background: var(--pink);
  }

  .pickup_cast .cast_prof .qa {
    margin-bottom: 30px;
  }

  #pay_slip {}

  #pay_slip.pickup_cast .cast_prof .data {
    display: block;
  }

  #qanda {
    background-color: #FFF;
  }

  #qanda .ttl {}

  #qanda .qa_list {
    margin: 0 15px;
    gap: 10px;
  }

  #qanda .qa_list .block {
    width: 100%;
    padding: 10px 15px;
  }

  #qanda .qa_list .block .status {}

  #qanda .qa_list .block.review .status {
    background-color: #8A6C73;
  }

  #qanda .qa_list .block.remand .status {
    background-color: #FF839A;
  }

  #qanda .qa_list .block .status {}

  #qanda .qa_list .block.remand .status {
    background-color: #FF839A;
  }

  #qanda .qa_list .block .ctgr {
    margin-bottom: 18px;
  }

  #qanda .qa_list .block .ctgr li {
    border-radius: 90px;
    background-color: #FFF;
    color: var(--pink);
    font-size: 12px;
    padding: 5px 10px;
    display: inline-block;
  }

  #qanda .qa_list .block .ctgr li:before {
    content: '#';
    margin-right: 3px;
  }

  #qanda .qa_list .block .question {
    position: relative;
    margin-bottom: 15px;
    min-height: calc(1em * 2 + 1em);
  }
  #qanda .qa_list .block .question:after {
    content: "Q";
    font-family: "Inter", sans-serif;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    background-color: var(--blue);
    text-align: center;
    position: absolute;
    left: 0;
    top: -3px;
  }

  #qanda .qa_list .block .question p {
    padding-left: 40px;
    font-size: 14px;
    font-weight: bold;
    line-height: 150%;
  }

  #qanda .qa_list .block .question p span {
    display: block;
    font-size: 13px;
    font-weight: normal;
  }

  #qanda .qa_list .block .count {
    display: flex;
    align-items: center;
    margin: 10px 0 0;
  }

  #qanda .qa_list .block .date {
    font-size: 12px;
    margin-top: 20px;
  }

  /* SPエリアトップ>おすすめ求人>レイアウト崩れのため追加 */
  #hot_job .job_list .job_blk {
    max-width: 100%;
  }

  #hot_job .job_list .job_blk .banner {
    width: 100%;
  }

  #hot_job .job_list .job_blk .detail {
    width: 100%;
  }

  .job_list .job_blk {
    background-color: #FFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 15px 15px;
    overflow: hidden;
    max-width: 100%;
  }

  .job_list .job_blk a {
    display: block;
    padding: 0px;
  }

  .job_list .job_blk .banner {
    min-width: inherit;
    width: 100%;
  }

  .job_list .job_blk .banner img {
    width: 100%;
    border-radius: 0px;
    height: auto;
  }

  .job_list .job_blk .detail {
    padding: 15px;
  }

  .job_list .job_blk .detail h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 150%;
    color: var(--pink);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .job_list .job_blk .detail .wage {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* 20260202 表示内容修正のためコメントアウト
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 3em;*/
  }

  .job_list .job_blk .detail p .area {
    font-size: 12px;
    color: #D9D9D9;
    display: block;
  }

  .job_list .job_blk .detail p .shop {
    font-size: 13px;
  }

  #cast_interview {
    background-color: var(--white);
  }

  #cast_interview .ttl {}

  #cast_interview .int_list {
    margin: 0 15px 20px !important;
    gap: 10px;
  }

  #cast_interview .int_list .blk {
    width: 100%;
    margin: 0;
  }

  #cast_interview .int_list .blk .cast {}

  #cast_interview .int_list .blk .cast .photo {}

  #cast_interview .int_list .blk .cast .photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 180px;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    object-fit: cover;
  }

  #cast_interview .int_list .blk .cast .prof {}

  #cast_interview .int_list .blk .cast .prof .name {
    font-size: 14px;
    margin-bottom: 4px;
  }

  #cast_interview .int_list .blk .cast .prof .area,
  #everyone_pay .blk .cast .prof .area {
    color: #BBBBBB;
    font-size: 12px;
  }

  #cast_interview .int_list .blk .cast .prof .shop,
  #everyone_pay .blk .cast .prof .shop {
    font-size: 13px;
  }

  #cast_interview .int_list .blk .cast .data {
    clear: both;
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
  }

  #cast_interview .int_list .blk .cast .data p {}

  #cast_interview .int_list .blk .cast .data p span {}

  #cast_interview .int_list .blk .cast .qa {}

  /*#cast_interview .int_list .blk .cast .qa dt,
  #cast_interview .int_list .blk .cast .qa dd {
    display: flex;
    align-items: baseline;
    text-align: left;
    line-height: 150%;
  }*/

  #cast_interview .int_list .blk .cast .qa dt {
    margin-bottom: 10px;
  }

  #cast_interview .int_list .blk .cast .qa dd {}

  #cast_interview .int_list .blk .cast .qa dt span,
  #cast_interview .int_list .blk .cast .qa dd span {}

  #cast_interview .int_list .blk .cast .qa dd span {
    background: var(--pink);
  }

  #cast_interview .blk .shop_info {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  #cast_interview .blk:last-child .shop_info {
    margin-bottom: 0px;
  }

  #cast_interview .blk .shop_info .area {
    font-size: 12px;
    color: #BEBEBE;
    display: block;
  }

  #cast_interview .blk .shop_info .shop {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  #new_job {
    padding: 30px 0;
    background-color: rgba(98, 200, 204, 0.15);
  }

  #new_job .ttl {
    text-align: center;
  }

  #new_job .job_list {}

  #new_job .job_list ul {
    padding-bottom: 10px;
    overflow-x: auto;
    padding: 0 15px;
    display: flex;
    gap: 10px;
  }

  #new_job .job_list ul li {
    background-color: #FFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 300px;
  }

  #new_job .job_list ul li a {}

  #new_job .job_list ul li .banner {}

  #new_job .job_list ul li .detail {
    padding: 15px;
  }

  #new_job .job_list ul li .detail h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 150%;
    color: var(--blue);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  #new_job .job_list ul li .detail p {}

  #new_job .job_list ul li .detail p .area {
    font-size: 12px;
    color: #D9D9D9;
    display: block;
  }

  #new_job .job_list ul li .detail p .shop {
    font-size: 13px;
  }

  #everyone_pay {
    background-color: #FFF;
  }

  #everyone_pay .pay_list {
    margin: 0 !important;
    gap: 10px;
  }

  #everyone_pay .blk {
    width: 100%;
    margin: 0 15px 0;
  }

  #everyone_pay .blk:last-child {}

  #everyone_pay .blk .cast {
    background-color: rgba(255, 131, 154, 0.05);
    border: solid 1px rgba(255, 131, 154, 0.2);
    padding: 15px 15px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
  }

  #everyone_pay .blk .cast .photo {}

  #everyone_pay .blk .cast .photo img {}

  #everyone_pay .blk .cast .prof {}

  #everyone_pay .blk .cast .prof .name {}

  #everyone_pay .blk .cast .prof .age {
    font-size: 12px;
  }

  #everyone_pay .blk .cast .prof .age span {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22%23FF839A%22%20viewBox%3D%220%20-960%20960%20960%22%3E%3Cpath%20d%3D%22M160-120q-33%200-56.5-23.5T80-200v-440q0-33%2023.5-56.5T160-720h160v-80q0-33%2023.5-56.5T400-880h160q33%200%2056.5%2023.5T640-800v80h160q33%200%2056.5%2023.5T880-640v440q0%2033-23.5%2056.5T800-120H160Zm0-80h640v-440H160v440Zm240-520h160v-80H400v80ZM160-200v-440%20440Z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px auto;
    margin-left: 15px;
    padding-left: 20px;
  }

  #everyone_pay .blk .cast .items {
    clear: both;
    width: 100%;
  }

  #everyone_pay .blk .cast .items th,
  #everyone_pay .blk .cast .items td {
    padding: 15px 5px;
    font-size: 14px;
    border-top: solid 1px rgba(255, 131, 154, 0.2);
  }

  #everyone_pay .blk .cast .items th {
    font-weight: bold;
    text-align: left;
  }

  #everyone_pay .blk .cast .items td {
    text-align: right;
  }

  #everyone_pay .blk .cast .items td span {
    background-color: var(--bg_pink);
    border-radius: 90px;
    padding: 5px 10px;
    font-size: 12px;
  }

  #everyone_pay .blk .cast .items tr .price {
    color: var(--pink);
    font-size: 18px;
    font-weight: bold;
  }

  #everyone_pay .blk .shop_info {
    padding: 0 10px;
		margin-bottom: 10px;
  }

  #everyone_pay .blk:last-child .shop_info {
    margin-bottom: 0px;
  }

  #everyone_pay .blk .shop_info .area {
    font-size: 12px;
    color: #BEBEBE;
    display: block;
  }

  #everyone_pay .blk .shop_info .shop {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  #ranking {
    padding: 30px 0;
    background-color: rgba(98, 200, 204, 0.15);
  }

  #ranking .ttl {
    text-align: center;
  }

  #ranking .job_list {
    margin-bottom: 30px;
  }

  #ranking .job_list ul {
    overflow-x: auto;
    display: flex;
    gap: 10px;
    padding: 10px 15px 0;
  }

  #ranking .job_list ul li {
    position: relative;
    background-color: #FFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-width: 300px;
  }

  #ranking .job_list ul li:before {}

  #ranking .job_list ul li:after {}

  #ranking .job_list ul li a {}

  #ranking .job_list ul li .banner {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }

  #ranking .job_list ul li .detail {
    padding: 15px;
  }

  #ranking .job_list ul li .detail p {}

  #ranking .job_list ul li .detail p .area {
    font-size: 12px;
    color: #D9D9D9;
    display: block;
  }

  #ranking .job_list ul li .detail p .shop {
    font-size: 13px;
  }

  #jobs_area {}

  #jobs_area .job_blk {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  #jobs_area .job_blk h2 {}

  #jobs_area .job_blk h2:before {}

  #jobs_area .job_blk.blk2 h2 {
    background-color: var(--pink);
    box-shadow: 0 0 15px 1px rgba(251, 147, 172, 0.5);
  }

  #jobs_area .job_blk.blk2 h2:before {
    background: var(--pink);
  }

  #jobs_area .job_blk h2 a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
  }

  #jobs_area .job_blk .inner {
    display: block;
  }

  #jobs_area .job_blk .job {
    width: 100%;
  }

  #jobs_area .job_blk .job a {
    display: block;
  }

  #jobs_area .job_blk .job .banner {}

  #jobs_area .job_blk .job .detail {
    padding: 15px;
  }

  #jobs_area .job_blk .job .detail h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 150%;
    color: var(--blue);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  #jobs_area .job_blk .job .detail p {}

  #jobs_area .job_blk .job .detail p .area {
    font-size: 12px;
    color: #D9D9D9;
    display: block;
  }

  #jobs_area .job_blk .job .detail p .shop {
    font-size: 13px;
  }

  #about {
    position: relative;
    background: #eff9fa;
    padding: 70px 0 10px;
  }

  #about:before {}

  #about .ttl {}

  #about .image {
    /* height: 115px; */
    margin: 10px 15px 30px;
  }

  #about .image img {
    width: 100%;
  }

  #about .about_blk {
    margin-bottom: 30px;
    padding: 0 15px;
  }

  #about .about_blk h3 {
    line-height: 150%;
    font-size: 16px;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 10px;
  }

  #about .about_blk p {
    line-height: 150%;
    font-size: 13px;
  }

  #sub_menu {
		overflow: hidden;
		padding: 20px 15px 0;
    background-color: #FFF;
  }
	#sub_menu .search { margin-bottom: 20px;}
  #sub_menu .search ul {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
  }


  #sub_menu .search ul li {
    background-color: var(--pink);
    width: 100%;
    border-radius: 8px;
  }

  #sub_menu .search ul li a {
    display: block;
    color: #FFF;
    font-size: 14px;
    line-height: 130%;
    padding: 12px 10px 12px 45px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik00ODAtMTM3Ljc3cS05LjM4IDAtMTguNzctMy4wOC05LjM4LTMuMDctMTcuMzEtMTAtNDIuNjktMzkuMjMtODYuNTQtODcuMzgtNDMuODQtNDguMTUtNzkuNjUtOTkuNzMtMzUuODEtNTEuNTgtNTguNjktMTA1LjMxLTIyLjg5LTUzLjczLTIyLjg5LTEwNC44OCAwLTEyNi45MyA4Mi42Ni0yMDkuMzlRMzYxLjQ2LTg0MCA0ODAtODQwcTExOC41NCAwIDIwMS4xOSA4Mi40NiA4Mi42NiA4Mi40NiA4Mi42NiAyMDkuMzkgMCA1MS4xNS0yMi44OSAxMDQuNS0yMi44OCA1My4zNC01OC4zMSAxMDUuMy0zNS40MiA1MS45Ny03OS4yNyA5OS43My00My44NCA0Ny43Ny04Ni41MyA4Ny03LjY1IDYuOTMtMTcuMzggMTAuMzktOS43NCAzLjQ2LTE5LjQ3IDMuNDZabS4xNC0zNTNxMjYuNzEgMCA0NS41OS0xOS4wMiAxOC44OS0xOS4wMiAxOC44OS00NS43MyAwLTI2LjcxLTE5LjAzLTQ1LjZRNTA2LjU3LTYyMCA0NzkuODYtNjIwcS0yNi43MSAwLTQ1LjU5IDE5LjAyLTE4Ljg5IDE5LjAyLTE4Ljg5IDQ1LjczIDAgMjYuNzEgMTkuMDMgNDUuNiAxOS4wMiAxOC44OCA0NS43MyAxOC44OFoiLz48L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 35px auto;
  }

  #sub_menu .search ul li.part a {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik0zNjAtMjUwLjc3aDI0MHE4LjU0IDAgMTQuMjctNS43M3Q1LjczLTE0LjI3cTAtOC41NC01LjczLTE0LjI3VDYwMC0yOTAuNzdIMzYwcS04LjU0IDAtMTQuMjcgNS43M1QzNDAtMjcwLjc3cTAgOC41NCA1LjczIDE0LjI3dDE0LjI3IDUuNzNabTAtMTA0LjYxaDI0MHE4LjU0IDAgMTQuMjctNS43NCA1LjczLTUuNzMgNS43My0xNC4yNiAwLTguNTQtNS43My0xNC4yN1Q2MDAtMzk1LjM4SDM2MHEtOC41NCAwLTE0LjI3IDUuNzNUMzQwLTM3NS4zOHEwIDguNTMgNS43MyAxNC4yNiA1LjczIDUuNzQgMTQuMjcgNS43NFptMTIwLTMwOS41NHEtMTUuODUtMTkuNjItMzAuMzUtMzEuOTYtMTQuNS0xMi4zNS00MS42NS0xMi4zNS0yOC4zMSAwLTQ4LjE1IDE5Ljg1UTM0MC02NjkuNTQgMzQwLTY0MS4yM3EwIDQ5LjE1IDQyLjg1IDg2LjY1IDQyLjg0IDM3LjUgNzUuNTMgNjcuMiA4LjcgOC42OSAyMS42MiA4LjY5IDEyLjkyIDAgMjEuNjItOC42OSAzMi42OS0yOC45MyA3NS41My02Ni44MVE2MjAtNTkyLjA4IDYyMC02NDEuMjNxMC0yOC4zMS0xOS44NS00OC4xNS0xOS44NC0xOS44NS00OC4xNS0xOS44NS0yNy4xNSAwLTQxLjY1IDEyLjM1LTE0LjUgMTIuMzQtMzAuMzUgMzEuOTZaTTY5NS4zOC0xMjBIMjY0LjYycS0yNy42MiAwLTQ2LjEyLTE4LjVRMjAwLTE1NyAyMDAtMTg0LjYydi01OTAuNzZxMC0yNy42MiAxOC41LTQ2LjEyUTIzNy04NDAgMjY0LjYyLTg0MGg0MzAuNzZxMjcuNjIgMCA0Ni4xMiAxOC41UTc2MC04MDMgNzYwLTc3NS4zOHY1OTAuNzZxMCAyNy42Mi0xOC41IDQ2LjEyUTcyMy0xMjAgNjk1LjM4LTEyMFoiLz48L3N2Zz4=");
  }
	#sub_menu .search > ul > li > a span { display: inline-block;}
	/* こだわり条件から探す */
	#refineModal {
    background-color: #FFF;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 16px 16px 0 0;
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 9950;
	}
  #refineModal.show {
    transform: translateY(0);
  }
	#refineModal .close-refine {
		position: absolute;
    top: -40px;
    right: 0px;
	}
	#refineModal .close-refine img {filter: var(--img_white);}
	#refineModal.refine-detail .refine-ttl {
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 25px;
    color: var(--brown);
	}
	#refineModal.refine-detail .refine-search-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	#refineModal.refine-detail .refine-search-list li {
		width: 100%;
		padding: 3px;
		border-radius: 50px;
		background: linear-gradient(90deg, #ADEFED 0%, #ACDAF3 30%, #CDABE9 54%, #FFC7BA 74%, #FEEFDB 100%);
	}
	#refineModal.refine-detail .refine-search-list li a {
    width: 100%;
    padding: 13px;
    line-height: 1em;
    border-radius: 50px;
    background-color: #fff;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
	}
	#refineModal.refine-detail .search-list li a span {
		height: 25px;
	}

	#sub_menu .other {
		margin-bottom: 20px;
	}
  #sub_menu .other ul {
    display: block;
  }

  #sub_menu .other ul li {
    width: 100%;
    padding: 3px;
    margin-bottom: 10px;
  }
	#sub_menu .other ul li:last-child { margin-bottom: 0;}

  #sub_menu .other ul li a {
    display: block;
    width: 100%;
    padding: 13px;
    line-height: 25px;
    border-radius: 50px;
    background-color: #fff;
    font-weight: bold;
    text-align: center;
  }

  #sub_menu .other ul li:hover a {}
	#search_area { background-color: #EFF9FA;}
  #search_area details {}

  #search_area summary {
    padding: 20px 15px;
    background: #775960;
    text-align: left;
    cursor: pointer;
    list-style: none;
    position: relative;
  }

  #search_area details summary::-webkit-details-marker {
    display: none;
  }

  #search_area summary:before {
    content: '';
    position: absolute;
    width: 13px;
    height: 2px;
    top: 50%;
    right: 20px;
    background: #FFF;
    transform: translateY(-50%);
  }

  #search_area summary:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 13px;
    height: 2px;
    background: #FFF;
    transition: .4s;
    transform: translateY(-50%) rotate(90deg);
  }

  #search_area .pref-ttl:before,
  #search_area .pref-ttl:after {
    background: rgba(138, 108, 115, 1);
  }

  /* アコーディオン表示の際に回転する */
  #search_area details[open] .ttl:after {
    transform: translateY(-50%) rotate(180deg);
  }

  #search_area .area-accordion[open] .area-ttl:after {
    transform: translateY(-50%) rotate(180deg);
  }

  #search_area .pref-accordion[open] .pref-ttl:after {
    transform: translateY(-50%) rotate(180deg);
  }

	#search_area .pref-accordion .city-list {
		padding: 15px;
		justify-content: flex-start;
	}
	#search_area .pref-accordion .city-list a {
		background-color: #FFFCF8;
	}

  #search_area .area_blk {
    padding: 20px 15px;
    background: #eff9fa;
  }

  #search_area .area_blk ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  #search_area .area_blk ul li {
    background-color: #FFFCF8;
    border: solid 1px #C9DCEA;
    border-radius: 8px;
  }

  #search_area .area_blk ul li a {
    padding: 10px 15px;
    display: block;
    font-size: 13px;
    font-weight: bold;
  }

  /* ---------- 検索一覧 ---------- */
  #pref-change {
    padding: 0;
  }
  #popup-search .open-popup,
  #pref-change .open-popup,
  #refineModal .open-refine {
    box-shadow: 0 0 15px 1px rgba(104, 71, 161, .2);
    border-radius: 50px 0 0 50px;
    width: 70px;
    max-width: 100%;
    left: auto;
    right: 0;
    transform: translate(0%, 0%);
    bottom: 20px;
    height: 70px;
    background-color: var(--pink);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0IDI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xMSAxOGMxLjkgMCAzLjYtLjcgNC45LTJzMi4xLTMgMi4xLTVjMC0xLjktLjctMy42LTIuMS01cy0zLTItNC45LTJjLTEuOSAwLTMuNi43LTUgMnMtMiAzLTIgNWMwIDEuOS43IDMuNiAyIDVzMy4xIDIgNSAyem0wIDEuNWMtMS4yIDAtMi4zLS4yLTMuMy0uNy0xLS40LTEuOS0xLjEtMi43LTEuOHMtMS40LTEuNy0xLjgtMi43Yy0uNC0xLS43LTIuMS0uNy0zLjMgMC0xLjIuMi0yLjMuNy0zLjNTNC4yIDUuOCA1IDVjLjgtLjggMS43LTEuNCAyLjctMS44IDEtLjQgMi4xLS43IDMuMy0uNyAxLjIgMCAyLjMuMiAzLjMuN3MxLjkgMSAyLjcgMS44Yy44LjggMS40IDEuNyAxLjggMi43LjQgMSAuNyAyLjEuNyAzLjMgMCAxLS4yIDItLjUgMi45LS40LjktLjggMS44LTEuNSAyLjVsMy41IDMuNWMuMS4xLjIuMy4yLjVzLS4xLjQtLjIuNWMtLjEuMS0uMy4yLS41LjJzLS40LS4xLS41LS4ybC0zLjUtMy41Yy0uOC42LTEuNiAxLjEtMi41IDEuNS0xIC40LTIgLjYtMyAuNnoiIHN0eWxlPSJmaWxsOiNmZmYiLz48L3N2Zz4=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
  }
  #pref-change .pref-detail,
  #popup-search .popup-detail,
  #refineModal .refine-detail {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    max-width: 100%;
    padding: 20px 15px;
  }
  #pref-change .pref-detail .popup-ttl,
	#popup-search .popup-detail .popup-ttl,
  #refineModal .refine-detail .refine-ttl {
		padding-bottom: 0;
		border-bottom: none;
	}
  #pref-change .close-popup,
  #popup-search .close-popup,
  #refineModal .close-refine {
		top: -40px;
		right: 0px;
  }

  #pref-change .pref-detail.show,
  #popup-search .popup-detail.show,
  #refineModal .refine-detail.show {
    transform: translateY(0);
  }
  #pref-change .pref-detail dl,
  #popup-search .popup-detail dl {

  }
  #pref-change .pref-detail.area ul {
    justify-content: center;
  }


  #popup-search .popup-detail ul.select-list {
    margin: 0;
  }

  #popup-search .popup-detail .select_box ul li {
    width: calc(50% - 10px);
  }

  #popup-search .popup-detail .actions-btn {
    padding-top: 0;
    margin-top: auto;
  }

  #popup-search .popup-detail .actions-btn .reset {
    min-width: 90px;
  }

  .promotion {
		margin: 0 0 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
  }

  .promotion a {
		width: auto;
    border-radius: 8px;
    display: block;
    background-color: #6EA1D6;
		background-position: right 5% center;
    padding: 23px 120px 23px 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
		margin: 0 15px 30px;
  }

  .promotion h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .promotion .txt {
    font-size: 12px;
    line-height: 130%;
  }

  .promotion.interview a {
    background-position: right 30px center;
    padding: 25px 100px 25px 15px;
		width: auto;
  }

  .promotion.interview .ex_box {
    margin: 0;
    border: none;
		padding: 0 15px 30px;
  }
	.promotion.interview .ex_box .btn a {
		width: auto;
		margin: 0;
	}
  #job_list {
    background-color: var(--bg_blue);
    padding: 20px 15px;
    border-top: solid 1px rgba(235, 238, 240, 1);
  }
	.mypage .job_ttl {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 5px;
    border-left: solid 4px #FF839A;
  }
	.mypage .job_ttl span {
    float: right;
  }
	.mypage .job_ttl span a {
    color: #62C8CC;
    font-size: 12px;
  }

  #job_list .match ul {
    display: flex;
  }

  #job_list .match ul li {
    margin-right: 3px;
  }

  #job_list .match p {
    margin: 0 0 0 auto;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: bold;
  }

  #job_list .match p span {
    font-size: 16px;
    padding-left: 3px;
  }
	.mypage #qanda {
		padding-bottom: 0;
		background-color: var(--bg_blue);
		padding: 0;
    margin-block: 20px;
	}
	.mypage #qanda .job_ttl,
	.mypage #recommend_job .job_ttl,
	.mypage #column .job_ttl {
		margin: 0 15px 15px;
    text-align: left;/* mypageコラムの左寄せ */
	}
	.mypage #column .column_list { padding-bottom: 10px;}
	.mypage #qanda .qa_list {
		margin: 0;
		background-color: #FFF;
		padding: 20px 15px 30px;
	}
	.mypage #qa.detail #qanda .qa_list { padding: 0;}
	.mypage #useful_cont {
		background-color: var(--bg_blue);
		padding: 0 0 30px;
	}
	.mypage #recommend_job,
  .mypage .sp_parts .contents__inner {
		background-color: var(--bg_blue);
		padding: 30px 0 10px;
	}
	.mypage #column {
		background-color: var(--bg_blue);
		padding: 20px 0;
	}
	.mypage #column .column_list .column_box {
		margin: 0;
		min-width: 300px;
	}
  .mypage #column .column_list .content-card {
		margin-bottom: 10px !important;
	}
	.mypage #column .column_list .content-card figure .detail {
		padding: 0;
	}

  .page_navi_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .page_navi_top .result-text {
    width: 50%;
  }

  .page_navi_top .result-text .num {
    font-size: 18px;
    font-weight: bold;
    color: var(--pink);
    padding-right: 5px;
  }

  .page_navi_top p {
    font-family: "Inter", sans-serif;
    width: 50%;
    text-align: right;
  }

  #job_list .ctgr {
    margin-bottom: 30px;
  }

  #job_list .ctgr ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 5px;
  }

  #job_list .ctgr ul li {
    width: 100%;
    text-align: center;
  }

  #job_list .ctgr ul li a {
    display: block;
    border: solid 3px #C9DCEA;
    color: #C9DCEA;
    background-color: #FFF;
    border-radius: 90px;
    font-weight: bold;
    line-height: 35px;
  }

  #job_list .ctgr ul li a:hover,
  #job_list .ctgr ul li a.select {
    border: solid 3px #62C8CC;
    color: #62C8CC;
  }

  #job_list .job_blk {
    border: none;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px 0px rgba(104, 71, 161, .1);
  }

  #job_list .job_blk.history_blk {
    padding: 15px;
}

  #job_list .job_blk:before {
    border-top: 5px solid;
  }

  #job_list .job_blk .shop {
    padding: 0 15px 15px;
    border-bottom: solid 1px #EBEEF0;
  }

  #job_list .job_blk .shop .area {
    font-size: 12px;
    color: #BEBEBE;
    display: block;
  }

  #job_list .job_blk .shop .shop_name {
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  #job_list .job_blk .shop .shop_name a {
    font-size: 13px;
  }

  #job_list .job_blk .image {
    position: relative;
    margin: 0;
    border-radius: 0;
  }

  #job_list .job_blk .image a {
    display: block;
    height: 100%;
  }

  #job_list.ranking .job_blk .image a:before {
    content: "";
    top: 0px;
    left: 0px;
    border-bottom: 60px solid transparent;
    border-left: 60px solid #BBB;
    position: absolute;
    z-index: 100;
  }

  #job_list.ranking .job_blk.rank1 .image a:before {
    border-left: 4.5em solid #FFCA75;
  }

  #job_list.ranking .job_blk.rank2 .image a:before {
    border-left: 4.5em solid #FF839A;
  }

  #job_list.ranking .job_blk.rank3 .image a:before {
    border-left: 4.5em solid #62C8CC;
  }

  #job_list.ranking .job_blk .image a:after {
    counter-increment: number 1;
    content: counter(number) " ";
    color: #fff;
    font-size: 16px;
    top: 7px;
    left: 15px;
    position: absolute;
    z-index: 101;
  }

  #job_list .job_blk .image img {
    width: 100%;
    height: auto;
  }

  #job_list .job_blk .btn.app {
    margin: 10px 10px 0;
  }

  #job_list .job_blk .image a p {
    background-color: rgba(68, 68, 68, 0.9);
    text-align: center;
    color: #FFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 40px;
    font-size: 13px;
    font-weight: bold;
  }

  #job_list .job_blk .image a p span {}

  #job_list .job_blk .pr {
    padding: 15px 15px 0;
  }

  #mypage_wrap #job_list .job_blk .pr.recent-ttl {
    height: calc(3em + 15px);
  }

  #job_list .job_blk.free_plan .pr {
    padding: 15px 15px 0;
  }

  #job_list .job_blk .special {
    background-color: var(--pink);
    color: #FFF;
    font-weight: bold;
    text-align: center;
    padding: 10px 10px 14px;
    margin: 0 15px;
    border-radius: 10px;
    position: relative;
  }

  #job_list .job_blk .special:before {
    content: '';
    z-index: 10;
    position: absolute;
    top: -7px;
    left: 10px;
    border: solid 2px #FF839A;
    width: 40px;
    height: 40px;
    background:
      url("/img/front/icon/icon19.svg"), linear-gradient(to bottom, #FFF, #FFECF0);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
  }

  #job_list .job_blk .special .ttl {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--white);
  }

  #job_list .job_blk .special p {
    font-size: 14px;
  }

  #job_list .job_blk .special p span {
    font-size: 20px;
    padding: 0 3px;
  }

  #job_list .job_blk .data {
    margin: 0 15px;
    border-top: dotted 1px #EBEEF0;
  }

  #job_list .job_blk .data .row {
    display: block;
  }

  #job_list .job_blk .data dt {
    font-weight: bold;
    font-size: 14px;
    padding: 0 0 5px;
    width: auto;
    float: none;
    text-align: left;
  }

  #job_list .job_blk .data dt:before {
    display: none;
  }

  #job_list .job_blk .data dd {}

  #mypage_wrap #job_list .job_blk .data dd.daily-wage {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
    height: 3em;
  }

  #job_list .job_blk .center {
    font-size: 12px;
    text-align: center;
    padding: 15px 10px 0;
  }

  #job_list .job_blk .welcome_point {
    padding: 0 15px;
  }

  #job_list .job_blk .welcome_point .speech-bubble {
    font-size: 15px;
    line-height: 40px;
  }

  #job_list .job_blk .welcome_point .speech-bubble:before {
    bottom: -5px;
    width: 15px;
    height: 15px;
  }

  #job_list .job_blk .welcome_point .body-type {
    gap: 20px;
  }

  #job_list.migrantwork .job_blk .welcome_point ul.stretch {
    gap: 5px;
  }

  #job_list .job_blk .welcome_point ul.stretch li {
    padding: 0 5px;
  }

  #job_list .job_blk .salary_blk {
    margin: 0 15px 20px;
  }

  #job_list .job_blk .highlight {
    margin: 0 15px 20px;
  }

  #job_list .job_blk .highlight ul {
    grid-template-columns: auto;
  }

  #job_list .job_blk .highlight.payment .list {
    display: block;
  }

  #job_list .job_blk .highlight.payment .list .blk:first-child {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px rgba(98, 200, 204, 1);
  }

  #job_list .job_blk .motivation {
    margin: 0 15px 20px;
  }

  #job_list .job_blk .cast_prof {
    padding-bottom: 0px;
  }

  #job_list .job_blk .cast_prof .cast_list .blk {
    display: block;
    margin: 0 15px;
  }

  #job_list .job_blk .cast_prof .cast_list .blk .info {
    margin-bottom: 10px;
  }

  #job_list .job_blk .cast_prof .cast_list .blk .data {
    clear: both;
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
    width: auto;
    margin: 0;
  }

  #job_list .job_blk .cast_prof .cast_list .blk .data p:first-child {
    margin-bottom: 0px;
  }

  #job_list.beginner .cast_prof .cast_list .blk .items {
    display: block;
    border-top: none;
  }

  #job_list.beginner .cast_prof .cast_list .blk .items li {
    border-top: solid 1px rgba(255, 131, 154, 0.2);
    display: flex;
    justify-content: space-between;
  }

  #job_list.beginner .cast_prof .cast_list .blk .items li p {
    margin-right: auto;
  }

  #job_list.beginner .cast_prof .cast_list .blk .items li span {
    margin-left: 0;
  }

  #job_list .job_blk .special_gift {
    margin: 0 15px 20px;
    background-color: rgba(255, 202, 117, 0.05);
    text-align: center;
    border: solid 1px #FFCA75;
    border-radius: 10px;
    overflow: hidden;
  }

  #job_list .job_blk .special_gift .cap {
    background-color: #FFCA75;
    line-height: 35px;
    color: #FFF;
    font-weight: bold;
  }

  #job_list .job_blk .special_gift p {
    padding: 15px 15px;
    font-weight: bold;
    color: var(--pink);
    line-height: 150%;
  }

  #job_list .job_blk .action_btn {
    margin: 15px 15px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
  }

  #job_list .job_blk .action_btn > * {
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
  }

  #job_list .job_blk .action_btn .btn {
    max-width: 100%;
    width: 100%;
    height: 50px;
    box-shadow: 0px 0px 0px 0px;
  }

  #job_list .job_blk .action_btn .btn a {
    line-height: 50px;
    padding: 0 10px;
    box-shadow: 0px 0px 0px 0px;
  }

  #job_list .job_blk .action_btn .btn.more_btn {
    border-radius: 8px;
  }

  #job_list .job_blk .action_btn .btn.more_btn a:hover {}

  #job_list .job_blk .action_btn .btn.keep a,
  #job_list .job_blk .action_btn .btn.guest-keep a {
    display: block;
    border: solid 4px #C9DCEA;
    text-align: center;
    padding: 0 10px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 43px;
    height: 100%;
    transition: 0.1s;
  }

  #job_list .job_blk .action_btn .btn.keep span,
  #job_list .job_blk .action_btn .btn.guest-keep span {
    transition: 0.3s;
    background-image: url("/img/front/icon/icon20.svg");
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 20px;
  }

  /*#job_list .job_blk .action_btn .btn.keep a:hover {
    border: solid 4px #FFCA75;
  }

  #job_list .job_blk .action_btn .btn.keep a:hover span {
    color: #FFCA75;
  }*/

  #job_list .job_blk .limit {
    text-align: center;
    color: #8E8E8E;
    font-weight: bold;
		padding: 20px 10px 10px;
  }
  #job_list .job_blk .app_data {
    padding: 15px 15px 5px;
  }

  #job_list .job_blk .reason {
    padding: 10px 15px;
  }

  #job_list .job_blk .reason .cap {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--pink);
  }

  #job_list .job_blk .reason p {
    font-size: 14px;
    line-height: 1.5;
  }

  #job_list.no_margin {
    padding: 20px 0;
  }

  #job_list.no_margin .page_navi_top {
    margin: 0 15px 20px;
  }

  #job_list #everyone_pay,
  #job_list #cast_interview,
  #job_list #qanda {
    padding: 20px 0;
    margin: 0 -15px 30px;
  }
	#job_list #qanda .qa_list .block {}
  #pickup_job {
		padding: 10px 15px 20px;
  }

  #pickup_job .blk {
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
	#pickup_job .blk .image {
		max-height: 100%;
		aspect-ratio: 343 / 114;
		width: 100%;
	}
  #pickup_job .blk .ttl {}

  #pickup_job .blk .detail {
    padding: 10px;
  }

  #pickup_job.detail .detail {
    padding: 10px 0;
  }

  #pickup_job .blk .ttl {
    padding: 0px;
    font-size: 15px;
  }

  #pickup_job.detail .blk {
    border: none;
    box-shadow: 0 0 0px 0px rgba(104, 71, 161, .2);
    border-radius: 0px;
  }

  #pickup_job.detail .blk .image {
    border-radius: 8px;
    overflow: hidden;
  }

  #helpful_cont {
    padding: 0px 15px 20px;
  }

  #helpful_cont .list ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px;
  }

  #helpful_cont .list ul li {
    flex: 0 0 auto;
    margin-bottom: 5px;
  }

  /* サイトトップ */
  #Toparea {
    margin: 0;
    background-image: url("/img/front/sp_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #Toparea .top_visual,
  #Toparea .top_visual.about {
    background-image: none;
    border-radius: 0;
    margin: 0;
    padding: 30px 15px;
  }
  #Toparea .top_visual.nationwide,
  #Toparea .top_visual.nationwide._other-bg {
    margin: 0 auto;
    padding: 50px 15px;
    background-image: none;
  }

  #Toparea .top_visual.nationwide._other-bg {
    padding-bottom: 15px;
  }
	.dekasegi #Toparea .top_visual {
    min-height: 200px;
  }
	.dekasegi #Toparea .attention {
    width: 90%;
  }

  #Toparea .icon {}

  #Toparea .pr {
    font-size: 14px;
    margin-bottom: 50px;
  }

  #Toparea .top_visual-wrapper::after,
  #Toparea .top_visual-wrapper._other-wrap::after {
    display: none;
  }

  #Toparea .top_visual-text--wrap {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }

  #Toparea .top_visual-text {
    color: var(--dark_pink);
    font-size: 18px;
    font-weight: 700;
  }

  #Toparea .top_visual-text--wrap a {
    max-width: 267px;
    margin-inline: auto;
  }

  #Toparea .top_visual-img img {
    width: 200px;
    height: auto;
  }

  #Toparea ._other-wrap .top_visual-img img {
    width: 154px;
    height: auto;
  }

  #job_area {
    background-color: transparent;
    padding: 5px 15px 50px;
  }

  #job_area .list ul li {
    width: 160px;
  }
	#job_area #popup-search .popup-detail.area {
		position: fixed;
		top: 50%;
		left: 50%;
		bottom: auto;
		transform: translate(-50%, -50%);
		max-width: 90%;
		padding: 30px 15px;
		border-radius: 8px;
		display: none;
	}
	#job_area .popup-detail.area ul {justify-content: flex-start;}
	#job_area .popup-detail.area ul:has(li:only-child) li {
		width: 124px;
	}

  #Toparea .attention {
    font-size: 12px;
  }

  #sns_area {
		padding-top: 0;
		padding-bottom: 70px;
  }

  #sns_area .sns_btn {
		margin: 0 10px 15px;
    display: block;
    width: auto;
  }

  #sns_area .sns_btn.x {
    background-color: var(--brown);
  }

  #sns_area .sns_btn.youtube a {
    background-image: url("/img/front/sns_youtube.svg");
  }

  /* ログイン・会員登録 */
  .modal_top_ttl {
    position: relative;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }

  .top_actionBtn {
    position: absolute;
    left: 15px;
    top: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 30px;
    height: 30px;
    background-image: url("/img/front/btn_close.svg");
    background-position: center;
    background-repeat: no-repeat;
  }

  .top_actionBtn.prev {
    background-image: url("/img/front/btn_prev.svg");
  }
	#mypage_wrap {
		background-color: var(--bg_blue);
		padding-bottom: 1px;
	}
  /* 新規会員登録 */
	#mypage_wrap:has(.registration-steps) {
		background-color: var(--white);
	}
  #mypage_wrap .wrap {}

  #mypage_wrap .loginform {
    border: none;
    border-radius: 0;
		padding: 20px 15px 20px;
		margin: 0px;
    background-color: #FFF;
  }

  .accordion_btn {
    margin: 0 auto 30px;
    position: relative;
    display: block;
    border-radius: 10px;
    cursor: pointer;
    border: solid 1px var(--blue);
    color: var(--blue);
    font-weight: bold;
    line-height: 60px;
    text-align: center;
  }

  .accordion_btn::before,
  .accordion_btn::after {
    position: absolute;
    content: '';
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 12px;
    height: 2px;
    margin: auto;
    background: var(--blue);
  }

  .accordion_btn::after {
    transform: rotate(-90deg);
    transition: transform 0.1s;
  }

  .accordion_btn.active::after {
    transform: rotate(0deg);
  }

  .addition_form {
    display: none;
    margin-bottom: 30px;
  }

  #mypage_wrap .form_area .lost-pw {
    padding: 10px 15px 30px;
  }

  #mypage_wrap .other_area {}
  #mypage_wrap .other_area .txt {
    margin-bottom: 30px;
  }

  #mypage_wrap .other_area .txt::before,
  #mypage_wrap .other_area .txt::after {}

  #mypage_wrap .other_area .btn {
    height: 55px;
    width: 100%;
  }

  #mypage_wrap .first_user {
    padding: 25px 15px;
    background: #eff9fa;
  }

  #mypage_wrap .first_user .inner {
    border-radius: 8px;
    background-color: rgba(98, 200, 204, 0.1);
    border: solid 1px #C9DCEA;
    padding: 20px;
  }

  #mypage_wrap .first_user p {
    line-height: 180%;
    margin-bottom: 20px;
  }

  #mypage_wrap .first_user p span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #62C8CC;
    margin-bottom: 10px;
  }

  /* 0612 HTML修正のため削除
	#mypage_wrap #sub_menu {
		padding: 0;
		background-color: transparent;
	}*/

  #mypage_wrap .mail_register {
		position: relative;
        padding-bottom: 30px;
  }
	#mypage_wrap .mail_register::after {
		content: '';
		position: absolute;
		bottom: -20px;
		left: calc(-50vw + 50%);
		width: 100vw;
		height: 20px;
		background-color: var(--bg_blue);
		box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
  }

  #mypage_wrap .other_area {
    background-color: #FFF;
    padding-top: 20px;
  }

  #mypage_wrap .other_area h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 150%;
  }

  #mypage_wrap .other_area h2 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }

  #register_form_box {
		border: none;
		border-radius: 0;
		padding: 0 0 /*0912 MYページ＞一括WEB応募（$areaがない時） bottom 30px*/;
		margin: 0;
	}
	#register_form_box #user_info {
		padding: 20px 15px;
    background-color: #FFF;
  }
	.registration-steps {
    padding: 30px 10px 10px;
		background-color: #FFF;
  }
	.registration-steps ul {
    display: flex;
    justify-content: space-evenly;
    margin: 20px auto 20px;
  }
	.registration-steps ul li {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8A6C73;
    padding-top: 35px;
  }
	.registration-steps ul li::before {
    counter-increment: number 1;
    content: counter(number) " ";
    font-family: "Inter", sans-serif;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background: #EBEEF0;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto
  }
	.registration-steps ul li.active {
    box-sizing: border-box;
    color: #FF839A;
  }

  #register_form_box .form_area {
		padding: 10px 15px 30px;
		border-bottom: solid 1px #EBEEF0;
		background-color: #FFF;
  }

  .form_area dl {
    margin-bottom: 20px;
  }

  .form_area dl dt {
    color: #8A6C73;
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
  }

  .form_area dl dd input.form,
  .form_area dl dd select.form {
    border: solid 1px #EBEEF0;
    background-color: #F9F9F9;
    border-radius: 8px;
    height: 44px;
    min-width: inherit;
    padding: 10px;
    margin-bottom: 5px;
  }

  .form_area dl dd select.form {
    -webkit-appearance: none;
    appearance: none;
    padding: 10px 20px 10px 10px;
    background-image: url("/img/front/arrow-bottom.svg");
    background-repeat: no-repeat;
		background-size: 9px auto; /* 画像のサイズ（幅 高さ）*/
		background-position: right 12px center; /* 画像の位置 */
  }

  .form_area dl .req {
    background-color: #FF839A;
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: super;
    border-radius: 50%;
    margin-left: 5px;
  }

  .form_area .kome {
    font-size: 12px;
    line-height: 150%;
  }

  .form_area .kome.pink {
    color: var(--pink);
  }

  .form_area .sub_cap {
    font-size: 12px;
    font-weight: bold;
    color: var(--pink);
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .form_area .sub_cap:before {
    content: '';
    background-color: #FF839A;
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 5px;
  }

  .form_area .select_box ul {}

  .form_area .select_box ul.nowrap {
    flex-wrap: nowrap;
  }

  .form_area .select_box ul li {
    max-width: 100%;
  }

  .form_area .select_box input[type=radio],
  .form_area .select_box input[type=checkbox] {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
  }

  .form_area .select_box label {
    display: block;
    border-radius: 10px;
    cursor: pointer;
    background-color: #F9F9F9;
    line-height: 44px;
    text-align: center;
  }

  .form_area .select_box input[type=radio]:checked+label,
  .form_area .select_box input[type=checkbox]:checked+label {
    background-color: var(--pink);
    color: #fff;
  }

  .form_area input[type=file]::file-selector-button {
    text-align: center;
    cursor: pointer;
    background-color: #62C8CC;
    border-radius: 8px;
    position: relative;
    border: none;
    color: #FFF;
    line-height: 40px;
    padding: 0 20px;
  }

  .form_area .flex_area {
    display: flex;
    gap: 10px;
  }

  .form_area .flex_area .blk {
    width: 100%;
  }

  .form_area .flex_area .blk .form {}

  .form_area .unit {
    padding-left: 5px;
    min-width: max-content;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 10px;
  }

  .form_area .flex_area .photo {
    width: 100%;
    max-width: 150px;
  }

  .form_area .btn.line {
    overflow: hidden;
    border: solid 1px #EBEEF0;
    border-radius: 8px;
    height: 55px;
    width: 100%;
    margin-bottom: 10px;
  }

  .form_area .btn.line a {
    display: block;
    text-align: center;
    line-height: 55px;
    background-image: url("/img/front/logo_line.svg");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    background-color: #00B900;
    color: #FFF;
  }

  .form_area .notice_set {}

  .form_area .notice_set ul {}

  .form_area .notice_set ul li {
    margin-bottom: 10px;
  }

  .form_area .notice_set ul li p {
    font-display: 14px;
  }

  .form_area .txt_imp {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--blue);
  }

  .form_area .prof_autofill {
    border-top: solid 1px #EBEEF0;
    text-align: center;
    padding: 30px 10px;
  }

  .form_area .txt_info {
    text-align: center;
    font-weight: bold;
  }

  .form_area .txt_info a {
    color: #2878C2;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
  }

  .confirm .form_area dl {
    margin-bottom: 15px;
  }

  .confirm .form_area dl dt {
    border-top: dotted 1px #EBEEF0;
    padding-top: 15px;
    padding-bottom: 8px;
  }

  .confirm .form_area dl dt,
  .confirm .form_area dl dd {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .checkbox_flex {}

  .checkbox_flex input[type="checkbox"] {
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
  }

  .checkbox_flex input[type="checkbox"]+p::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    background-color: #EBEEF0;
    border-radius: 5px;
    margin-right: 5px;
  }

  .checkbox_flex input[type="checkbox"]:checked+p::before {
    background-image: url("/img/front/icon/icon21.svg");
    background-repeat: no-repeat;
    background-position: 0 0;
    border: none;
  }

  .checkbox_flex label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
    background: url("/img/front/icon/icon21.svg");
    opacity: 0;
    box-sizing: border-box;
  }

  .checkbox_flex.multiple {
    flex-wrap: wrap;
    gap: 15px 20px;
    margin-bottom: 20px;
  }
	#information_box {
		padding: 10px 15px 30px;
		background-color: var(--white);
		margin-bottom: 30px;
	}
	#information_box .ttl-box {
		margin: 0 0 20px;
	}
	#information_box .ttl-box h2 {
		font-size: 18px;
	}
	.section_intro {
		margin: 10px 15px;
	}
	#Toparea .point ul li {
		max-width: 100%;
	}
	#support {
		padding: 10px 15px 0;
	}
	#support .item {
		margin-bottom: 40px;
  }

	/* MYページ */
  #user_info {
		padding: 20px 15px;
  }

  #user_info .name {}

  #user_info .login {
    font-size: 12px;
  }

  #user_info .area {}

  .pref_area {
		margin: 0 15px 20px;
    padding: 15px;
    background-color: rgba(255, 202, 117, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
  }

  .pref_area h2 {
    font-size: 16px;
    font-weight: bold;
    width: 25%;
    min-width: 110px;
  }

  .pref_area ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 75%;
  }

  .pref_area ul li {
    background-color: rgba(255, 202, 117, 0.5);
    border-radius: 50px;
    font-size: 13px;
    text-align: center;
    line-height: 32px;
    padding: 0 15px;
  }
	.mypage #news {
		margin: 0 15px 30px;
	}
  #user_content_menu {
    padding: 10px 0 40px;
  }
	#user_content_menu ul {
		margin: auto;
		gap: 25px;
		justify-content: center;
		max-width: calc((80px * 3) + (25px * 3));
	}
	.mypage #Topslide {
		padding: 0 0 30px;
	}

  #Topslide.has-pickup .swiper-slide,
	.mypage .swiper-slide {
		/* padding: 60px 15px 0; */
		padding: 60px 0px 0;
	}
	#job_list.match .job_blk {
		padding: 70px 0px 15px;
	}
	#job_list.match .job_blk:before { border-top: 5px solid;}
  .important_notice {
    background-color: #FFF;
		border: none;
		border-radius: 0;
    padding: 20px 15px;
		margin: 0;
	}
	.important_notice.comp,
  .important_notice.comp.verify_email {
		padding: 30px 15px;
  }

  .important_notice .comp_area {
    border-bottom: solid 1px #EBEEF0;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .important_notice .comp_area img {
    margin: auto;
  }

  .important_notice .comp_area p {
    font-size: 16px;
    font-weight: bold;
    color: var(--blue);
    padding-top: 20px;
  }
	#notice_area {
		padding: 0 0 30px;
		background-color: var(--bg_blue);
	}
  #notice_area .page_navi {
    padding: 20px var(--sp_pd) 0;
  }

  #notice_area .notice_list {
		border-top: none;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 var(--sp_pd);/* 0730 */
  }

  #notice_area .notice_list li {
    border-bottom: solid 1px #EBEEF0;
  }

  #notice_area .notice_list li a {
    display: block;
    padding: 20px 40px 20px 15px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGODM5QSIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik01MTcuODUtNDgwIDM1NC45Mi02NDIuOTJxLTguMy04LjMxLTguNS0yMC44OS0uMTktMTIuNTcgOC41LTIxLjI3IDguNy04LjY5IDIxLjA4LTguNjkgMTIuMzggMCAyMS4wOCA4LjY5bDE3OS43NyAxNzkuNzdxNS42MSA1LjYyIDcuOTIgMTEuODUgMi4zMSA2LjIzIDIuMzEgMTMuNDZ0LTIuMzEgMTMuNDZxLTIuMzEgNi4yMy03LjkyIDExLjg1TDM5Ny4wOC0yNzQuOTJxLTguMzEgOC4zLTIwLjg5IDguNS0xMi41Ny4xOS0yMS4yNy04LjUtOC42OS04LjctOC42OS0yMS4wOCAwLTEyLjM4IDguNjktMjEuMDhMNTE3Ljg1LTQ4MFoiLz48L3N2Zz4=");
    background-position: right 10px center;
    background-repeat: no-repeat;
  }

  #notice_area .notice_list li .ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    color: #8A6C73;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  #notice_area .notice_list li.unread .ttl:before {
    content: '';
    background-color: #FF839A;
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: baseline;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 3px;
  }

  #notice_area .notice_list li p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  #notice_area .notice_list li .txt {
    margin-bottom: 8px;
  }

  #notice_area .notice_list li .data {}

  #notice_area.block_list_wrap .notice_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #notice_area.block_list_wrap .notice_list li a {
    width: 75%;
  }

  #notice_area.block_list_wrap .notice_list li .ttl {
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 5px;
  }

  #notice_area.block_list_wrap .notice_list li .block_btn {
    min-width: 80px;
    height: 32px;
  }

  #notice_area.block_list_wrap .notice_list li .block_btn a {
    line-height: 32px;
    font-size: 11px;
    font-weight: bold;
    color: var(--brown);
    text-align: center;
    border: 1px solid #EBEEF0;
    background-color: #F9F9F9;
    border-radius: 5px;
    display: block;
    padding: 0 15px;
  }
	.mypage #everyone_pay {
		padding-bottom: 30px;
		margin-bottom: 30px;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	}
  #about_withdrawal {
        margin-top: -30px;
    padding: 40px 10px;
		background-color: #f7fcfc;
  }

  .tab_box {
    border-top: solid 1px #EBEEF0;
    border-bottom: solid 1px #EBEEF0;
    background-color: #FFF;
    height: 58px;
  }

  .tab_box ul {
    display: flex;
    align-items: center;
  }

  .tab_box ul li {
    flex: 1;
    text-align: center;
    line-height: 58px;
  }

  .tab_box ul li a {
    position: relative;
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
  }

  .tab_box ul li a.active {
    color: #FF839A;
    font-weight: bold;
  }

  .tab_box ul li a.active:after {
    content: "";
    width: 90%;
    height: 4px;
    line-height: 4px;
    display: block;
    background-color: #FF839A;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .tab_box ul li a p {
    position: relative;
    display: inline-block;
  }

  .tab_box ul li a p .count {
    font-family: "Inter", sans-serif;
    position: absolute;
    top: -10px;
    right: -30px;
    width: 23px;
    background-color: #FF839A;
    height: 23px;
    line-height: 23px;
    color: #FFF;
    font-size: 12px;
    border-radius: 20px;
  }

  /* お悩みQ&A */
  #qa.detail {
    margin: 0;
  }

  #qa.detail #qanda {
    margin: 0;
  }

  #qa.detail .box {
		background-color: #FFF;
    border: none;
    border-radius: 0;
    width: 100%;
		padding: 20px 15px 10px;
  }

  .sd #qa.detail .box.pc_mt20 {
    padding: 0;
  }

  .sd #qa.detail .box .status {
    padding-inline: 15px;
  }

  .other_answer {
    border-top: solid 1px #EBEEF0;
    background-color: rgba(98, 200, 204, 0.05);
    padding: 15px 15px 40px;
  }

  .sd .other_answer {
    padding-bottom: 15px;
  }

  .other_answer .answer_list {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
  }

  .other_answer .answer_list .responder {
    margin-top: 20px;
  }

  /* コラム */
  #column #column_list {
    padding: 0;
  }
  #column_list .blk {
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .bottom-contents #column_list .column_box {
    width: 100%;
    box-shadow: none;/* 0 1px 2px rgba(0, 0, 0, 0.1)*/
  }

  /* MYページ お悩みQ＆A 詳細 */
  #qanda_detail {
    padding: 20px 10px 0;
  }

  #qanda_detail .status {}

  #qanda_detail .status p {
    display: block;
    text-align: center;
    width: 100%;
    background: #FF839A;
    border-radius: 90px;
    position: relative;
    color: #FFF;
    font-weight: bold;
    line-height: 35px;
    border: none;
    margin: 10px 0 0;
  }

  #qanda_detail .status p.solve {}

  #qanda_detail #qanda .qa_list .block {
    background-color: #FFF;
    border: none;
    padding: 0px;
    border-radius: 0;
    margin-bottom: 15px;
    overflow: hidden;
  }

  #qanda_detail #qanda .qa_list .block .ctgr li {
    background-color: var(--bg_pink);
    color: var(--pink);
  }

  /* チャット */
	#chat_page #footer {padding: 40px 30px 80px;}
	:root {
    --header-height: 75px;
    --breadcrumb-height: 0px;
    --chat_action-height: 100px;
	}
	.chat-detail #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
		height: var(--header-height);
		z-index: 1500;
    border-bottom: 5px solid;
    background: initial;
    border-image: linear-gradient(to right, #FEEFDB, #FFC7BA, #CDABE9, #ACDAF3, #ADEFED) 1;
  }
	#chat_page #breadcrumb {
    position: fixed;
		top: var(--header-height);
    left: 0;
    width: 100%;
		height: var(--breadcrumb-height);
		z-index: 1500;
  }

	.shadow.under.chat_action {
    position: fixed;
		top: 75px;
    left: 0;
    width: 100%;
		height: 100px;
		z-index: 2000;
		padding: 20px 15px;
		background-color: #FFF;
    box-shadow: 0 1px 2px 0px rgba(104, 71, 161, .1)
	}

  #chat_container {
		margin: 100px 0 0;
		/* overflow-y: auto; */
    overflow: clip;
		height: calc(100dvh - 175px);
    min-height: calc(100dvh - 175px);
  }

  #chat_messages {
		border-radius: 0;
		border: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
    height: 100%;
    padding: 25px 10px 40px;
    background-color: var(--bg_blue);
  }

  #chat_input_container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }

  #chat_input_container .chat_send_inner {
    display: flex;
  }
	#chat_input_container .chat_send_inner textarea {
		height: 40px;
    width: 100%;
    padding: 10px;
  }

  #chat_input_container .chat_send_inner button {
    border: none;
    background-color: transparent;
    color: var(--pink);
    font-weight: 700;
    width: 70px;
    cursor: pointer;
  }

  #chat_input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
		resize: none; /* サイズ変更を無効化 */
    height: auto;
		min-height: 50px; /* 最小高さ */
		max-height: 150px; /* 最大高さ */
		overflow-y: auto; /* 高さを超えた場合スクロール */
    box-sizing: border-box;
  }

  #chat_messages .text_detail {
    min-width: 100px;
  }

  #chat_messages .speech_bubble p {
    font-size: 14px;
    line-height: 150%;
  }

  #chat_messages .time_blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #chat_messages .time_blk p {
    font-size: 12px;
  }

  #chat_messages .time_blk .delete:hover {
    cursor: pointer;
  }

  #chat_messages .time_blk .time {}

  #chat_messages .chat_date {
    width: 100%;
    line-height: 30px;
    margin-bottom: 25px;
    background: #FFF;
    border-radius: 100px;
    outline: 1px #EBEEF0 solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
  }

  #chat_messages .recipient_side {
    padding-right: 50px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: flex;
    margin-bottom: 20px;
  }

  #chat_messages .recipient_side .icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iI0ZGRiIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiPjxwYXRoIGQ9Ik00ODAtNDkyLjMxcS01Ny43NSAwLTk4Ljg3LTQxLjEyUTM0MC01NzQuNTYgMzQwLTYzMi4zMXEwLTU3Ljc1IDQxLjEzLTk4Ljg3IDQxLjEyLTQxLjEzIDk4Ljg3LTQxLjEzIDU3Ljc1IDAgOTguODcgNDEuMTNRNjIwLTY5MC4wNiA2MjAtNjMyLjMxcTAgNTcuNzUtNDEuMTMgOTguODgtNDEuMTIgNDEuMTItOTguODcgNDEuMTJaTTE4MC0yNDguNDZ2LTI4LjE2cTAtMjkuMzggMTUuOTYtNTQuNDIgMTUuOTYtMjUuMDQgNDIuNjYtMzguNSA1OS4zLTI5LjA3IDExOS42NS00My42MSA2MC4zNS0xNC41NCAxMjEuNzMtMTQuNTR0MTIxLjczIDE0LjU0cTYwLjM1IDE0LjU0IDExOS42NSA0My42MSAyNi43IDEzLjQ2IDQyLjY2IDM4LjVRNzgwLTMwNiA3ODAtMjc2LjYydjI4LjE2cTAgMjUuMy0xNy43MyA0My4wNC0xNy43MyAxNy43My00My4wNCAxNy43M0gyNDAuNzdxLTI1LjMxIDAtNDMuMDQtMTcuNzNRMTgwLTIyMy4xNiAxODAtMjQ4LjQ2Wm02MCAuNzdoNDgwdi0yOC45M3EwLTEyLjE1LTcuMDQtMjIuNS03LjA0LTEwLjM0LTE5LjExLTE2Ljg4LTUxLjctMjUuNDYtMTA1LjQyLTM4LjU4UTUzNC43LTM2Ny42OSA0ODAtMzY3LjY5cS01NC43IDAtMTA4LjQzIDEzLjExLTUzLjcyIDEzLjEyLTEwNS40MiAzOC41OC0xMi4wNyA2LjU0LTE5LjExIDE2Ljg4LTcuMDQgMTAuMzUtNy4wNCAyMi41djI4LjkzWm0yNDAtMzA0LjYycTMzIDAgNTYuNS0yMy41dDIzLjUtNTYuNXEwLTMzLTIzLjUtNTYuNXQtNTYuNS0yMy41cS0zMyAwLTU2LjUgMjMuNXQtMjMuNSA1Ni41cTAgMzMgMjMuNSA1Ni41dDU2LjUgMjMuNVptMC04MFptMCAzODQuNjJaIi8+PC9zdmc+");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px auto;
    min-width: 30px;
    width: 30px;
    height: 30px;
    background-color: #C9DCEA;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    display: flex;
  }

  #chat_messages .recipient_side .speech_bubble {
    padding: 15px;
    margin-bottom: 5px;
    background: white;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    outline: 1px #EBEEF0 solid;
    outline-offset: -1px;
  }

  #chat_messages .sender_side {
    justify-content: flex-end;
    padding-left: 80px;
    gap: 10px;
    display: flex;
    margin-bottom: 25px;
    width: 100%;
  }

  #chat_messages .sender_side .speech_bubble {
    color: #FFF;
    padding: 15px;
    margin-bottom: 5px;
    background: linear-gradient(0deg, #FF839A 0%, #FF839A 100%), white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    outline-offset: -1px;
  }

  #chat_messages .sender_side .text_detail.delete .speech_bubble {
    background: #FFF;
    outline: 1px #EBEEF0 solid;
    color: #BBBBBB;
  }

  #chat_messages .sender_side .delete .time_blk p {
    margin-left: auto;
  }
  .mypage .important_notice.comp {
    padding: 20px 15px 30px;
  }
}
@media screen and (max-width: 450px) {
  #pref-change .pref-detail.area ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 420px) {
  #pref-change .pref-detail.area ul li {
    width: 100%;
  }
}
@media screen and (max-width: 340px) {
  #Toparea .attention {
    font-size: 11px;
  }
}

/* 0610 菅近加筆 mypage */
#header .modal-header {
  display: none;
}

.mypage #sub_menu .other ul li {
  display: none;
}

.mypage #sub_menu .other ul li.logout {
  display: block;
  background: linear-gradient(#C9DCEA 100%);
}

.layout-wrap {
  display: flex;
  flex-direction: column;
}

.layout-wrap #search_area {
  order: 1;
}

.layout-wrap #sub_menu {
  order: 2;
}

.danger, .error {
  color: red;
  font-size: 12px;
}

/* 個別のバリデーションメッセージ用 */
.validation-msg {
  margin: 5px 0 0;
}
/* 上部のメッセージエリア */
.msg-area,
#register_form_box.apply .msg-area {
  padding: 10px;
}
#register_form_box .msg-area {
  padding-inline: 0;
}
.form_area .msg-area {
  padding: 0;
  margin: 0 0 20px;
}
.form_area .msg-area .danger {
  font-size: 14px;
}

.confirm input:disabled,
.confirm label,
.confirm textarea {
  cursor: default !important;
}

.form_area ul.thumbnails {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.form_area ul.thumbnails.confirm {
  gap: 10px;
}

.thumbnails li {
  list-style: none;
  position: relative;
  width: 100%;
}

.thumbnails.two-images li {
  width: 48%;
}

.thumbnails.three-images li {
  width: 32%;
}

.thumbnails img {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.thumbnails input[type="checkbox"] {
  position: absolute;
  top: 5px;
  left: 5px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #EBEEF0;
  border-radius: 5px;
  margin: 0;
  width: 1rem;
  height: 1rem;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.thumbnails input[type="checkbox"]:checked {
  background-image: url("/img/front/icon/icon21.svg");
  border: none;
}
/* ===== MYページトップ用 ===== */
.cont_top.pc_parts.sp_parts {
  display: none !important;
}
/* ===== SP モーダル風ヘッダー ===== */
/* resources/views/components/front/page-ttl.blade.php */
@media screen and (max-width: 849px) {
  #modal-sp-header {
    display: none;
  }
  body.modal-sp #modal-sp-header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding-inline: 20px;
    z-index: 9000;
    background-color: rgba(255, 255, 255, 0.9);
  }
  body.modal-sp #modal-sp-header .modal-sp-ttl  {
    font-size: 20px;
    display: block;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 70px;
    white-space: nowrap;
    max-width: 15em;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.modal-sp #modal-sp-header .back-btn,
  body.modal-sp #modal-sp-header .close-btn {
    z-index: 1001;
    border: none;
    background: transparent;
  }

  body.modal-sp #header .wrapper,
  body.modal-sp #contents .modal_top_ttl {
    display: none;
  }

  /* search-areaコンポーネント */
  .layout-wrap {
    margin-top: 1px;
  }

  .layout-wrap #search_area {
    order: 2;
  }

  .layout-wrap #sub_menu {
    order: 1;
    box-shadow: 0 -1px 2px 0px rgba(104, 71, 161, 0.1);
  }

  aside.m20 + .layout-wrap #sub_menu {
    box-shadow: none;
  }
}

br.size {
  display: none;
}
@media screen and (min-width: 340px) and (max-width:500px) {
  br.size.__500 {
    display:inline;
  }
}

@media screen and (max-width: 374px) {
  #search_job:before {
    width: auto;
  }
}

/* プロフ設定・WEB応募
========================================================================*/
/* 画像のサムネイル表示 */
.image-wrap {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:8px;
}
.image-wrap.grid-4 {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap:8px;
}
.image-wrap figure {
	position:relative;
	margin:0;
}
.image-wrap img {
	width:100%;
	height:auto;
	display:block;
}
.image-wrap figure .btn-del {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("/img/front/icon/icon-photo-delete.svg") center no-repeat;
	border: none;
}

/* バリデーションエラー時の戻り先 */
#scroll-point, .scroll-point {
  scroll-margin-top: 70px;/* ヘッダー分の余白 */
}

/* ===== resources/views/components/front/form/input-files.blade.php ===== */
.single-uploader .btn-file,
.uploader .btn-file{
  text-align:center;
  cursor:pointer;
  background:#62C8CC;
  border-radius:8px;
  border:none;
  color:#fff;
  line-height:40px;
  padding:0 20px;
  display:inline-block;
  font-size:15px;
  white-space: nowrap;
  margin: 0 0 10px;
}
.single-uploader .visually-hidden,
.uploader .visually-hidden{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.single-uploader .file-status,
.uploader .file-status {
  margin-left:.5em;
}
.single-uploader .image-wrap img,
.uploader .image-wrap img {
  margin-bottom: 10px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* resources/views/components/front/form/input-files.blade.php */
.uploader .file-box{
  width:100%;
  max-width: 200px;
  height: calc(100% - 10px);
  border: 1px solid #ccc;/* 画像の外枠と同じ */
  border-radius: 4px;/* 画像の外枠と同じ */
  background:#f8fafc;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:6px; box-sizing:border-box;
  margin-bottom: 10px;
  min-height: 100px;
}
.uploader .file-box .file-ext{
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  color:#ef4444;
  border:1px solid #ef4444;
  border-radius:4px;
  padding:1px 4px;
  margin-bottom:4px;
}
.uploader .file-box .file-name{
  line-height:1.2;
  text-align:center;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  line-clamp: 2;
  word-break: break-all;
}

/* ===== split-tel ===== */
.split-tel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.split-tel .form {
  width: 100% !important;
}
.checkbox_flex.confirm input[type="checkbox"],
.split-tel.confirm .form {
  pointer-events: none;
}
.checkbox_flex.confirm,
.split-tel.confirm {
  cursor: default;
}

.sp_parts #banner_ad,
.sp_parts #banner_ad .recoSlide,
.sp_parts #banner_ad .swiper-wrapper {
  height: auto;
}
.action_btn .odd_parent {
  background-color: var(--pink);
  color: var(--white);
  font-size: 13px;
  border-radius: 10px;
  width: 20px;
  height:20px;
  line-height: 18px;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

#chat_messages .standard_text {
  background: var(--blue);
  border-radius: 50px;
  color: var(--white);
  padding: 15px 10px;
  margin-bottom: 30px;
  text-align: center;
}

#chat_messages .standard_text._end {
    background: #eee;
    color: var(--brown);
}