@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: clip;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

:root {
  --black: #33291f;
  --main: #6785b1;
  --white: #fff;
  --accent: #d96c8d;
  --bg-base: #f5f0e9;
  --bg-pink: #e0a8b9;
  --transition: 0.4s;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-36: 2.25rem;
  --fs-52: 3.25rem;
  --header-height: 80px;
  --lh-16: 1.75;
  --lh-18: 2;
}

@media (min-width: 1px) {
  :root {
    --header-height: 75px;
  }
}
@media (max-width: 1024px) {
  :root {
    --fs-16: 0.9375rem;
    --fs-18: 1.0625rem;
    --fs-20: 1.125rem;
    --fs-24: 1.3125rem;
    --fs-36: 1.875rem;
    --fs-52: 3rem;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-16: 0.875rem;
    --fs-18: 0.9375rem;
    --fs-20: 1rem;
    --fs-24: 1.125rem;
    --fs-36: 1.375rem;
    --fs-52: 2.3125rem;
    --header-height: 60px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  position: relative;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: var(--lh-18);
  color: var(--black);
  letter-spacing: 0.1em;
  background-color: var(--bg-base);
}
body::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/bg_texture.jpg") repeat left top/200px 200px;
  mix-blend-mode: multiply;
}

main {
  position: relative;
}

.inner {
  width: 92%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.inner--s {
  max-width: 800px;
}
.inner--m {
  max-width: 1200px;
}
.inner--l {
  max-width: 1400px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.btn-container {
  margin-top: 50px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 540px);
  min-height: 60px;
  padding: 0 2.3em;
  margin-inline: auto;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_chevron_right_01.svg") no-repeat calc(100% - 1em) center/0.5em, url("../images/icon_chevron_right_02.svg") no-repeat calc(100% - 1em) center/0, var(--main);
  border: 2px solid var(--main);
  transition: color var(--transition), background-color var(--transition), background-size var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    color: var(--main);
    background-color: var(--white);
    background-size: 0, 0.5em;
  }
}
@media (hover: none) {
  .btn:active {
    color: var(--main);
    background-color: var(--white);
    background-size: 0, 0.5em;
  }
}
.btn--down {
  letter-spacing: 0.02em;
  background: url("../images/icon_chevron_down_01.svg") no-repeat calc(100% - 1em) center/0.8em, url("../images/icon_chevron_down_02.svg") no-repeat calc(100% - 1em) center/0, var(--main);
}
@media (hover: hover) and (pointer: fine) {
  .btn--down:hover, .btn--down:focus {
    background-size: 0, 0.8em;
  }
}
@media (hover: none) {
  .btn--down:active {
    background-size: 0, 0.8em;
  }
}

.heading-container {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 40px;
  }
}

.heading-en {
  font-family: Vollkorn, serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: var(--fs-52);
  line-height: 1.5;
  color: var(--main);
}

.heading {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  color: var(--main);
}

.lead {
  margin-top: 1.5em;
  text-align: center;
}

