@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre,
hr {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}
a:not([class])[target=_blank]::after {
  font-family: "Hobonichi-Icons";
  font-size: 87.5%;
  font-weight: normal;
  line-height: 1;
  position: relative;
  top: -0.25em;
  display: inline-block;
  margin-left: 0.25em;
  content: "\e914";
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

br:not(.sp-br) {
  display: none;
}
@media (min-width: 600px) {
  br:not(.sp-br) {
    display: block;
  }
}

.device-sp {
  display: initial;
}
@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_rock {
  overflow: hidden;
}

/**  common  **/
header {
  position: relative;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header_bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E7F3E2;
  height: 6rem;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}
@media (min-width: 600px) {
  .header_bar {
    height: 8rem;
  }
}
.header_bar img {
  padding: 1.2rem 2.4rem;
  max-height: 100%;
}
.header_bar .btn_header_menu {
  height: 100%;
  background-color: transparent;
  transition: all 0.1s ease-in-out;
}
.header_bar .btn_header_menu img {
  width: 8rem;
}
.header_bar .btn_header_menu:hover {
  background-color: #fff;
}

.header_menu {
  position: absolute;
  top: 6rem;
  right: 0;
  width: 60%;
  background-color: #E7F3E2;
  z-index: 1000;
  font-size: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.header_menu.is-open {
  transform: translateX(0);
}
@media (min-width: 600px) {
  .header_menu {
    top: 8rem;
    width: calc(17em + 4.8rem);
  }
}
.header_menu li:not(:last-child) {
  border-bottom: 1px solid #001230;
}
.header_menu a {
  display: block;
  padding: 0.8rem 2.6rem;
}
@media (min-width: 600px) {
  .header_menu a {
    padding: 2rem 2.4rem;
  }
}
.header_menu a:hover {
  opacity: 1;
  background-color: #fff;
}
.header_menu br {
  display: block;
}
@media (min-width: 600px) {
  .header_menu br {
    display: none;
  }
}

/* footer */
footer {
  font-family: "Midashi Go MB1", sans-serif;
  color: #001230;
  background-color: #E7F3E2;
}

footer .wrapper {
  max-width: 1272px;
  width: 74.666vw;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-areas: "share" "hobo" "store" "copy";
}

footer .footer-share {
  grid-area: share;
  display: flex;
  gap: 25px;
}

footer .footer-share .title {
  margin-right: 5px;
}

footer .footer-hobo {
  grid-area: hobo;
  font-size: 1.6rem;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
  margin-top: 30px;
}

footer .footer-store {
  grid-area: store;
  font-size: 1.2rem;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.12px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

footer .footer-store li::after {
  content: "/";
  display: inline-block;
  padding: 0 0.5em 0 0.2em;
}

footer .footer-store li:last-of-type:after {
  display: none;
}

footer .footer-copy {
  grid-area: copy;
  font-size: 1.4rem;
  line-height: 28px; /* 200% */
  letter-spacing: 0.14px;
  margin-top: 16px;
}

@media (min-width: 601px) {
  footer .wrapper {
    width: 96%;
    padding: 75px 0 100px;
    grid-template-areas: "share hobo ." "store hobo copy";
    grid-template-columns: 1fr auto auto;
  }
  footer .footer-share {
    gap: 20px;
  }
  footer .footer-share .title {
    margin-right: 20px;
  }
  footer .footer-store {
    margin-top: 24px;
    font-size: 1.4rem;
    line-height: 28px; /* 200% */
    letter-spacing: 0.14px;
  }
  footer .footer-hobo {
    margin-top: 0;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    display: flex;
    flex-wrap: wrap;
    align-self: end;
    width: 10.5em;
    margin-right: 5vw;
  }
  footer .footer-copy {
    margin-top: 0;
    align-self: end;
  }
}
@media (min-width: 1200px) {
  footer .footer-hobo {
    margin-right: 64px;
  }
}
/**  index  **/
body {
  background: url(../images/pattern_kumo.png);
  background-size: 600px 252px;
  font-family: "Midashi Go MB1", sans-serif;
  color: #001230;
  line-height: 162.5%;
}
@media (min-width: 600px) {
  body {
    line-height: 175%;
  }
}

main {
  margin-top: 6rem;
}
@media (min-width: 600px) {
  main {
    margin-top: 8rem;
  }
}
main a:not([class]) {
  color: #A22E00;
}

section {
  margin-right: auto;
  margin-left: auto;
}

section.title {
  width: min(100% - 8rem, 53rem);
  text-align: center;
  margin-top: 9.6rem;
  margin-bottom: 3.6rem;
}
@media (min-width: 600px) {
  section.title {
    margin-top: 19.2rem;
    margin-bottom: 11.2rem;
  }
}
section.title span {
  display: block;
  margin-top: 1em;
  font-size: min(4.8vw, 2.2rem);
}

.txt {
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
}
.txt .inner {
  max-width: 33em;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 600px) {
  .txt .inner {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
.txt p {
  margin-bottom: 1em;
  margin-top: 1em;
}
@media (min-width: 600px) {
  .txt p {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
}

.intro {
  width: min(100% - 3.2rem, 72rem);
}
@media (min-width: 600px) {
  .intro {
    margin-bottom: 8rem;
  }
}
.intro img {
  margin-top: 2em;
  margin-bottom: 2em;
}
@media (min-width: 600px) {
  .intro img {
    margin-top: 4em;
    margin-bottom: 4em;
  }
}

.form {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .form {
    width: calc(100% - 3.2rem);
    overflow: hidden;
    border-radius: 1.8rem;
  }
}
.form ul:not(.att):not(.att_small) {
  list-style: disc;
  margin-left: 1em;
}
.form ul.att li {
  padding-left: 1em;
  text-indent: -1em;
}
.form ul.att li::before {
  content: "※";
  display: inline-block;
  position: relative;
  width: 1em;
  left: 0.9em;
  aspect-ratio: 1/1;
}

.att_small {
  font-size: 1.2rem;
}

.att_border {
  border: 2px dashed currentColor;
  padding: 1.6rem;
  border-radius: 6px;
}

.form_header {
  background-color: #fff;
  padding: 2.4rem;
}

.form_btn {
  width: 100%;
  padding: 1.6rem;
  font-family: 1.8rem;
  color: #fff;
}
@media (min-width: 600px) {
  .form_btn {
    font-size: 2.2rem;
  }
}
.form_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.form_btn span::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url("../images/form_arrow.svg");
  background-size: cover;
  background-position: center;
}
.form_btn span.is-open::after {
  rotate: 180deg;
}

.form_body,
.entry_body {
  background-color: #fff;
  padding: 2.4rem;
  padding-top: 3.2rem;
  font-size: 1.5rem;
}
@media (min-width: 600px) {
  .form_body,
  .entry_body {
    padding: 4rem;
  }
}
.form_body .inner,
.entry_body .inner {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .form_body .inner,
  .entry_body .inner {
    max-width: 44rem;
  }
}
.form_body dt,
.entry_body dt {
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.1em;
  margin-bottom: 0.5em;
  display: inline-block;
}
.entry .form_body dt,
.entry .entry_body dt {
  font-size: 2rem;
}
.job_fulltime .form_body dt, .job_parttime .form_body dt,
.job_fulltime .entry_body dt,
.job_parttime .entry_body dt {
  font-size: 1.8rem;
}
.form_body dd,
.entry_body dd {
  margin-bottom: 2em;
  font-size: 1.5rem;
}
.form_body div,
.form_body dd > ul li,
.entry_body div,
.entry_body dd > ul li {
  margin-bottom: 1.5em;
}
.form_body .title,
.entry_body .title {
  border: 2px solid currentColor;
  border-radius: 6px;
  padding: 0.25em 1em;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
}
@media (min-width: 600px) {
  .form_body .title,
  .entry_body .title {
    position: relative;
    left: -2em;
  }
}

.btn_apply {
  background-color: #A22E00;
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  gap: 0.1em;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.btn_apply::after {
  content: "";
  display: block;
  width: 0.75em;
  aspect-ratio: 1/1;
  rotate: -90deg;
  background-image: url("../images/form_arrow.svg");
  background-size: cover;
  background-position: center;
}
@media (min-width: 600px) {
  .btn_apply {
    margin-right: 0;
    margin-left: 0;
  }
}

.btn_close {
  border: 1px solid currentColor;
  background-color: #fff;
  color: currentColor;
  padding: 0.5em 1em;
  border-radius: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3.2rem;
  margin-top: 3.2rem;
}

.entry .inner {
  background-color: #DAEBAB;
  padding: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .entry .inner {
    padding: 4rem;
    padding-top: 6rem;
    font-size: 1.8rem;
    max-width: min(100% - 3.2rem, 100rem);
    border-radius: 1.8rem;
  }
}
.entry .entry_body {
  background-color: transparent;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}
.entry .entry_title {
  width: min(100% - 3.2rem, 41rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.6rem;
}
.entry .entry_photo {
  width: min(100% - 3.2rem, 62rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.6rem;
}
@media (min-width: 600px) {
  .entry .entry_photo {
    margin-bottom: 4rem;
  }
}

@media (min-width: 600px) {
  .detail .inner {
    margin-top: 4em;
    margin-bottom: 4em;
  }
}
.detail .detail_title {
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 3.2rem;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .detail .detail_title {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
}
.detail .detail_title p {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.detail .detail_title img {
  width: min(100% - 12rem, 48rem);
  margin-left: auto;
  margin-right: 2.4rem;
}
@media (min-width: 600px) {
  .detail .detail_title img {
    margin-right: auto;
    margin-left: auto;
  }
}

.navi {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 600px) {
  .navi {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.navi .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  max-width: inherit;
}
.navi a {
  display: block;
  width: 100%;
}
.navi img {
  width: 100%;
}

.job_parttime,
.job_fulltime {
  color: #364D84;
  padding-top: 3.2rem;
}
@media (min-width: 600px) {
  .job_parttime,
  .job_fulltime {
    scroll-margin-top: 8rem;
    padding-bottom: 8rem;
  }
}
.job_parttime .logo,
.job_fulltime .logo {
  width: min(100% - 4rem, 56rem);
  margin-right: auto;
  margin-left: auto;
}
.job_parttime .txt img,
.job_fulltime .txt img {
  margin-top: 1.6rem;
  margin-bottom: 3.2rem;
}
.job_parttime .photo,
.job_fulltime .photo {
  width: min(100% - 8rem, 32rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 600px) {
  .job_parttime .form_header ul,
  .job_fulltime .form_header ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.job_parttime .form_btn,
.job_fulltime .form_btn {
  background-color: #364D84;
}
.job_parttime .form_body,
.job_fulltime .form_body {
  color: #001230;
}
.job_parttime .att_small,
.job_fulltime .att_small {
  line-height: 1.8;
}
.job_parttime .sub_group div,
.job_fulltime .sub_group div {
  padding-left: 1em;
}

.job_parttime {
  background-color: #E6F2FF;
}
@media (min-width: 600px) {
  .job_parttime .photo {
    flex-direction: row-reverse;
  }
}

.job_fulltime {
  background-color: #DDF3F2;
}
@media (min-width: 600px) {
  .job_fulltime .photo {
    flex-direction: row;
  }
}
.job_fulltime iframe {
  max-width: 100%;
  max-height: 50vw;
  aspect-ratio: 9/16;
}
@media (min-width: 600px) {
  .job_fulltime dl + .title {
    margin-top: 12rem;
  }
}

.info {
  padding: 4rem;
  text-align: center;
}
@media (min-width: 600px) {
  .info {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.info a {
  max-width: 50rem;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */