@charset "UTF-8";
header {
  /* メニューオープン時 */
}
header .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 20px;
  align-items: center;
  margin-right: 5%;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #2b2b2b;
}
@media (max-width: 768px) {
  header .wrapper {
    padding: 10px;
  }
}
header .wrapper .logo {
  width: 250px;
}
@media (max-width: 768px) {
  header .wrapper .logo {
    width: 200px;
    height: auto;
  }
}
header .wrapper nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: baseline;
  margin-right: 30px;
}
@media (max-width: 768px) {
  header .wrapper nav {
    display: none;
  }
}
header .wrapper nav a {
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}
header .wrapper nav .con {
  border: 1px solid #ffffff;
  padding: 9px 20px;
  white-space: nowrap;
}
header .header {
  position: relative;
  padding: 20px;
}
header .hamburger {
  position: fixed;
  top: 0px;
  right: 10px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  header .hamburger {
    display: block;
  }
}
header .hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: white;
  transition: all 0.4s;
}
header .hamburger__line:nth-of-type(1) {
  top: 14px;
}
header .hamburger__line:nth-of-type(2) {
  top: 23px;
}
header .hamburger__line:nth-of-type(3) {
  top: 32px;
}
header .hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
header .hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
header .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
header .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
header .nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
header .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
header .nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
header .nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
header .nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
header .nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
header .nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
header .nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
header .nav-overlay__link:hover {
  color: #4a90e2;
}

footer .f-content {
  text-align: center;
  background: linear-gradient(0deg, #202020, #535353);
  padding-bottom: 50px;
  padding-top: 50px;
}
footer .f-content .logo {
  width: 214px;
  margin: auto;
}
footer .f-content .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  footer .f-content .logo {
    width: 100px;
  }
}
footer .f-content .map iframe {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 140px;
}
@media (max-width: 768px) {
  footer .f-content .map {
    width: 95%;
    margin: auto;
  }
  footer .f-content .map p {
    font-size: 10px;
  }
}
footer .f-content nav {
  padding: 2rem;
  border-top: 1px solid;
  max-width: 80%;
  margin: auto;
  border-bottom: 1px solid;
  margin-bottom: 4rem;
  margin-top: 2rem;
  display: block;
}
footer .f-content nav a {
  margin-left: 2rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}
@media (max-width: 768px) {
  footer .f-content nav a {
    display: block;
    margin-bottom: 1rem;
    margin-left: 0rem;
  }
}

.nav-link.active {
  border-bottom: 1px solid #ff1616;
  width: -moz-fit-content;
  width: fit-content;
}

@tailwind base;
@tailwind components;
@tailwind utilities;
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  letter-spacing: 0.3rem;
  font-size: 16px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "FP-ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.2em;
  position: relative;
  z-index: auto;
  overflow: visible;
  scroll-behavior: smooth;
  background-color: #2b2b2b;
  color: #ffffff;
}

h2 {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

a {
  list-style: none;
  color: white;
}

a:-webkit-any-link {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

section:not(.top, .top-section, .recruit-section),
.recruit-wrapper {
  border-left: 1px solid white;
  border-right: 1px solid white;
  margin: auto;
  padding: 0 2.5rem;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  max-width: 80%;
}
@media (max-width: 768px) {
  section:not(.top, .top-section, .recruit-section),
  .recruit-wrapper {
    max-width: 100%;
    padding: 50px 1.5rem;
    border: none;
  }
}

.recruit-wrapper {
  border: none;
}

.btn-set {
  display: flex;
  flex-direction: row;
  letter-spacing: 2rem;
  align-items: stretch;
  justify-content: space-around;
  max-width: 800px;
  margin: auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .btn-set {
    letter-spacing: normal;
  }
}
.btn-set span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.btn-set span:has(.icon) {
  border: 1px solid #ffffff;
  border-radius: 50%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-width: 200px;
}
.btn-set span.icon-t {
  display: block;
  text-align: center;
  letter-spacing: 0.5rem;
  margin-top: 2rem;
}
.btn-set .icon {
  display: block;
  width: 8rem;
  height: 8rem;
  max-width: 130px;
}
@media (max-width: 768px) {
  .btn-set .icon {
    width: 2rem;
    height: 2rem;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}
.table th,
.table td {
  border-bottom: 2px solid #ffffff;
  padding: 1em;
  text-align: left;
}
.table th {
  border-bottom: 2px solid #ff1616;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
}
@media (max-width: 768px) {
  .table th,
  .table td {
    display: block;
    border-bottom: 1px solid;
  }
  .table th {
    border-bottom: 2px solid #ff1616;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0rem;
    margin-top: 1rem;
  }
}

.icon span {
  text-align: center;
  display: block;
}

.recruit-section {
  width: 100%;
  background-image: url(../image/photo/recruit-back.png);
}

.top-section .wrapper {
  position: relative;
  height: 690px;
  max-width: 95%;
}
.top-section .wrapper .back-image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.top-section .wrapper .back-image img {
  height: 100%;
}
.top-section .wrapper .text {
  position: absolute;
  text-align: center;
  bottom: 60px;
  right: 20px;
  max-width: 545px;
}
.top-section .wrapper .text img {
  -o-object-fit: contain;
     object-fit: contain;
}
.top-section .wrapper .text-wrap {
  margin-top: 20px;
  text-align: left;
  max-width: 300px;
}
.top-section .wrapper .text-wrap p {
  margin-bottom: 1rem;
  background-color: #2b2b2b;
  color: #ffffff;
  display: inline-block;
  font-size: 24px;
  padding: 5px 10px;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}
@media (max-width: 768px) {
  .top-section .wrapper .text-wrap {
    text-align: center;
    padding-left: 0%;
    align-items: center;
  }
  .top-section .wrapper .text-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top-section .wrapper {
    height: 500px;
  }
}

.title-wrap {
  text-align: center;
  padding: 20px 0;
  padding-bottom: 40px;
}
.title-wrap h1 {
  font-size: 64px;
  font-family: "HelveticaLTPro-Bold";
  letter-spacing: 0.2em;
  line-height: normal;
}
@media (max-width: 768px) {
  .title-wrap h1 {
    font-size: 32px;
    letter-spacing: 0.2em;
  }
}
.title-wrap p {
  font-size: 24px;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}
@media (max-width: 768px) {
  .title-wrap p {
    font-size: 16px;
  }
}

.copyright {
  background: #070707;
  color: #ffffff;
  text-align: center;
  font-family: "HelveticaNowDisplay-Regular";
  padding: 1px;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 10px;
  }
}

.text-wrap {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-section {
  text-align: center;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  letter-spacing: 0.13em;
  line-height: 2rem;
}

.c-btn-set {
  padding: 20px 0;
}
.c-btn-set a {
  display: flex;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-direction: row;
  margin: 2rem auto;
  max-width: 550px;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-size: 24px;
  letter-spacing: 0.13em;
}
.c-btn-set a span svg {
  display: block;
  height: 1rem;
  width: 1rem;
}
.c-btn-set a:hover {
  background-color: #ffffff;
  color: #070707;
}

.contact-form section {
  padding-top: 0;
}
.contact-form form {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.contact-form input,
.contact-form textarea {
  background: white;
  border: 1px solid;
  margin-bottom: 1rem;
  max-width: 800px;
  width: 100%;
}
.contact-form label {
  font-size: 1.2rem;
}
.contact-form input[type=submit] {
  background-color: white;
  border: 1px solid #ff1616;
  color: #070707;
  font-size: 1.5rem;
  line-height: 2rem;
}