.top-btn {
  position: fixed;
  right: 2%;
  bottom: 3%;
  z-index: 10;
  display: grid;
  visibility: hidden;
  place-content: center;
  width: 70px;
  aspect-ratio: 1;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.top-btn.is-show {
  visibility: visible;
  opacity: 1;
}
.top-btn.is-stop {
  position: absolute;
  transform: translateY(50%);
}
.top-btn::before {
  background-color: var(--white);
  -webkit-mask-image: url("../images/icon_chevron_up_02.svg");
          mask-image: url("../images/icon_chevron_up_02.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  justify-self: center;
  width: 12px;
  aspect-ratio: 5/3;
  content: "";
}
@media (max-width: 1024px) {
  .top-btn {
    width: 60px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top-btn {
    bottom: 2%;
    width: 50px;
    font-size: 14px;
  }
}
.top-btn:hover {
  opacity: 0.8;
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 30px;
  transition: background-color var(--transition);
}
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
}
.header::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  width: 100vw;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.header.js-active::before {
  display: block;
}
.header_logo {
  align-content: center;
  width: 250px;
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .header_logo {
    width: 215px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  align-content: flex-start;
  width: min(90%, 500px);
  height: 100vh;
  padding: calc(var(--header-height) + 10px) max(25px, 3%);
  margin-top: 0;
  background-color: var(--bg-base);
  transform: translateX(110%);
  transition: transform var(--transition);
}
.js-active .header-nav {
  transform: translateX(0);
}
.header-nav_item + .header-nav_item {
  border-top: 2px solid var(--bg-pink);
}
.header-nav_link {
  padding: 1em;
  line-height: 1.5;
  text-align: center;
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    color: var(--accent);
  }
}
@media (hover: none) {
  .header-nav_link:active {
    color: var(--accent);
  }
}
.header-nav_link .en {
  font-family: Vollkorn, serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
  display: block;
  font-size: 1.3em;
  font-weight: 700;
}
.header-nav_btn {
  margin-top: 30px;
}
.header-nav .btn {
  width: 100%;
}

.entry-btn {
  display: grid;
  place-content: center;
  width: 180px;
  height: 46px;
  padding-right: 1em;
  padding-left: 1em;
  margin-right: 30px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--main);
  border: 2px solid var(--white);
  border-radius: 100px;
  transition: opacity var(--transition);
  transition: color var(--transition), background-color var(--transition);
}
@media (max-width: 768px) {
  .entry-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 30;
    visibility: hidden;
    width: 150px;
    font-size: 14px;
    border-radius: unset;
    border-top-right-radius: 10px;
    opacity: 0;
    border-left: unset;
    border-bottom: unset;
  }
}
.entry-btn.is-show {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover, .entry-btn:focus {
    color: var(--main);
    background-color: var(--white);
  }
}
@media (hover: none) {
  .entry-btn:active {
    color: var(--main);
    background-color: var(--white);
  }
}

.hamburger {
  position: relative;
  z-index: 150;
  width: 60px;
  aspect-ratio: 1;
}
.hamburger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: translateX(-50%);
  transition: transform var(--transition), width var(--transition);
}
.hamburger > span:nth-of-type(1) {
  top: 33%;
}
.hamburger > span:nth-of-type(3) {
  top: 68%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(30deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-30deg);
}

/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  padding: 50px 5% 60px;
  font-size: var(--fs-16);
  border-top: #a59889 1px solid;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 70px;
    font-size: 0.75rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 10px;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1em;
  display: block;
  width: 1px;
  height: 0.9em;
  content: "";
  background: var(--black);
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:not(:last-child)::after:hover, .footer-nav a:not(:last-child)::after:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:not(:last-child)::after:active {
    opacity: 0.75;
  }
}
@media (width <= 600px) {
  .footer-nav a:nth-last-child(2)::after {
    display: none;
  }
}

.copyright {
  text-align: center;
}

/* ------------------------
    mv
------------------------ */
.bg-mv {
  position: relative;
  padding-top: var(--header-height);
  background-color: #f8d5e0;
}
.bg-mv::before {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/bg_texture.jpg") repeat left top/200px 200px;
  mix-blend-mode: multiply;
}

.mv {
  position: relative;
  z-index: 1;
  margin-top: -15px;
}
@media (max-width: 768px) {
  .mv {
    margin-top: 10px;
  }
}
.mv::before {
  position: absolute;
  top: -33%;
  left: -8%;
  z-index: -1;
  display: block;
  width: 31.75%;
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg_lace_03.png") no-repeat center/contain;
}
@media (max-width: 768px) {
  .mv::before {
    top: unset;
    left: unset;
    bottom: 78%;
    right: 55.1282051282%;
    width: 69.2307692308%;
  }
}
.mv::after {
  position: absolute;
  top: 44%;
  right: -10%;
  z-index: -1;
  display: block;
  width: 38.4375%;
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg_lace_02.png") no-repeat center/contain;
}
@media (max-width: 768px) {
  .mv::after {
    top: unset;
    right: unset;
    bottom: 2.4%;
    left: 51.2820512821%;
    width: 76.9230769231%;
  }
}
.mv_txt-container {
  position: absolute;
  top: 10.1388888889%;
  left: 26.0625%;
  display: flex;
  flex-direction: row-reverse;
  gap: 9%;
  align-items: flex-start;
  width: 15.9375%;
}
@media (max-width: 768px) {
  .mv_txt-container {
    top: 1.953125%;
    left: 5.3333333333%;
    width: 40%;
  }
}
.mv_txt + .mv_txt {
  margin-top: 20%;
}

