@charset "utf-8";
/* ======================================================
  代表挨拶  section--greeting
====================================================== */
.section--greeting {
  background-color: #fff;
}
/* 背景ロゴ専用 */
.section--greeting::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/common/logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 1;
}
.greeting-inner {
  position: relative;
  z-index: 2;
}
.greeting-card {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  padding: 40px 20px;
  margin-top: 40px;
}

.greeting-profile {
  text-align: center;
  min-width: 160px;
}

.greeting-profile__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  margin: 0 auto 10px;
}

.greeting-profile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.greeting-profile__name {
  font-weight: 700;
}

.greeting-message p {
  line-height: 2;
  margin-bottom: 16px;
}

.greeting-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.greeting-btn:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .greeting-card {
    flex-direction: column;
    padding: 30px 20px;
  }
}
/* ======================================================
  会社概要　section--company
====================================================== */
.section--company {
  background: var(--base-2);
}
.corp-tbl-p1 {
  margin-top: 40px;
  /* border: var(--border); */
}
.corp-tbl-p1__wrap {
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.corp-tbl-p1__table {
  width: 100%;
  border-collapse: collapse;
}
.corp-tbl-p1__table th,
.corp-tbl-p1__table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
}
.corp-tbl-p1__table th {
  width: 160px;
  text-align: left;
  font-weight: 900;
}
.corp-tbl-p1__link {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .corp-tbl-p1__table th {
    width: auto;
    display: block;
    border-bottom: 0;
    padding-bottom: 6px;
  }
  .corp-tbl-p1__table td {
    display: block;
  }
}

/* ======================================================
  沿革 section--history
====================================================== */
.history-title {
  background-color: rgba(255, 255, 255, 0.7);
}

.history-timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.history-timeline li {
  position: relative;
  margin-bottom: 40px;
}

.history-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--main-color);
  border-radius: 50%;
}

.history-content {
  background: #fff;
  box-shadow: var(--shadow);
  /* border: var(--border); */
  padding: 20px 24px;
}

.history-content h3 {
  color: var(--main-9);
  margin-bottom: 8px;
  font-size: var(--font-s);
  font-weight: 900;
}

.history-content p {
  line-height: 1.8;
}

@media (max-width: 767px) {
  .history-timeline {
    padding-left: 20px;
  }
  .history-dot {
    left: -20px;
  }
}

/* ======================================================
  map　section--map
====================================================== */
.section--map {
  background-color: var(--base-2);
}
iframe {
  width: 100% !important;
  aspect-ratio: 3.8; /* = 1920 / (1080*0.30) */
  height: auto; /* aspect-ratioに任せる */
}
/* タブレット */
@media (max-width: 1024px) {
  /* タブレット以下のサイズ */
  iframe {
    aspect-ratio: 2.8; /* = 1920 / (1080*0.30) */
  }
}
/* スマホ  */
@media (max-width: 450px) {
  /* スマホ S（〜400px） */
  iframe {
    aspect-ratio: 1.8; /* = 1920 / (1080*0.30) */
  }
}
