@charset "UTF-8";

/*==============================================
  青電メンテナンス サイトスタイル
  
  目次:
  1. Reset & Base
  2. Layout - Header
  3. Layout - Footer
  4. Layout - Container
  5. Component - Button
  6. Component - Badge
  7. Page - Home
  8. Page - Recruit
  9. Utility
==============================================*/

/*---------------------
  1. Reset & Base
-----------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

/* リストのリセット */
ul,
ol {
  list-style: none;
}

/* 見出しのリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* 段落のリセット */
p {
  margin: 0;
}

/* リンクのリセット */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* 画像のリセット */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素のリセット */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button:disabled {
  cursor: default;
}

input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  appearance: button;
  -webkit-appearance: button;
}

input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

/* iframeのリセット */
iframe {
  border: 0;
}

/* その他のリセット */
address {
  font-style: normal;
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp,
pre {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 隠し要素 */
[hidden] {
  display: none;
}

/* フォーカスアウトラインのリセット（必要に応じて調整） */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/bg-gradient-pattern.jpg");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/*---------------------
  2. Layout - Header
-----------------------*/
.l-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.l-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.l-header__logo {
  max-width: 250px;
}

.l-header__logo img {
  height: 50px;
  width: auto;
}

.l-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.l-header__recruit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background-color: #0066cc;
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.l-header__recruit-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}

.l-header__recruit-text {
  display: inline-block;
}

.l-header__recruit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  color: #0066cc;
  font-size: 18px !important;
  line-height: 1;
}

.l-header__recruit-btn .material-icons {
  font-size: 18px !important;
}

.l-header__menu-btn {
  width: 50px;
  height: 50px;
  background-color: #0066cc;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.l-header__menu-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}

.l-header__menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-header__menu-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.l-header__menu-btn:hover .l-header__menu-line:nth-child(1) {
  transform: translateY(3px);
}

.l-header__menu-btn:hover .l-header__menu-line:nth-child(3) {
  transform: translateY(-3px);
}

/* SPメニュー */
.l-sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-image: url("img/bg-gradient-pattern.jpg");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.l-sp-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.l-sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.l-sp-menu__inner {
  padding: 80px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.l-sp-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 10px;
}

.l-sp-menu__logo {
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.l-sp-menu__logo img {
  height: 50px;
  width: auto;
}

.l-sp-menu__nav {
  max-width: 320px;
  width: 100%;
}

.l-sp-menu__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.l-sp-menu__link {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 2px solid #e5e5e5;
  text-decoration: none;
}

.l-sp-menu__link-text {
  flex: 1;
}

.l-sp-menu__link-icon {
  color: #0066cc;
  font-size: 24px !important;
  line-height: 1;
}

.l-sp-menu__contact {
  max-width: 320px;
  width: 100%;
}

.l-sp-menu__contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: #0066cc;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.l-sp-menu__contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.l-sp-menu__contact-icon {
  color: #0066cc;
  font-size: 20px;
  line-height: 1;
}

.l-sp-menu__contact-text {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: #fff;
}

.l-sp-menu__close-bottom {
  margin-top: 20px;
  width: 100%;
  padding: 12px 24px;
  background: none;
  border: 2px solid #0066cc;
  border-radius: 25px;
  color: #0066cc;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-sp-menu__close-bottom:hover {
  background-color: #0066cc;
  color: #fff;
}

.l-sp-menu__close-bottom-text {
  display: inline-block;
}

/* レスポンシブ: ヘッダー */
@media screen and (max-width: 768px) {
  .l-header__actions {
    gap: 10px;
  }

  .l-header__recruit-btn {
    display: none;
  }

  .l-header__menu-btn {
    width: 45px;
    height: 45px;
  }

  .l-header__menu-icon {
    width: 20px;
    height: 16px;
  }
}

/*---------------------
  3. Layout - Footer
-----------------------*/
.l-footer {
  background-color: #022f72;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-footer__main {
  margin-bottom: 30px;
}

.l-footer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.l-footer__logo {
  display: flex;
  align-items: center;
}

.l-footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.l-footer__recruit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background-color: #fff;
  color: #0066cc;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.l-footer__recruit-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.l-footer__recruit-text {
  display: inline-block;
}

.l-footer__recruit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #0066cc;
  border-radius: 50%;
  color: #fff;
  font-size: 18px !important;
  line-height: 1;
}

