@charset "UTF-8";

/*変数*/
:root {
	--main_color1: #6c5c7a;
	--main_color2: #a99db3;
	--main_color3: #f6edf1;
	--main_color4: #a48fb4;
	--main_color5: #f5f1f3;
	--sub_color1: #c4b28e;
	--sub_color2: #b09175;
	--sub_color3: #ffeac0;
	--black_color1: #3a3838;
	--black_color2: #707070;
	--white_color1: #fdfcfa;
	--white_color2: #f6f3f3;
  --white_color3: #fdfdfd;
	--gray_color1: #f1eff0;
	--gray_color2: #bdb4b4;
	--pink_color1: #d764aa;
	--pink_color2: #bf83a5;
	--pink_color3: #feedf5;
  --pink_color4: #ede0e7;
	--red_color1: #d65a69;

	--line_color1: #0ec856;
	--main_rgb_color1: #6c5c7a;
	--frame_color1: 255,255,255,;

	--font-number1: 'Jost', sans-serif; /* Jost */
	--font-title1: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	--font-sanserif1: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-serif1: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body { margin: 0; }
main { display: block; }

p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dt { font-weight: 700; }
dd { margin-left: 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address { font-style: inherit; }
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] { text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small { font-size: 80%; }
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }
svg, img, embed, object, iframe { vertical-align: bottom; }

button,
input,
optgroup,
select,
textarea {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] { appearance: checkbox; }
[type=radio] { appearance: radio; }
button, [type=button], [type=reset], [type=submit] { cursor: pointer; }
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default; }
:-moz-focusring { outline: auto; }
select:disabled { opacity: inherit; }
option { padding: 0; }
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend { padding: 0; }
progress { vertical-align: baseline; }
textarea { overflow: auto; }

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] { outline-offset: -2px; }
[type=search]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] { cursor: pointer; }
details { display: block; }
summary { display: list-item; }
[contenteditable]:focus { outline: auto; }
table { border-color: inherit; }
caption { text-align: left; }

td, th { vertical-align: top; padding: 0; }
th {
  text-align: left;
  font-weight: 700;
}
article { padding: 40px 0; }

/*--------------------------------------
サイト共通定義
--------------------------------------*/
body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: var(--black_color2);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: var(--font-serif1);
  font-weight: normal;
  font-style: normal;
  position: relative;
}
body.open { overflow: hidden; }
body::-webkit-scrollbar { width: 16px; }
body::-webkit-scrollbar-track { background-color: #e4e4e4; }
body::-webkit-scrollbar-thumb {
  background-color: var(--main_color2);
  border-radius: 100px;
}
::-moz-selection {
  background: var(--main_color2);
  color: #fff;
}
::selection {
  background: var(--main_color2);
  color: #fff;
}
ul::-webkit-scrollbar { display: none; }

.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.inner {
  max-width: 1025px;
  margin: auto;
}
.inner800{
	/* width: 95%; */
	max-width: 800px;
	margin: auto;
}
.spacing {
  /* padding-left: 20px; */
  /* padding-right: 20px; */
  padding: 0 0.6rem;
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
/*********** パディング ***********/
.pd_10{padding-top: 10px;}
.pd_20{padding-top: 20px;}

.atten_01 { color: #FFA7A7; }

/*********** リンクhoverアクション ***********/
.link_act_01{
	opacity: 1;
	transition: opacity 0.4s ease;
}
.link_act_01:hover{ opacity: 0.5; }

/*********** 改行 ***********/
.br_pc { display: none; }
.br_sp { display: block; }

@media screen and (min-width: 600px){
	.br_pc { display: block; }
	.br_sp { display: none; }
}

/*--------------------------------------
js関係を一括でまとめています。js専用のクラスの場合、必ず頭に「js-」を付けて下さい
--------------------------------------*/
/* fade bottom */
.js-fade-bottom {
  transform: translateY(100px);
  opacity: 0;
}
.js-fade-bottom.js-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}
.js-active .js-fade-bottom {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}
.js-active .js-fade-bottom:nth-child(2) { transition-delay: 0.4s; }
.js-active .js-fade-bottom:nth-child(3) { transition-delay: 0.6s; }
.js-active .js-fade-bottom:nth-child(4) { transition-delay: 0.8s; }
.js-active .js-fade-bottom:nth-child(5) { transition-delay: 1s; }
.js-active .js-fade-bottom:nth-child(6) { transition-delay: 1.2s; }
.js-active .js-fade-bottom:nth-child(7) { transition-delay: 1.4s; }
.js-active .js-fade-bottom:nth-child(8) { transition-delay: 1.6s; }
.js-active .js-fade-bottom:nth-child(9) { transition-delay: 1.8s; }

/* fade right */
.js-fade-right {
  transform: translateX(-50px);
  opacity: 0;
}
.js-fade-right.js-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
.js-active .js-fade-right {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}

/* fade left */
.js-fade-left {
  transform: translateX(50px);
  opacity: 0;
}
.js-fade-left.js-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
.js-active .js-fade-left {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
.js-active .js-fade-left:nth-child(2) { transition-delay: 0.2s; }
.js-active .js-fade-left:nth-child(3) { transition-delay: 0.4s; }
.js-active .js-fade-left:nth-child(4) { transition-delay: 0.6s; }
.js-active .js-fade-left:nth-child(5) { transition-delay: 0.8s; }
.js-active .js-fade-left:nth-child(6) { transition-delay: 1.0s; }
.js-active .js-fade-left:nth-child(7) { transition-delay: 1.2s; }
.js-active .js-fade-left:nth-child(8) { transition-delay: 1.4s; }
.js-active .js-fade-left:nth-child(9) { transition-delay: 1.6s; }
.js-active .js-fade-left:nth-child(10) { transition-delay: 1.8s; }
.js-active .js-fade-left:nth-child(11) { transition-delay: 2.0s; }
.js-active .js-fade-left:nth-child(12) { transition-delay: 2.2s; }
.js-active .js-fade-left:nth-child(13) { transition-delay: 2.4s; }
.js-active .js-fade-left:nth-child(14) { transition-delay: 2.6s; }

/* fade slide */
.js-fade-slide { position: relative; }
.js-fade-slide::after {
  content: "";
  display: block;
  width: 100%;
  transform: scaleX(1);
  transform-origin: 100% 0;
  height: 100%;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
}
.js-fade-slide.js-active::after {
  transition: 0.6s;
  transform: scaleX(0);
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  background: #FFF;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
header .inner {
  width: 100%;
  max-width: 1400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo { padding: 8px; }
header .logo img {
  width: 100%;
  max-width: 140px;
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  position: absolute;
}
.pc_nav {
  display: none;
  gap: 6px;
}
.pc_nav li a {
  font-size: 0.9rem;
  position: relative;
}
.pc_nav li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--main_color4);
  border-radius: 50%;
  bottom: -15px;
  left: calc(50% - 5px);
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.6s ease;
}
.pc_nav li a:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.pc_nav li::after {
  content: "/";
  padding-left: 6px;
}
.pc_nav li:last-of-type { padding-right: 0; }
.pc_nav li:last-of-type::after {
  content: "";
  padding-left: 0;
}

.menu_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
  transition-duration: 0.5s;
  padding: 50px 50px 120px;
  overflow: scroll;
  scrollbar-width: none;
}
.menu_box::-webkit-scrollbar { display: none; }
.menu_box .menu_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--black_color2);
  font-size: 18px;
  transition-duration: 0.5s;
  text-align: left;
}
.menu_box .menu_item:first-of-type {
  font-size: 14px;
  width: 100%;
  color: var(--black_color2);
  text-align: center;
  margin-bottom: 20px;
}
.menu_box .menu_item a {
  border-bottom: 1px dotted var(--pink_color2);
  line-height: 1.2;
  margin: 10px;
  padding: 10px;
  display: block;
  position: relative;
}
.menu_box .menu_item a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
}
.menu_box .menu_item a .line_01 {
  height: 1px;
  background: var(--pink_color2);
  display: block;
}
.menu_box .menu_item a .line_02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 20px;
  height: 1px;
  background: var(--pink_color2);
  transform: rotate(35deg);
}
#menu_toggle {
  opacity: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
