/* トップページ
=========================================================================
=========================================================================*/
article {
  margin-top: 0;
}
/* Loading
-----------------------------------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #FFF;
  z-index: 1000;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  max-width: 183px;
}

/* Herospace
-----------------------------------------------------------*/
.herospace {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  /* 👈 最背面に固定 */
  pointer-events: none;
  /* 背景クリックを通す */
}

.herospace video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* 白マスク */
.herospace .mask_bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transform-origin: right;
  border: 1px solid red;
}

.herospace .mask {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  -webkit-mask-image: linear-gradient(#000, #000), url('/assets/images/index/herospace_mask.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center 65%;
  -webkit-mask-size: 100% 100%, calc(1100 / 1440 * 100%) auto;
  mask-image: linear-gradient(#000, #000), url('/assets/images/index/herospace_mask.svg');
  mask-repeat: no-repeat;
  mask-position: center 65%;
  mask-size: 100% 100%, calc(1100 / 1440 * 100%) auto;
  mask-composite: exclude;
}

@media screen and (max-width:980px) {
  .herospace .mask {
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}

@media screen and (max-height:700px) {
  .herospace .mask {
    -webkit-mask-size: 100% 100%,
      62.5vw auto;;
    mask-size: 100% 100%, 62.5vw auto;
  }
}

.herospace .copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transform: translateY(calc(-50%)) translateX(-50%);
  max-width: 773px;
  width: 100%;
      will-change: opacity, filter;
      backface-visibility: hidden;
}

/* 背景ブラー */
/*.herospace .bg_blur {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 251, 251, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
}*/

.hero-placeholder {
  position: relative;
  height: 200vh;
}

/* メッセージ
-----------------------------------------------------------*/
.message {
  position: relative;
  padding: 80px 0;
  width: 100%;
  height: auto;
  z-index: 20;
  background-color: rgba(251, 251, 251, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.message figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  width: 980px;
}

@media screen and (max-width:980px) {
  .message figure {
    width: 100%;
  }
}

.message figure img {
  width: calc(315 / 980 * 100%);
}

.message figure figcaption {
  width: fit-content;
}

.message figure figcaption p {
  margin-bottom: 1.5em;
  font-size: 17px;
  line-height: 1.83em;
}

.message figure figcaption p:last-child {
  margin-bottom: 0;
}

.hero-spacer {
  height: 100vh;
  /* ← JSで自動上書き */
}

/* News
-----------------------------------------------------------*/
.news {
  position: relative;
  z-index: 20;
  background-color: #FFF;
  margin-top: 0;
}

.news .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width:990px) {
  .news .inner {
    padding: 0 15px;
    justify-content: space-between;
    gap: calc(40 / 960 * 100%);
  }
}

.news .inner .category_button {
  position: relative;
  padding: 42px 48px 42px 0;
  width: calc(172 / 960 * 100%);
  font-weight: 600;
  font-size: 16px;
  text-align: right;
  z-index: 2;
}

.news .inner .category_button .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #AAD4E1, #AAD3AC);
  z-index: -1;
}

.news .inner .category_button h2 {
  margin-bottom: 18px;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1em;
  text-align: right;
}

.news .inner .category_button ul {
  display: flex;
  flex-wrap: wrap;
  gap: .75em 0;
}

.news .inner .category_button li {
  width: 100%;
}

.news .inner .category_button li button {
  line-height: 1em;
  text-align: right;
  white-space: nowrap;
  opacity: .25;
  transition: 0.3s;
}

@media(hover: hover) {
  .news .inner .category_button li button:hover {
    opacity: 1;
  }
}

@media screen and (max-width:990px) {
  .news .inner .category_button li button {
    font-size: 14px;
  }
}

.news .inner .category_button li button.active {
  opacity: 1;
}

.news .inner .category_button a {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 18px 0 0 auto;
  width: 115px;
  height: 32px;
  font-weight: 600;
  font-size: 13px;
  line-height: 32px;
  text-align: center;
  background-color: #CDE5E0;
  border-radius: 16px;
  transition: 0.6s;
}

@media(hover: hover) {
  .news .inner .category_button a:hover {
    color: #FFF;
  }
}

.news .inner .category_button a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left;
  background-color: #00A73C;
  z-index: 1;
  transition: 0.6s;
}