/* ------------------------
    message
------------------------ */
.message {
  padding-top: 70px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .message {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.message_inner {
  padding-bottom: 130px;
  background: url("../images/image_deco_heart.svg") no-repeat 7% 20px/min(21.4%, 214px), url("../images/image_deco_needle.png") no-repeat right 96%/min(13%, 130px);
}
@media (max-width: 768px) {
  .message_inner {
    padding-bottom: 100px;
    background-position: 9% 50px, right 93%;
    background-size: 22%, 80px;
  }
}
@media (max-width: 500px) {
  .message_inner {
    padding-bottom: 100px;
    background-position: 0 70px, right 93%;
    background-size: 20%, 60px;
  }
}
.message .heading-container {
  margin-bottom: unset;
}

/* ------------------------
    job
------------------------ */
.job-deco {
  position: relative;
  left: 50%;
  z-index: 2;
  width: 712px;
  aspect-ratio: 6/1;
  margin-top: -117px;
  margin-bottom: -2px;
  background: #d6d0c6;
  -webkit-mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
          mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
  transform: translateX(-50%) scaleY(1.01);
}
@media (max-width: 1024px) {
  .job-deco {
    width: 610px;
    margin-top: -101px;
  }
}
@media (max-width: 768px) {
  .job-deco {
    width: 430px;
    margin-top: -69px;
  }
}
@media (max-width: 500px) {
  .job-deco {
    width: 300px;
    margin-top: -49px;
  }
}
.job-deco_inner {
  position: absolute;
  inset: 0;
}
.job-deco_inner::before {
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg-base);
  -webkit-mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
          mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
  transform: translateX(-50%) scaleY(1.01);
}
.job-deco_inner::after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/bg_texture.jpg") repeat left bottom/200px 200px;
  mix-blend-mode: multiply;
  -webkit-mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
          mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
  transform: translateX(-50%);
}

.job {
  position: relative;
  padding-bottom: 150px;
  border-top: #d6d0c6 2px solid;
}
.job::before {
  position: absolute;
  bottom: calc(100% + 45px);
  left: 50%;
  z-index: 2;
  display: block;
  width: 350px;
  aspect-ratio: 25/6;
  content: "";
  background: url("../images/image_deco_ribbon_01.svg") no-repeat center/contain;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .job::before {
    bottom: calc(100% + 50px);
    width: 320px;
  }
}
@media (max-width: 768px) {
  .job::before {
    bottom: calc(100% + 30px);
    width: 40%;
  }
}
@media (max-width: 500px) {
  .job::before {
    bottom: calc(100% + 10px);
    width: 50%;
  }
}
.job_inner {
  position: relative;
  z-index: 3;
  margin-top: -20px;
}
@media (max-width: 768px) {
  .job_inner {
    margin-top: unset;
  }
}

.job-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .job-list {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    padding-right: 5%;
    padding-left: 5%;
    margin-inline: auto;
  }
}

