/* ===== page hero styles ===== */
.page-hero {
  position: relative;
  display: flex;
  width: 100%;
  height: 266px;
}

.page-hero-catchphrase {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 10;
  width: 87.7%;
  transform: translateX(-50%);
}

.page-hero-catchphrase > img {
  margin: 0 auto;
}

.page-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== お知らせ（基本スタイリング） */
.notice-section {
  padding: 0 20px 30px;
}

.notice-section-title {
  display: flex;
  gap: 4px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  padding: 13px 4px 13px 10px;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: var(--bold);
  line-height: 1.5;
  color: var(--color-bland-base);
  text-align: center;
  background: #fff;
  border-bottom: 2px solid var(--color-bland-base);
}

/* .notice-more-button {
  display: flex;
  align-items: center;
  padding-right: 4px;
  margin-left: auto;
}

.notice-more-button .label {
  font-weight: var(--bold);
}

.notice-more-button .toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.notice-more-button .toggle-icon > img {
  position: absolute;
  top: 50%;
  left: 50%;
}

@media (any-hover: hover) {
  .notice-more-button:hover {
    opacity: 0.7;
  }
} */

/* toggle styles */
/* .notice-more-button[data-is-state="open"] .toggle-icon img {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.notice-more-button[data-is-state="close"] .toggle-icon img {
  transform: translate(-50%, -50%) rotate(0deg);
} */

/* ===== お知らせ (リンクバージョン) ===== */
.notice-section[data-variant="link-list"] {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.notice-section[data-variant="link-list"] .notice-section-header {
}

.notice-section[data-variant="link-list"] .notice-section-body {
}

.notice-section[data-variant="link-list"] .notice-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

.notice-section[data-variant="link-list"] .notice-list {
  display: flex;
  flex-direction: column;
}

.notice-section[data-variant="link-list"] .notice-list-item {
  border-bottom: 1px solid var(--border-color-base);
}

.notice-section[data-variant="link-list"] .notice-list-item .item-link {
  display: flex;
  gap: 0 10px;
  align-items: center;
  align-self: stretch;
  padding: 13px 4px 13px 10px;
}

@media (any-hover: hover) {
  .notice-section[data-variant="link-list"] .notice-list-item .item-link:hover {
    opacity: 0.7;
  }
}

.notice-section[data-variant="link-list"] .notice-list-item .item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px 0;
  max-width: calc(100% - 38px); /* item-iconの横幅とgapのサイズ */
}

.notice-section[data-variant="link-list"] .notice-list-item .item-date {
  flex-shrink: 0;
  font-size: var(--body-font-size-sm);
  color: #828282;
}

.notice-section[data-variant="link-list"] .notice-list-item .item-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .notice-section[data-variant="link-list"] .notice-list-item .item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
} */

/* ===== お知らせ (アコーディオンバージョン) ===== */
 .notice-section[data-variant="accordion"] {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.notice-section[data-variant="accordion"] .notice-section-header {
}

.notice-section[data-variant="accordion"] .notice-section-body {
}

.notice-section[data-variant="accordion"] .notice-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

.notice-section[data-variant="accordion"] .notice-list-item {
  border-bottom: 1px solid var(--border-color-base);
}

.notice-section[data-variant="accordion"] .notice-list-item-summary {
  display: flex;
  gap: 0 10px;
  align-items: center;
  align-self: stretch;
  padding: 13px 4px 13px 10px;
  -webkit-user-select: none;
  user-select: none;
}

.notice-section[data-variant="accordion"] .notice-list-item-summary .item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px 0;
  max-width: calc(100% - 38px); 
}

.notice-section[data-variant="accordion"] .notice-list-item-summary .item-date {
  flex-shrink: 0;
  color: #828282;
}

.notice-section[data-variant="accordion"] .notice-list-item-summary .item-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-section[data-variant="accordion"] .notice-list-item-summary .item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.notice-section[data-variant="accordion"] .notice-list-item-body {
}

.notice-section[data-variant="accordion"] .toggle-item-body-container {
  padding: 1em 0;
  margin-right: 28px;
  margin-left: 10px;
  border-top: dotted 2px var(--border-color-base);
}

.notice-section[data-variant="accordion"] .toggle-item-body-container a {
  color: var(--color-text-link-base);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .notice-section[data-variant="accordion"] .notice-list-item-summary:hover {
    opacity: 0.7;
  }
} 

 toggle styles 
 .notice-section[data-variant="accordion"] .notice-list-item[data-is-state="open"] .notice-list-item-summary .item-icon {
  transform: rotate(-180deg);
} 

/* ----- */
.toggle-content {
  width: 100%;
  max-width: 400px;
  min-height: 42px;
  border: 1px solid var(--color-bland-base);
}

/* .toggle-content .toggle-content-summary {
  display: flex;
  align-items: center;
  padding: 10px 4px 10px 10px;
  font-size: 15px;
} */

/* .toggle-content .summary-title {
  flex: 1;
  color: var(--color-bland-base);
  text-align: center;
} */

