@charset "UTF-8";
/* 安心のケア体制 Section */
.secure-care {
  padding: 20px 0 40px;
  background: #f6f7f3;
}
.secure-care__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.secure-care__content {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.secure-care__text {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}
.secure-care__description {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}
.secure-care__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.secure-care__download:hover .secure-care__download-btn {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}
.secure-care__download-label {
  font-size: 14px;
  color: #333333;
  margin: 0;
}
.secure-care__download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d32f2f;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .secure-care {
    padding: 40px 0 30px;
  }
  .secure-care__content {
    padding: 24px 20px;
  }
  .secure-care__download {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Section Title (共通) */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

/* お選びいただける理由 Section */
.reasons {
  padding: 20px 0;
}
.reasons__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .reasons {
    padding: 40px 0;
  }
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .reason-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.reason-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 8px;
  position: relative;
}
.reason-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #e8f5e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 16px;
  padding: 5px 0;
}
.reason-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}
.reason-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reason-card__list li {
  font-size: 13px;
  line-height: 1.7;
  color: #333333;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.reason-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #006637;
  font-weight: 700;
}
.reason-card__list li:last-child {
  margin-bottom: 0;
}

/* ご連携のメリット Section */
.collaboration-merits {
  padding: 60px 0;
  background: #f6f7f3;
}
.collaboration-merits__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .collaboration-merits {
    padding: 40px 0;
  }
}

.merit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .merit-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.merit-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.merit-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 2px solid #006637;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 16px;
}
.merit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.4;
}
.merit-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.merit-card__list li {
  font-size: 13px;
  line-height: 1.7;
  color: #333333;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.merit-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #006637;
  font-weight: 700;
}
.merit-card__list li:last-child {
  margin-bottom: 0;
}

/* Service Selection Section */
.service-selection {
  padding: 60px 0;
  background: #ffffff;
}
.service-selection__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-selection__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-selection {
    padding: 40px 0;
  }
  .service-selection__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.ir-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .ir-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.ir-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: #f6f7f3;
  border: 1px solid #dcebe4;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.ir-card:hover {
  background: #e8ebe5;
}
.ir-card--active {
  background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
}
.ir-card--active .ir-card__title {
  color: white;
}
.ir-card--active .ir-card__icon {
  background: white;
}
.ir-card--active .ir-card__icon::before {
  color: #006637;
}
.ir-card--active:hover {
  background: linear-gradient(135deg, #1e6f49 0%, #339964 100%);
}
.ir-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
.ir-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #006637;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.ir-card__icon::before {
  content: "→";
  font-size: 18px;
  color: white;
  transition: transform 0.3s;
}
.ir-card:hover .ir-card__icon::before {
  transform: translateX(4px);
}

/* Care System, Service Content, Houkan Match, Contact Section */
.care-system,
.service-content,
.houkan-match,
.houkan-match-info,
.contact-section {
  padding: 10px 0;
}
.care-system__container,
.service-content__container,
.houkan-match__container,
.houkan-match-info__container,
.contact-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .care-system,
  .service-content,
  .houkan-match,
  .houkan-match-info,
  .contact-section {
    padding: 40px 0;
  }
}

.care-system,
.service-content,
.houkan-match,
.houkan-match-info {
  background: #f6f7f3;
}

.contact-section {
  background: #ffffff;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
}

/* Care Section Header (共通見出しスタイル) */
.care-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 20px;
}
.care-section-header__icon {
  color: #006637;
  font-size: 20px;
}
.care-section-header__title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

/* Care List */
.care-list__item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.care-list__item:last-child {
  margin-bottom: 0;
}
.care-list__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.care-list__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.care-list__features li {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.care-list__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #006637;
  font-weight: 700;
}
.care-list__features li:last-child {
  margin-bottom: 0;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .benefit-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.benefit-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 8px;
  position: relative;
}
.benefit-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #e8f5e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 16px;
  padding: 5px 0;
}
.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}
.benefit-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: #333333;
}