.l-footer__recruit-btn .material-icons {
  font-size: 18px !important;
}

.l-footer__content {
  margin-left: 0;
  padding-left: 0;
}

.l-footer__address {
  font-style: normal;
  line-height: 2;
  color: #fff;
  margin-bottom: 20px;
}

.l-footer__postal-code {
  font-size: calc(16 / 16 * 1rem);
  display: block;
}

.l-footer__address-text {
  font-size: calc(16 / 16 * 1rem);
  display: block;
}

.l-footer__contact-info {
  display: block;
  margin-top: 10px;
}

.l-footer__tel {
  font-size: calc(26 / 16 * 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}

.l-footer__reception {
  font-size: calc(14 / 16 * 1rem);
  display: block;
  line-height: 1.6;
}

.l-footer__privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: calc(14 / 16 * 1rem);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.l-footer__privacy-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.l-footer__privacy-text {
  display: inline-block;
}

.l-footer__privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  color: #0066cc;
  font-size: 18px !important;
  line-height: 1;
}

.l-footer__copyright {
  text-align: center;
  font-size: calc(14 / 16 * 1rem);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.l-footer__page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #0066cc;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.l-footer__page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.l-footer__page-top:hover {
  background-color: #0052a3;
  transform: translateY(-3px);
}

/* レスポンシブ: フッター */
@media screen and (max-width: 1000px) {
  .l-footer__header {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__recruit-btn {
    padding: 10px 24px;
    font-size: calc(14 / 16 * 1rem);
  }

  .l-footer__recruit-icon {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .l-footer__postal-code {
    font-size: calc(14 / 16 * 1rem);
  }

  .l-footer__address-text {
    font-size: calc(14 / 16 * 1rem);
  }

  .l-footer__tel {
    font-size: calc(22 / 16 * 1rem);
  }

  .l-footer__reception {
    font-size: calc(13 / 16 * 1rem);
  }

  .l-footer__privacy-link {
    font-size: calc(13 / 16 * 1rem);
  }

  .l-footer__privacy-icon {
    width: 16px;
    height: 16px;
    font-size: 14px !important;
  }
}

/*---------------------
  4. Layout - Container
-----------------------*/
.l-container-1200 {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

.l-container-1000 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}

.l-container-800 {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 25px;
}

/*---------------------
  5. Component - Button
-----------------------*/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  color: #fff;
  background-color: #0066cc;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.c-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}

.c-btn--tel {
  background-color: #e74c3c;
}

.c-btn--tel:hover {
  background-color: #c0392b;
}

.c-btn--large {
  padding: 16px 32px;
  font-size: calc(18 / 16 * 1rem);
}

.c-btn__icon {
  font-size: 1.2em;
}

/*---------------------
  6. Component - Badge
-----------------------*/
.c-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  background-color: #f0f0f0;
  border-radius: 20px;
}

.c-badge--large {
  padding: 12px 24px;
  font-size: calc(20 / 16 * 1rem);
}

/*---------------------
  7. Page - Home
-----------------------*/
/* メインビジュアル */
.p-home__mv {
  background-image: url("home/main-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 80px;
  position: relative;
  padding: 0 20px;
}

.p-home__mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.p-home__mv-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.p-home__mv-title {
  font-size: calc(40 / 16 * 1rem);
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.6;
}

/* 仕事セクション */
.p-home__work {
  padding: 80px 0 0;
}

.p-home__work-header {
  width: 100%;
  margin-bottom: 40px;
}

.p-home__work-title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.p-home__work-subtitle {
  font-size: calc(14 / 16 * 1rem);
  color: #666;
  text-align: left;
}

.p-home__recruit-title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.p-home__clients-title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.p-home__work-right {
  margin-left: 300px;
}

.p-home__work-intro {
  margin-bottom: 40px;
  text-align: left;
}

.p-home__work-intro p {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.8;
  color: #333;
}

/* サービス一覧 */
.p-home__service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-home__service-item {
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 0;
  position: relative;
  min-height: 150px;
}

.p-home__service-number {
  font-size: calc(48 / 16 * 1rem);
  font-weight: 900;
  color: #fff;
  background-color: #0066cc;
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px 0 0 8px;
}

.p-home__service-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    91deg,
    rgba(102, 187, 255, 0.8) 0%,
    rgb(0 102 204) 100%
  );
  border-radius: 8px 0 0 8px;
  z-index: 0;
  pointer-events: none;
}