#menu_toggle:checked~.menu_btn>span { transform: rotate(45deg); }
#menu_toggle:checked~.menu_btn>span::before {
  top: 0;
  transform: rotate(0);
  background: var(--main_color4);
}
#menu_toggle:checked~.menu_btn>span::after {
  top: 0;
  transform: rotate(90deg);
  background: var(--main_color4);
}
#menu_toggle:checked~.menu_box {
  visibility: visible;
  left: 0;
  transform: translateY(0);
}
.menu_btn {
  transition-duration: 0.25s;
  display: flex;
  align-items: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
  position: fixed;
  right: 10px;
  top: 30px;
  transform: translateY(-50%);
}
.menu_btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main_color4);
}
.menu_btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main_color4);
  content: "";
  top: -8px;
  transition-duration: 0.25s;
}
.menu_btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main_color4);
  content: "";
  top: 8px;
  transition-duration: 0.25s;
}

/*--------------------------------------
メインビジュアル
--------------------------------------*/
.mainvisual {
  animation: anime-fade 3s forwards;
  opacity: 0;
}
.mainvisual img {
  display: block;
  margin: 60px auto 0;
  width: 100%;
  max-width: 1400px;
  height: auto;
}
@-webkit-keyframes anime-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes anime-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*--------------------------------------
挨拶
--------------------------------------*/
#greeting {
  background: url(../images/bg_greeting_sp.jpg) no-repeat 50% 100%/cover;
  text-align: center;
}
#greeting .title_greeting {
  font-size: 1.8rem;
  color: var(--pink_color2);
}
#greeting h3 {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#greeting .txt_box p {
  font-size: 0.8rem;
  margin-bottom: 8px;
}
#greeting .txt_box p:last-child { margin-bottom: 0; }
#greeting .txt_box p span {
  font-size: 1.0rem;
  color: var(--pink_color2);
}
#greeting .frame_greeting_outer {
	border: 1px solid var(--white_color2);
	padding: 1.0rem;
}
#greeting .frame_greeting {
	background: rgba(var(--frame_color1) 0.7);
	padding: 1.4rem 1.0rem 1.6rem;
	position: relative;
}


/*--------------------------------------
ベルリリーはここが違います
--------------------------------------*/
#comparison .comparison_unit {
  background: url(../images/bg_palepurple.jpg) no-repeat 50% 50%/cover;
	padding: 2.4rem 0.6rem;
}

