@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

li{
  list-style: none;
}

/* Googleフォント Noto Sans JP */
.font-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* bg-color/image */
.bg-color-gray {
  width: 100%;
  height: 100%;
  background-color: #efedec;
}

.bg-white {
  width: 100%;
  background-image: url(../images/bg-white_v2.webp);
  background-position: top;
  background-repeat: round;
  background-size: auto;
  padding-bottom: 80px;
}

.bg-gray {
  width: 100%;
  background-image: url(../images/bg-gray_v2.webp);
  background-position: top;
  background-repeat: round;
  background-size: auto;
  padding-bottom: 80px;
}

/* 境界の処理 */
svg {
  display: block;
  height: auto;
}

/* v-cloak処理 */
[v-cloak] {
  display: none;
}

/* 個別クラス */
/* ----------------------------------------------------------- */

/* ヘッダー */
.header-wrapper {
  position: relative;
}

.header-container {
  width: 100%;
  height: 70px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 120px;
  margin: 0 10px;
}

.logo-container p {
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0.04em;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-search {
  background-color: #fff;
  border: 1px solid #f26122;
  border-radius: 7px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-search:hover {
  background-color: #f26122;
}

.btn-search.active {
  background-color: #f26122;
}

.btn-search.active:hover {
  opacity: 0.7;
}

.btn-search a {
  color: #4d4d4d;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}

.btn-search:hover a {
  color: #fff;
}

.btn-search.active a {
  color: #fff;
}

.nav-menu {
  display: flex;
  text-align: center;
}

.nav-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.6vw;
  height: 70px;
  border-right: 1px solid #cccccc;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  transition: all 0.4s;
}

.nav-menu a:first-of-type {
  border-left: 1px solid #cccccc;
}

.nav-menu a.active {
  background-color: #ffa36a;
  color: #fff;
}

.nav-menu a:hover {
  background: rgba(200, 200, 200, 0.7);
}

/* width:1100px以下用 */
.nav-container_sp {
  display: none;
}

.nav-menu-container {
  display: none;
}

/* メインビジュアル */
#main-visual {
  width: 100%;
  height: clamp(600px, 52vw, 750px);
  background-image: url(../images/top-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: 70px;
}

.top-container {
  position: relative;
}

.top-img-container {
  width: 66%;
  margin: 0 0 0 auto;
}

.swiper {
  width: 100%;
  height: clamp(480px, 44vw, 650px);
  border-radius: 0 0 0 100px;
}

/* 
.swiper-slide {
  background-color: #000;
}

.swiper-slide img {
  opacity: 0.85;
}
*/

.catch-container {
  position: absolute;
  top: 4vw;
  left: 8vw;
  z-index: 1;
}

.sub-catch {
  display: flex;
  gap: 5px;
}

.subcatch-box {
  border: 3px solid #fff;
  border-radius: 30px;
  padding: 5px 15px;
}

.subcatch-box:first-of-type {
  background-color: #00b2db;
}

.subcatch-box:nth-of-type(2) {
  background-color: #c26cc7;
}

.subcatch-box:last-of-type {
  background-color: #74c55a;
}

.subcatch-box p {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}

.italic {
  font-style: italic;
}

.main-catch {
  padding-left: 50px;
}

.catch-body {
  position: absolute;
  right: clamp(90px, calc(10vw - 20px), 250px);
  bottom: clamp(-45px, -2vw, -35px);
  z-index: 1;
}

.catch-body h3 {
  text-align: right;
  font-size: 2.3175rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 6px rgba(53, 53, 53, 0.75), 2.8px 2.8px 6px rgba(53, 53, 53, 0.75),
    4px 0 6px rgba(53, 53, 53, 0.75);
}

.store-locator {
  position: fixed;
  left: 2vw;
  bottom: 124px;
  z-index: 1;
}

.locator-container {
  position: relative;
  width: clamp(100px, 18vw, 200px);
  display: block;
  transition: opacity 0.5s, transform 0.5s;
}

.locator-container:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.locator {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.locator-circle {
  animation-name: round;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes round {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* section */
section {
  overflow: hidden;
}

/* イオンビックではたらくメリット #merit */
.merit-head {
  width: clamp(400px, 36%, 500px);
  margin: 0 auto;
  padding: 120px 0 0;
}

.merit-container {
  width: 940px;
  margin: 50px auto 0;
  display: grid;
  justify-content: space-between;
  grid-template-areas:
    'area1 area1 area1 area1 area1 area1 area2 area2 area2 area2 area2 area2'
    'area3 area3 area3 area3 area4 area4 area4 area4 area5 area5 area5 area5'
    'area6 area6 area6 area7 area7 area7 area8 area8 area8 area9 area9 area9'
    'area10 area10 area10 area10 area11 area11 area11 area11 area12 area12 area12 area12';
  grid-template-rows: 1fr 1fr 1fr 1fr;
  row-gap: 15px;
}

.merit-container div {
  height: 100px;
}

.merit-container div img {
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(180, 180, 180, 0.75);
}

.img-item-1 {
  grid-area: area1;
  justify-self: start;
}

.img-item-2 {
  grid-area: area2;
  justify-self: end;
}

.img-item-3 {
  grid-area: area3;
  justify-self: start;
}

.img-item-4 {
  grid-area: area4;
  justify-self: center;
}

.img-item-5 {
  grid-area: area5;
  justify-self: end;
}

.img-item-6 {
  grid-area: area6;
  justify-self: start;
}

.img-item-7 {
  grid-area: area7;
  justify-self: center;
}

.img-item-8 {
  grid-area: area8;
  justify-self: center;
}

.img-item-9 {
  grid-area: area9;
  justify-self: end;
}

.img-item-10 {
  grid-area: area10;
  justify-self: start;
}

.img-item-11 {
  grid-area: area11;
  justify-self: center;
}

.img-item-12 {
  grid-area: area12;
  justify-self: end;
}

.img-item-1 img,
.img-item-2 img {
  width: 450px;
  height: 100px;
}

.img-item-3 img,
.img-item-4 img,
.img-item-5 img,
.img-item-10 img,
.img-item-11 img,
.img-item-12 img {
  width: auto;
  height: 100px;
}

.img-item-6 img,
.img-item-7 img,
.img-item-8 img,
.img-item-9 img {
  width: auto;
  height: 100px;
}

/* イオングループ「ザ・ビッグ」で働いてみませんか？ */
#try-work {
  padding-top: 60px;
}

.inner-wrapper {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 0 30px;
  border-radius: 20px;
}

.try-work-head {
  width: clamp(500px, 75%, 820px);
  margin: 0 auto 50px;
}

.try-work-img-container {
  width: 90%;
  margin: 0 auto 50px;
}

.try-work-contents-wrapper {
  width: clamp(500px, 85%, 1000px);
  margin: 20px auto;
}

.try-work-content-container {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 20% 1fr;
  gap: 20px;
}

.try-work-contents-wrapper > img {
  margin: 25px 0;
}

.try-work-content-container p {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
  color: #4d4d4d;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

/* 仕事の魅力 #work */
.work-head,
.search-head,
.jobs-head {
  width: clamp(150px, 10%, 180px);
  margin: 0 auto;
  padding: 60px 0 50px;
}

.work-wrapper {
  width: clamp(750px, 90%, 1000px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: clamp(10px, 3vw, 40px);
}

.work-content-img img {
  width: 100%;
  margin-bottom: 10px;
}

.work-content {
  width: 100%;
  height: clamp(350px, 35vw, 440px);
  text-align: center;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  box-shadow: 4px 4px 3px rgba(179, 179, 179, 0.75);
}

.work-content h3 {
  display: inline-block;
  color: #808080;
  font-size: clamp(1rem, 1.7vw, 1.375rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}

.work-content h3 img {
  width: 35px;
}

.work-content p {
  width: 85%;
  text-align: left;
  margin: 20px auto;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: normal;
  color: #4d4d4d;
  white-space: pre-wrap;
}

/* スタッフの声 #staff */
.staff-head {
  width: clamp(170px, 14%, 200px);
  margin: 0 auto;
  padding: 60px 0 50px;
}

.staff-container {
  width: clamp(350px, 80%, 900px);
  margin: 0 auto 30px;
  display: grid;
  grid-template-areas:
    'area1 area2'
    'area1 area3';
  grid-template-columns: 25% 1fr;
  align-items: center;
  column-gap: 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
  box-shadow: 7px 7px 5px rgba(179, 179, 179, 0.75);
  padding: 25px;
}

.staff-item-1 {
  grid-area: area1;
  justify-self: center;
}

.staff-item-2 {
  grid-area: area2;
  justify-self: center;
}

.staff-item-3 {
  grid-area: area3;
  justify-self: center;
}

.staff-container:last-of-type {
  margin-bottom: 0;
}

.staff-img img {
  width: 200px;
  height: 200px;
}

.staff-content-head {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.staff-content-head h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.shift {
  padding: 10px 5px;
  border-radius: 5px;
}

.shift p {
  color: #4d4d4d;
  font-size: 1.25rem;
  font-weight: 500;
}

.staff-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.staff-content p {
  color: #4d4d4d;
  font-size: 1.125rem;
  text-align: left;
  margin-top: 10px;
}

/* 一日の流れ #flow */
.flow-head {
  width: clamp(150px, 10%, 180px);
  margin: 0 auto;
  padding: 60px 0 20px;
}

.flow-container {
  display: flex;
  justify-content: center;
}

.shift-container {
  width: clamp(350px, 40%, 550px);
}

.am-container-head,
.pm-container-head {
  text-align: center;
  padding: 15px 0;
}

.am-container-head {
  background-color: #fe8399;
  border-radius: 10px 0 0 0;
}

.pm-container-head {
  background-color: #ffa36a;
  border-radius: 0 10px 0 0;
}

.am-container-head h3,
.pm-container-head h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.375rem);
  font-weight: bold;
  color: #fff;
}

.am-container-head h5,
.pm-container-head h5 {
  font-size: clamp(0.5rem, 1.125vw, 1rem);
  font-weight: normal;
  color: #fff;
}

.am-time-schedule-container {
  background-image: url(../images/bg-flow-pink.webp);
  background-position: top;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0 0 0 10px;
}

.pm-time-schedule-container {
  background-image: url(../images/bg-flow-orange.webp);
  background-position: top;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0 0 10px 0;
}

.am-time-schedule,
.pm-time-schedule {
  list-style: none;
  margin-left: 30px;
  height: clamp(1000px, calc(95vw), 1250px);
  padding-top: 50px;
}

.am-time-schedule {
  border-left: 7px dotted #f95e81;
}

.pm-time-schedule {
  border-left: 7px dotted #ffa36a;
}

.am-time-schedule li,
.pm-time-schedule li {
  display: flex;
  gap: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.am-time,
.pm-time {
  font-size: 1.125rem;
  font-weight: normal;
  background-color: #666666;
  color: #fff;
  width: 80px;
  height: 30px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  margin-left: 30px;
}

.am-time::before,
.pm-time::before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 3px;
  left: -46px;
  border-radius: 50%;
}

.am-time::before {
  background-color: #f95e81;
}

.pm-time::before {
  background-color: #ffa36a;
}

.sch-box {
  flex: 1;
}

.sch-box h4 {
  font-size: clamp(1rem, 1.56vw, 1.25rem);
  font-weight: bold;
  color: #4d4d4d;
}

.sch-box img {
  margin: 5px 0;
}

.sch-box p {
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: normal;
  color: #4d4d4d;
  white-space: pre-wrap;
}

#flow > p {
  width: clamp(700px, 78%, 1100px);
  margin: 0 auto 40px;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  text-align: center;
  color: #4d4d4d;
  padding-right: 5px;
}

/* お仕事検索 */
select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/select-btn.webp);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 25px auto;
}

.search-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.form_block {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.search-box {
  width: clamp(300px, 38vw, 490px);
  height: 50px;
  padding-left: 20px;
  border-radius: 5px;
  border: 1px solid #999999;
  font-size: 1.125rem;
  font-weight: normal;
  cursor: pointer;
  color: #4d4d4d;
  background-color: #fff;
}

.search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f26122;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 2px rgba(153, 153, 153, 0.75);
  width: 350px;
  height: 50px;
  margin: 50px auto 0;
  cursor: pointer;
  background-image: url(../images/search-btn.webp);
  background-position: left 25% center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  transition: opacity 0.5s;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}

input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label span::before, [type="checkbox"]:checked + label span::after {
  opacity: 1;
}
input[type="checkbox"]:checked + label span::before {
  height: 12px;
  transition-delay: .1s;
}
input[type="checkbox"]:checked + label span::after {
  height: 8px;
}
label {
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
label:hover {
  color: #f35412;
}
label span {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background: #fff;
  border: 1px solid #ccc;
  display: inline-block;
  position: relative;
}
label span::before, label span::after {
  content: '';
  width: 2px;
  transition: .1s linear;
  background: #f35412;
  opacity: 0;
  display: block;
  position: absolute;
}
label span::before {
  height: 0px;
  transform: rotate(45deg);
  transition-delay: 0s;
  transform-origin: bottom right;
  left: 4px;
  bottom: 2px;
}
label span::after {
  height: 0px;
  transform: rotate(-225deg);
  transform-origin: bottom left;
  left: 2px;
  bottom: 9px;
}

.btn input[type="submit"] {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}

.search-btn:hover {
  opacity: 0.7;
}

.search-btn p {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}

.drill {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 12px 20px;
  border-radius: 5px;
  position: relative;
}

.drill::before, .job_form .drill::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  position: absolute;
  left: 20px;
}
.drill::before {
  background: #fff;
  top: -5px;
  z-index: 5;
}
.drill::after {
  background: #e6e6e6;
  top: -6px;
  z-index: 3;
}
.drill .error {
  color: #e00;
}
.drill ul {
  display: flex;
  flex-wrap: wrap;
}
.drill ul li {
  flex: 0 0 auto;
  max-width: 100%;
  margin-right: 20px;
}
.drill ul li label {
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.drill ul li label:hover {
  color: #f35412;
}


/* お仕事一覧 */
.jobs-wrapper {
  width: clamp(500px, 80%, 1200px);
  margin: 0 auto;
  display: grid;
  justify-content: center;
  place-items: center;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.job-container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 4px solid #b3b3b3;
  border-radius: 10px;
  box-shadow: 4px 4px 3px rgba(179, 179, 179, 0.75);
  padding: 20px 0;
  position: relative;
}

.job-box {
  width: 90%;
  margin: 0 auto;
}

.job-box span {
  background-color: #f26122;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 10px;
  margin-right: 5px;
}

.job-box h3 {
  background-color: #f2f2f2;
  color: #f26122;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.375;
  margin-top: 15px;
  padding: 10px 20px;
}

.job-content {
  width: 100%;
  margin: 0 auto 50px;
  border-spacing: 0 10px;
  table-layout: fixed;
}

.job-content tr {
  height: auto;
}

.job-content tr td {
  font-size: 1rem;
  font-weight: 500;
  color: #4d4d4d;
  padding-bottom: 10px;
  border-bottom: 2px solid #f26122;
  line-height: 1.7em;
  max-height: calc(1.4em * 4);
}

.job-content tr td:nth-of-type(odd) {
  width: 80px;
  padding-left: 10px;
}

.job-content tr td:nth-of-type(even) {
  padding-left: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.text-wrapper {
  padding-bottom: 10px;
}

.btn-container {
  display: flex;
  width: 90%;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  border-radius: 18px;
  border: 3px solid #f26122;
  font-size: 1rem;
  font-weight: bold;
  transition: opacity 0.5s;
}

.btn-container a:first-of-type {
  color: #f26122;
  background-color: #fff;
}

.btn-container a:last-of-type {
  color: #fff;
  background-color: #f26122;
}

.btn-container a:hover {
  opacity: 0.7;
}

/* よくある質問 #query */
.query-head {
  width: clamp(160px, 14%, 200px);
  margin: 0 auto;
  padding: 60px 0 50px;
}

.query-wrapper {
  width: 100%;
  margin: 0 auto;
}

.query-container {
  width: clamp(700px, 80%, 1000px);
  margin: 0 auto 20px;
  padding-left: 50px;
  background-color: #fff;
  border: 1px solid #999999;
  box-shadow: 3px 3px 2px rgba(179, 179, 179, 0.75);
  background-image: url(../images/question-q.webp);
  background-position: left 15px top 16px;
  background-repeat: no-repeat;
  background-size: 25px auto;
  cursor: pointer;
}

.question {
  margin: 15px 0;
  position: relative;
}

.question::before,
.question::after {
  position: absolute;
  content: '';
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 3px;
  margin: auto;
  background: #f7931e;
}

.question::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.question.active::after {
  transform: rotate(0deg);
}

.question p {
  width: 95%;
  font-size: 1.125rem;
  font-weight: normal;
  color: #4d4d4d;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.65, 0.05, 0.36, 1), margin 0.3s linear;
}

.answer.active {
  max-height: 150px;
  margin: 15px 0;
}

.answer p {
  width: 95%;
  font-size: 1.125rem;
  font-weight: 500;
  color: #f26122;
  white-space: pre-wrap;
}

/* TOPボタン */
#btn-top {
  display: none;
  z-index: 4;
  position: fixed;
  bottom: 3%;
  right: 3%;
}

#btn-top img {
  width: clamp(50px, 7.7vw, 100px);
}

/* フッター */
.ga-container {
  width: 100%;
  margin: 15px auto 10px;
  text-align: center;
}

.ga-container a {
  font-size: 1rem;
  font-weight: normal;
  color: #4d4d4d;
}

.ga-container a:hover {
  text-decoration: underline;
}

.aeon-container {
  width: 100%;
  height: 40px;
  color: #fff;
  background-color: #f26122;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1100px以下 ------------------------------------------------------------------------------------- */
@media screen and (max-width: 1100px) {
  /* body(ハンバーガーメニュー開時、固定) */
  body.isfixed {
    overflow: hidden;
  }

  /* ヘッダー */
  .header-container {
    width: 100%;
    height: 70px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }

  .logo-container img {
    width: 120px;
    margin: 0 10px;
  }

  .nav-container {
    display: none;
  }

  .nav-container_sp {
    display: block;
  }

  .hamburger-menu {
    width: 45px;
    height: 45px;
    background-color: #f26122;
    border-radius: 3px;
    text-align: center;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
  }

  .hamburger-menu span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
  }

  .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .line:first-of-type {
    top: 23px;
  }

  .line:nth-of-type(2) {
    top: 30px;
  }

  .line:last-of-type {
    top: 37px;
  }

  .nav-menu-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-120%);
    z-index: 5;
    background-color: #fff;
    overflow-y: scroll;
  }

  .nav-menu-container {
    display: block;
    width: 100%;
    padding: 35px 0 60px;
    position: relative;
  }

  .nav-logo-container {
    text-align: center;
    padding-bottom: 35px;
  }

  .nav-logo-container img {
    width: 150px;
  }

  .nav-logo-container p {
    font-size: 1.125rem;
    font-weight: bold;
    color: #4d4d4d;
  }

  .close-btn-container {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .hamburger-close {
    width: 45px;
    height: 45px;
    background-color: #f26122;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    cursor: pointer;
  }

  .hamburger-close span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
  }

  .close-line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 15px;
    left: 17%;
  }

  .close-line:first-of-type {
    transform: rotate(45deg);
  }

  .close-line:last-of-type {
    transform: rotate(-45deg);
  }

  .nav-menu_sp {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto 40px;
  }

  .nav-menu_sp a {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #4d4d4d;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 50px;
    border-top: 1px solid #999999;
    position: relative;
  }

  .nav-menu_sp a::before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #f26122;
  }

  .nav-menu_sp a:last-of-type {
    border-bottom: 1px solid #999999;
  }

  .arrow::before,
  .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 3%;
    width: 15px;
    height: 3px;
    background-color: #f26122;
    transform-origin: calc(100% - 1px) 50%;
  }

  .arrow::before {
    transform: rotate(45deg);
  }

  .arrow::after {
    transform: rotate(-45deg);
  }

  .btn-search_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f26122;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 3px 3px 2px rgba(153, 153, 153, 0.75);
    width: 350px;
    height: 50px;
    margin: 50px auto 0;
    cursor: pointer;
    background-image: url(../images/search-btn.webp);
    background-position: left 25% center;
    background-repeat: no-repeat;
    background-size: 25px auto;
  }

  .btn-search_sp a {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #fff;
  }

  /* メインビジュアル */
  #main-visual {
    height: clamp(430px, 55vw, 600px);
    background-position: top;
    background-size: contain;
  }

  .swiper {
    height: clamp(330px, 44vw, 480px);
  }

  .catch-container {
    top: 4vw;
    left: 4vw;
    width: 90%;
  }

  .subcatch-box p {
    font-size: clamp(1rem, calc(1.25vw + 0.75rem), 1.875rem);
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #fff;
  }

  .catch-body {
    right: 4vw;
    bottom: clamp(-45px, -2.5vw, -35px);
    z-index: 1;
  }

  .catch-body h3 {
    font-size: clamp(1.5rem, calc(1.25vw + 1rem), 2.3rem);
  }

  /* メリット */
  .merit-head {
    width: 60%;
  }

  .merit-container {
    width: 85%;
  }

  .merit-container div {
    height: auto;
  }

  .img-item-1 img,
  .img-item-2 img {
    width: clamp(335px, 43vw, 450px);
    height: auto;
  }

  .img-item-3 img,
  .img-item-4 img,
  .img-item-5 img,
  .img-item-10 img,
  .img-item-11 img,
  .img-item-12 img {
    width: clamp(165px, 28vw, 315px);
    height: auto;
  }

  .img-item-6 img,
  .img-item-7 img,
  .img-item-8 img,
  .img-item-9 img {
    width: clamp(165px, 21vw, 235px);
    height: auto;
  }

  /* お仕事一覧 */
  .jobs-wrapper {
    width: clamp(750px, 80%, 1000px);
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }

  .job-container {
    width: clamp(300px, 100%, 600px);
  }
}

