@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* すべての要素のタップハイライトを無効にする */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 透明にする */
}

.button {
  outline: none;
}

.button:focus {
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background-color: #f6f5f5;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 50px;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__name {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #154343;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__name {
    font-size: 24px;
  }
}

.header__name img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .header__name img {
    width: 125px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 50px;
}

.header__link {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  color: #154343;
  height: inherit;
}

.header__contact {
  margin-left: 55px;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  right: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: transform 0.3s;
  background-color: #154343;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #f6f5f5;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #154343;
}

.drawer-menu__contact {
  margin-top: 48px;
}

.recruit-page {
  padding: 0 20px;
}

.page-title {
  margin-top: 200px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .page-title {
    margin-top: 150px;
  }
}

.page-title__deco {
  font-size: 100px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #178f9a;
}
@media screen and (max-width: 768px) {
  .page-title__deco {
    font-size: 60px;
  }
}
@media screen and (max-width: 480px) {
  .page-title__deco {
    font-size: 50px;
  }
}

.page-title__main {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .page-title__main {
    font-size: 24px;
    margin-top: 12px;
  }
}

.recruit__wrap {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .recruit__wrap {
    display: block;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .recruit__info {
    margin-bottom: 40px;
  }
}

.recruit__items {
  border-top: 1px solid #ccc;
}

.recruit__item {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    flex-direction: column;
    gap: 5px;
  }
}

.recruit__dt {
  width: 30%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .recruit__dt {
    width: 100%;
  }
}

.recruit__dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .recruit__dd {
    width: 100%;
  }
}

.contact {
  border-radius: 30px;
  margin: 40px auto;
  color: #fff;
  background: linear-gradient(135deg, #006f70, #009f9c);
}

.contact-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  opacity: 0.75;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 40px 20px 60px;
  }
}

.contact__text {
  padding-top: 20px;
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.875;
}

.contact__arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #154343;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  float: right;
}

.button:hover .arrow-circle {
  background-color: white;
  opacity: 1;
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(-45deg);
  transition: border-color 0.3s ease;
}

.footer {
  padding-top: 80px;
  font-size: 16px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  padding-right: 50px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .footer__main {
    padding-right: 15px;
    padding-left: 15px;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer__contents {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.footer__contents-left {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__contents-left {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
    padding-bottom: 10px;
  }
}

.footer__logo img {
  width: 120px;
}

.footer__company {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .footer__company {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.footer__company-name {
  font-weight: 500;
  margin-bottom: 4px;
}

.footer__company-address {
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: block;
  }
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  text-decoration: none;
  color: #222;
}

.footer__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer__nav-group:nth-child(2) {
    margin-top: 6px;
  }
}

.footer__policy-row {
  margin-top: 20px;
}

.footer__policy-line {
  display: block;
  width: 260px;
  /* 右側だけ短いライン */
  height: 1px;
  background: #cfcfcf;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer__policy-line {
    width: 100%;
  }
}

.footer__policy {
  text-decoration: none;
  color: #222;
  font-size: 16px;
}

.footer__policy:hover {
  text-decoration: underline;
}

.footer__policy-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 下段：濃いグリーン帯 */
.footer__bottom {
  background: #154343;
  text-align: center;
  padding: 10px 20px;
}

.footer__copy {
  color: #fff;
  opacity: 0.85;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}

.heading {
  position: relative;
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 17px;
  letter-spacing: 0.05em;
  color: #154343;
}

.heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 4px;
  content: "";
  border-radius: 2px;
  background-color: #154343;
}

.heading.heading--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .heading.heading--center {
    text-align: left;
  }
}

.heading.heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .heading.heading--center::after {
    left: 0;
    transform: translateX(0);
  }
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.section-title__deco {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #e7e7db;
}

.section-title__main {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 22px;
  }
}

.section-title.section-title--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title.section-title--center {
    text-align: left;
  }
}

.text {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.875;
  color: #154343;
}

.text.text--large {
  font-size: 24px;
  line-height: 1.833;
}
@media screen and (max-width: 768px) {
  .text.text--large {
    font-size: 20px;
  }
}

.button {
  display: inline-flex;
  justify-content: space-between;
  /* テキスト左寄せ、矢印右寄せ */
  align-items: center;
  gap: 8px;
  width: 230px;
  padding: 18px 24px;
  border: 1.5px solid #154343;
  /* 緑がかった落ち着いた色 */
  border-radius: 40px;
  background-color: white;
  color: #154343;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
}

.button .arrow {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* ホバー時に背景色と文字色を反転 */
.button:hover {
  background-color: #154343;
  color: white;
  border-color: white;
}

.button:hover .arrow {
  color: white;
  border-color: #154343;
}

.arrow-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #154343;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.button:hover .arrow-circle {
  background-color: white;
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(-45deg);
  transition: border-color 0.3s ease;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 15px;
  transition: background-color 0.3s;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 80px;
  background-color: #154343;
}

.contact-button:hover {
  background-color: white;
  color: #154343;
  border: 1.5px solid #154343;
}

.contact-button.contact-button--wide {
  font-size: 20px;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .contact-button.contact-button--wide {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}