#comparison .comparison_unit_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 32px 16px;
  margin-bottom: 40px;
}
#comparison .comparison_unit_list section { width: 100%; }
#comparison .comparison_unit_list .cat_lead {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: var(--white_color3);
  padding: 6px 10px;
  border: double 4px var(--main_color3);
  color: var(--main_color1);
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
}
#comparison .comparison_unit_list .cat_lead:before{
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
}
#comparison .comparison_unit_list .cat_01 .cat_lead:before{
  background: url(../images/icon_comparison01.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .cat_02 .cat_lead:before{
  background: url(../images/icon_comparison02.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .cat_03 .cat_lead:before{
  background: url(../images/icon_comparison03.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .cat_04 .cat_lead:before{
  background: url(../images/icon_comparison04.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .cat_05 .cat_lead:before{
  background: url(../images/icon_comparison05.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .cat_06 .cat_lead:before{
  background: url(../images/icon_comparison06.png) no-repeat;
  background-size: contain;
}
#comparison .comparison_unit_list .txt_box {
  padding-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
#comparison .comparison_unit_list .txt_box p { margin-bottom: 8px; }
#comparison .comparison_unit_list .txt_box p:last-child { margin-bottom: 0; }


/*--------------------------------------
お給料
--------------------------------------*/
#salaly .title_article { margin-bottom: 40px; }
#salaly .salaly_item_01 {
  padding-top: 80px;
  margin-bottom: 60px;
}
#salaly .salaly_item_01 .inner { position: relative; }
#salaly .salaly_item_01 .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-30%);
  background: var(--main_color3);
  width: 80%;
  height: 317px;
  z-index: -1;
}
#salaly .salaly_item_01 h3 {
  color: var(--main_color2);
  font-size: 36px;
  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  position: absolute;
  text-align: center;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 3;
  width: 100%;
  top: -40px;
  transform: translateY(-75%);
  padding-right: 20px;
}
#salaly .salaly_item_01 figure {
  text-align: right;
  position: relative;
  margin-bottom: 20px;
}
#salaly .salaly_item_01 figure img {
  width: 80%;
  height: auto;
}
#salaly .salaly_item_01 .salaly_treatment .txt_box {
  padding-top: 20px;
  font-size: 1.0rem;
  text-align: center;
}
#salaly .salaly_item_01 .salaly_treatment p { margin-bottom: 10px; }
#salaly .salaly_item_01 .salaly_treatment p span {
  font-size: 1.2rem;
  color: var(--pink_color2);
}
#salaly .salaly_item_01 .salaly_treatment ul { margin-bottom: 20px; }
#salaly .salaly_item_01 .salaly_treatment ul li {
  width: 80%;
  border: 1px solid rgba(112, 112, 112, 0.5);
  margin-bottom: 10px;
  padding: 10px 5px;
  text-align: center;
}
#salaly .salaly_item_01 .salaly_treatment ul li:nth-child(2) { width: 90%; }
#salaly .salaly_item_01 .salaly_treatment ul li:last-child { width: 100%; }
#salaly .salaly_item_01 .salaly_treatment table {
  position: relative;
  padding: 20px 10px;
  text-align: right;
  width: 100%;
  max-width: 482px;
}
#salaly .salaly_item_01 .salaly_treatment table::before,
#salaly .salaly_item_01 .salaly_treatment table::after {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
}
#salaly .salaly_item_01 .salaly_treatment table::before {
  border-left: solid 1px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  top: 0;
  left: 0;
}
#salaly .salaly_item_01 .salaly_treatment table::after {
  border-right: solid 1px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  top: 0;
  right: 0;
}
#salaly .salaly_item_01 .salaly_treatment table tr:last-of-type td { padding-bottom: 0; }
#salaly .salaly_item_01 .salaly_treatment table tr td {
  vertical-align: middle;
  padding-bottom: 10px;
  font-size: 14px;
}
#salaly .salaly_item_01 .salaly_treatment table tr td:nth-of-type(2) { padding: 0 10px; }
#salaly .salaly_item_01 .salaly_treatment table tr td:last-of-type { color: #F9A7B8; }
#salaly .salaly_item_01 .salaly_treatment table tr span { font-size: 1.4em; }


#salaly .salaly_item_02 .backsystem_unit {
  padding: 40px 1.0rem;
  background: var(--main_color4);
  color: var(--white_color3);
  text-align: center;
}
#salaly .salaly_item_02 .title_backsystem {
  font-size: 1.6rem;
  border-bottom: 1px dashed var(--white_color3);
}
#salaly .salaly_item_02 .buai {
  color: var(--sub_color3);
  font-family: var(--font-number1);
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
}
#salaly .salaly_item_02 .buai p {
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1;
}
#salaly .salaly_item_02 .buai .buai_value {
  font-size: 2.8rem;
  font-weight: 400;
}
#salaly .salaly_item_02 .buai .buai_value span {
  font-size: 4.4rem;
  font-weight: 500;
}
#salaly .salaly_item_02 .txt_box {
  text-align: left;
  font-size: 1.0rem;
}
#salaly .salaly_item_02 .txt_box p { margin-bottom: 10px; }
#salaly .salaly_item_02 .txt_box p:last-child { margin-bottom: 0; }
#salaly .salaly_item_02 .bg_backsystem_frame {
  padding: 20px;
  background: var(--main_color1);
  text-align: center;
}
#salaly .salaly_item_02 .bg_backsystem ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
#salaly .salaly_item_02 .bg_backsystem ul li {
  width: calc((100% - 8px) / 2);
  background: var(--white_color3);
  color: var(--main_color1);
  padding: 14px 8px;
  font-size: 1.0rem;
  line-height: 1.2;
}
#salaly .salaly_item_02 .bg_backsystem ul li span { font-size: 0.8rem; }


#salaly .salaly_item_03 { padding: 40px 1.0rem; }
#salaly .salaly_item_03 .title_attractcustomers {
  text-align: center;
  font-size: 1.8rem;
  color: var(--main_color1);
  line-height: 1.6;
  margin-bottom: 20px;
}
#salaly .salaly_item_03 .title_attractcustomers span {
  background:linear-gradient(transparent 50%, var(--pink_color3) 50%);
}
#salaly .salaly_item_03 .txt_box {
  text-align: left;
  font-size: 1.0rem;
  margin-bottom: 40px;
}
#salaly .salaly_item_03 .atcus_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
#salaly .salaly_item_03 .atcus_list h4 {
  color: var(--sub_color2);
  font-size: 1.2rem;
}
#salaly .salaly_item_03 .atcus_list p { font-size: 0.9rem; }
#salaly .salaly_item_03 .atcus_reason {
  position: relative;
  background: var(--pink_color3);
  padding: 32px 1.4rem 1.4rem;
}
#salaly .salaly_item_03 .atcus_reason::before {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  width: 40px;
  height: 36px;
  background: url(../images/arrow_pink.svg) no-repeat;
  background-size: contain;
}
#salaly .salaly_item_03 .atcus_reason h4 {
  color: var(--pink_color2);
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
#salaly .salaly_item_03 .atcus_reason h4 span { font-size: 2.2rem; }
#salaly .salaly_item_03 .atcus_reason p {
  font-size: 0.9rem;
  color: var(--main_color1);
}