.job-item {
  display: grid;
  grid-template-rows: 1fr auto auto;
}
@media (max-width: 768px) {
  .job-item {
    width: min(500px, 90%);
    margin-inline: auto;
  }
}
.job-item_desc {
  display: grid;
  margin-bottom: 15px;
  color: var(--main);
  text-align: center;
}
@media (max-width: 768px) {
  .job-item_desc {
    margin-bottom: 0;
    line-height: 1.7;
  }
}
.job-item_desc::before {
  display: block;
  width: 40%;
  aspect-ratio: 2;
  margin-bottom: -1.5em;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.job-item:nth-of-type(1) .job-item_desc::before {
  background-image: url("../images/text_type_01.svg");
}
.job-item:nth-of-type(2) .job-item_desc::before {
  margin-bottom: -0.5em;
  background-image: url("../images/text_type_02.svg");
}
@media (max-width: 768px) {
  .job-item:nth-of-type(2) .job-item_desc::before {
    margin-bottom: -0.7em;
  }
}
.job-item:nth-of-type(3) .job-item_desc::before {
  background-image: url("../images/text_type_03.svg");
}
.job-item_desc::after {
  display: block;
  align-self: flex-end;
  width: 100%;
  aspect-ratio: 8/1;
  content: "";
  background: url("../images/image_deco_speech.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .job-item_desc::after {
    justify-self: center;
    width: 73%;
    margin-top: 0.5em;
  }
}
.job-item_img {
  width: 64%;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .job-item_img {
    width: min(50%, 150px);
    margin-bottom: 15px;
  }
  .job-item:nth-of-type(2) .job-item_img {
    margin-bottom: -13px;
  }
  .job-item:nth-of-type(3) .job-item_img {
    margin-bottom: 8px;
  }
}

[id=sewing] {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
[id=sewing]::before {
  position: absolute;
  top: 7%;
  right: calc(50% + 235px);
  z-index: -1;
  display: block;
  width: min(616px, 50%);
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg_lace_02.png") no-repeat center/contain;
}
@media (max-width: 1024px) {
  [id=sewing]::before {
    right: unset;
    left: -10%;
  }
}
@media (max-width: 768px) {
  [id=sewing]::before {
    top: -3%;
    left: -16%;
    width: 60%;
  }
}
[id=sewing]::after {
  position: absolute;
  left: calc(50% + 310px);
  bottom: 7%;
  z-index: -1;
  display: block;
  width: min(520px, 50%);
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg_lace_03.png") no-repeat center/contain;
}
@media (max-width: 1200px) {
  [id=sewing]::after {
    width: 60%;
    bottom: 12%;
    left: unset;
    right: -10%;
  }
}

[id=sales] {
  position: relative;
  z-index: 0;
}
[id=sales]::before {
  position: absolute;
  top: 7%;
  right: calc(50% + 235px);
  z-index: -1;
  display: block;
  width: min(616px, 50%);
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg_lace_02.png") no-repeat center/contain;
}
@media (max-width: 1024px) {
  [id=sales]::before {
    right: unset;
    left: -10%;
  }
}
@media (max-width: 768px) {
  [id=sales]::before {
    top: -3%;
    left: -16%;
    width: 60%;
  }
}

.job-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.7em;
  margin-bottom: 40px;
  font-size: var(--fs-36);
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent);
  text-align: center;
}
@media (max-width: 500px) {
  .job-heading {
    font-size: re(20);
  }
}
.job-heading::before, .job-heading::after {
  display: block;
  align-self: center;
  width: 100%;
  height: 20px;
  content: "";
  background: radial-gradient(circle farthest-side, var(--bg-pink), var(--bg-pink) 40%, transparent 40%, transparent);
  background-size: 10px 10px;
}

.job-sub-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.1em;
  padding-left: 1.1em;
  margin-bottom: 0.85em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1;
  color: var(--main);
}
@media (max-width: 768px) {
  .job-sub-heading {
    margin-bottom: 0.6em;
  }
}
.job-sub-heading--center {
  margin-inline: auto;
}
.job-sub-heading::before, .job-sub-heading::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 0.85em;
  aspect-ratio: 1;
  content: "";
  background: url("../images/image_deco_diamond-shaped.svg") no-repeat center/contain;
  transform: translateY(-50%);
}
.job-sub-heading::before {
  left: 0;
}
.job-sub-heading::after {
  right: 0;
}
.job-sub-heading .small {
  font-size: 0.75em;
}

.job-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .job-cont {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .job-cont_img {
    order: -1;
  }
}

.attention-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 75px;
  border: 2px solid var(--bg-pink);
}
@media (max-width: 768px) {
  .attention-box {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
.attention-box::before {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.5);
}
.attention-box_heading {
  padding: 2.4em 1.5em 2.5em;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.08em;
  background: url("../images/image_deco_attention.svg") no-repeat calc(50% - 3em) 1.5em/min(22%, 50px), var(--bg-pink);
}
@media (max-width: 768px) {
  .attention-box_heading {
    padding: 1.6em 1em 1em;
    background-position: calc(50% - 3em) 0.8em;
    background-size: min(13%, 45px);
  }
}
.attention-box_list {
  padding: 1.5em 2em 1.5em 4em;
}
@media (max-width: 768px) {
  .attention-box_list {
    padding: 1.2em 1em 1.2em 2em;
  }
}
@media (max-width: 768px) {
  .attention-box_item {
    line-height: 1.8;
  }
}
.attention-box_item::before {
  margin-left: -1em;
  content: "・";
}

.job-tabs {
  margin-top: 45px;
  --gap-half: 10px;
}
@media (max-width: 768px) {
  .job-tabs {
    margin-top: 30px;
    --gap-half: 5px;
  }
}
.job-tabs_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .job-tabs_list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.job-tabs_tab {
  padding: 0.5em;
  font-size: var(--fs-24);
  font-weight: 700;
  color: #7e7e7e;
  text-align: center;
  background-color: #ded8d1;
}
.job-tabs_tab.is-active {
  color: var(--accent);
  background-color: unset;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.job-tabs_panel::before {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 40px;
  content: "";
}
@media (max-width: 768px) {
  .job-tabs_panel::before {
    margin-bottom: 20px;
  }
}
.job-tabs_panel.is-active::before {
  transform: translateY(-2px);
}
.job-tabs_panel[id=panel-contract].is-active::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) calc(50% - var(--gap-half)), var(--accent) calc(50% - var(--gap-half)), var(--accent) 100%);
}
.job-tabs_panel[id=panel-part].is-active::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) calc(50% - var(--gap-half)), var(--accent) calc(50% - var(--gap-half)), var(--accent) 100%);
}

