@charset "UTF-8";

/* ==========================================================================
   [About Us] Hero Section (共通設計)
   ========================================================================== */
.p-page-hero {
  position: relative;
  width: 100%;
  height: 724px;
  margin-top: 0;
  background-color: var(--bg-gray-light);
  display: flex;
  align-items: center;
}

.p-page-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

/*
.p-page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.p-page-hero__content {
  width: 50%;
  padding-right: 5%;
}

.p-page-hero__deco {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.p-page-hero__badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}

.p-page-hero__circles {
  height: 40px;
  width: auto;
  margin-left: -1rem;
  position: relative;
  z-index: 1;
}

.p-page-hero__title {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.p-page-hero__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-main);
  font-weight: 500;
}
*/

/* ==========================================================================
   [About Us] Message Section
   ========================================================================== */
.p-au-message {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.p-au-message__box {
  background-color: var(--bg-gray);
  border-radius: 20px;
  padding: 80px 80px;/*修正*/
  text-align: center;
  max-width: 960px;/*修正*/
  margin: 0 auto;
}

.p-au-message__logo {
  margin-bottom: 40px;
}

.p-au-message__logo img {
  width: calc(500 / 960 * 100%); /* 修正: ロゴを大きく表示 */
  height: auto;
  min-width:200px ;
/*  margin-bottom: 20px;*/
}

.p-au-message__catch {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 40px;
}

.p-au-message__text {
  font-size: 15px;
  line-height: 2;
  color: var(--text-main);
  text-align: left;
  display: inline-block; 
  margin-bottom: 40px;
}

.p-au-message__sign {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: var(--text-main);
  text-align: right;
}

/* ==========================================================================
   [About Us] Strengths Section
   ========================================================================== */
.p-au-strengths {
  padding: 100px 0;
  background-color: var(--primary);
}

.p-au-strengths__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p-au-strengths__card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.p-au-strengths__icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

/* 追加：アイコンに薄い黄緑色の角丸ボックスを指定 */
.p-au-strengths__icon img {
  width: 64px;
  height: 64px;
  padding: 12px;
  background-color: #ebf5f4;
  border-radius: 8px;
  object-fit: contain;
}

.p-au-strengths__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-main);
}

.p-au-strengths__text {
  font-size: 14px;
 font-weight: 500;
  line-height: 1.8;
  color: var(--text-sub);
  text-align: left;
}

/* ==========================================================================
   [About Us] History & Company Common
   ========================================================================== */
.p-au-history,
.p-au-company {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.p-au-history__list-wrap,
.p-au-company__list-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}

.p-au-history__list,
.p-au-company__list {
  display: flex;
  flex-wrap: wrap;
}

.p-au-history__list dt,
.p-au-company__list dt {
  width: 25%;
  padding: 25px 20px 25px 20px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid #ddd;
  font-family: var(--font-en); /* History用の年号にも適用 */
}

.p-au-history__list dd,
.p-au-company__list dd {
  width: 75%;
  padding: 25px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.8;
}

/* Companyのdtは日本語メインなのでfont-family調整 */
.p-au-company__list dt {
  font-family: var(--font-ja);
}

/* ==========================================================================
   Responsive (SP)
   ========================================================================== */
@media screen and (max-width: 767px) {
  
  /* Hero SP Layout */
  .p-page-hero {
    margin-top: 0;
    height: auto;
    display: block;
    background-color: transparent;
  }

  .p-page-hero__bg {
    position: relative;
    width: 100%;
    height: auto;
  }

  .p-page-hero__bg img {
    width: 100%;
    height: auto;
    display: block;
  }

/*  .p-page-hero__inner {
    position: absolute;
    top: 110px;
    left: 0;
    align-items: flex-start;
  }

  .p-page-hero__content {
    width: 100%;
    padding-right: 0;
  }

  .p-page-hero__title {
    font-size: 42px;
  }*/

  /* Message SP Layout */
  .p-au-message {
    padding: 60px 0;
  }
  .p-au-message__box {
    padding: 60px 20px;/*修正*/
  }
  .p-au-message__text {
    font-size: 14px;
    line-height: 1.8;
  }
.p-au-message__sign {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}
  /* Strengths SP Layout */
  .p-au-strengths {
    padding: 60px 0;
  }
  .p-au-strengths__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-au-strengths__card {
    padding: 30px 20px;
  }

  /* History & Company SP Layout */
  .p-au-history,
  .p-au-company {
    padding: 60px 0;
  }
  
  .p-au-history__list dt,
  .p-au-company__list dt {
    width: 100%;
    padding: 20px 0 10px;
    border-bottom: none;
  }

  .p-au-history__list dd,
  .p-au-company__list dd {
    width: 100%;
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 450px) {
.p-au-message__catch {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 40px;
}
}
@media screen and (max-width: 375px) {
.p-au-message__catch {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 40px;
}
}