#salaly .salaly_item_04 { padding: 40px 1.0rem; }
#salaly .salaly_item_04 h3 {
  color: var(--main_color2);
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
#salaly .salaly_item_04 h3::before {
  color: #FFF8FB;
  position: absolute;
  font-size: 240px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#salaly .salaly_item_04 h3 span {
  color: var(--black_color2);
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: var(--font-number1);
  font-weight: 300;
}

/*インタビュー動画*/
.voice_movie{
  margin: 40px 0;
}
.voice_movie ul{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px auto;
}
.btn_youtube {
  max-width: 800px;
  width: 100%;
  min-height: 84px;
  border: 1px solid var(--main_color1);
  background: var(--main_color3);
  color: var(--main_color1);
  padding: 0 16px 0 20px;
  border-radius: 10px;
  margin-inline: auto;
  font-family: var(--font-number1);
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  justify-content: flex-start;
}
.btn_youtube .btn_img { margin-inline: auto; }
.btn_youtube .btn_img img {
  max-width: 42px;
  width: 100%;
  height: auto;
}
.btn_youtube .btn_txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn_youtube .btn_txt p {
  font-size: 1.3rem;
  line-height: 1.0;
  font-weight: bold;
}
.btn_youtube .btn_txt span {
  font-size: 0.9rem;
  line-height: 0.8;
}
@media (min-width: 768px) {
  .voice_movie{
    margin: 40px 0 0;
  }
    .voice_movie ul {
      margin: 0 auto;
      max-width: 800px;
      /* grid-template-columns: repeat(2, 1fr); */
    }
    .btn_youtube {
      padding: 16px 10px 16px 0;
      justify-content: center;
    }
}

#salaly .salaly_item_04 .salaly_girl h4 {
  color: var(--pink_color2);
  display: block;
  font-size: 0.9rem;
}
#salaly .salaly_item_04 .salaly_girl figcaption {
  color: var(--pink_color2);
  font-size: 40px;
  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  position: absolute;
  bottom: 0;
}
#salaly .salaly_item_04 .salaly_girl .example_salary {
  border-bottom: #D9D9D9 2px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#salaly .salaly_item_04 .salaly_girl .example_salary .name { font-size: 1.1rem; }
#salaly .salaly_item_04 .salaly_girl .example_salary .month { font-size: 1.3rem; }
#salaly .salaly_item_04 .salaly_girl .example_salary .month span { font-size: 0.9rem; }
#salaly .salaly_item_04 .salaly_girl .example_text { margin-bottom: 16px; }
#salaly .salaly_item_04 .salaly_girl .example_text h5 {
  color: var(--pink_color2);
  padding: 4px 12px;
  background: var(--gray_color1);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#salaly .salaly_item_04 .salaly_girl .example_text p { font-size: 14px; }
#salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd) { margin-bottom: 100px; }
#salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd):last-of-type {
  margin-bottom: 40px;
}
#salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd) figure .mark img {
  width: 80px;
  height: 80px;
}


#salaly .salaly_item_04 .salaly_girl_even figure {
  text-align: right;
  position: relative;
  margin-bottom: 32px;
}
#salaly .salaly_item_04 .salaly_girl_even figure:before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 70%;
  height: 350px;
  background: var(--main_color3);
  z-index: -1;
}
#salaly .salaly_item_04 .salaly_girl_even figure img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
#salaly .salaly_item_04 .salaly_girl_even figure figcaption {
  left: 20px;
  bottom: 30px
}
#salaly .salaly_item_04 .salaly_girl_even figure .mark {
  position: absolute;
  bottom: -30px;
  right: 10px;
}
#salaly .salaly_item_04 .salaly_girl_odd figure {
  text-align: left;
  position: relative;
  margin-bottom: 40px;
}
#salaly .salaly_item_04 .salaly_girl_odd figure:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 70%;
  height: 350px;
  background: var(--main_color3);
  z-index: -1;
}
#salaly .salaly_item_04 .salaly_girl_odd figure img {
  width: 100%;
  max-width: 270px;
  height: auto;
}
#salaly .salaly_item_04 .salaly_girl_odd figure figcaption {
  right: 20px;
  bottom: 30px;
}
#salaly .salaly_item_04 .salaly_girl_odd figure .mark {
  position: absolute;
  bottom: -30px;
  left: 10px;
}
#salaly .salaly_item_04 .btn_line { margin-top: 40px; }

/*--------------------------------------
お仕事について
--------------------------------------*/
#works .txt_box {
  text-align: left;
  font-size: 1.0rem;
  margin-bottom: 40px;
}
#works .works_unit ul {
	display: flex;
	flex-direction: column;
	gap: 24px;
  margin-bottom: 40px;
}
#works .works_unit ul li {
	position: relative;
	display: flex;
  flex-direction: column;
	align-items: center;
  gap: 0.8rem;
	border: 1px solid var(--main_color4);
	border-radius: 20px;
  padding: 1.2rem;
}
#works .works_unit ul li:after {
	content: '';
	position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
	width: 0;
	height: 0;
	border: none;
  border-top: 16px solid var(--main_color4);
  border-right: 64px solid transparent;
  border-left: 64px solid transparent;
}
#works .works_unit ul li:last-child:after { content: none; }
#works .works_unit ul li .step_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: none;
  padding-left: 0;
}
#works .works_unit ul li .title_number {
	max-width: 64px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: var(--font-number1);
	font-weight: 400;
	color: var(--main_color4);
	font-size: 1.0rem;
	letter-spacing: 4px;
	line-height: 1.2;
}
#works .works_unit ul li .title_number span { display: inline-block; }
#works .works_unit ul li .title_number span.number { font-size: 2.0rem; }
#works .works_unit ul li .title_howto {
	line-height: 1.4;
	font-size: 1.3rem;
	margin-bottom: 4px;
	color: var(--pink_color2);
	text-align: left;
}
#works .works_unit ul li .title_howto { text-align: center; }
#works .works_unit ul li .step_group .txt_box {
	line-height: 1.6;
	text-align: left;
	font-size: 0.9rem;
}
#works .works_unit ul li .step_group .img_box img {
	width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}