/* Houkan Match Content */
.houkan-match__content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .houkan-match__content {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}
.houkan-match__qr {
  flex-shrink: 0;
}
.houkan-match__qr img {
  width: 180px;
  height: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.houkan-match__text {
  flex: 1;
}
.houkan-match__text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}
.houkan-match__text p:last-child {
  margin-bottom: 0;
}
.houkan-match__text p.houkan-match__text-highlight {
  font-size: 16px;
  font-weight: 700;
}
.houkan-match__url {
  font-weight: 700;
  color: #006637;
}
.houkan-match__contact {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .houkan-match__contact {
    padding: 24px;
  }
}
.houkan-match__contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.houkan-match__contact-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 24px;
}
.houkan-match__contact-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
}
.houkan-match__contact-info p:last-child {
  margin-bottom: 0;
}
.houkan-match__download {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .houkan-match__download {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
.houkan-match__download-text {
  font-size: 14px;
  color: #333333;
  flex: 1;
}
.houkan-match__download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d32f2f;
  color: #ffffff;
  padding: 10px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
.houkan-match__download-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

/* Contact Section */
.contact-card {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #f6f7f3;
  padding: 60px;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .contact-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
  }
}
.contact-card__image {
  flex-shrink: 0;
}
.contact-card__image img {
  width: 300px;
  height: auto;
}
@media (max-width: 768px) {
  .contact-card__image img {
    width: 200px;
  }
}
.contact-card__content {
  flex: 1;
}
.contact-card__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #006637;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contact-card__title {
    font-size: 24px;
  }
}
.contact-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 32px;
}
.contact-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn--primary {
  background: #006637;
  color: #ffffff;
}
.btn--primary:hover {
  background: #2d5a3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 78, 0.3);
}
.btn--secondary {
  background: #ffffff;
  color: #333333;
  border: 2px solid #e0e0e0;
}
.btn--secondary:hover {
  border-color: #006637;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.btn__content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn__badge {
  background: #e67e3c;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
}
.btn__text {
  font-size: 14px;
}

/* Achievements Section */
.achievements-section {
  padding: 20px 0;
  background: #f6f7f3;
}
.achievements-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.achievement-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.achievement-card__label {
  display: inline-block;
  font-size: 14px;
  color: #2d5a3d;
  font-weight: 600;
  background: #e8f5e9;
  padding: 6px 18px;
  border-radius: 30px;
  margin: 15px 0 0 0;
}
.achievement-card__number {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin: 10px 0 8px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .achievement-card__number {
    font-size: 32px;
  }
}
.achievement-card__unit {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .achievement-card__unit {
    font-size: 14px;
  }
}
.achievement-card__date {
  font-size: 12px;
  color: #333;
  margin: 0 0 20px;
}

/* Service Content Table Section */
.service-content-table-section {
  padding: 20px 0;
  background: #f6f7f3;
}
.service-content-table-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .service-content-table-section {
    padding: 40px 0;
  }
}

.service-table {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.service-table__row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.service-table__row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service-table__row {
    flex-direction: column;
  }
}
.service-table__header {
  background: #e8f5e9;
  color: #006637;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .service-table__header {
    min-width: auto;
    padding: 16px;
  }
}
.service-table__content {
  flex: 1;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .service-table__content {
    padding: 16px 20px;
  }
}
.service-table__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-table__content ul li {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.service-table__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #006637;
  font-weight: 700;
}
.service-table__content ul li:last-child {
  margin-bottom: 0;
}

/* Service Details Section */
.service-details {
  padding: 60px 0;
  background: #ffffff;
}
.service-details__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .service-details__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .service-details {
    padding: 40px 0;
  }
}

.service-detail {
  background: #f5f5f5;
  border-left: 4px solid #006637;
  border-radius: 8px;
  overflow: hidden;
}
.service-detail__header {
  background: #006637;
  padding: 12px 20px;
}
.service-detail__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.service-detail__list {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.service-detail__list li {
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
}
.service-detail__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #006637;
  font-weight: 700;
}
.service-detail__list li:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=forcaremanager.css.map */
