@charset "utf-8";
/* ====================
Article header
==================== */
.mainVisual_contents {
 margin-top: 16px;
}

/* Article header PC */
@media screen and (min-width:769px) {
    .mainVisual {
        max-width: 1360px;
        margin: 0 auto;
        width: 94.4%;
        min-height: 300px;
        background: url(../images/top_service.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 25px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mainTxt {
        color: var(--primary-white);
        padding: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 4.8rem;
        font-weight: 700;
    }

    .mainTxt-sub {
        color: var(--primary-white);
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Article header SP */
@media screen and (max-width:768px) {
    .mainVisual {
        max-width: 375px;
        margin: 0 auto;
        width: 94.4%;
        min-height: 200px;
        border-radius: 25px;
        background: url(../images/top_service.jpg);
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mainTxt {
        color: var(--primary-white);
        padding: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .mainTxt-sub {
        color: var(--primary-white);
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* ====================
ジャンプメニュー
==================== */
/* コンテナ */
.company-anchor {
    background: linear-gradient(180deg, rgba(230, 245, 250, 0.80) 0%, rgba(230, 245, 250, 0.00) 50%, rgba(230, 245, 250, 0.80) 100%);
    padding: 20px 0;
}

.company-anchor__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* アンカーリスト */
.c-anchor01 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.c-anchor01__item {
    flex: 1;
    text-align: center;
}

/* リンク */
.c-anchor01__item-link {
    display: inline-block;
    color: #0066cc;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* 下線 */
.c-anchor01__item-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #0066cc;
    opacity: 0.5;
}

/* 矢印アイコン */
.c-anchor01__item-link::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0066cc;
    margin-left: 8px;
    vertical-align: middle;
    margin-right: 16px;
}

/* ホバー効果 */
.c-anchor01__item-link:hover {
    color: #0052a3;
    transform: translateY(-2px);
}

.c-anchor01__item-link:hover::after {
    opacity: 1;
    background: #0052a3;
}

.c-anchor01__item-link:hover::before {
    border-top-color: #0052a3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .c-anchor01 {
        flex-direction: column;
        gap: 15px;
    }
    
    .c-anchor01__item {
        width: 100%;
    }
    
    .c-anchor01__item-link {
        display: block;
        width: 100%;
    }
}

/* ====================
こんな悩みありませんか issues
==================== */
/* issues PC */
@media screen and (min-width:769px) {
  .section--issues {
    margin-top: 56px;
    padding: 0 8%;
  }

  .content__issues {
    padding: 0 0 56px;
  }

  .topic__main {
    text-align: center;
    margin-bottom: 40px;
  }

  .topic__ttl {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .topic__sub {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
  }

  .issues__topic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .issues__box-list {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
  }

  .issues-list-item {
    display: flex;
    width: 282px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px;
    border: 4px solid #F2F2F2;
    background: #FFF;
    box-shadow: 4px 4px 4px 0 #BAB8B8;
    gap: 24px;
  }

  .issues-list-item-txt {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 20px;
  }

  .issues-list-item-img {
    padding-bottom: 20px;
  }

  .issues-list-item-img img {
    width: 100%;
    max-height: 200px;
    display: block;
}

.issues__desc {
  padding: 0 8%;
}

.issues__txt {
  color: var(--primary-black);
  font-size: 1.6rem;
  line-height: 1.7;
}

.issues__subtxt {
  margin-top: 16px;
    color: var(--primary-black);
  font-size: 1.6rem;
  line-height: 1.7;
}

.message__txt {
  color: var(--primary-deepblue);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.topic__img {
  width: 100%;
  height: auto;
}
}

/* ---issues SP---- */
@media (max-width: 768px) {
  .section--issues {
    margin-top: 40px;
    padding: 0 24px;
  }

  .content__issues {
    padding: 50px 0;
  }

  .topic__main {
    text-align: center;
    margin-bottom: 40px;
  }

  .topic__ttl {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .topic__sub {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .issues__topic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .issues__box-list {
    /* display: flex; */
    align-items: center;
    gap: 24px;
    justify-content: center;
  }

  .issues-list-item {
    display: flex;
    width: 282px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px;
    border: 4px solid #F2F2F2;
    background: #FFF;
    box-shadow: 4px 4px 4px 0 #BAB8B8;
    gap: 24px;
    margin-top: 12px;
  }

  .issues-list-item-txt {
    color: var(--primary-deepblue);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 20px;
  }

  .issues-list-item-img {
    padding-bottom: 20px;
  }

  .issues-list-item-img img {
    width: 100%;
    max-height: 200px;
    display: block;
}

.issues__desc {
  padding: 0 8%;
}

.issues__txt {
  color: var(--primary-black);
  font-size: 1.6rem;
  line-height: 1.7;
}

.issues__subtxt {
  margin-top: 16px;
    color: var(--primary-black);
  font-size: 1.6rem;
  line-height: 1.7;
}

.message__txt {
  color: var(--primary-deepblue);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.topic__img {
  width: 100%;
  height: auto;
}
}
/* ------ */

/* ====================
私たちが支援します
==================== */
@media (min-width: 768px) {
.content__service {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
  }
  
  .topic__service {
    flex: 1;
  }
  
  .topic__main {
    margin-bottom: 30px;
  }
  
  .service__ttl {
    font-size: 4.8rem;
    color: #2563A8;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .service__sub {
    font-size: 1.6rem;
    color: #2563A8;
    font-weight: 400;
  }
  
  .topic__desc {
    margin-top: 30px;
  }
  
  .topic__phrase {
    font-size: 2rem;
    font-family: "Zen Old Mincho";
    font-weight: 900;
    color: #2563A8;
    margin-bottom: 20px;
  }
  
  .service__txt {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
  }
  
  .topic__photo {
    flex: 0 0 400px;
  }
  
  .topic__img {
    width: 100%;
    height: auto;
  }
}

  /* 支援します　SP */
  @media (max-width: 768px) {
  .secrion--service {
    padding: 60px 20px;
    background-color: var(--primary-white);
  }

  .content__service {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .topic__service {
    margin-bottom: 30px;
  }

  .topic__main {
    margin-bottom: 25px;
  }

  .service__ttl {
    font-size: 2.8rem;
    color: #2563A8;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .service__sub {
    font-size: 1.4rem;
    color: #2563A8;
    font-weight: 400;
  }

  .topic__desc {
    margin-top: 25px;
  }

  .topic__phrase {
    font-size: 2rem;
    font-family: "Zen Old Mincho";
    font-weight: 900;
    color: #2563A8;
    margin-bottom: 16px;
  }

  .topic__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
  }

  .topic__photo {
    margin: 30px auto;
    text-align: center;
  }

  .topic__img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
/* 私たちが支援します　終わり */

/* ====================
事業内容
==================== */
/* 事業内容セクション全体 */
.section--service {
    padding: 24px 8% 80px;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    margin-bottom: 40px;
}

.service-header h2 {
    font-size: 4rem;
    color: var(--primary-deepblue);
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
}

.subtitle {
    font-size: 2.4rem;
    color: var(--primary-deepblue);
    font-weight: 500;
    text-align: center;
}

/* 各サービスブロック */
.service-block {
    margin-bottom: 64px;
    position: relative;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-block--individual .service-badge {
    background: var(--primary-mediumblue);
}

.service-block--organization .service-badge {
    background: var(--primary-boldblue);
}

.service-block--governance .service-badge {
    background: var(    --primary-deepblue);
}

.service-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.service-title--ind {
    color: var(--primary-mediumblue);
}
.service-title--org {
    color: var(--primary-boldblue);
}
.service-title--gov {
    color: var(--primary-deepblue);
}


.service-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(242, 242, 242, 0.89);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.service-block--organization .feature-item::before {
    background: #3697D4;
}

.service-block--governance .feature-item::before {
    background: #005AAA;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-text h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 700;
    line-height: 1.6;
}

.service-text h3:first-child {
    margin-top: 0;
}

.service-text p {
    color:var(--primary-black);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-watermark {
    position: absolute;
    bottom: -40px;
    right: -60px;
    font-family: "Noto Serif";
    font-size: 4.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.02em;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.12;
}

.service-block--individual .service-watermark {
    color: #6BC8F0;
}

.service-block--organization .service-watermark {
    color: #3697D4;
}

.service-block--governance .service-watermark {
    color: #005AAA;
}

/* 組織ブロックのレイアウト */
.service-block--organization .service-image {
    order: -1;
}

/* 画像のプレースホルダー */
.img-placeholder {
    width: 100%;
    /* aspect-ratio: 4/3; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 事業内容SP */
@media (max-width: 768px) {
    .section--service {
        padding: 40px 24px;
    }

    .service-header h2 {
        font-size: 2.8rem;
        text-align: center;
    }

    .subtitle {
      font-size: 1.4rem;
      margin-bottom: 20px;
      text-align: center;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-block--organization .service-image {
        order: 0;
    }

    .service-watermark {
        font-size: 2.5rem;
        bottom: -20px;
        right: 0;
    }

    .service-features {
        flex-direction: column;
        gap: 10px;
    }

    .service-block {
        margin-bottom: 80px;
    }
}

/* ====================
具体的な研修内容
==================== */
.section--training {
  margin: 0 auto;
  padding: 60px 8%;
  border-radius: 160px 0;
  background: #F8F8F8;
}

.traning-container {
  margin: 0 auto;
  max-width: 1200px;
}

.traning-container h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 10px;
}

.intro-text {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 50px;
}

.highlight-link1 {
  color: var(--primary-pointblue);
  font-weight: 700;
}

.highlight-link2 {
  color: var(--primary-pointred);
  font-weight: 700;
}

.intro-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  border-radius: 12px;
}

/* エニアグラムとは */
.enneagram-intro {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 60px;
  border-radius: 12px;
}

.enneagram-intro {
  flex: 0 0 200px;
}

.left-content h2 {
  color: var(--primary-black);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
}

.enneagram-diagram {
  width: 320px;
  height: auto;
}

.enneagram-intro .right-content {
  flex: 1;
}

.enneagram-intro p {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.enneagram-note {
  font-size: 1.3rem;
  color: #666;
  margin-top: 20px;
}

.enneagram-note a {
  text-decoration: underline;
}

/* 2軸のサービス設計 */
.nijiku-service {
  padding: 40px;
  border-radius: 40px;
  background: var(--primary-white);
}

.service-design {
  display: flex;
  align-items: center;
  gap: 48px;
}

.service-item h2 {
  color: var(--primary-deepblue);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-intro {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

.service-circles {
  block-size: auto;
  max-inline-size: 100%;
}

.service-circle {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.service-circle.blue {
  background: #4169b8;
  border: 4px solid #4169b8;
}

.service-circle.pink {
  background: #d64178;
  border: 4px solid #d64178;
}

.service-circle .main-text {
  font-size: 2rem;
  margin-bottom: 8px;
}

.service-circle .sub-text {
  font-size: 1.8rem;
}

.service-circle .support-text {
  font-size: 1.3rem;
  margin-top: 8px;
}

/* サービス詳細 */
.service-detail {
  padding: 40px;
  border-radius: 24px;
}

.service-detail--j1 {
  background: rgba(62, 89, 191, 0.08);
}

.service-detail--j2 {
  background: rgba(213, 53, 103, 0.08);
  margin-top: 40px;
}

.service-detail h3 {
  color: var(--primary-pointblue);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail h3.pink-title {
  color: var(--primary-pointred);
}

.service-content {
  display: flex;
  gap: 40px;
}

.service-content .text-content {
  flex: 1;
}

.service-content .image-content {
  flex: 0 0 300px;
}

.service-content img {
  width: 100%;
  height: auto;
}

.detail-item {
  margin-bottom: 20px;
  display: flex;
}

.detail-item h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.detail-item p,
.detail-item ul {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 20px;
}

.detail-item ul {
  padding-left: 20px;
}

.detail-item li {
  margin-bottom: 5px;
}

.subsection {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #ddd;
}

/* .subsection h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
} */

.subsection-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-right: 8px;
}

.subsection p {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
.section--training {
  padding: 40px 20px;
  border-radius: 80px 0;
}

.traning-container h2 {
  font-size: 2.8rem;
  text-align: center;
}

.intro-content {
  display: block;
}

.enneagram-intro {
    flex-direction: column;
}

.enneagram-intro .left-content {
    flex: 1;
}

.service-design {
  display: block;
  margin-bottom: 24px;
}

.service-item {
  padding: 8px;
}

.service-circles {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.service-content {
    flex-direction: column;
}

.service-content .image-content {
    flex: 1;
}

.nijiku-service {
  padding: 12px;
}

.service-detail {
  padding: 16px 8px;
}

.detail-item {
  display: block;
}

.service-detail h3 {
  font-size: 1.6rem;
}
}