#works .works_unit ul li:is(.step_1, .step_2) .step_group .img_box img {
  object-position: left top;
}
#works .works_unit ul li:is(.step_3, .step_4, .step_5) .step_group .img_box img {
  object-position: center center;
}
#works .works_unit ul li .step_group .works_txt {
  text-align: left;
  font-size: 1.0rem;
}
#works .btn_line { margin: 40px auto 64px; }


/*--------------------------------------
応募から入店までの流れ
--------------------------------------*/
#flow .flow_about {
  text-align: left;
  margin-bottom: 40px;
}
#flow .flow_list {
  display: grid;
	grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
#flow .flow_list li {
  position: relative;
  background: var(--main_color4);
  padding: 3.2rem 1.4rem 1.4rem;
  color: var(--white_color3);
}
#flow .flow_list li figcaption {
  position: absolute;
  top: 20px;
  left: -2px;
  font-family: var(--font-number1);
  font-weight: 600;
  font-size: 4.0rem;
  line-height: 1;
}
#flow .flow_list li .img_box img {
  width: 100%;
  height: auto;
}
#flow .flow_list li h3 {
  font-size: 1.6rem;
  text-align: center;
  padding-top: 16px;
}
#flow .flow_list li .txt_box { color: var(--white_color3); }


/*--------------------------------------
こんな方にオススメ
--------------------------------------*/
#recommend.js-bg-lazy { background-image: none !important; }
#recommend { background: url(../images/bg_treatment.webp) no-repeat 50% 50%/cover; }

#recommend .title_article { color: var(--main_color1); }
#recommend .txt_box {
  font-size: 1.0rem;
  text-align: center;
  margin-bottom: 40px;
}
#recommend ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#recommend ul li {
  background: var(--white_color3);
  padding: 4px;
}
#recommend ul li p {
  height: 100%;
  padding: 14px 4px;
  border: 1px solid var(--sub_color1);
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#recommend ul li span { color: #F9A7B8; }

/*--------------------------------------
Q&A
--------------------------------------*/
#question { background: var(--white_color3); }
#question ul li {
  display: flex;
  font-size: 12px;
}
#question ul li span {
  font-family: var(--font-number1);
  font-weight: 300;
}
#question ul li:nth-of-type(odd) { margin-bottom: 10px; }
#question ul li:nth-of-type(odd) :is(span, p) { background: var(--gray_color1); }
#question ul li:nth-of-type(odd) span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 10px;
  width: 40px;
  height: 40px;
}
#question ul li:nth-of-type(odd) p {
  padding: 10px 14px;
  width: 100%;
  min-height: 40px;
}
#question ul li:nth-of-type(even) { margin-bottom: 30px; }
#question ul li:nth-of-type(even) :is(span, p) { background: var(--pink_color4); }
#question ul li:nth-of-type(even) span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 10px;
  width: 40px;
  height: 40px;
}
#question ul li:nth-of-type(even) p {
  padding: 10px 14px;
  width: 100%;
}

/*--------------------------------------
募集要項
--------------------------------------*/
#recruit { background: var(--main_color3); }
#recruit table {
  width: 100%;
  padding-top: 20px;
}
#recruit tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#recruit :is(th, td){ width: 100%; }
#recruit th {
  color: var(--pink_color2);
  font-weight: normal;
}
#recruit .btn_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px auto 0;
}
@media (min-width: 600px) {
  #recruit .btn_line {
    padding: 16px 10px;
  }
  #recruit .btn_line .btn_img img {
    max-width: 64px;
    width: 100%;
    height: auto;
  }
  #recruit .btn_line .btn_txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #recruit .btn_line .btn_txt p {
    font-size: clamp(1.3rem, 3.0vw, 1.8rem);
    line-height: 1.0;
    font-weight: bold;
  }
  #recruit .btn_line .btn_txt span {
    font-size: 0.9rem;
    line-height: 0.8;
  }
}

/*--------------------------------------
WEBエントリー
--------------------------------------*/
#entry { background: var(--main_color3); }
#entry .inner { max-width: 800px; }

#entry input[type=text],
#entry input[type=tel],
#entry input[type=email],
#entry form p {
  background: var(--white_color3);
  width: 100%;
}
#entry input[name=age],
#entry input[name=station] {
  width: 25%;
  min-width: 120px;
  margin-right: 8px;
}
#entry input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
#entry .inputs { margin-bottom: 20px; }
#entry .inputs:last-child { margin-bottom: 0; }
#entry .inputs .form_label {
  margin-bottom: 5px;
  display: block;
}
#entry .inputs input,
#entry .inputs p {
  padding: 10px;
}
#entry .inputs .name {
  display: flex;
  justify-content: space-between;
}
#entry .inputs .name input,
#entry .inputs .name p {
  width: 48%;
}
#entry .inputs :is(.occ, .exp) { display: flex; }
#entry .inputs :is(.occ, .exp) div { width: 150px; }
#entry .inputs :is(.occ, .exp) label {
  position: relative;
  padding-left: 50px;
  font-size: 12px;
}
#entry .inputs :is(.occ, .exp) label:before,
#entry .inputs :is(.occ, .exp) label:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
#entry .inputs :is(.occ, .exp) label:before {
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: 5px;
}
#entry .inputs :is(.occ, .exp) label:after {
  background-color: #F9A7B8;
  border-radius: 50%;
  opacity: 0;
  width: 25px;
  height: 25px;
  left: 7.5px;
}
#entry .inputs :is(.occ, .exp) input:checked+label::after { opacity: 1; }
#entry .inputs .other { margin-bottom: 60px; }
#entry .inputs .other textarea {
  width: 100%;
  background: var(--white_color3);
  padding: 10px;
}

