@charset "UTF-8";
/* ============================================================
// business.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 22.9074889868vw + 154.0969162996px, 500px);
  padding-top: clamp(76px, 4.7577092511vw + 58.1585903084px, 130px);
  overflow: hidden;
  background-image: url(../images/business/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #fff;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 2.2907488987vw + 25.40969163px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1762114537vw + 13.3392070485px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

/* ------------------------------------------------------------
// テキスト & 画像
------------------------------------------------------------ */
.business__item-text {
  line-height: 2;
  padding: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
  background: #f5f5f5;
  border-radius: 10px;
}

.business__item-image {
  margin-bottom: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
}
.business__item-image img {
  border-radius: 10px;
}

/* ------------------------------------------------------------
// ボックスリスト
------------------------------------------------------------ */
.box-list {
  margin-top: 40px;
}
.box-list__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.box-list__head {
  margin-bottom: 40px;
  border-bottom: 3px solid #728f00;
  position: relative;
}
.box-list__head::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200px;
  border-bottom: 3px solid #f17d00;
  z-index: 1;
}
.box-list__title-wrap {
  display: flex;
  align-items: baseline;
  gap: clamp(0px, 1.3215859031vw + -4.9559471366px, 15px);
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .box-list__title-wrap {
    flex-direction: column;
  }
}
.box-list__title {
  font-size: clamp(18px, 1.2334801762vw + 13.3744493392px, 32px);
  font-weight: 700;
}
.box-list__sub-title {
  font-size: clamp(14px, 0.1762114537vw + 13.3392070485px, 16px);
  color: #f17d00;
}
.box-list__body {
  padding-inline: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
}
.box-list__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .box-list__list {
    grid-template-columns: 1fr;
  }
}
.box-list__item {
  padding: 24px;
  border: 2px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}
.box-list__item:hover {
  border-color: #728f00;
}
.box-list__item-title {
  font-size: clamp(18px, 0.1762114537vw + 17.3392070485px, 20px);
  font-weight: 700;
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.box-list__item-text {
  font-size: clamp(14px, 0.0881057269vw + 13.6696035242px, 15px);
}

/* ------------------------------------------------------------
// 例
------------------------------------------------------------ */
.damage-report {
  margin-top: 40px;
}
.damage-report__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.damage-report__head {
  position: relative;
  margin-bottom: 40px;
  border-bottom: 3px solid #728f00;
}
.damage-report__head::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  width: 200px;
  border-bottom: 3px solid #f17d00;
}
.damage-report__title-wrap {
  display: flex;
  align-items: baseline;
  gap: clamp(0px, 1.3215859031vw + -4.9559471366px, 15px);
  padding-bottom: 10px;
}
.damage-report__title {
  font-size: clamp(18px, 1.2334801762vw + 13.3744493392px, 32px);
  font-weight: 700;
}
.damage-report__sub-title {
  font-size: clamp(14px, 0.1762114537vw + 13.3392070485px, 16px);
  color: #f17d00;
}
.damage-report__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.damage-report__group {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(0px, 1.7621145374vw + -6.6079295154px, 20px);
}
@media screen and (max-width: 767px) {
  .damage-report__group {
    flex-direction: column;
    align-items: center;
  }
}
.damage-report__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.damage-report__item--green .damage-report__item-title {
  background-color: #728f00;
}
.damage-report__item--green {
  box-shadow: 10px 10px 0 rgba(114, 143, 0, 0.2);
}
.damage-report__item--orange .damage-report__item-title {
  background-color: #f17d00;
}
.damage-report__item--orange {
  box-shadow: 10px 10px 0 rgba(241, 125, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .damage-report__item {
    width: 100%;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  }
  .damage-report__item--green {
    box-shadow: 6px 6px 0 rgba(114, 143, 0, 0.2);
  }
  .damage-report__item--orange {
    box-shadow: 6px 6px 0 rgba(241, 125, 0, 0.2);
  }
}
.damage-report__item-title {
  flex-shrink: 0;
  font-size: clamp(18px, 0.3524229075vw + 16.6784140969px, 22px);
  font-weight: fff;
  color: #fff;
  margin: 0;
  padding: 15px 20px;
}
.damage-report__item-body {
  padding: 25px 20px;
  flex-grow: 1;
  background-color: #fff;
}
.damage-report__item-text {
  font-size: clamp(14px, 0.0881057269vw + 13.6696035242px, 15px);
}
.damage-report__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
}
.damage-report__arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 5px solid #222;
  border-right: 5px solid #222;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .damage-report__arrow {
    height: 40px;
    margin: 10px 0;
    transform: rotate(90deg);
  }
}