@charset "UTF-8";
/* =========================================
サービス共通CSS（各ページ内で共通のUI）
========================================= */

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-main), var(--color-main-dark));
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 77, 161, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 77, 161, 0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
}

.btn-outline:hover {
  background-color: var(--color-main);
  color: #fff;
}

.btn-outline-gray {
  background-color: #fff;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-outline-gray:hover {
  border-color: var(--color-main);
  color: var(--color-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section-label {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-main);
  border-radius: 2px;
}

/* Main Content Padding Override for Sub Pages */
.main-content {
  min-height: 100vh;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  font-size: 13px;
  color: var(--color-text-sub);
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: 'chevron_right';
  font-family: 'Material Symbols Outlined';
  font-size: 16px;
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.c-breadcrumb--white {
  background-color: #fff;
}

.c-breadcrumb--gray {
  background-color: #f6f6f6;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

@media screen and (min-width: 768px), print {
  .c-breadcrumb__list {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    padding: 15px;
    overflow-x: scroll;
  }
}

.c-breadcrumb__item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    white-space: nowrap;
  }
}

.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 10px;
  padding-left: 22px;
}

.c-breadcrumb__item + .c-breadcrumb__item::after {
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: scale(1, 0.9) rotate(45deg);
          transform: scale(1, 0.9) rotate(45deg);
  border-top: 1px solid #7f7f7f;
  border-right: 1px solid #7f7f7f;
  content: "";
}

@media screen and (min-width: 768px), print {
  .c-breadcrumb__item + .c-breadcrumb__item::after {
    width: 7px;
    height: 7px;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__item + .c-breadcrumb__item::after {
    width: 7px;
    height: 7px;
  }
}

.c-breadcrumb__item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__item:last-child {
    padding-right: 20px;
  }
}

.c-breadcrumb__link {
  color: #484848;
  font-size: 12px;
  letter-spacing: 0.72px;
}

.c-breadcrumb__text {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.72px;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__text {
    white-space: nowrap;
  }
}