.p-home__service-number-text {
  display: block;
  position: relative;
  z-index: 1;
}

.p-home__service-number::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background-color: #0066cc;
  z-index: 1;
}

.p-home__service-content {
  flex: 1;
  padding: 30px 30px 30px 50px;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
  position: relative;
  z-index: 0;
  margin-left: 0;
}

.p-home__service-title {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 10px;
}

.p-home__service-text {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.7;
  color: #333;
}

/* 求人募集 */
.p-home__recruit {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    #e8f0f5 30%,
    #e8f0f5 100%
  );
  padding: 120px 0 80px;
  margin: 80px 0;
  position: relative;
  width: 100%;
}

.p-home__recruit-inner {
  width: 100%;
}

.p-home__recruit-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.p-home__recruit-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.p-home__recruit-image img {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.p-home__recruit-text {
  margin-top: 40px;
  flex: 1;
}

.p-home__recruit-subtitle {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-bottom: 15px;
}

.p-home__recruit-description {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.p-home__recruit-link {
  margin-top: 30px;
}

.p-home__recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #0066cc;
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.p-home__recruit-btn:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
}

.p-home__recruit-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  color: #0066cc;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 700;
}

/* 主要取引先 */
.p-home__clients {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    #e8f0f5 30%,
    #e8f0f5 100%
  );
  padding: 120px 0 80px;
  margin: 80px 0 0;
  position: relative;
  width: 100%;
}

.p-home__clients-inner {
  width: 100%;
}

.p-home__clients-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.p-home__clients-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.p-home__clients-image img {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.p-home__clients-text {
  flex: 1;
  margin-top: 20px;
}

.p-home__clients-list {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.8;
  color: #333;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.p-home__clients-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
}

.p-home__clients-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(102, 187, 255, 0.8) 0%,
    rgb(0, 102, 204) 100%
  );
}

/* ABOUT */
.p-home__about {
  padding: 160px 0 80px;
}

.p-home__about-header {
  width: 100%;
  margin-bottom: 40px;
}

.p-home__about-title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.p-home__about-subtitle {
  font-size: calc(14 / 16 * 1rem);
  color: #666;
  text-align: left;
}

.p-home__about-right {
  margin-left: 300px;
}

.p-home__about-table {
  width: 100%;
  margin-bottom: 60px;
  border-collapse: collapse;
}