.job-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 4%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .job-cont {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}
.job-cont_txt {
  font-size: var(--fs-16);
  line-height: var(--lh-16);
  letter-spacing: 0.08em;
}
.job-cont_img {
  -webkit-clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0% calc(100% - 20px), 0% 20px);
          clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0% calc(100% - 20px), 0% 20px);
}
@media (max-width: 768px) {
  .job-cont_img {
    order: -1;
    -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0% calc(100% - 15px), 0% 15px);
            clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0% calc(100% - 15px), 0% 15px);
  }
}

.schedule-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .schedule-group {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .schedule-group {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.schedule {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .schedule {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .schedule .job-sub-heading {
    margin-inline: auto;
  }
}
.schedule_list-group {
  display: flex;
  gap: 0 12%;
  justify-content: center;
}
@media (max-width: 768px) {
  .schedule_list-group {
    flex-direction: column;
  }
  .schedule_list-group .schedule_list:first-of-type .schedule_item::after {
    position: absolute;
    top: 0;
    left: 6px;
    display: block;
    width: 2px;
    height: 100%;
    content: "";
    background-color: var(--accent);
  }
  .schedule_list-group .schedule_list:last-of-type {
    margin-top: 0;
  }
}
.schedule_list {
  margin-top: 30px;
  margin-left: 2px;
}
@media (max-width: 768px) {
  .schedule_list {
    margin-left: 1px;
  }
}
.schedule_item {
  position: relative;
  min-height: 4em;
  padding-bottom: 1.5em;
  padding-left: 30px;
  font-size: var(--fs-16);
  line-height: 1;
  letter-spacing: 0.06em;
}
.schedule_item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--accent);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .schedule_item::before {
    width: 14px;
  }
}
.schedule_item:not(:last-child)::after {
  position: absolute;
  top: 0;
  left: 7px;
  display: block;
  width: 2px;
  height: 100%;
  content: "";
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .schedule_item:not(:last-child)::after {
    left: 6px;
  }
}
.schedule_time {
  font-family: Vollkorn, serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
  display: block;
  margin-bottom: 0.1em;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .schedule_time {
    font-size: 1.25rem;
  }
}

/* ------------------------
    interview
------------------------ */
.interview {
  position: relative;
  padding-top: 70px;
  padding-bottom: 240px;
  background: url("../images/image_dec_sewing-machine.svg") no-repeat 86% 60px/min(15.125%, 242px), url("../images/image_deco_ornament_01.svg") no-repeat left -25px/min(33.125%, 530px), url("../images/image_deco_ornament_02.svg") no-repeat right -25px/min(33.125%, 530px), var(--main);
}
@media (max-width: 768px) {
  .interview {
    padding-bottom: 180px;
    background-position: 92% 20px, left -25px, right -25px;
    background-size: 110px, 35%, 35%;
  }
}
@media (max-width: 500px) {
  .interview {
    background-size: 110px, 43%, 43%;
  }
}
.interview::before {
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
  content: "";
  background: url("../images/bg_wave_01.svg") repeat-x center bottom/1600px;
}
@media (max-width: 768px) {
  .interview::before {
    height: 15px;
    background-size: 800px;
  }
}
.interview::after {
  position: absolute;
  top: 97%;
  left: 12%;
  z-index: 3;
  display: block;
  width: min(11.0625%, 177px);
  aspect-ratio: 177/155;
  content: "";
  background: url("../images/image_deco_button.png") no-repeat center/contain;
}
@media (max-width: 768px) {
  .interview::after {
    top: unset;
    bottom: 4%;
    left: 6%;
    width: 80px;
  }
}
.interview .heading-en {
  color: var(--white);
}
.interview .heading {
  color: var(--white);
}

.staff-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(525px, 1fr));
  gap: 0 30px;
}
@media (max-width: 1024px) {
  .staff-list-container {
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media (max-width: 768px) {
  .staff-list-container {
    grid-template-columns: 1fr;
    gap: 0 20px;
    margin-inline: auto;
    width: min(500px, 90%);
  }
}
@media (width <= 650px) {
  .staff-list-container {
    gap: 40px;
  }
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .staff-list {
    gap: 40px 20px;
  }
}
@media (width <= 650px) {
  .staff-list {
    grid-template-columns: 1fr;
  }
}

.staff-item {
  transition: opacity 0.3s;
}
.staff-item:last-of-type {
  margin-top: 60px;
}
@media (width <= 650px) {
  .staff-item:last-of-type {
    margin-top: unset;
  }
}
.staff-item_img {
  position: relative;
  z-index: 1;
  display: block;
  width: 76.4525993884%;
  margin-inline: auto;
  margin-bottom: -37%;
}
.staff-item_txt-container {
  position: relative;
  padding: 41% 15px 40px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background-color: var(--bg-base);
  background-image: linear-gradient(-45deg, var(--bg-pink) min(13%, 52px), transparent 0);
}
.staff-item_txt-container::before {
  position: absolute;
  right: min(4%, 16px);
  bottom: min(8%, 20px);
  display: block;
  width: 9px;
  aspect-ratio: 3/5;
  content: "";
  background: url("../images/icon_chevron_right_01.svg") no-repeat center/contain;
}
.staff-item_name {
  margin-bottom: 0.2em;
  font-size: var(--fs-20);
}
.staff-item_info {
  font-size: var(--fs-16);
  color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .staff-item:hover, .staff-item:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .staff-item:active {
    opacity: 0.7;
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(51, 51, 51, 0.4);
}

.remodal {
  padding-top: 80px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}

[data-remodal-target] {
  cursor: pointer;
  transition: filter var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  [data-remodal-target]:hover, [data-remodal-target]:focus {
    filter: brightness(1.03);
  }
}
@media (hover: none) {
  [data-remodal-target]:active {
    filter: brightness(1.03);
  }
}

.modal {
  position: relative;
  z-index: 0;
  position: relative;
  padding-bottom: 60px;
  text-align: left;
  background-color: var(--bg-base);
}
.modal::before {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/bg_texture.jpg") repeat left top/200px 200px;
  mix-blend-mode: multiply;
}
.modal_cont {
  position: relative;
}
.modal_top {
  position: relative;
  padding: 50px 5% 30px;
  margin-bottom: 55px;
  color: var(--white);
  background: url("../images/image_deco_ornament_01.svg") no-repeat left -25px/min(45%, 300px), url("../images/image_deco_ornament_02.svg") no-repeat right -25px/min(45%, 300px), var(--main);
}
.modal_top::after {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 15px;
  content: "";
  background: url("../images/bg_wave_01.svg") repeat-x center bottom/800px;
  transform: scaleY(-1);
}
.modal_img {
  display: block;
  width: 200px;
  margin-inline: auto;
  margin-bottom: 10px;
}
.modal_name {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
}
.modal_name::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  width: 180px;
  aspect-ratio: 191/111;
  content: "";
  background: url("../images/text_interview.svg") no-repeat center/contain;
  transform: translate(-37%, 30%);
}
.modal_info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: var(--fs-16);
  font-weight: 700;
}
.modal .btn {
  width: min(80%, 313px);
  margin-top: 40px;
}
.modal_close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/contain;
}