@media(hover: hover) {
  .news .inner .category_button a:hover::after {
    transform: scale(1, 1);
  }
}

.news .inner .category_button a span {
  position: relative;
  padding-right: 14px;
  z-index: 2;
}

.news .inner .category_button a span::before {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
}

@media(hover: hover) {
  .news .inner .category_button a:hover span::before {
    border-top: solid 1px #FFF;
    border-left: solid 1px #FFF;
    right: -3px;
  }
}

.news .inner .news_list {
  padding: 60px 0;
  width: calc(740 / 960 * 100%);
}

.news .inner .news_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  width: 100%;
}

.news .inner .news_list ul li {
  width: 100%;
}

.news .inner .news_list ul li a {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  transition: 0.3s;
}

@media(hover: hover) {
  .news .inner .news_list ul li a:hover {
    opacity: .7;
  }
}

.news .inner .news_list ul li a p.date {
  font-weight: 600;
}

.news .inner .news_list ul li a p.date span {
  margin: 0 24px;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1em;
  border-radius: 3px;
}
/* 26卒 */
.news .inner .news_list ul li a p.date span.cat_26topics {
  background-color: #99F397;
}
/* 27卒 */
.news .inner .news_list ul li a p.date span.cat_27topics {
  background-color: #CDF7CD;
}
/* 28卒以降 */
.news .inner .news_list ul li a p.date span.cat_newer {
  background-color: #E8E3AE;
}
/* キャリア */
.news .inner .news_list ul li a p.date span.cat_career {
  background-color: #A8D4FE;
}
/* NEWS */
.news .inner .news_list ul li a p.date span.cat_news {
  background-color: #C2C2C2;
}

.news .inner .news_list ul li a h2 {
  padding-top: .25em;
  font-size: 15px;
  line-height: 1.6em;
}

@media(hover: hover) {
  .news .inner .news_list ul li a:hover h2 {
    text-decoration: underline;
  }
}

/* Interview
-----------------------------------------------------------*/
.interview {
  position: relative;
  padding: 60px 0 120px;
  z-index: 20;
}

.interview .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 15px);
  background: linear-gradient(130deg, #AAD4E1 0%, #FFFFFF 20%, #FDFDF9 80%, #EBFFEF 100%);
  z-index: -1;
}

.interview .inner {
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (max-width:990px) {
  .interview .inner {
    padding: 0 15px;
  }
}

.interview h2 {
  margin-bottom: 60px;
  width: fit-content;
  font-size: 22px;
}

.interview h2 span {
  display: block;
  margin-bottom: .25em;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1em;
}

/* LIST */
.interview .list_wrapper {
  position: relative;
}

.interview .swiper {
  overflow: visible;
}

.interview ul {
  width: 4908px;
}

.interview ul li {
  position: relative;
  width: calc(342 / 4908 * 100%);
}

.interview ul li a picture {
  overflow: hidden;
  display: block;
  margin-left: auto;
  width: calc(320 / 342 * 100%);
}

.interview ul li a picture img {
  transition: 0.6s;
}

@media(hover: hover) {
  .interview ul li a:hover picture img {
    transform: scale(1.05, 1.05);
    opacity: .8;
  }
}

.interview ul li a .name {
  position: absolute;
  bottom: 40px;
  width: calc(300 / 342 * 100%);
}

.interview ul li:nth-child(5) .name {
  width: calc(315 / 342 * 100%);
}


/* INDEX BUTTON */
.interview a.button {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 60px auto 0;
  width: 280px;
  height: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .05em;
  line-height: 48px;
  color: #FFF;
  text-align: center;
  background: linear-gradient(90deg, rgb(101, 157, 222), rgb(107, 230, 232));
  border-radius: 24px;
  transition: 0.3s;
}

.interview a.button span {
  position: relative;
  z-index: 2;
}

.interview a.button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #008CD6;
  transform: scale(0, 1);
  transform-origin: left;
  z-index: 1;
  transition: 0.6s;
}

