@charset "UTF-8";
@font-face {
  font-family: "jost-m-only";
  /* Google Fonts の Jost を確実に拾うため local名を複数指定 */
  src: local("Jost"), local("Jost Regular"), local("Jost-Medium"), local("Jost Light"), local("Jost Thin");
  /* 大文字 M の Unicode（004D） */
  unicode-range: U+004D, U+0041;
}
/* --- 全体のフォント設定 --- */
.spbr {
  display: none;
}
@media (max-width: 767px ) {
  .spbr {
    display: block;
  }
}

@media (max-width: 767px ) {
  .pcbr {
    display: none;
  }
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  padding-top: 3.75rem;
  flex: 1;
}

/*
  1. より直感的なボックスサイズのモデルを使用
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. デフォルトのマージンを削除
*/
* {
  margin: 0;
}

/*
  3. オーバーフロー設定
*/
html, body {
  width: 100%;
  overflow-x: clip;
}

/*
  タイポグラフィの微調整
  4. アクセシブルなline-heightを追加
  5. テキストのレンダリングを改善
  7. フォントファミリーの設定
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "jost-m-only", "Outfit", "Noto Sans JP", sans-serif;
}

/*
  7. メディア要素のデフォルトを改善
*/
img, picture, video, canvas, svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/*
  8. フォームのfontに関するデフォルトを削除
*/
input, button, textarea, select {
  font: inherit;
}

/*
  9. テキストのオーバーフローを回避
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  color: #150201;
}

/*
  10. ルートのスタックコンテキストを作成
*/
#root, #__next {
  isolation: isolate;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1259px ) {
  .l-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.l-footer {
  padding: 0.25rem;
  text-align: center;
  background-color: #150201;
  color: #fff;
  font-size: 0.875rem;
}

.p-top_logo {
  width: 190px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.p-top_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.p-top_list_item {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.p-top_list_item_service {
  width: calc(50% - 2rem);
  text-align: right;
  position: relative;
}
.p-top_list_item_service::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #b7b7b7;
  position: absolute;
  right: -2rem;
}
.p-top_list_item_name {
  width: calc(50% - 2rem);
}
.p-top_list_item_name a {
  color: #150201;
  text-decoration: none;
  position: relative;
}
.p-top_list_item_name a::after {
  content: "";
  width: 100%;
  border-bottom: 2px solid #150201;
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  transition: 0.2s;
  transform-origin: left;
  scale: 0 1;
}
.p-top_list_item_name a:hover::after {
  scale: 1 1;
}
.p-top_about {
  text-align: center;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}
.p-top_about_name {
  margin-bottom: 0.5rem;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */