@charset "utf-8";

/* フォント設定 */
@font-face {
  font-family: "segoesc";
  src: url("../../font/segoesc/segoesc.ttf");
}

html {
  font-size: 62.5%;
  font-family: "游ゴシック", "segoesc";
  background-color: rgba(139, 181, 199, 0.5);
  -webkit-text-size-adjust: none;
  width: 100%;
}

/* パンくずリスト（Breadcrumb）*/
.Breadcrumb {
  margin: 0 20px 20px;
}

.Breadcrumb ol {
  display: flex;
}

.Breadcrumb li {
  font-size: 1rem;
  font-weight: bold;
}

.Breadcrumb ol li + li::before {
  content: '→';
  margin: 0 0.5em;
  color: #666;
}

/* ページタイトル */
.Company-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin: 20px 0 30px;
}

/* 会社概要本文 */
.Company {
  width: 80vw;
  max-width: 900px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 0 auto 40px;
}

.Company-lead {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 10px;
}

.Company-section {
  margin-top: 40px;
}

.Company-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #57a2c7;
}

.Company-section h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #57a2c7;
  margin: 25px 0 10px;
}

.Company-section p,
.Company-section li {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.9;
}

/* 基本情報テーブル */
.Company-profile {
  margin: 0;
  border-top: 1px solid #ddd;
}

.Company-profile div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}

.Company-profile dt {
  flex: 0 0 12rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
}

.Company-profile dd {
  flex: 1 1 20rem;
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.Company-profile dd a {
  color: #57a2c7;
}

.Company-profile dd a:hover {
  text-decoration: underline;
}

/* 正社員登用制度 */
.Company-career {
  background-color: #f5f4f2;
  padding: 25px 20px;
  border-radius: 10px;
}

.Company-record {
  margin: 20px 0;
  padding: 15px 20px;
  background: #fff;
  border-left: 4px solid #57a2c7;
  font-size: 1.5rem;
  color: #333;
}

.Company-record strong {
  font-size: 2rem;
  color: #57a2c7;
}

.Company-note {
  font-size: 1.3rem;
  color: #666;
}

.Company-steps {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.Company-steps li {
  position: relative;
  padding: 0 0 15px 35px;
  counter-increment: step;
}

.Company-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #57a2c7;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
}

.Company-cta {
  display: block;
  width: fit-content;
  margin: 15px auto 0;
  padding: 10px 25px;
  background-color: #57a2c7;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s, background-color 0.3s;
}

.Company-cta:hover {
  background-color: #8bb5c7;
  transform: scale(1.05);
}

.Company-cta.is-disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.Company-cta.is-disabled:hover {
  background-color: #ccc;
  transform: none;
}

/* モバイル対応（レスポンシブ）*/
@media screen and (max-width: 960px) {
  .Company {
    width: 90vw;
    padding: 20px;
  }

  .Company-title {
    font-size: 2.4rem;
  }

  .Company-profile dt {
    flex: 0 0 100%;
    margin-bottom: 4px;
  }
}
