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

body {
  background: #03aed2;
  color: #333;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

h3 {
  font-size: 18px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  filter: brightness(95%);
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 4%;
}

/* -- home -- */
#home {
  background-image: url(../img/mv.jpg);
}

.main-bg {
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* -- header -- */
#header .logo {
  width: 100%;
  max-width: 240px;
  line-height: 0;
  position: fixed;
  top: 2%;
  left: 4%;
  z-index: 30;
}

#header .logo a {
  display: block;
}

/* -- hamburger -- */
.header__inner {
  position: relative;
}

.hamburger {
  display: block;
  margin-left: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 60px;
  height: 60px;
  border: none;
  background-color: #fdde55;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger.-active .hamburger__text::before {
  content: "閉じる";
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background-color: #000;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #000;
  transition: inherit;
}

.hamburger__line:before {
  top: -6px;
}

.hamburger__line:after {
  top: 6px;
}

.hamburger__text {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hamburger__text::before {
  content: "応募する";
  text-align: center;
  color: #000;
  font-size: 10px;
  font-weight: 700;
}

.header__nav-area {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  height: 100vh;
  width: 300px;
  visibility: hidden;
  padding-top: 60px;
  background-color: #fff;
  transition: 0.4s;
}

.header__nav-area.-active {
  left: 0;
  visibility: visible;
}

.global-navigation {
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 120px;
  padding-left: 25px;
}

.global-navigation__list > li {
  padding-bottom: 20px;
  border-bottom: 2px solid #e7e9ee;
}

.global-navigation__list > li + li {
  margin-top: 20px;
}

.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: 700;
  transition: color 0.4s;
  font-size: 0.875rem;
}

.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}

/* -- mainvisual -- */
.mainvisual {
  padding: 60px 0;
}

.mainvisual .text .catchphrase {
  color: #fff;
  font-size: 64px;
  font-family: "ads-hikari", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0px 2px 4px rgba(68, 68, 68, 0.5);
}

.mainvisual .text .description {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0px 2px 4px rgba(68, 68, 68, 0.5);
}

/* -- section -- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title.text-white {
  color: #fff;
}

.section-title .main {
  margin-bottom: 20px;
}

.section-title .main .text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.section-title .main .img {
  max-width: 100px;
  display: block;
  margin: -20px auto 0;
}

.section-title .sub {
  font-size: 18px;
}

/* -- button -- */
.btn {
  display: block;
  max-width: 360px;
  background: #fdde55;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto;
  position: relative;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  cursor: pointer;
}

.btn.return {
  max-width: 600px;
  background: #fff;
  border: 2px solid #03aed2;
}

.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 40px;
  width: 10px;
  height: 10px;
  border-top: 3px solid;
  border-right: 3px solid;
  rotate: 45deg;
  transition: 0.5s;
}

.btn.return::after {
  rotate: -45deg;
}

/* -- grid -- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.grid2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.card,
.card2,
.card3 {
  border-radius: 8px;
}

.card.gray {
  background-color: #f5f5f5;
  padding: 40px 30px;
}

.card.white,
.card3.white {
  padding: 20px;
}

.card2 h3 {
  background-color: #fdde55;
  border-radius: 8px 8px 0 0;
  text-align: center;
  padding: 8px 0;
}

.card2 .img {
  margin: 10px 0;
}

.card2 .desc {
  padding: 0 20px 20px;
}

.card3 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 5;
}

/* -- diviver -- */
.custom-shape-divider-top-1758875903 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.custom-shape-divider-top-1758875903 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 118px;
}

.custom-shape-divider-top-1758875903 .shape-fill {
  fill: #fff;
}

.custom-shape-divider-bottom-1758877701 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.custom-shape-divider-bottom-1758877701 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 118px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1758877701 .shape-fill {
  fill: #fff;
}

.divider {
  position: relative;
}

.white {
  background: #fff;
}

.blue {
  background: #03aed2;
  margin: 6rem 0;
}