@media(hover: hover) {
  .interview a.button:hover::after {
    transform: scale(1, 1);
  }
}

/* ABOUT
-----------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
  z-index: 20;
}

.about .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      #EDFAFF 15px,
      #B7DFED 100%);
  z-index: -1;

  /* ← 上15pxだけ透明にするマスク */
  mask-image: linear-gradient(to bottom, transparent 0, transparent 15px, black 15px, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 15px, black 15px, black 100%);
}

.about .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1068px;
}

@media screen and (max-width:1098px) {
  .about .inner {
    padding: 0 15px;
  }
}

.about .inner .title {
  display: block;
  padding-left: calc(44 / 1068 * 100%);
  width: calc(379 / 1068 * 100%);
}

.about .inner .title h2 {
  margin-bottom: 65px;
  padding: 8.5px 70px;
  width: fit-content;
  font-weight: 600;
  font-size: 24px;
  line-height: 1em;
  text-align: center;
  background-color: #FFF;
}

.about .inner .title h2 span {
  display: block;
  margin-top: 0.5em;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1em;
}

.about .inner .title h3 {
  margin-bottom: 22px;
  width: fit-content;
  font-size: 16px;
  line-height: 1em;
}

.about .inner .title h3 span {
  display: block;
  margin-bottom: .25em;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 900;
  font-size: 51px;
  line-height: 1em;
  letter-spacing: -0.02em;
}

.about .inner .title ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  padding-left: 20px;
  width: calc(222 / 379 * 100%);
}

.about .inner .title ul li {
  width: 100%;
}

.about .inner .title ul li a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-size: 22px;
  line-height: 1.6em;
}

.about .inner .title ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  transform-origin: right;
  transition: 0.6s;
}

@media(hover: hover) {
  .about .inner .title ul li a:hover::before{
    transform: scale(0, 1);
  }
}

.about .inner .title ul li a::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid .5px #2D2D2D;
  border-left: solid .5px #2D2D2D;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
}

@media(hover: hover) {
  .about .inner .title ul li a:hover::after {
    right: -3px;
  }
}

.about .inner picture {
  display: block;
  width: calc(650 / 1068 * 100%);
}

/* RECRUIT INFORMATION
-----------------------------------------------------------*/
.recruit {
  position: relative;
  padding: 100px 0 150px;
  background-color: #FFF;
  z-index: 20;
}

.recruit .inner {
  margin: 0 auto;
  max-width: 1000px;
}

@media screen and (max-width:1030px) {
  .recruit .inner {
    padding: 0 15px;
  }
}

.recruit .inner h2 {
  margin: 0 auto 40px;
  width: fit-content;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -0.02em;
  text-align: center;
}

.recruit ul.banner_01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px calc(24.5 / 1000 * 100%);
  margin-bottom: 150px;
}

.recruit ul.banner_01 li {
  overflow: hidden;
  width: calc(317 / 1000 * 100%);
}

.recruit ul.banner_01 li a {
  position: relative;
  display: block;

}

.recruit ul.banner_01 li a img {
transition: 0.3s;
}

@media(hover: hover) {
  .recruit ul.banner_01 li a:hover img {
    transform: scale(1.025, 1.025);
    opacity: .8;
  }
}

.recruit ul.banner_01 li a span {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 18px;
  min-width: 187px;
  width: fit-content;
  height: 56px;
  font-weight: 500;
  font-size: 22px;
  line-height: 56px;
  text-align: center;
  background-color: #FFF;
  border-radius: 4px;
}

.recruit ul.banner_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px calc(36 / 1000 * 100%);
}

.recruit ul.banner_02 li {
  width: calc(482 / 1000 * 100%);
}

.recruit ul.banner_02 li a img {
  display: block;
  transition: 0.15s;
}

@media(hover: hover) {
  .recruit ul.banner_02 li a:hover img {
    transform: scale(1.025, 1.025);
    opacity: .8;
  }
}