#entry .form_box .txt_box {
  font-size: 1.0rem;
  padding: 20px;
  text-align: center;
}

#entry .caution {
  background: #fff5f8;
  border: solid 1px #da91a4;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
#entry .caution.err + .reset { margin-bottom: 20px; }
#entry .caution p { background: none; }
#entry .caution .atten_01 { color: #da91a4; }
@media (min-width: 600px) {
  #entry .caution br{ display: none; }
}
::-webkit-input-placeholder,
::-moz-placeholder,
::-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
  color: #AAAAAA;
  font-size: 12px;
}
#entry ::placeholder{
  color: #AAAAAA;
  font-size: 0.9rem;
}
#entry .inputs_item p,
#entry .inputs_item span {
  display: inline-block;
}
#entry .inputs_item.age p,
#entry .inputs_item.station p {
  width: 25%;
  min-width: 130px;
  margin-right: 8px;
}

#entry .form_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*--------------------------------------
オフィシャルバナー
--------------------------------------*/
#official { text-align: center; }
#official img {
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
}

/*--------------------------------------
フッター
--------------------------------------*/
footer {
  background: var(--main_color2);
  color: var(--white_color3);
  padding: 40px 0 130px;
  text-align: center;
}
footer p {
  font-size: 12px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/*--------------------------------------
追尾バナー
--------------------------------------*/
.tracking_unit {
  position: fixed;
  bottom: 0;
  background: var(--white_color3);
  width: 100%;
  padding: 8px;
  transition: 0.3s ease-in-out;
}
.tracking_unit .btn_line {
  max-width: 400px;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: var(--line_color1);
  color: var(--white_color3);
  border-radius: 10px;
  margin-inline: auto;
  font-family: var(--font-sanserif1);
}
.tracking_unit .btn_line .btn_img img {
  max-width: 56px;
  width: 100%;
  height: auto;
}
.tracking_unit .btn_line .btn_txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tracking_unit .btn_line .btn_txt p {
  font-size: clamp(1.3rem, 3.0vw, 1.5rem);
  line-height: 1.0;
  font-weight: bold;
}
.tracking_unit .btn_line .btn_txt span {
  font-size: 0.9rem;
  line-height: 1.0;
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* トップページの共通タイトル */
.title_article {
  text-align: center;
  color: var(--black_color2);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: fot-klee-pro, sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 0;
}
.title_article .txt_en {
  position: relative;
  color: var(--main_color2);
  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  text-align: center;
  display: inline-block;
}
.title_article .txt_en:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: inline-block;
  width: 200px;
  height: 38px;
  background: url(../images/article_title.png) no-repeat;
  background-size: contain;
  z-index: -1;
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
.menu_item.offisial_btn a {
  width: 100%;
  max-width: 300px;
  background: var(--main_color1);
  border: 1px solid var(--main_color1);
  color: var(--white_color3);
  margin: 20px auto 0;
  text-align: center;
  border-radius: 40px;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_item.offisial_btn a:hover {
  color: var(--main_color1);
  background: var(--white_color3);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background:  var(--white_color3);
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  padding: 10px 25px;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
.btn::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
}
.btn span {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: inline-block;
}
.btn span::before {
  content: "";
  color:  var(--white_color3);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  margin-top: -12px;
}

/* LINEボタン */
.btn_line {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: var(--line_color1);
  color: var(--white_color3);
  padding: 16px 10px;
  border-radius: 10px;
  margin-inline: auto;
  font-family: var(--font-sanserif1);
}
.btn_line .btn_img img {
  max-width: 64px;
  width: 100%;
  height: auto;
}
.btn_line .btn_txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn_line .btn_txt p {
	font-size: clamp(1.3rem, 3.0vw, 1.8rem);
  line-height: 1.0;
  font-weight: bold;
}
.btn_line .btn_txt span {
  font-size: 0.9rem;
  line-height: 0.8;
}
@media (min-width: 600px) {
  .btn_line {
    padding: 20px;
  }
  .btn_line .btn_img img {
    max-width: 96px;
  }
  .btn_line .btn_txt p {
    font-size: clamp(1.5rem, 4.0vw, 2.4rem);
  }
  .btn_line .btn_txt span {
    font-size: 1.3rem;
    line-height: 1.0;
  }
}

/* TELボタン */
.btn_tel {
  max-width: 800px;
  width: 100%;
  min-height: 96px;
  border: 1px solid var(--main_color1);
  background: var(--main_color3);
  color: var(--main_color1);
  padding: 16px 10px;
  border-radius: 10px;
  margin-inline: auto;
  font-family: var(--font-number1);
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  justify-content: center;
}
.btn_tel .btn_img { margin-inline: auto; }
.btn_tel .btn_img img {
  max-width: 32px;
  width: 100%;
  height: auto;
}
.btn_tel .btn_txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn_tel .btn_txt p {
	font-size: clamp(1.3rem, 7.0vw, 2.2rem);
  line-height: 1.0;
  font-weight: 500;
}
.btn_tel .btn_txt span {
  font-size: 0.9rem;
  line-height: 0.8;
}

/* 確認送信ボタン */
.submit {
  background: var(--pink_color2);
  border: 1px solid var(--pink_color2);
  color: var(--white_color3);
  width: min(100%, 640px);
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
  margin-inline: auto;
  transition: all 0.2s;
}
.submit:hover {
  background: var(--main_color3);
  color: var(--pink_color2);
}

/* リセットボタン */
.reset {
  background: #aaa;
  color: var(--white_color3);
  display: block;
  font-size: 0.9rem;
  padding: 8px 14px;
  margin: auto;
  line-height: 1.6;
}

/* 共通フレーム */
.frame_contents_outer {
	padding: 0.4rem;
	background: var(--white_color1);
	box-shadow: 0 0 12px 2px rgba(147, 130, 150, 0.2);
}
.frame_contents {
	padding: 1.6rem;
	border: 1px solid var(--main_color3);
}
@media screen and (max-width: 768px){
	.frame_contents_outer { padding: 0.3rem; }
	.frame_contents { padding: 1.0rem; }
}

/*--------------------------------------
600px以上
--------------------------------------*/
@media (min-width: 600px) {
  body.open { overflow: auto; }
  .mainvisual img { margin: 60px auto 30px; }
  footer { padding: 40px 0; }

  /* 追尾バナー */
  .tracking_unit {
    bottom: 0;
    right: 0;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: flex-end;
  }
  .tracking_unit .btn_line {
    margin-inline: initial;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    padding: 10px;
  }
  .tracking_unit .btn_line .btn_img img { max-width: 64px; }
  .tracking_unit .btn_line .btn_txt p { font-size: 1.5rem; }
  .tracking_unit .btn_line .btn_txt span { line-height: 1.2; }

  /* トップページの共通タイトル */
  .title_article { font-size: 2.0rem; }

  .menu_box {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
    padding: 200px 50px;
    overflow: auto;
  }

  .menu_box .menu_item:first-of-type { font-size: 22px; }
  .menu_box .menu_item { width: calc(100% / 2);}
  .menu_box:has(.menu_item:nth-of-type(odd):last-of-type) .menu_item:nth-of-type(2) {
    width: 100%; /* メニュー数が奇数のとき、一番上のみに適用 */
  }

  /* ご挨拶 */
  #greeting {
    background: url(../images/bg_greeting_pc.jpg) no-repeat 50% 100%/cover;
    text-align: center;
  }
  #greeting .frame_greeting { padding: 2.4rem 2.0rem 3.0rem; }
  #greeting .title_greeting { margin-bottom: 10px; }
  #greeting h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  #greeting .txt_box p { font-size: 1.0rem; }
  #greeting .txt_box p span { font-size: 1.2rem; }

  /* ベルリリーはここが違います */
  #comparison .comparison_unit { padding: 3.2rem 1.6rem; }
  #comparison .comparison_unit_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  #comparison .comparison_unit_list section { background: var(--white_color3); }
  #comparison .comparison_unit_list .cat_lead {
    flex-direction: row;
    padding: 1.6rem;
    /* font-size: 1.2rem; */
    font-size: clamp(1.1rem, 2.0vw, 1.4rem);
    gap: 8px;
    background: var(--main_color1);
    color: var(--white_color3);
    border: double 4px var(--main_color3);
  }
  #comparison .comparison_unit_list .txt_box {
    font-size: 1.0rem;
    line-height: 1.6;
    padding: 1.6rem;
  }
  #comparison .comparison_unit_list .txt_box p { margin-bottom: 16px; }

  /* 給料制度 */
  #salaly .title_article { margin-bottom: 100px; }
  #salaly .title { margin-bottom: 200px; }
  #salaly .salaly_item_01 .inner::before {
    width: 80%;
    height: 600px;
    top: 20px;
  }
  #salaly .salaly_item_01 h3 {
    font-size: 60px;
    padding-right: 0;
  }
  #salaly .salaly_item_01 figure { margin-bottom: 0; }
  #salaly .salaly_item_01 figure img {
    width: 100%;
    max-width: 400px;
  }
  #salaly .salaly_item_01 .salaly_treatment::before {
    font-size: 350px;
    right: -87px;
  }
  #salaly .salaly_item_01 .salaly_treatment .txt_box {
    font-size: 1.2rem;
    margin-bottom: 80px;
  }
  #salaly .salaly_item_01 .salaly_treatment .txt_box p { margin-bottom: 20px; }
  #salaly .salaly_item_01 .salaly_treatment ul { margin-bottom: 40px; }
  #salaly .salaly_item_01 .salaly_treatment ul li {
    font-size: 24px;
    padding: 10px;
    width: 60%;
  }
  #salaly .salaly_item_01 .salaly_treatment ul li:nth-child(2) { width: 70%; }
  #salaly .salaly_item_01 .salaly_treatment ul li:last-child { width: 80%; }
  #salaly .salaly_item_01 .salaly_treatment table { padding: 20px; }
  #salaly .salaly_item_01 .salaly_treatment table tr td { font-size: 20px; }
  #salaly .salaly_item_01 .salaly_treatment table tr td:nth-of-type(2) { padding: 0 0 0 20px; }
  #salaly .salaly_item_01 .salaly_treatment table tr span { font-size: 1.7em; }

  #salaly .salaly_item_02 .title_backsystem { font-size: 2.0rem; }
  #salaly .salaly_item_02 .buai p { font-size: 2.6rem; }
  #salaly .salaly_item_02 .buai .buai_value { font-size: 5.6rem; }
  #salaly .salaly_item_02 .buai .buai_value span { font-size: 7.0rem; }
  #salaly .salaly_item_02 .txt_box {
    text-align: center;
    font-size: 1.1rem;
  }
  #salaly .salaly_item_02 .bg_backsystem_frame { padding: 40px; }
  #salaly .salaly_item_02 .bg_backsystem ul li {
    width: calc((100% - 32px) / 5);
    padding: 20px 10px;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-size: 1.1rem;
  }
  #salaly .salaly_item_02 .bg_backsystem ul li span { font-size: 0.9rem; }

  #salaly .salaly_item_03 { padding: 80px 1.0rem; }
  #salaly .salaly_item_03 .txt_box { text-align: center; }
  #salaly .salaly_item_03 .atcus_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #salaly .salaly_item_03 .atcus_list li {
    display: grid;
    grid-template-columns: subgrid;
  }
  #salaly .salaly_item_03 .atcus_list li .frame_contents { height: 100%; }
  #salaly .salaly_item_03 .atcus_list h4 { font-size: 1.6rem; }
  #salaly .salaly_item_03 :is(.atcus_list, .atcus_reason) p { font-size: 1.0rem; }

  #salaly .salaly_item_04 h3 {
    margin-inline: auto;
    margin-bottom: 80px;
  }
  #salaly .salaly_item_04 h3::before { font-size: 340px; }
  #salaly .salaly_item_04 .salaly_girl figcaption { font-size: 64px; }
  #salaly .salaly_item_04 .salaly_girl .example_salary p { font-size: 24px; }

  #salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd) figure {
    width: 65%;
    max-width: 500px;
    margin: auto auto 40px;
  }
  #salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd) figure figcaption {
    bottom: 90px;
  }
  #salaly .salaly_item_04 :is(.salaly_girl_even, .salaly_girl_odd) figure .mark img {
    width: 120px;
    height: 120px;
  }
  #salaly .salaly_item_04 .salaly_girl_even figure figcaption { left: -40px; }
  #salaly .salaly_item_04 .salaly_girl_odd figure figcaption { right: -40px; }
  #salaly .salaly_item_04 .salaly_girl_even figure:before {
    width: 430px;
    height: 560px;
    top: -30px;
    left: -100px;
  }
  #salaly .salaly_item_04 .salaly_girl_even figure img {
    width: 440px;
    max-width: 100%;
  }
  #salaly .salaly_item_04 .salaly_girl_even figure .mark { bottom: -50px; }
  #salaly .salaly_item_04 .salaly_girl_odd figure:before {
    width: 430px;
    height: 560px;
    top: 60px;
    right: -100px;
  }
  #salaly .salaly_item_04 .salaly_girl_odd figure img {
    width: 440px;
    max-width: 100%;
  }
  #salaly .salaly_item_04 .btn_line { margin-top: 100px; }


  /* お仕事について */
  #works .txt_box {
    text-align: center;
  }
  #works .works_unit ul { gap: 40px; }
  #works .works_unit ul li {
    flex-direction: row;
    gap: 1.6rem;
    border-radius: 20px;
    padding: 2.0rem;
  }
  #works .works_unit ul li:after {
    content: '';
    bottom: -24px;
    border: none;
    border-top: 24px solid var(--main_color4);
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
  }
  #works .works_unit ul li .step_group {
    display: grid;
    align-items: center;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    border-left: 1px solid var(--main_color4);
    padding-left: 2.0rem;
  }
  #works .works_unit ul li .title_howto {
    text-align: left;
    font-size: 1.4rem;
  }
  #works .works_unit ul li .step_group .img_box img { aspect-ratio: 3/2; }
  #works .works_unit ul li:is(.step1,.step2,.step3 ) .step_group .img_box img {
    object-position: none;
  }
  #works .btn_line { margin: 64px auto 80px; }


  /* こんな方にオススメ */
  #recommend.bg_article { padding: 100px 0; }
  #recommend ul { grid-template-columns: repeat(3, 1fr); }
  #recommend ul li p { font-size: 1.1rem; }

  /* 応募から入店までの流れ */
  #flow .flow_about { text-align: center; }
  #flow .flow_list { grid-template-columns: repeat(2, 1fr); }

  #question { padding: 100px 0 110px; }
  #question ul { padding-top: 20px; }
  #question ul li { font-size: 16px; }
  #question ul li:nth-of-type(odd) span { font-size: 30px; }
  #question ul li:nth-of-type(odd) p {
    padding: 10px 16px;
    line-height: 1.4;
  }
  #question ul li:nth-of-type(even) span { font-size: 30px; }
  #question ul li:nth-of-type(even) p { padding: 10px 16px; }

  #recruit tr {
    flex-direction: row;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  #recruit th { width: 20%; }
  #recruit td { width: 80%; }

  #entry { padding: 100px 0; }
  #entry .inputs input,
  #entry .inputs p {
    padding: 10px;
  }
  #official { padding: 75px 0; }
  #entry .inputs .other textarea { padding: 10px; }
  .btn { max-width: 400px; }
}

