@charset "UTF-8";
/*===============================
  CSS Document: recruit.css
  Description: リクルートページ専用
===============================*/
/*-------------------------
ここからrecruit.html
---------------------------*/
.recruit_bg {
  background: #f7f4ee;
}

.main_banner {
  position: relative;
  width: 100%;
  margin: 0 auto 12px;
}
.main_banner .pict_cover img {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
  display: block;
}

.banner_title_box {
  position: absolute;
  bottom: 9%;
  right: 7%;
  width: 43vh;
  min-width: 230px;
  height: 31vh;
  z-index: 1;
}
.banner_title_box .banner_title {
  position: absolute;
  width: 100%;
  bottom: 0%;
  right: 50%;
  text-align: center;
  font-size: clamp(0.625rem, 5.4vmin, 2.5rem);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  color: #a691c4;
  text-shadow: 0.5px 0.5px 2px #333;
  letter-spacing: 1.5px;
  -webkit-transform: translateX(48%);
          transform: translateX(48%);
}
.banner_title_box img.banner_sub_img {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  height: auto;
  z-index: 1;
  -webkit-filter: drop-shadow(0.5px 0.5px 2px #333);
          filter: drop-shadow(0.5px 0.5px 2px #333);
}

@media (max-width: 768px) {
  .main_banner .pict_cover img {
    height: 70vh;
    height: 70svh;
  }
  .banner_title_box {
    right: 50%;
    width: 30vh;
    height: clamp(6.875rem, 22vh, 12.5rem);
    min-height: 160px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) and (max-width: 780px) {
  .banner_title_box {
    bottom: 9%;
    right: 7%;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 768px) {
  .banner_title_box .banner_title {
    font-size: clamp(1.5625rem, 5vmin, 2.5rem);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (max-width: 768px) and (min-width: 540px) and (max-width: 780px) {
  .banner_title_box .banner_title {
    font-size: clamp(1.0625rem, 4.5vmin, 1.875rem);
  }
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  height: 52px;
  margin-bottom: 48px;
  position: relative;
}
.marquee-wrapper .marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; /* 画像3枚分の幅に自動調整 */
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
}
.marquee-wrapper .marquee-content img {
  width: auto;
  height: 52px;
  display: block;
  margin-right: 24px;
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* ここから greeting */
.rr_greeting_wrap {
  width: min(92%, 1000px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: 0 auto 120px;
  gap: 60px;
}

.text_intro {
  width: calc(62% - 30px); /* gap の半分を引く */
  margin-bottom: 40px;
  color: #333;
}
.text_intro .text_title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 16px;
}
.text_intro .text_title span {
  font-family: inherit;
  font-weight: inherit;
}
.text_intro .rr_greeting_txt {
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.text_intro .rr_greeting_txt:nth-of-type(1) {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
.text_intro .rr_greeting_txt:nth-of-type(5) {
  margin-bottom: 40px;
}

.owner {
  text-align: right;
  letter-spacing: 1.5px;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.owner span {
  letter-spacing: inherit;
  font-family: inherit;
  display: inline-block;
  margin-right: 16px;
}
.owner span:nth-of-type(3) {
  margin-right: 0;
}

.rr_greeting_pict_box {
  width: calc(38% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
.rr_greeting_pict_box .outer_wrap {
  width: 100%;
}
.rr_greeting_pict_box .outer_wrap:nth-of-type(1) {
  margin: 0 0 40px; /* 上下の余白 */
}

.image_wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
.image_wrap img {
  width: 100%;
  height: auto;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* 扉の色 */
  z-index: 2;
}

.image_wrap .cover {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.image_wrap.animated .cover {
  -webkit-animation: cover-open 1.2s ease forwards;
          animation: cover-open 1.2s ease forwards;
}

@-webkit-keyframes cover-open {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes cover-open {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .rr_greeting_wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 120px;
  }
  .rr_greeting_wrap .text_intro {
    width: 92%;
    min-width: 0;
    margin: 0 auto 96px;
  }
  .text_intro .rr_greeting_txt:nth-of-type(1) {
    margin-bottom: 60px;
  }
  .text_intro .rr_greeting_txt:nth-of-type(5) {
    margin-bottom: 60px;
  }
  .rr_greeting_pict_box {
    width: 100%;
    min-width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* 縦に並べる */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  .rr_greeting_pict_box .outer_wrap {
    width: calc(80% - 40px);
    z-index: 1;
    position: relative;
  }
  .rr_greeting_pict_box .outer_wrap:nth-of-type(1) {
    -ms-flex-item-align: end;
        align-self: flex-end; /* 1番目の画像を右寄せ */
    margin: 0 0 60px; /* 上下の余白 */
  }
  .rr_greeting_pict_box .outer_wrap:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    left: -7%;
    width: 107%;
    height: 110%;
    background-color: #ddd1eb;
    z-index: -1;
  }
  .rr_greeting_pict_box .outer_wrap:nth-of-type(2) {
    -ms-flex-item-align: start;
        align-self: flex-start; /* 2番目の画像を左寄せ */
    margin: 0; /* 上下の余白 */
  }
  .rr_greeting_pict_box .outer_wrap:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10%;
    right: -7%;
    width: 107%;
    height: 110%;
    background-color: #ddd1eb;
    z-index: -1;
  }
}
@media (max-width: 480px) {
  .rr_greeting_wrap {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .rr_greeting_pict_box .outer_wrap {
    width: 85%;
  }
  .rr_greeting_pict_box .outer_wrap:nth-of-type(1) {
    margin-bottom: 32px;
  }
}
/* ここまで greeting */
/* ここから回転画像 */
/* ここから時計回りに回転 */
.circle {
  position: absolute;
  width: 230px;
  height: 230px;
  bottom: -40%;
  right: 5%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
  overflow: hidden;
}

.circle::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: url(/images/recruit/zip_circle_4.svg) no-repeat center center;
  background-size: 100% auto;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-animation: rotation 20s infinite linear;
          animation: rotation 20s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .circle {
    position: absolute;
    width: 230px;
    height: 230px;
    bottom: -18%;
    right: 5%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
  }
}
@media (max-width: 480px) {
  .circle {
    width: 180px;
    height: 180px;
    bottom: -25%;
    right: 3%;
  }
}
/* ここまで 回転画像 */
/* ここまで 時計回りに回転 */
.large_item_wrap {
  width: min(92%, 1000px);
  margin: 0 auto;
  color: #333;
}

.large_item {
  width: 100%;
  text-align: left;
  margin: 0 auto 120px;
  padding-left: 0;
}
.large_item h3 {
  width: 100%;
  font-size: 2rem;
  margin-bottom: 48px;
  font-family: "Cormorant Infant", serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.large_item h3 span {
  position: relative;
  margin: 0 20px;
}
.large_item h3 span::before, .large_item h3 span::after {
  content: "";
  width: 10px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #333;
  position: absolute;
  top: 50%;
  left: -20px;
}
.large_item h3 span::after {
  left: auto;
  right: -20px;
}

/* ここから Recruit News */
/* ここから 詳細ボタン */
.recruit_tab_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #333;
  gap: 0px;
  position: relative;
}

.recruit_tab_item {
  width: calc((100% - 0px) / 4);
}
.recruit_tab_item section {
  width: 100%;
}

.list_bt {
  width: 100%;
  padding: 15px;
  display: block;
  color: #333;
  background: transparent;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  bottom: -2px;
}
.list_bt.active {
  color: #333;
  border: 1px solid #333;
  border-bottom: none;
  background-color: #fff;
}

.list_bt_in {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rc_tt_jp {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 8px;
}

.rr_tt_en {
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
  margin: -4px 0 12px 0;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.075em;
}

.rc_link {
  line-height: 1.6;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: inline-block;
}
.rc_link::after {
  font-family: "icomoon";
  content: "\e904";
  font-size: 0.75rem;
  margin-left: 8px;
  position: relative;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  display: inline-block;
}

.list_bt:hover .rc_link::after {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

/* ここまで 詳細ボタン */
/* ここから 募集内容詳細 */
.recruit_content {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #333;
  border-top: 0;
}

.recruit_content_in {
  padding: 6%;
}
.recruit_content_in .detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 60px;
  background: #e7e7e7;
  padding: 12px 6.8%;
  margin-left: -6.8%;
  margin-right: -6.8%;
  /* 他のスタイルはそのまま */
}

.recruit_content_in:not(:first-of-type) {
  padding-top: 0;
}

.recruit_detail_list {
  width: 100%;
  padding-top: 0px;
}
.recruit_detail_list .recruit_detail_item {
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 0 0 20px 17px;
  position: relative;
  border-bottom: 1px solid #ccc;
  font-size: 0.9375rem;
}
.recruit_detail_list .recruit_detail_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.recruit_detail_list .recruit_detail_item::before {
  content: "■";
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  font-size: 7px;
}

.recruit_detail_item > dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.recruit_detail_item > dl > dt {
  width: 35%;
  font-weight: 500;
  padding-right: 10px;
}
.recruit_detail_item > dl > dd {
  width: 65%;
}
.recruit_detail_item > dl > dd dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 20px;
}
.recruit_detail_item > dl > dd dl dt {
  width: 100%;
  font-weight: normal;
}

.dd_inner > dt {
  margin-bottom: 8px;
}

.dd_inner > dd, .dd_inner > p {
  margin-bottom: 8px;
}
.dd_inner > dd:last-child, .dd_inner > p:last-child {
  margin-bottom: 0;
}

.scroll_wrap {
  padding: 0px;
  margin: 24px 0;
  height: 100%;
}
.scroll_wrap .scroll_content {
  width: 100%;
  border: 1px solid #333;
  overflow-x: scroll;
  padding: 20px;
  background: rgba(204, 204, 204, 0.337254902);
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.scroll_wrap:last-child {
  font-size: 0.75rem;
  padding-left: 0px;
}
.scroll_wrap img {
  width: 100%;
  min-width: 1000px;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .recruit_tab_item {
    width: calc((100% - 0px) / 2);
  }
  .recruit_content_in {
    padding: 4%;
  }
  .recruit_content_in .detail {
    padding: 15px 4.5%;
    margin-left: -4.3%;
    margin-right: -4.3%;
    text-align: center;
  }
  .recruit_detail_list .recruit_detail_item {
    font-size: 0.875rem;
  }
  .recruit_detail_item > dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit_detail_item > dl > dt {
    width: 100%;
    margin-bottom: 16px;
  }
  .recruit_detail_item > dl > dd {
    width: 100%;
  }
  .dd_inner dt {
    margin-bottom: 4px;
  }
  .dd_inner dd, .dd_inner p {
    margin-bottom: 4px;
  }
}
/* ここまで 募集内容詳細 */
/* ここまで Recruit News */
.recruit_feature_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.recruit_feature_item {
  width: 100%;
}

.recruit_feature_item_box {
  width: 100%;
  font-size: 1rem;
}

.rr_content_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 96px;
}
.rr_content_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.recruit_tab_item_base {
  width: calc(40% + 50px);
  max-width: 100%;
  padding: 30px;
  margin-right: -50px;
  margin-bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  z-index: 1;
}
.recruit_tab_item_base.ml_50 {
  margin-left: -50px;
  margin-right: 0;
}

.recruit_feature_item_title {
  width: 100%;
  margin-bottom: 12px;
}
.recruit_feature_item_title span {
  color: #333;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333;
}

.rr_feature_txt {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.rr_feature_subtxt {
  font-size: 0.875rem;
  line-height: 1.8;
}

.rr_feature_pict {
  width: 60%;
}
.rr_feature_pict p {
  width: 100%;
  display: block;
  font-family: "Shippori Mincho", serif;
  overflow: hidden;
}
.rr_feature_pict p img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.rr_feature_pict_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6%;
  margin: 0 0 120px;
}
@media (max-width: 768px) {
  .rr_feature_pict_list {
    width: 88%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .rr_feature_pict_list {
    width: 100%;
    margin: 0 0 64px;
  }
}

.rr_feature_pict_item {
  width: 100%;
  overflow: hidden;
}
.rr_feature_pict_item:nth-child(1) {
  grid-column: 2;
}
.rr_feature_pict_item:nth-child(2) {
  grid-column: 3;
}
.rr_feature_pict_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .rr_feature_pict_item:nth-child(1) {
    grid-column: 1;
  }
  .rr_feature_pict_item:nth-child(2) {
    grid-column: 2;
  }
}

.rr_pict_slider_wrap {
  width: 100vw;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0; /* インライン要素の隙間対策 */
}

.rr_pict_slider_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: rr_pict_slider 35s linear infinite;
          animation: rr_pict_slider 35s linear infinite;
}

.rr_pict_slider_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rr_pict_slider_list .rr_pict_slider_item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
  padding-right: 30px;
}
.rr_pict_slider_list .rr_pict_slider_item:nth-child(even) {
  padding-top: 50px;
}
.rr_pict_slider_list .rr_pict_slider_item:nth-child(odd) {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .rr_pict_slider_list .rr_pict_slider_item {
    width: 300px;
    padding-right: 30px;
  }
}
@media (max-width: 480px) {
  .rr_pict_slider_list .rr_pict_slider_item {
    width: 250px;
    padding-right: 30px;
  }
}
.rr_pict_slider_list img {
  width: 100%;
  height: auto;
  display: block;
}

@-webkit-keyframes rr_pict_slider {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes rr_pict_slider {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .large_item {
    margin: 0 auto 96px;
  }
  .recruit_feature_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0px;
  }
  .recruit_feature_item {
    width: 100%;
  }
  .recruit_feature_item_box {
    padding-right: 0;
  }
  .rr_content_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 48px;
  }
  .rr_content_wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 56px;
  }
  .recruit_tab_item_base {
    width: 100%;
    padding: 0px 0 30px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    background: transparent;
  }
  .recruit_tab_item_base.ml_50 {
    margin: 0 auto;
  }
  .recruit_feature_item_title span {
    border: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 0;
    font-size: 1.25rem;
  }
  .rr_feature_pict {
    width: 88%;
  }
}
@media (max-width: 480px) {
  .large_item {
    margin: 0 auto 48px;
  }
  .recruit_feature_list {
    gap: 0px;
  }
  .rr_feature_pict {
    width: 100%;
  }
}
/* ここから contact */
.contact_bt_wrap {
  width: min(100%, 1000px);
  margin: 0 auto;
  color: #333;
}

.contact_bt {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .contact_bt {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact_bt {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_bt dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
}
@media (max-width: 480px) {
  .contact_bt dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact_bt dl dt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 120px;
  padding-bottom: 20px;
  font-family: "Barlow", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 480px) {
  .contact_bt dl dt {
    width: 42%;
    height: 85px;
    font-size: 0.9375rem;
    padding-bottom: 10px;
  }
}
.contact_bt dl dt::before {
  position: absolute;
  font-family: icomoon;
  font-size: 2.1875rem;
  color: #555;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
@media (max-width: 480px) {
  .contact_bt dl dt::before {
    font-size: 2rem;
  }
}
.contact_bt dl dt.insta::before {
  content: "\e909";
}
.contact_bt dl dt.mail::before {
  content: "\e908";
}
.contact_bt dl dt.line::before {
  content: "\e90d";
  font-size: 2.625rem;
}
@media (max-width: 480px) {
  .contact_bt dl dt.line::before {
    font-size: 2.1875rem;
  }
}
.contact_bt dl dd {
  width: 90%;
  height: 75px;
  margin: 0px auto 30px;
}
@media (max-width: 480px) {
  .contact_bt dl dd {
    height: 85px;
    margin-bottom: 0;
  }
}
.contact_bt dl dd a {
  width: 100%;
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  background: #aaa;
  font-size: 0.875rem;
  padding-right: 35px;
  position: relative;
}
@media (max-width: 480px) {
  .contact_bt dl dd a {
    padding-right: 25px;
  }
}
.contact_bt dl dd a::before {
  position: absolute;
  content: "\e90a";
  font-family: icomoon;
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media (max-width: 480px) {
  .contact_bt dl dd a::before {
    right: 15px;
  }
}
.contact_bt dl dd a span {
  display: block;
  width: 100%;
  text-align: center;
}
.contact_bt dl dd a:hover::before {
  right: 10px;
}/*# sourceMappingURL=recruit.css.map */