/* こんなトコロに巴商会「AtoZカルタ」
-----------------------------------------------------------*/
.special {
  position: relative;
  padding: 121px 0 117px;
  background-color: #EDF1C3;
  background-image: linear-gradient(135deg, #F0F5D2 25%, transparent 25%), linear-gradient(225deg, #F0F5D2 25%, transparent 25%), linear-gradient(45deg, #F0F5D2 25%, transparent 25%), linear-gradient(315deg, #F0F5D2 25%, #EDF1C3 25%);
  background-position: 100px 0, 100px 0, 0 0, 0 0;
  background-size: 100px 100px;
  background-repeat: repeat;
  z-index: 20;
}

.special .inner {
  position: relative;
  margin: 0 auto;
  max-width: 924px;
}

@media screen and (max-width:954px) {
  .special .inner {
    padding: 0 15px;
  }
}

.special .inner .card_01 {
  position: absolute;
  top: -43px;
  right: calc(-131 / 924 * 100%);
  width: calc(605 / 924 * 100%);
}

.special .inner .card_02 {
  position: absolute;
  top: -34px;
  right: 0;
  width: calc(284 / 924 * 100%);
}

.special .inner a {
  position: relative;
  display: block;
  width: calc(547 / 924 * 100%);
  z-index: 2;
}

.special .inner a img {
  display: block;
  transition: 0.15s;
}

@media(hover: hover) {
  .special .inner a:hover img {
    transform: scale(1.025, 1.025);
    opacity: .8;
  }
}


/*  1150px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1150px) {

}

/*  スマホ（767px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
  /* Herospace
  -----------------------------------------------------------*/
  /* 白背景 + SVGでクリップ */
  .herospace .mask {
    /* SVGクリッピング */
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%, calc(371 / 390 * 100%) auto;
    mask-size: 100% 100%, calc(371 / 390 * 100%) auto;
  }

  .herospace .copy {
    mask-position: center;
    transform: translateY(calc(-50% + 29px)) translateX(-50%);
    width: calc(354 / 390 * 100%);
  }

  /* メッセージ
  -----------------------------------------------------------*/
  .message figure {
    flex-wrap: wrap;
    padding: 0 15px;
    width: 100%;
    height: fit-content;
  }

  .message figure img {
    margin: 0 auto;
    max-width: 315px;
    width: calc(315 / 390 * 100%);
  }

  .message figure figcaption {
    margin: 0 auto;
    width: fit-content;
  }

  .message figure figcaption p {
    font-size: 13px;
  }

  /* News
  -----------------------------------------------------------*/
  .news .inner {
    flex-wrap: wrap;
  }

  @media screen and (max-width:990px) {
    .news .inner {
      padding: 0;
      gap: 0;
    }
  }

  .news .inner .category_button {
    padding: 47px 0;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
  }

  .news .inner .category_button h2 {
    margin: 0 15px 16px;
    font-size: 24px;
    text-align: left;
  }

  .news .inner .category_button ul {
    display: none;
  }

  .news .inner .category_button a {
    display: none;
  }

  .news .inner .category_button .select_wrap {
    position: relative;
    margin: 0 auto;
    max-width: 354px;
    width: calc(354 / 390 * 100%);
    background-color: rgba(243, 243, 234, .8);
    border-radius: 100px;
  }

  .news .inner .category_button .select_wrap::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #000;
    border-left: solid 2px #000;
    transform: rotate(-135deg);
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
  }

  .news .inner .category_button .select_wrap select {
    padding: 13px 18px;
    width: 100%;
    height: 100%;
  }

  .news .inner .category_button .select_wrap select:focus {
    outline: none;
  }

  .news .inner .news_list {
    padding: 40px 15px;
    width: 100%;
  }

  .news .inner .news_list ul {
    gap: 1.5em 0;
  }

  .news .inner .news_list ul li a p.date {
    font-size: 15px;
  }

  .news .inner .news_list ul li a p.date span {
    margin: 0 12px;
  }

  .news .inner .news_list ul li a h2 {
    padding-top: .5em;
    width: 100%;
    font-size: 14px;
  }

  .news .inner a.button_allview {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 30px 0 0 auto;
    width: 115px;
    height: 32px;
    font-weight: 600;
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    background-color: #CDE5E0;
    border-radius: 16px;
    transition: 0.6s;
  }

  @media(hover: hover) {
    .news .inner a.button_allview:hover {
      color: #FFF;
    }
  }

  .news .inner a.button_allview::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left;
    background-color: #00A73C;
    z-index: 1;
    transition: 0.6s;
  }

  @media(hover: hover) {
    .news .inner a.button_allview:hover::after {
      transform: scale(1, 1);
    }
  }

  .news .inner a.button_allview span {
    position: relative;
    padding-right: 14px;
    z-index: 2;
  }

  .news .inner a.button_allview span::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1px #000;
    border-left: solid 1px #000;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.6s;
  }

  @media(hover: hover) {
    .news .inner a.button_allview:hover span::before {
      border-top: solid 1px #FFF;
      border-left: solid 1px #FFF;
      right: -3px;
    }
  }

  /* Interview
  -----------------------------------------------------------*/
  .interview {
    padding: 100px 0 100px;
    background: linear-gradient(75deg, #AAD4E1 0%, #FFFFFF 20%, #FDFDF9 80%, #EBFFEF 100%);
  }

  .interview h2 {
    margin: 0 auto 60px;
    font-size: 16px;
  }

  .interview h2 span {
    font-size: 35px;
  }

  .interview ul li {
    padding: 0 15px;
  }

  .interview ul li a .name {
    position: absolute;
    bottom: 40px;
    width: calc(270 / 342 * 100%);
  }

  .interview ul li:nth-child(5) .name {
    width: calc(285 / 342 * 100%);
  }

  /* ABOUT
  -----------------------------------------------------------*/
  .about {
    padding: 40px 0;
  }

  .about .bg {
    background: linear-gradient(to top,
        #EDFAFF,
        #B7DFED);
    z-index: -1;

    mask-image: none;
    -webkit-mask-image: none;
  }

  .about .inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0;
  }

  .about .inner picture {
    width: 100%;
  }

  .about .inner .title {
    position: relative;
    padding-left: 0;
    width: 100%;
    z-index: 2;
  }

  .about .inner .title h2 {
    margin: -40px auto 15px;
    padding: 15px 70px;
    font-size: 22px;
  }

  .about .inner .title h2 span {
    margin-top: 1em;
  }

  .about .inner .title h3 {
    margin: 0 auto 28px;
    font-size: 15px;
    text-align: center;
  }

  .about .inner .title h3 span {
    font-size: 46px;
  }

  .about .inner .title ul {
    margin: 0 auto;
    padding-left: 0;
    width: calc(293 / 390 * 100%);
  }

  .about .inner .title ul li a {
    font-size: 20px;
    line-height: 1.6em;
  }

  /* RECRUIT INFORMATION
  -----------------------------------------------------------*/
  .recruit {
    padding: 80px 0;
  }

  .recruit .inner h2 {
    margin: 0 auto 32px;
    font-size: 33px;
    line-height: 1.2em;
  }

  .recruit ul.banner_01 {
    gap: 32px 0;
    margin: 0 auto 120px;
    width: calc(317 / 350 * 100%);
  }

  .recruit ul.banner_01 li {
    width: 100%;
  }

  .recruit ul.banner_01 li a span {
    padding: 0 40px;
    min-width: 187px;
    height: 52px;
    font-size: 18px;
    line-height: 52px;
  }

  .recruit ul.banner_02 {
    gap: 36px 0;
  }

  .recruit ul.banner_02 li {
    width: 100%;
  }

  /* こんなトコロに巴商会「AtoZカルタ」
  -----------------------------------------------------------*/
  .special {
    padding: 172px 0 90px;
    background-position: 60px 0, 60px 0, 0 0, 0 0;
    background-size: 60px 60px;
  }

  .special .inner .card_01 {
    position: absolute;
    top: -42px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(365 / 390 * 100%);
  }

  .special .inner .card_02 {
    position: absolute;
    top: -150px;
    right: 15px;
    width: calc(181 / 390 * 100%);
  }

  .special .inner a {
    margin: 0 auto;
    width: calc(351 / 360 * 100%);
  }

}

/*  スマホ（360px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:360px) {

}
