@charset "utf-8";

/*==========================
common
==========================*/
:root {
  --primary-white: #fff;
  --primary-gray: #e7e7e9;
  --secondary-gray: #d0d3d5;
  --primary-black: #0f172a;
  --primary-yellow: #d2ff01;
  --primary-gradation: linear-gradient(90deg, #e2e4e4 0%, #777676 100%);
  --contentWidth: 91.4%;
  --contentpadding: 4.2%;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP";
  font-style: normal;
  color: var(--primary-black);
  background-color: var(--primary-gray);
  line-height: 36px;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: var(--primary-gray);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* innner sp */
@media screen and (max-width: 768px) {
  .inner {
    max-width: 342px;
    margin: 0 auto;
  }
}

.midashi {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 40px;
  letter-spacing: 0.28em;
}

.midashi-tab {
  width: fit-content;
  padding: 8px 24px;
  background: var(--primary-gradation);
  border: 2px solid var(--primary-black);
  border-bottom: none;
  font-size: 1.4rem;
  border-radius: 5px 5px 0 0;
  color: var(--primary-white);
}

.midashi-box {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary-white);
  border: 2px solid var(--primary-black);
  border-radius: 0 5px 5px 5px;
  font-size: 3.2rem;
}

/* midashi sp */
@media screen and (max-width: 768px) {
  .midashi-tab {
    padding: 4px 12px;
    font-size: 1.4rem;
  }

  .midashi-box {
    padding: 6px 16px;
    font-size: 2.4rem;
  }
}

/* PC */
.spBr {
  display: none;
}

/* SP */
@media screen and (max-width: 768px) {
  .spBr {
    display: block;
  }
}

/* ==========================
header
========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-white);
  box-shadow: rgba(0, 0, 0, 0.3) 11px 15px 30px;
  z-index: 9999;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.header__topic {
  width: 180px;
}

.header__topic img {
  width: 100%;
  display: block;
}

/* ==========================
nav
========================== */
.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.nav__item a {
  font-size: 1.6rem;
}

/* ==========================
entry button
========================== */
.nav__btnEntry {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 50px;
  background: var(--primary-gradation);
  color: var(--primary-white);
  font-size: 1.6rem;
  text-shadow: rgba(0, 0, 0, 0.25) 4px 4px 8px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav__btnEntry:hover {
  background: var(--primary-yellow);
  color: var(--primary-black);
  text-shadow: none;
}

/* ==========================
SP button hidden
========================== */
.header__btn,
.nav__btn,
.nav__header {
  display: none;
}

@media screen and (max-width: 1368px) {
  .header {
    padding: 15px 20px;
  }

  .header__topic {
    width: 140px;
  }

  .header__btn {
    display: block;
    width: 32px;
    cursor: pointer;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.4s;
    z-index: 1001;
    overflow-y: auto;
    padding: 30px;
  }

  .nav.active {
    right: 0;
  }

  .nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }

  .nav__topic {
    font-size: 18px;
    font-weight: 700;
  }

  .nav__topic span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
  }

  .nav__btn {
    display: block;
    width: 24px;
    cursor: pointer;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .nav__item {
    width: 100%;
    text-align: center;
  }

  .nav__btnEntry {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    margin-top: 20px;
    text-align: center;
  }
}

/*==========================
main pc
==========================*/
.mainImg .mainImg__pc {
  display: block;
  margin-top: 8px;
}

.mainImg .mainImg__sp {
  display: none;
}

/* main sp */
@media screen and (max-width: 768px) {
  .mainImg .mainImg__pc {
    display: none;
  }

  .mainImg .mainImg__sp {
    display: block;
    margin-top: 50px;
  }
}

/* ==========================
recruit pc
========================== */
.recruit {
  background-image: url(../images/chech_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}

.recruit__box {
  text-align: center;
  color: var(--primary-white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/recruit-bg.jpg") center center / cover no-repeat;
  width: 100%;
  height: 472px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary-black);
}

.recruit__title {
  position: relative;
  display: inline-block;
}

.recruit__title h2 {
  font-size: 3.2rem;
  position: relative;
  z-index: 2; /* 前面 */
}

.recruit__title span {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  font-size: 7.5rem;
  font-family: "Yellowtail", cursive;
  color: var(--primary-yellow);
}

.recruit__text {
  margin: 64px 0 40px;
}

.btn {
  display: inline-block;
  width: 224px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background: var(--primary-gradation);
  color: var(--primary-white);
  font-size: 1.6rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 11px 15px 30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--primary-yellow);
  color: var(--primary-black);
  text-shadow: none;
}

/* recruit　sp */
@media screen and (max-width: 768px) {
  .recruit {
    padding: 0;
  }

  .recruit .inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .recruit__box {
    width: 100%;
    height: 440px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
      url("../images/recruit-bgSp.jpg") center center / cover no-repeat;
    background-size: cover;
  }

  .recruit__title h2 {
    font-size: 2.4rem;
  }

  .recruit__title span {
    font-size: 6rem;
  }

  .recruit__text {
    font-size: 1.4rem;
    line-height: 28px;
    margin: 64px 0 26px;
  }
}

/* ==========================
company pcとテーブル
========================== */
.table {
  border-collapse: collapse;
  display: flex;
  justify-content: center;
}

.table tr {
  display: flex;
  gap: 36px;
  margin-bottom: 24px;
}

.table tr:last-child {
  margin-bottom: 0;
}

.table th {
  width: 186px;
  font-size: 1.6rem;
  font-weight: 900;
  border-bottom: 2px solid var(--primary-black);
  padding-bottom: 24px;
}
.table tr:last-child th {
  border-bottom: none;
}

.table td {
  width: 528px;
  font-size: 1.6rem;
  border-bottom: 2px solid var(--primary-black);
  padding-bottom: 24px;
}

.table tr:last-child td {
  border-bottom: none;
}

/* company sp */
@media screen and (max-width: 768px) {
  .table,
  .table tr,
  .table th,
  .table td {
    display: block;
    width: 342px;
  }

  .table th {
    border-bottom: none;
    padding-bottom: 16px;
    line-height: 16px;
  }

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

/* ==========================
contact pc
========================== */
.contact {
  border-top: 2px solid var(--primary-black);
  border-bottom: 2px solid var(--primary-black);
  background-image: url("../images/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 80px;
  position: relative;
}

.contact__deco {
  position: absolute;
  top: -130px;
  left: -28px;
  left: -28px;
  width: 375px;
  height: auto;
  z-index: 10;
}

.contact__box {
  width: 100%;
  max-width: 874px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--primary-white);
  border: 2px solid var(--primary-black);
  padding: 96px 75px 30px;
  position: relative;
}

.contact__box .midashi {
  position: absolute;
  top: -56px;
  left: -2px;
}

.contact__left {
  text-align: center;
  border-right: 2px solid var(--primary-black);
  padding-right: 49px;
}

.contact__tel {
  font-size: 4rem;
  padding-bottom: 8px;
}

.contact__time {
  font-size: 2rem;
  padding-bottom: 24px;
}

.contact__right p {
  padding-left: 49px;
  text-align: center;
}

/* contact　sp */
@media screen and (max-width: 768px) {
  .contact {
    padding: 100px 0 54px;
  }

  .contact__deco {
    display: none;
  }

  .contact__box {
    width: 100%;
    padding: 78px 22px 32px;
    display: block;
    position: relative;
    box-sizing: border-box;
  }

  .contact__box .midashi {
    position: absolute;
    top: -48px;
    left: -2px;
  }

  .contact__left {
    border-right: none;
    padding-right: 0;
    padding-bottom: 32px;
    text-align: center;
  }

  .contact__right {
    border-top: 2px solid var(--primary-black);
    padding-top: 24px;
  }

  .contact__right p {
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* ====================================
Article footer
======================================= */
.article footer {
  background-color: var(--primary-white);
  padding: 100px 0;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: auto;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.logo__jp {
  font-size: 2rem;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 8px;
}

.logo__en {
  font-size: 1.4rem;
  line-height: 1;
}

.article__footer .logo {
  margin-bottom: 40px;
}

/* Article footer SP */
@media screen and (max-width: 768px) {
  .article footer {
    padding: 72px 0;
  }

  .logo img {
    width: 32px;
  }

  .logo__jp {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .logo__en {
    font-size: 1.2rem;
  }

  .footerNav {
    margin-top: 32px;
  }

  .logo a {
    gap: 8px;
    justify-content: center;
  }

  .logo img {
    width: 36px;
  }

  .logo__jp {
    font-size: 1.8rem;
  }

  .logo__en {
    font-size: 1rem;
  }
  /* ====== */

  .footerNav .nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 64px;
  }

  .footerNav .nav__item a {
    display: block;
    font-size: 1.6rem;
  }
}

/* ====================================
footer pc
======================================= */
.footer {
  border-top: 2px solid var(--primary-black);
  padding: 100px 0 0;
}

.footer__group {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer__topic {
  font-size: 2rem;
  font-weight: 900;
  padding-bottom: 16px;
}

.footer__txt {
  font-size: 1.6rem;
  line-height: 24px;
}

.copy {
  background-color: var(--primary-black);
  text-align: center;
  padding: 30px 0;
  margin-top: 64px;
}

.copy small {
  color: var(--primary-white);
  font-size: 1.2rem;
}

/* footer SP */
@media screen and (max-width: 1368px) {
  .footer {
    padding: 72px 0 0;
    text-align: center;
  }
  
  .footer__group {
    display: block;
  }

  .footer__left {
    width: var(--contentWidth);
    margin: 0 auto;
    margin-bottom: 36px;
  }

  .footer__right {
    width: var(--contentWidth);
    margin: 0 auto;
    display: block;
  }

  .footer__right1 {
    margin-bottom: 36px;
  }

  .footer__topic {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .copy {
    padding: 8px 0;
    font-size: 1.2rem;
  }
}