.p-home__about-table th,
.p-home__about-table td {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

.p-home__about-table th {
  width: 200px;
  font-weight: 700;
  color: #333;
  background-color: #f8f8f8;
}

.p-home__about-table td {
  color: #333;
  background-color: #fff;
}

.p-home__about-map {
  text-align: left;
  margin-top: 60px;
}

.p-home__about-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

/* お知らせ */
.p-home__notice {
  padding: 40px 0 80px;
  background-color: transparent;
}

.p-home__notice-content {
  text-align: center;
}

.p-home__notice-text {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.8;
  color: #666;
}

/* レスポンシブ: Home */
@media screen and (max-width: 1000px) {
  .p-home__work-right {
    margin-left: 0;
  }

  .p-home__about-right {
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .p-home__recruit {
    padding: 60px 0 40px;
    margin: 40px 0;
  }

  .p-home__clients {
    padding: 60px 0 40px;
    margin: 40px 0 0;
  }

  .p-home__recruit-content {
    flex-direction: column;
    gap: 30px;
  }

  .p-home__recruit-image {
    width: 100%;
  }

  .p-home__recruit-image img {
    width: 100%;
    max-width: 100%;
  }

  .p-home__recruit-text {
    width: 100%;
    margin-top: 0px;
  }

  .p-home__clients-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .p-home__clients-image {
    width: 100%;
  }

  .p-home__clients-image img {
    width: 100%;
    max-width: 100%;
  }

  .p-home__clients-text {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-home__mv {
    justify-content: center;
  }

  .p-home__mv-title {
    text-align: center;
    font-size: calc(24 / 16 * 1rem);
  }

  .p-home__work {
    padding-top: 0;
  }

  .p-home__work-title {
    font-size: calc(24 / 16 * 1rem);
  }

  .p-home__recruit-title {
    font-size: calc(24 / 16 * 1rem);
  }

  .p-home__clients-title {
    font-size: calc(24 / 16 * 1rem);
  }

  .p-home__about {
    padding-top: 80px;
  }

  .p-home__about-title {
    font-size: calc(32 / 16 * 1rem);
  }

  .p-home__service-item {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0;
    min-height: auto;
  }

  .p-home__service-number {
    width: 100%;
    height: auto;
    min-height: 80px;
    border-radius: 8px 8px 0 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    gap: 0;
  }

  .p-home__service-number::before {
    border-radius: 8px 0 0 0;
  }

  .p-home__service-number-text {
    font-size: calc(24 / 16 * 1rem);
    font-weight: 700;
    color: #fff;
  }

  .p-home__service-number-text::after {
    content: "." attr(data-title);
    margin-left: 0;
    font-size: calc(24 / 16 * 1rem);
    font-weight: 700;
    color: #fff;
  }

  .p-home__service-number::after {
    right: auto;
    top: auto;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 18px;
    height: 18px;
  }

  .p-home__service-content {
    padding: 20px;
    width: 100%;
    border-radius: 0 0 8px 8px;
  }

  .p-home__service-title {
    display: none;
  }

  .p-home__about-table th,
  .p-home__about-table td {
    display: block;
    width: 100%;
  }

  .p-home__about-table th {
    background-color: #f8f8f8;
    color: #0066cc;
    padding-bottom: 10px;
    border-bottom: none;
  }

  .p-home__about-table td {
    background-color: #fff;
    border-bottom: none;
  }

  .p-home__about-table td {
    padding-top: 10px;
  }

  .p-home__notice {
    padding: 30px 0 60px;
  }

  .p-home__notice-content {
    text-align: left;
  }

  .p-home__notice-text {
    font-size: calc(11 / 16 * 1rem);
  }
}

/*---------------------
  8. Page - Recruit
-----------------------*/
.p-page-header {
  background-color: #e8e8e8;
  background-image: url("recruit/header-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.p-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.p-page-header .l-container-800 {
  position: relative;
  z-index: 2;
}

.p-page-header__title {
  font-size: calc(36 / 16 * 1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.p-page-header__subtitle {
  font-size: calc(14 / 16 * 1rem);
  color: #fff;
}

.p-recruit__section {
  margin-bottom: 80px;
}

.p-recruit__section:last-child {
  margin-bottom: 80px;
}

.p-recruit__section-title {
  font-size: calc(28 / 16 * 1rem);
  font-weight: 700;
  color: #022f72;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #022f72;
}

.p-recruit__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.p-recruit__table th {
  width: 200px;
  padding: 20px;
  background-color: #f8f8f8;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
}

.p-recruit__table td {
  padding: 20px;
  font-size: calc(16 / 16 * 1rem);
  color: #333;
  line-height: 1.8;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.p-recruit__table tr:first-child th,
.p-recruit__table tr:first-child td {
  border-top: 1px solid #e5e5e5;
}

.p-recruit__table tr:last-child th,
.p-recruit__table tr:last-child td {
  border-bottom: 1px solid #e5e5e5;
}

.p-recruit__privacy {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.p-recruit__privacy-title {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.p-recruit__privacy-content {
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  color: #666;
}

@media screen and (max-width: 768px) {
  body::before {
    background-attachment: scroll;
  }

  .p-recruit__section {
    margin-bottom: 60px;
  }

  .p-recruit__section:last-child {
    margin-bottom: 60px;
  }

  .p-recruit__section-title {
    font-size: calc(24 / 16 * 1rem);
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .p-recruit__table th,
  .p-recruit__table td {
    display: block;
    width: 100%;
    padding: 15px;
  }

  .p-recruit__table th {
    background-color: #f8f8f8;
    color: #0066cc;
    border-bottom: none;
    padding-bottom: 10px;
  }

  .p-recruit__table td {
    background-color: #fff;
    border-top: none;
    border-bottom: none;
    padding-top: 10px;
  }

  .p-recruit__table tr {
    display: block;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;
  }

  .p-recruit__table tr:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .p-recruit__table tr:last-child {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
  }

  .p-recruit__privacy {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 30px;
  }
}

/*---------------------
  9. Utility
-----------------------*/
.u-sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }

  .u-pc-only {
    display: none;
  }
}
