@charset "utf-8";
/* CSS Document */
.cate3 {
  margin-top: clamp(56px, 7vw, 96px);
}

.policy_accordion {
  border-top: 1px solid rgba(173, 170, 170, 0.6);
}

.policy_item {
  border-bottom: 1px solid rgba(173, 170, 170, 0.6);
}

.policy_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  color: #333333;
  cursor: pointer;
}

.policy_btn h3 {
  margin: 0;
  color: #333333;
  line-height: 1.8;
}

.policy_icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.policy_icon::before,
.policy_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #333333;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.policy_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.policy_btn.is-open .policy_icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body:not(.gjs-dashed) .policy_panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height .5s ease,
    opacity .3s ease;
}

body:not(.gjs-dashed) .policy_item.is-open .policy_panel {
  max-height: 3000px;
  opacity: 1;
}
.policy_inner {
  padding: 0 0 34px;
  color: #333333;
}

.policy_inner h4 {
  margin: 26px 0 10px;
  color: #333333;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.8;
}

.policy_inner h4:first-child {
  margin-top: 0;
}

.policy_inner p {
  margin: 0 0 14px;
  color: #333333;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .policy_btn {
    padding: 22px 0;
  }

  .policy_inner {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 576px) {
  .cate3 {
    margin-top: 48px;
  }

  .policy_btn {
    gap: 14px;
    padding: 20px 0;
  }
}

/* ---------- company ---------- */
.company_titlebox {
  margin-bottom: 24px;
}
.company_titlebox h2 {
  font-weight: 700;
  line-height: 1.5;
}
.company_table {
  width: 100%;
}
.company_row {
  display: flex;
  border-top: 1px solid rgba(173, 170, 170, 0.6);
}
.company_row:last-child {
  border-bottom: 1px solid rgba(173, 170, 170, 0.6);
}
.company_head {
  width: 190px;
  flex-shrink: 0;
  padding: 26px 20px 26px 0;
}
.company_txt {
  flex: 1;
  padding: 26px 0;
}
.company_head p {
  color: #333333;
  line-height: 1.8;
}
.company_txt p {
  color: #333333;
  line-height: 1.8;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .company_head {
    width: 170px;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .company_head {
    width: 150px;
    padding: 22px 16px 22px 0;
  }
  .company_txt {
    padding: 22px 0;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .company_row {
    display: block;
    padding: 18px 0;
  }
  .company_head {
    width: auto;
    padding: 0 0 6px;
  }
  .company_txt {
    padding: 0;
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}