/* 768px以下 ------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* 背景 */
  .bg-white {
    padding-bottom: 30px;
  }

  .bg-gray {
    padding-bottom: 30px;
  }

  /* 境界の処理 */
  svg {
    height: auto;
    transform: translateY(-1px);
  }

  /* ヘッダー */
  .logo-container img {
    width: clamp(80px, 18.5vw, 120px);
  }

  .logo-container p {
    font-size: clamp(0.875rem, 3vw, 1rem);
  }

  /* メインビジュアル */
  #main-visual {
    height: auto;
    background-image: none;
  }

  .top-container {
    position: relative;
  }

  .top-img-container {
    width: 100%;
    margin: 0 auto;
  }

  .swiper {
    height: auto;
    border-radius: 0;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
  }

  .catch-container {
    top: 2vw;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
  }

  .sub-catch {
    display: flex;
    gap: 5px;
  }

  .subcatch-box {
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 5px clamp(5px, 1.25vw, 10px);
  }

  .subcatch-box p {
    font-size: clamp(0.65rem, 2.8vw, 1.5rem);
  }

  .main-catch {
    padding-left: 10px;
  }

  .catch-body {
    right: 50%;
    bottom: 10%;
    transform: translateX(50%);
  }

  .catch-body h3 {
    text-align: center;
    font-size: clamp(1rem, 4vw, 2rem);
    white-space: nowrap;
  }

  .store-locator {
    width: clamp(120px, 40%, 200px);
    left: 1vw;
    bottom: 120px;
  }

  .locator-container:hover {
    opacity: 1;
    transform: scale(1);
  }

  /* イオンビッグで働くメリット */
  .merit-head {
    width: clamp(300px, 80%, 450px);
    padding: 50px 0 0;
  }

  .merit-container {
    width: 340px;
    margin: 25px auto 0;
    grid-template-areas:
      'area1 area1'
      'area2 area2'
      'area3 area3'
      'area4 area5'
      'area6 area7'
      'area8 area9'
      'area10 area10'
      'area11 area12';
    grid-template-rows: 1fr 1fr;
    row-gap: 5px;
  }

  .merit-container div img {
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(180, 180, 180, 0.75);
  }

  .img-item-1,
  .img-item-2,
  .img-item-3,
  .img-item-4,
  .img-item-5,
  .img-item-6,
  .img-item-7,
  .img-item-8,
  .img-item-9,
  .img-item-10,
  .img-item-11,
  .img-item-12 {
    justify-self: center;
  }

  .img-item-1 img,
  .img-item-2 img,
  .img-item-3 img,
  .img-item-4 img,
  .img-item-5 img,
  .img-item-6 img,
  .img-item-7 img,
  .img-item-8 img,
  .img-item-9 img,
  .img-item-10 img,
  .img-item-11 img,
  .img-item-12 img {
    width: 100%;
    height: auto;
  }

  /* イオングループ「ザ・ビッグ」で働いてみませんか？ */
  #try-work {
    padding-top: 20px;
  }

  .inner-wrapper {
    width: 90%;
    padding: 30px 0 15px;
  }

  .try-work-head {
    width: clamp(300px, 80%, 500px);
    margin: 0 auto 30px;
  }

  .try-work-img-container {
    width: 95%;
    margin: 0 auto 30px;
  }

  .try-work-contents-wrapper {
    width: 90%;
    margin: 20px auto;
  }

  .try-work-content-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .try-work-content-container div img {
    width: clamp(100px, 50%, 200px);
  }

  .try-work-contents-wrapper > img {
    margin: 20px 0 0;
  }

  .try-work-contents-wrapper:last-of-type > img {
    display: none;
  }

  .try-work-content-container p {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
  }

  /* 仕事の魅力 #work */
  .work-head,
  .flow-head,
  .search-head,
  .jobs-head {
    width: clamp(100px, 30%, 150px);
    padding: 50px 0 30px;
  }

  .work-wrapper {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .work-content {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .work-content h3 {
    font-size: clamp(0.875rem, 4vw, 1.125rem);
    padding-bottom: 10px;
  }

  .work-content h3 img {
    width: 35px;
  }

  .work-content p {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }

  /* スタッフの声 #staff */
  .staff-head {
    width: clamp(120px, 40%, 180px);
    padding: 50px 0;
  }

  .staff-container {
    width: clamp(320px, 90%, 700px);
    margin: 0 auto 10px;
    grid-template-areas:
      'area1 area2'
      'area3 area3';
  }

  .staff-img img {
    width: clamp(90px, 20vw, 160px);
    height: clamp(90px, 20vw, 160px);
  }

  .staff-content-head h3 {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 10px;
  }

  .shift p {
    font-size: clamp(0.875rem, 3.2vw, 1.25rem);
  }

  .staff-content p {
    font-size: clamp(0.875rem, 3.2vw, 1.125rem);
  }

  /* 一日の流れ #flow */
  .flow-container {
    flex-direction: column;
    gap: 20px;
  }

  .shift-container {
    width: clamp(320px, 90%, 500px);
    margin: 0 auto;
  }

  .am-container-head,
  .pm-container-head {
    padding: 10px 0;
  }

  .am-container-head {
    border-radius: 10px 10px 0 0;
  }

  .pm-container-head {
    border-radius: 10px 10px 0 0;
  }

  .am-container-head h3,
  .pm-container-head h3 {
    font-size: clamp(0.875rem, 3vw, 1.375rem);
  }

  .am-container-head h5,
  .pm-container-head h5 {
    font-size: clamp(0.675rem, 2.5vw, 1rem);
  }

  .am-time-schedule-container {
    border-radius: 0 0 10px 10px;
  }

  .pm-time-schedule-container {
    border-radius: 0 0 10px 10px;
  }

  .am-time-schedule,
  .pm-time-schedule {
    margin-left: 20px;
    height: auto;
    padding: 20px 0 25px;
  }

  .am-time-schedule li,
  .pm-time-schedule li {
    display: flex;
    gap: 5px;
    margin-right: 20px;
    margin-bottom: 15px;
  }

  .am-time,
  .pm-time {
    font-size: 0.875rem;
    font-weight: normal;
    background-color: #666666;
    color: #fff;
    width: 60px;
    height: 20px;
    border-radius: 20px;
    margin-left: 10px;
  }

  .am-time::before,
  .pm-time::before {
    width: 18px;
    height: 18px;
    top: 1px;
    left: -22px;
  }

  .sch-box h4 {
    font-size: clamp(0.9rem, 2.25vw, 1rem);
  }

  .sch-box img {
    margin: 5px 0;
  }

  .sch-box p {
    font-size: clamp(0.75rem, 2vw, 1rem);
  }

  #flow > p {
    width: clamp(320px, 90%, 750px);
    font-size: clamp(0.75rem, 2vw, 1rem);
    text-align: center;
    padding-right: 0;
  }

  /* お仕事検索 */
  select {
    background-size: 20px auto;
  }

  .search-container {
    flex-direction: column;
    place-items: center;
    gap: 10px;
    margin: 0 auto;
    width: clamp(300px, 80%, 500px);
  }

  .form_block {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .search-box {
    width: 100%;
    height: 35px;
    padding-left: 15px;
    font-size: 1rem;
  }

  .search-btn {
    width: 260px;
    height: 60px;
    margin: 20px auto 0;
  }

  .search-btn p {
    font-size: 1rem;
  }

  /* お仕事一覧 */
  .jobs-wrapper {
    width: 90%;
    gap: 10px;
    grid-template-columns: 100%;
  }

  .job-container {
    max-width: 600px;
    padding: 20px 0;
  }

  .job-box span {
    font-size: 0.875rem;
  }

  .job-box h3 {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.285;
    margin-top: 10px;
    padding: 10px;
  }

  .job-content {
    border-spacing: 0 10px;
  }

  .job-content tr:nth-of-type(2),
  .job-content tr:nth-of-type(3) {
    display: none;
  }

  .job-content tr td {
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding-bottom: 5px;
  }

  .job-content tr td:nth-of-type(odd) {
    width: 75px;
  }

  .job-content tr td:nth-of-type(even) {
    padding-left: 20px;
  }

  .btn-container {
    margin: 10px auto;
  }

  /* よくある質問 #query */
  .query-head {
    width: clamp(160px, 40%, 200px);
    padding: 50px 0;
  }

  .query-wrapper {
    width: 90%;
  }

  .query-container {
    width: clamp(330px, 100%, 700px);
    margin: 0 auto 10px;
  }

  .question p {
    width: 85%;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
  }

  .answer.active {
    max-height: 200px;
  }

  .answer p {
    width: 90%;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
  }

  /* TOPボタン */
  #btn-top {
    bottom: 1%;
    right: -4%;
  }

  #btn-top img {
    width: 60%;
  }

  /* フッター */
  .ga-container {
    margin: 10px auto;
    padding-left: 40px;
  }

  .ga-container a {
    font-size: 0.75rem;
  }

  .aeon-container {
    height: 150px;
    align-items: start;
  }
}
