@charset "utf-8";

.title {
  height: calc(100vh - 200px);
  background-image: url(../images/04/top.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 0px 6px 12px #241c1c;
}

.title h1 {
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 18px;
  margin-top: 15px;
}

.title-sub {
  font-size: 25px;
  color: #0084ff;
  font-weight: bold;
  text-align: left;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 120px;
  margin-right: auto;
  align-items: flex-start;

}

.Profile {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  width: 1000px;
  max-width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  font-size: 2.0em;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.Profile img {
  width: 480px;
  margin: 20px;
}

.reverse {
  flex-direction: row-reverse;

}

.reverse .Profile-text {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  line-height: 30px;

}

.Profile-text h3 {
  font-size: 15px;
  color: #92a0ac;
  font-weight: bold;
  line-height: 30px;
  margin-left: 30px;
}

.Profile-text h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  margin-left: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.Profile-text {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: 30px;
  line-height: 28px;
}

.Profile-text p {
  font-weight: bold;
  font-size: 15px;
  line-height: 28px;
  margin-left: 30px;
  margin-right: 30px;
}

.company-outline h5 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-left: 30px;
  /* タイトルを中央寄せ（任意） */
  margin-bottom: 10px;
  /* タイトル下の余白（任意） */
  margin-top: 20px;
}

.company-outline {
width: 80%;
  /* 幅（任意） */
  max-width: 960px;
  /* 最大幅（任意） */
  padding: 30px;
  /* 内側の余白（任意） */
  border: 1px solid #ccc;
  /* 枠線のスタイル */
  border-radius: 12px;
  /* 角丸（任意） */
  background-color: #e9ecef;
  /* 薄いグレーの背景 */
  /* 背景色（任意） */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  /* 影（任意） */
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-bottom: 75px;
  margin-left: auto;
  margin-right: auto;
}

.company-name {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #333;
}

.company-info {
  font-size: 18px;
  list-style: none;
  display: grid;
  grid-template-columns: 120px auto;
  gap: 30px 40px;
  margin: 30px;
}

.company-info li {
   margin-bottom: 15px;
}

.company-info dd li {
  list-style: none;
}

.company-info dt dd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.company-info dt+dd {
  border-bottom: 1px solid #ffffff;
  /* 薄いグレーの下線 */
  margin-bottom: 10px;
  /* 行間の余白 */
}

/* スマートフォン */
@media (max-width: 768px) {
  .Profile {
    display: block;
    margin: 0;
  }

  .Profile-text {
    display: block;
    margin: 0;
  }

  .item-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .item {
    width: 90%;
    margin: 15px 0;
    text-align: left;
  }

  .item p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .item .price {
    text-align: center;
  }
}