.qa-list {
  display: grid;
  gap: 30px;
  padding-right: 5%;
  padding-left: 5%;
  counter-reset: qa-num;
}

.qa-item {
  counter-increment: qa-num;
}
.qa-item_question {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.8em;
  line-height: 1.6666666667;
}
.qa-item_question::before {
  font-family: Vollkorn, serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.45;
  color: var(--accent);
  content: "Q" counter(qa-num);
}
.qa-item_answer {
  padding: 1.1em 1.8em;
  font-size: var(--fs-16);
  line-height: var(--lh-16);
  letter-spacing: 0.08em;
  background-color: rgba(255, 255, 255, 0.6);
}

/* ------------------------
    environment
------------------------ */
.environment-deco {
  position: relative;
  left: 50%;
  z-index: 2;
  width: 712px;
  aspect-ratio: 6/1;
  margin-top: -117px;
  margin-bottom: -2px;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .environment-deco {
    width: 610px;
    margin-top: -101px;
  }
}
@media (max-width: 768px) {
  .environment-deco {
    width: 430px;
    margin-top: -69px;
  }
}
@media (max-width: 500px) {
  .environment-deco {
    width: 300px;
    margin-top: -49px;
  }
}
.environment-deco::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg-pink);
  -webkit-mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
          mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
}
.environment-deco::after {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #d6d0c6;
  -webkit-mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
          mask: url("../images/bg_circle.svg") no-repeat center bottom/contain;
}