/*--------------------------------------
1025px以上
--------------------------------------*/
@media (min-width: 1025px) {
  header .inner { padding: 0 50px 0 0; }
  .menu_box { padding: 200px 20%; }

  #salaly .salaly_item_01 {
    padding-top: 100px;
    margin-bottom: 160px;
  }
  #salaly .salaly_item_01 .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 60px;
  }
  #salaly .salaly_item_01 .inner::before {
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
  }
  #salaly .salaly_item_01 .salaly_treatment .txt_box { text-align: left; }

  #salaly .salaly_item_04 h3 { margin-bottom: 0; }
  #salaly .salaly_item_04 .salaly_girl .example {
    width: 35%;
    margin: 120px auto 0;
  }
  #salaly .salaly_item_04 .salaly_girl_even {
    display: flex;
    justify-content: space-between;
    gap: 150px;
    flex-direction: row-reverse;
    margin: auto 0 80px 40px;
  }
  #salaly .salaly_item_04 .salaly_girl_odd {
    display: flex;
    justify-content: space-between;
    gap: 150px;
    margin: auto 40px 80px auto;
  }
  #recommend ul {
    grid-template-columns: repeat(3, 240px);
    justify-content: center;
  }

  #recruit .btn_box {
    margin: 0 auto;
    gap: 10px;
    max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
  }
  #recruit .btn_box :is(.btn_line, .btn_tel) { min-width: 360px; }
  #recruit .btn_box .btn_line .btn_txt p { font-size: clamp(1.4rem, 3.0vw, 1.5rem); }
  /* #recruit .btn_box .btn_tel .btn_txt p { font-size: clamp(1.6rem, 3.0vw, 2.0rem); } */
  #recruit .btn_box .btn_tel {
    grid-template-columns: 64px 1fr;
  }

}

/*--------------------------------------
1280px以上
--------------------------------------*/
@media (min-width: 1280px) {
  .pc_nav { display: flex; }
}

/*--------------------------------------
1500px以上
--------------------------------------*/
@media (min-width: 1500px) {
  header .inner { padding: 0; }
  .menu_box { padding: 200px 30%; }
}