/* -- merit -- */
.merit-title {
  font-size: 60px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.merit-title-desc {
  font-size: 18px;
}

.merit-sub {
  margin: 5px 0;
}

/* -- place -- */
.map {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.city {
  margin-bottom: 40px;
}

.scroll {
  display: none;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  width: 20%;
  padding-top: 5px;
  margin: 0 0 0 auto;
}

.scroll::after {
  content: "";
  border-top: 1px solid #fff;
  width: 50px;
  margin-left: 1em;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.cp {
  display: flex;
  align-items: center;
  background: #fdde55;
  border-radius: 8px;
  padding: 20px;
}

.cp .text h3 {
  margin-bottom: 10px;
}

.cp .text {
  flex: 2;
}

.cp .img {
  flex: 1;
}

/* -- job -- */
.tab-container {
  margin-bottom: 60px;
}

.tab-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.tab-container ul li {
  flex: 1;
  padding: 16px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  color: #666;
  font-weight: 700;
}

.tab-container ul li.selected {
  color: #fff;
  background-color: #03aed2;
  box-shadow: 0 4px 12px rgba(3, 174, 210, 0.4);
}

.tab-container ul li:not(.selected):hover {
  background: #edf9ff;
  color: #004ea1;
}

.tab-container .tab-content {
  display: none;
  padding: 40px;
  min-height: 150px;
  background-color: #03aed2;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-container .tab-content.selected {
  display: block;
}

.info1,
.info2 {
  margin-bottom: 20px;
}

.info1,
.info3 {
  background-color: #fff;
  border-radius: 8px;
}

.info1 {
  padding: 10px 40px;
}

.info3 {
  display: flex;
  align-items: end;
  padding: 40px;
  margin-bottom: 40px;
}

.info3 .text h3 {
  margin-bottom: 10px;
}

.info3 .text {
  flex: 2;
}

.info3 .img {
  flex: 1;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.table tr {
  border-top: 1px solid #03aed2;
}

.table tr:first-child {
  border: none;
}

.table th,
.table td {
  vertical-align: top;
  padding: 30px;
}

.table th {
  width: 20%;
  font-weight: 700;
  text-align: left;
}

.table td .break {
  margin-bottom: 10px;
}

/* -- interview -- */
.interview .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.interview .item .img {
  max-width: 160px;
  margin-right: 40px;
}

.interview .item .img:nth-child(2) {
  margin-left: 40px;
  margin-right: 0;
}

.interview .item .text {
  max-width: 760px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.interview .item .text::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  top: 45%;
}

.interview .item .text:nth-child(1)::after {
  transform: rotate(-45deg);
  right: -10px;
}

.interview .item .text:nth-child(2)::after {
  transform: rotate(135deg);
  left: -10px;
}

.interview .item .text .name {
  text-align: right;
  margin-top: 5px;
}

/* -- company -- */
.company-info {
  display: flex;
  justify-content: space-between;
}

.company-info .text {
  width: 60%;
}

.company-info .text img {
  max-width: 360px;
  margin-bottom: 20px;
}

.company-info dt {
  float: left;
}

.company-info dt::after {
  content: "：";
}

.company-info .img {
  width: 35%;
}

/* -- fixed-apply-button -- */
.apply {
  background-color: #fdde55;
  position: sticky;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.wrapper-apply {
  max-width: 1280px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 4%;
  margin: 0 auto;
}

.apply .btn-icon.blue1,
.apply .btn-icon.blue2 {
  width: 42%;
  background-color: #03aed2;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
}

.apply .btn-icon.blue2 {
  background-color: #004fa2;
  color: #fff;
}

/* -- footer -- */
#footer {
  background-color: #03aed2;
  color: #fff;
  text-align: center;
  padding: 40px 4%;
}

#footer .logo {
  max-width: 300px;
  margin: 0 auto 15px;
}

#footer .copyright {
  font-size: 12px;
}

/* -- floating-button -- */
a.backToTop {
  display: inline-block;
  background-color: #333;
  width: 55px;
  height: 55px;
  position: fixed;
  right: 2%;
  bottom: 2%;
  opacity: 0;
  z-index: 999;
  border-radius: 9999px;
  transition: opacity 0.8s;
  pointer-events: none;
}

a.backToTop:before {
  display: inline-block;
  width: 0.8rem;
  height: 0.8em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  color: #fff;
  line-height: 1;
  content: "";
  z-index: 1000;
  opacity: 1;
  left: 50%;
  top: 55%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* -- display -- */
.sp,
.tablet-on {
  display: none;
}

/* ------------------------------
        Tablet
  ------------------------------ */
@media screen and (max-width: 960px) {
  /* -- display -- */
  .tablet-off {
    display: none;
  }

  .tablet-on {
    display: block;
  }

  /* -- home -- */
  .main-bg {
    background-position: 50% 30%;
  }

  /* -- header -- */
  #header .logo {
    max-width: 220px;
  }

  /* -- mainvisual -- */
  .mainvisual {
    padding: 60px 0 0;
  }

  .mainvisual .text .catchphrase {
    font-size: 48px;
  }

  /* -- merit -- */
  .merit-title {
    font-size: 40px;
  }

  /* -- job -- */
  .info1 {
    padding: 10px 20px;
  }

  .info3 {
    padding: 20px;
  }

  .table th,
  .table td {
    padding: 20px;
  }
}

/* ------------------------------
        Smartphone
  ------------------------------ */
@media screen and (max-width: 767px) {
  /* -- display -- */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* -- home -- */
  .main-bg {
    background-position: 60% 30%;
  }

  /* -- header -- */
  #header .logo {
    max-width: 180px;
  }

  /* -- mainvisual -- */
  .mainvisual > .wrapper {
    padding: 40px 4%;
  }

  .mainvisual .text .catchphrase {
    font-size: 30px;
  }

  .mainvisual .text .description {
    font-size: 14px;
  }

  /* -- section -- */
  .section-title {
    margin-bottom: 40px;
  }

  .section-title .main .text {
    font-size: 24px;
  }

  .section-title .sub {
    font-size: 16px;
    text-align: left;
  }

  /* -- button -- */
  .btn,
  .btn.return {
    max-width: 100%;
  }

  /* -- grid -- */
  .grid,
  .grid3 {
    grid-template-columns: 1fr;
  }

  .card.gray {
    padding: 20px 30px;
  }

  /* -- merit -- */
  .merit > .wrapper {
    padding: 60px 4% 80px;
  }

  .merit-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .merit-title-desc {
    font-size: 16px;
  }

  /* -- place -- */
  .map {
    padding: 20px;
    margin-bottom: 20px;
  }

  .city {
    margin-bottom: 5px;
  }

  .grid2 {
    grid-template-columns: repeat(4, 92%);
    grid-auto-flow: column;
    gap: 15px;
    overflow: auto;
  }

  .scroll {
    display: flex;
    margin-bottom: 20px;
  }

  .cp {
    display: block;
  }

  /* -- job -- */
  .tab-container {
    margin-bottom: 20px;
  }

  .tab-container ul li {
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .tab-container .tab-content {
    padding: 20px;
  }

  .info1,
  .info2 {
    margin-bottom: 20px;
  }

  .info1,
  .info3 {
    background-color: #fff;
    border-radius: 8px;
  }

  .info1 {
    padding: 10px 20px;
  }

  .info2 h3 {
    font-size: 16px;
  }

  .info3 {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
  }

  .info3 .text {
    margin-bottom: 20px;
  }

  .table th,
  .table td {
    display: block;
    font-size: 15px;
    padding: 0px;
  }

  .table th {
    width: 100%;
    padding: 16px 0 5px;
  }

  .table td {
    padding-bottom: 16px;
  }

  /* -- interview -- */
  .interview .item:last-child {
    margin-bottom: 0;
  }

  .interview .item .img {
    width: 100px;
    flex-shrink: 0;
    margin-right: 20px;
  }

  .interview .item .img:nth-child(2) {
    margin-left: 20px;
  }

  .interview .item .text {
    font-size: 14px;
    padding: 16px;
  }

  .interview .item .text .name {
    font-size: 13px;
  }

  /* -- company -- */
  .company-info {
    flex-direction: column;
  }

  .company-info .text,
  .company-info .text img,
  .company-info .img {
    width: 100%;
  }

  .company-info .text {
    margin-bottom: 20px;
  }

  /* -- footer -- */
  #footer {
    padding: 30px 4%;
  }

  #footer .logo {
    max-width: 220px;
  }

  /* -- floating-button -- */
  a.backToTop {
    width: 30px;
    height: 30px;
    right: 3%;
  }

  a.backToTop:before {
    width: 0.6rem;
    height: 0.6em;
  }
}

@media screen and (max-width: 427px) {
  /* -- place-scroll -- */
  .scroll {
    width: 35%;
  }
}