.environment {
  position: relative;
  padding-top: 20px;
  padding-bottom: 90px;
  background: var(--bg-pink);
  border-top: #d6d0c6 2px solid;
}
.environment::before {
  position: absolute;
  bottom: calc(100% + 45px);
  left: 50%;
  z-index: 2;
  display: block;
  width: 350px;
  aspect-ratio: 25/6;
  content: "";
  background: url("../images/image_deco_ribbon_02.svg") no-repeat center/contain;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .environment::before {
    bottom: calc(100% + 50px);
    width: 320px;
  }
}
@media (max-width: 768px) {
  .environment::before {
    bottom: calc(100% + 30px);
    width: 40%;
  }
}
@media (max-width: 500px) {
  .environment::before {
    bottom: calc(100% + 10px);
    width: 50%;
  }
}
.environment::after {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
  content: "";
  background: url("../images/bg_wave_02.svg") repeat-x center top/1600px;
}
@media (max-width: 768px) {
  .environment::after {
    height: 15px;
    background-size: 800px;
  }
}
.environment .heading-en {
  color: #645648;
}
.environment .heading {
  color: #645648;
}
.environment .lead {
  color: var(--white);
}

.environment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 2.5%;
}
@media (max-width: 768px) {
  .environment-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    padding-right: 9%;
    padding-left: 9%;
    margin-inline: auto;
  }
}

.environment-item {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  padding-bottom: 8%;
  background: url("../images/bg_lace_01.png") no-repeat center/contain;
}
.environment-item:nth-of-type(2) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .environment-item:nth-of-type(2) {
    margin-top: unset;
  }
}
.environment-item_heading {
  margin-bottom: 12px;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.environment-item:nth-of-type(3) .environment-item_heading {
  margin-bottom: 20px;
}
.environment-item_heading .small {
  display: block;
  font-size: 0.8em;
}
.environment-item_img {
  width: 90%;
  margin-inline: auto;
}

/* ------------------------
    search
------------------------ */
.search {
  padding-top: 120px;
  padding-bottom: 170px;
}
@media (max-width: 768px) {
  .search {
    padding-top: 80px;
    padding-bottom: 110px;
  }
}
.search .heading-en {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.7em;
  color: var(--accent);
}
.search .heading-en::before, .search .heading-en::after {
  display: block;
  align-self: center;
  width: 100%;
  height: 20px;
  content: "";
  background: radial-gradient(circle farthest-side, var(--bg-pink), var(--bg-pink) 40%, transparent 40%, transparent);
  background-size: 10px 10px;
}
.search .heading {
  color: var(--accent);
}
.search_btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .search_btn-group {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-right: 5%;
    padding-left: 5%;
  }
}
.search_btn {
  width: 100%;
  background: url("../images/icon_chevron_down_01.svg") no-repeat calc(100% - 1em) center/0.8em, url("../images/icon_chevron_down_02.svg") no-repeat calc(100% - 1em) center/0, url("../images/icon_chevron_up_01.svg") no-repeat calc(100% - 1em) center/0, var(--main);
  transition: color var(--transition), background-color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .search_btn:hover, .search_btn:focus {
    color: var(--white);
    background-color: var(--main);
    background-size: 0.8em, 0, 0;
  }
}
@media (hover: none) {
  .search_btn:active {
    color: var(--white);
    background-color: var(--main);
    background-size: 0.8em, 0, 0;
  }
}
.search_btn[aria-expanded=true] {
  background-size: 0, 0, 0.8em;
}
.search_list {
  height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  transition: height var(--transition);
}
.search_item {
  text-align: center;
}
.search_item + .search_item {
  border-top: 1px solid #ded8d1;
}
.search_item-link {
  padding: 0.5em;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .search_item-link:hover, .search_item-link:focus {
    background-color: #c8d8f0;
  }
}
@media (hover: none) {
  .search_item-link:active {
    background-color: #c8d8f0;
  }
}
/*# sourceMappingURL=style.css.map */