.toggle-content .toggle-icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.toggle-content .toggle-icon::before,
.toggle-content .toggle-icon::after {
  position: absolute;
  display: inline-flex;
  content: "";
  background: var(--color-bland-base);
  transform: rotate(0deg);
  transition: transform 0.1s ease;
}

.toggle-content .toggle-icon::before {
  width: 12px;
  height: 2px;
}

.toggle-content .toggle-icon::after {
  width: 2px;
  height: 12px;
}

.toggle-content .toggle-content-panel-container {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  padding: 20px;
}

.toggle-content .toggle-content-note {
  font-size: var(--body-font-size-sm);
}

.toggle-content .toggle-content-items {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.toggle-content .toggle-content-item {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}

.toggle-content .toggle-content-item .item-title {
  display: flex;
  gap: 0 8px;
  align-items: center;
  font-size: 1.5rem;
}

.toggle-content .toggle-content-item .item-desc {
  font-size: 1.3rem;
}

/* toggle styles */
/* .toggle-content[data-is-state="open"] .toggle-content-summary .toggle-icon::after {
  transform: rotate(90deg);
} */

/* .toggle-content[data-is-state="open"] .toggle-content-panel {
  border-top: 1px solid var(--color-bland-base);
} */

/* .toggle-content-panel-container[data-is-state="close"] {
  visibility: visible;
} */

/* ----- */
.page-aside-cta {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 30px 14px;
}

.page-aside-cta-header {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}

.page-aside-cta-link-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}

.page-aside-cta-link-cards[data-column="col-1"] {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
}

/* .page-aside-cta-link-cards[data-column="col-2"] {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.page-aside-cta-link-cards[data-column="col-3"] {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 100%;
} */

.page-aside-cta-link-card {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--border-color-base);
}

.page-aside-cta-link-card .link-card-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.page-aside-cta-link-card .link-card-title {
  font-size: 16px;
  font-weight: var(--bold);
}

@media (any-hover: hover) {
  .page-aside-cta-link-card:hover {
    border-color: var(--color-bland-base);
  }
}

/* ----- */
.servise-strength-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 20px;
  background: url("../../../images/biz/bg-strength-section.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  font-size: 1.4rem;
}

.servise-strength-section-header {
}

.servise-strength-section-body {
  width: 100%;
  max-width: 100%;
  margin: auto;
  color: #fff;
}

.servise-strength-item-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.servise-strength-item {
  display: grid;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  justify-content: flex-start;
}

.servise-strength-item .item-icon {
  display: flex;
  align-self: center;
  width: 50px;
  height: 50px;
}

.servise-strength-item .item-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.servise-strength-item .servise-strength-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.servise-strength-item .item-title {
  font-size: 1.6rem;
  font-weight: bold;
}

@media (any-hover: hover) {
  .servise-strength-item:hover {
    opacity: 0.7;
  }
}

/* ----- */
.servise-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 14px;
  background: var(--color-gray-300);
  font-size: 1.4rem;
}

.servise-section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.servise-section-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ----- */
.servise-nbm-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  padding: 30px 14px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
}

.servise-nbm-section-body {
  margin-bottom: 10px;
}

/* ----- */
.servise-nbm-feature-aside {
  background: #fff;
}

.servise-nbm-feature-aside .aside-title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--color-biz-base);
  font-weight: bold;
}

.servise-nbm-feature-aside .aside-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border-color-base);
  border-radius: 4px;
}

.servise-nbm-feature-aside .aside-image {
  flex-shrink: 0;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.servise-nbm-feature-aside .aside-details {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  gap: 10px 0;
}

.servise-nbm-feature-aside .aside-details-item {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.servise-nbm-feature-aside .aside-details-item .item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: var(--bold);
  background: var(--color-gray-300);
  border-radius: 4px;
}

.servise-nbm-feature-aside .aside-details-item .item-list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.servise-nbm-feature-aside .aside-details-item .item-list > .item-list-container {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 10px;
}

.servise-nbm-feature-aside .aside-details-item .item-list .item-list-icon {
  flex-shrink: 0;
}

.servise-nbm-feature-aside .aside-details-item .item-list .item-list-text {
  flex: 1;
}

.servise-nbm-feature-aside .aside-details-item .item-list .item-list-text small { 
  font-size: 80%;
}

.servise-nbm-feature-aside .aside-details-cta {
  margin: initial;
}

.link-help{
	margin: 0.5rem auto 1rem;
    color: #2f80ed;
    text-decoration: underline;
}

.helpmark{
	display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid;
    font-weight: bold;
    font-size: 10px;
    margin-left: 4px;
}

/* ----- */
.servise-abm-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding: 30px 14px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
}

.servise-feature-card-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.servise-feature-card {
  display: grid;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  justify-items: flex-start;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--color-biz-base);
  border-radius: 4px 4px 0 0;
}

.servise-feature-card .servise-feature-card-body {
  display: grid;
  grid-template-rows: auto;
  gap: 6px;
}

.servise-feature-card .card-icon {
  align-self: center;
}

.servise-feature-card .card-title {
  align-self: flex-start;
  font-size: 16px;
  font-weight: var(--bold);
  color: var(--color-biz-base);
  text-align: left;
}

.servise-feature-card .card-desc {
  text-align: left;
}
