@charset "UTF-8";

@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
  .only-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: block;
  }
}
.button {
  display: inline-block;
  border-radius: 40px;
  font-weight: 700;
  font-size: 30px;
}
.button.is-orange {
  background-color: #f65d00;
  color: #fff;
}
.button.is-blue {
  background-color: #0061e5;
  color: #fff;
}
.hover-opacity {
  transition: 0.3s;
}
.hover-opacity:hover {
  opacity: 0.75;
}

.lpStaff-inner {
  max-width: 1920px;
  margin: 0 auto;
}
.section-inner {
  padding: 80px 10px;
}

.lpStaff-section-inner {
  max-width: 980px;
  padding-right: 10px;
  padding-left: 10px;
  margin: 0 auto;
}

.section-primary-heading {
  margin: 0 auto 50px;
}

body {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding: 60px 16px;
  }
  .lpStaff-section-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .section-primary-heading {
    margin: 0 auto 40px;
  }
  body {
    padding-bottom: 60px;
  }
}

main * {
  box-sizing: border-box;
}
.header {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  background: #fff;
}
.header-logo {
  width: 293px;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 12px 0;
  }
  .header-logo {
    width: 50%;
    max-width: 200px;
  }
}
.kv {
  overflow: hidden;
  padding: 65px 10px 0;
  background: url("../img/bg_kv_pc.jpg") no-repeat top center;
}
.kv-inner {
  position: relative;
  padding-bottom: 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.kv-inner > * {
  position: relative;
  z-index: 2;
}
.test {
  position: absolute;
  right: -40px;
}
.kv-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% + 280px);
  transform: translateX(-50%);
  background: url("../img/kv_img.png") no-repeat 0 bottom;
  width: 700px;
  height: 555px;
}
.kv-heading {
  max-width: 100%;
}
.kv-lead {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.8px;
}
.kv-lead::before {
  content: "";
  background-color: #ffce1a;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  filter: blur(3px);
  z-index: -1;
  opacity: 0.3;
}
.kv-links {
  margin-top: 29px;
  display: flex;
  gap: 20px;
  max-width: 900px;
  width: 100%;
}
.kv-links-wrap {
  position: relative;
  width: 50%;
  max-width: 440px;
}
.kv-links-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: 1;
  border-radius: 40px;
}
.kv-links-wrap.is-blue::after {
  background-color: #0449a6;
}
.kv-links-wrap.is-orange::after {
  background-color: #cb3c03;
}

.kv-links-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  width: 100%;
  transition: 0.3s;
}

.kv-links-item-inner {
  display: block;
}
.kv-links-tel {
  font-size: 24px;
}
.kv-links-tel-number {
  font-size: 30px;
}
.kv-links-tel-time {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}
.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 1920px;
  background-color: #fff;
  padding: 21px 0 18px;
  display: flex;
  justify-content: center;
  transform: translateY(100%); /* 下に隠す */
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 10.8px 1.2px rgba(0, 0, 0, 0.2);
}
.sticky-footer .kv-links {
  margin-top: 0;
}
.sticky-footer.visible {
  transform: translateY(0); /* 表示 */
}
.sticky-footer button {
  padding: 10px 20px;
  border: none;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
}
.kv-links-web img {
  width: 40px;
}
.kv-links-web .kv-links-item-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .kv-links-item:hover {
    transform: translateY(6px);
  }
  .kv-links-tel .only-pc {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .kv {
    padding: 40px 0 0;
    background: url("../img/bg_kv_sp.jpg") no-repeat 0 0;
  }
  .kv-lead {
    margin-top: 10px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
  .kv-inner {
    align-items: flex-start;
  }
  .kv-inner::after {
    transform: none;
    background: url(../img/kv_img.png) no-repeat right -13px bottom;
    width: 100%;
    height: 65%;
    right: 0;
    left: auto;
    background-size: cover;
  }
  .kv-links-tel-time {
    margin-top: 5px;
    font-size: 10px;
  }
  .kv-links {
    margin-top: 32px;
    padding: 0 16px;
    gap: 14px;
  }
  .kv-links-item {
    min-height: 60px;
  }

  .kv-links-tel-number {
    font-size: 18px;
  }
  .kv-links-item {
    font-size: 18px;
  }
  .kv-links-web img {
    width: 22px;
  }
  .kv-links-web .kv-links-item-inner {
    gap: 9px;
  }
}
.intro {
  position: relative;
  padding: 66px 0 0;
  background: url("../img/bg_trouble_pc.png") no-repeat bottom center;
}
.intro-heading {
  max-width: 900px;
  margin: 0 auto;
}
.intro-img {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 59px 16px 0;
    background: url("../img/bg_trouble_sp.png") no-repeat top center / cover;
    z-index: 1;
  }
  .intro-img {
    padding: 29px 0 49px;
  }
}
.point {
  margin-top: -195px;
  padding: 160px 20px 0 0;
  background: url("../img/bg_overview_pc.jpg") no-repeat bottom center;
}
.point .lpStaff-section-inner {
  padding-bottom: 60px;
}
.point-content {
  margin-top: 109px;
  position: relative;
  max-width: 570px;
  margin-left: auto;
}

.point-heading {
  margin-top: 25px;
}
.point-list {
  margin-top: 42px;
  padding: 0 35px 0 38px;
}
.point-item {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #fff;
  padding: 7px;
  border-radius: 26px;
}
.point-item:nth-child(n + 2) {
  margin-top: 6px;
}
.point-icon {
  width: 37px;
  height: 37px;
}
.point-text {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point-content::before {
    content: "";
    position: absolute;
    background: url(../img/img_overview_01_pc.png) no-repeat left bottom / 520px
      100%;
    bottom: -60px;
    right: calc(100% - 82px);
    width: 520px;
    height: 580px;
  }
}
@media screen and (max-width: 767px) {
  .point {
    position: relative;
    margin-top: -36px;
    padding: 0;
    background: url("../img/bg_overview_sp.jpg") no-repeat top center / cover;
  }
  .point::before {
    content: "";
    position: absolute;
    background: url("../img/img_overview_01_sp.png") no-repeat left 3px bottom /
      100% auto;
    bottom: 0;
    left: 0;
    width: 63%;
    height: 100%;
  }
  .point-heading {
    margin-top: 14px;
  }
  .point-content {
    padding: 98px 16px 0;
    margin-top: 0;
  }
  .point-list {
    margin: 29px 0 0 auto;
    max-width: 70%;
    padding: 0;
  }
  .point-text {
    font-size: 15px;
  }
  .point-icon {
    width: 24px;
    height: 24px;
  }
  .point-item {
    gap: 6px;
    border-radius: 10px;
    line-height: 1.6;
    padding: 7px 5px 7px 7px;
  }
}

.reason {
  background-color: #e7e7e7;
}
.reason-heading {
  max-width: 715px;
}
.reason-list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.reason-item {
  width: 304px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: calc(calc(100% - 48px) / 3);
}
.reason-item img {
  max-width: 208px;
}
.reason-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 50px 20px 30px;
}
.reason-item-number {
  padding: 10px 33px;
  position: absolute;
  left: 0;
  top: 0;
  background: #f65d00;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 24px;
  border-bottom-right-radius: 28px;
}
.reason-item-title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
}
.reason-item-description {
  margin-top: 20px;
  line-height: 1.63;
}

@media screen and (min-width: 768px) {
  .reason {
    background: url("../img/bg_merit_pc.jpg") no-repeat top center, #e7e7e7;
  }
}

@media screen and (max-width: 767px) {
  .reason-list {
    gap: 12px;
  }
  .reason-item {
    width: 100%;
  }
  .reason-item-inner {
    flex-direction: initial;
    flex-wrap: wrap;
    gap: 0;
    padding: 50px 7.5vw 30px;
  }
  .reason-item-inner img {
    width: 50%;
  }
  .reason-item-title {
    margin-top: 0;
    width: 50%;
    font-size: 18px;
    padding-left: 20px;
    line-height: 1.61;
  }
  .reason-item-number {
    padding: 10px 21px;
    font-size: 18px;
    border-bottom-right-radius: 21px;
  }
  .reason-item-description {
    margin-top: 16px;
  }
}

.introduce {
  background: #f5cd3b;
}
.introduce-heading {
  max-width: 960px;
}
.introduce .tab-header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 30px;
  gap: 22px;
}
.introduce .tabs {
  display: flex;
  gap: 4px;
}
.introduce .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 18px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  width: calc(100% / 5);
  line-height: 1;
  border: solid 2px #ff4800;
  background-color: #fff;
  border-radius: 6px;
  color: #ff4800;
  letter-spacing: -0.6px;
  transition: 0.7s;
}
.introduce .tab.active {
  background-color: #ff4800;
  color: #fff;
}
.introduce .tab div {
  display: flex;
}
.introduce .tab:not(.active):hover {
  background-color: #ff4800;
  color: #fff;
  cursor: pointer;
}
.introduce .tab.active::before {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 17px solid #ff4800;
  border-bottom: 0;
}

.stop-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 30px;
  height: 30px;
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.introduce .tab-content {
  display: none;
  border: solid 2px #000b5c;
  padding: 20px 38px 48px 38px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  animation: panel-show 1s linear forwards;
}
.introduce .tab-content.active {
  display: block;
}
.introduce .content-title-bar {
  text-align: center;
  padding: 10px;
  border-radius: 22px;
  background-color: #000b5c;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.introduce .content-body .sub-title {
  padding: 9px 0 9px 11px;
  margin-top: 23px;
  background-color: #e7e7e7;
  color: #000b5c;
  font-size: 18px;
  font-weight: 700;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.introduce .content-body .tab-lead {
  line-height: 1.63;
}
.introduce .content-body .tab-description {
  margin-top: 14px;
}
.introduce .content-body .tab-description dt {
  padding-bottom: 12px;
  margin-bottom: 7px;
  color: #000b5c;
  font-weight: 700;
  border-bottom: 1px solid #000b5c;
  line-height: 1.31;
}
.introduce .content-body .tab-description dd {
  line-height: 1.63;
}
.introduce .content-body .tab-description dt:nth-child(n + 2) {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .introduce .content-body {
    margin-top: 24px;
    display: grid;
    grid-template-columns: calc(400 / 880 * 100%) calc(431 / 880 * 100%);
    gap: calc(32 / 880 * 100%);
  }
}
@media (max-width: 767px) {
  .introduce .tab-header {
    align-items: flex-end;
    gap: 4px;
    grid-template-columns: 1fr 20px;
  }
  .introduce .tabs {
    flex-wrap: wrap;
  }
  .introduce .tab {
    width: calc(calc(100% - 8px) / 3);
    font-size: 16px;
    padding: 7px 0;
    min-height: 50px;
  }
  .introduce .tab.active::before {
    content: none;
  }
  .introduce .tab-content {
    margin-top: 8px;
    overflow-y: auto;
    height: 600px;
    padding: 16px 10px 16px 16px;
  }
  .introduce .content-title-bar {
    max-width: 97%;
    padding: 8px 4px;
    font-size: 20px;
  }
  .introduce .content-body {
    margin-top: 16px;
    flex-direction: column;
  }
  .introduce .content-body .right-text {
    margin-left: 0;
    margin-top: 15px;
  }
  /* 自動停止ボタンの位置は変更しない */
  .stop-btn {
    width: 20px;
    height: 20px;
  }
  .introduce .content-body .tab-description dt {
    font-size: 15px;
  }
  .introduce .content-body .tab-description dd {
    font-size: 15px;
  }
}

.voice {
  background: url("../img/bg_voice_pc.jpg") repeat-y 0 0;
}
.slider {
  margin: 0 auto;
  width: 100%;
}
.slick-track {
  display: flex; /*上書き*/
}
.slick-dotted.slick-slider {
  margin-bottom: 50px;
}
.slide-item {
  width: 520px; /* 固定横幅 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px 40px 44px;
  background: #fff;
  border-radius: 10px;
  height: auto !important; /*上書き*/
}
.slide-voice-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 900;
}
.slide-voice-item-title {
  line-height: 1.58;
}
.slide-voice-item-title .strong {
  color: #f65d00;
  font-size: 1.2em;
}
.slide-voice-item-icon {
  margin: 0;
  width: 148px;
  height: 148px;
}
.slide-voice-item-description {
  margin-top: 16px;
  line-height: 1.63;
}
.slide-voice-item-point {
  margin-top: 16px;
}
.slide-voice-item-point-title {
  display: flex;
  align-items: center;
  padding: 7px 0 7px 14px;
  background: #000b5c;
  color: #fff;
  font-size: 18px;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  font-weight: 700;
}

.slide-voice-item-point-title img {
  width: 21px;
  height: 18px;
}
.slide-voice-item-point-description {
  margin-top: 11px;
  line-height: 1.63;
}

.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-navigation button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  max-width: 60px;
}
.slider-navigation .custom-prev {
  margin-right: 30px;
}
.slider-navigation .custom-next {
  margin-left: 30px;
}
.dots-container {
  display: inline-block;
  vertical-align: middle;
}
.dots-container .slick-dots {
  position: static !important;
  margin: 0;
  padding: 0;
}
.dots-container .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 20px;
  background: #989898;
  border-radius: 50%;
  cursor: pointer;
}
.dots-container .slick-dots li.slick-active {
  background: #000b5c;
}
.dots-container .slick-dots button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .slide-item {
    padding: 20px 15px 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 33px;
  }
  .slide-voice-item-title {
    font-size: 20px;
  }
  .slide-voice-item-title .strong {
    font-size: 1.3em;
  }
  .slide-voice-item-icon {
    width: 100px;
    height: 100px;
  }
  .slide-voice-item-header {
    gap: 9px;
  }
  .slide-voice-item-description {
    font-size: 15px;
  }
  .slide-voice-item-point-description {
    font-size: 15px;
  }
  .slider-navigation button {
    max-width: 48px;
  }
  .slider-navigation .custom-prev {
    margin-right: 28px;
  }
  .dots-container .slick-dots li {
    width: 12px;
    height: 12px;
  }
  .slider-navigation .custom-next {
    margin-left: 28px;
  }
}

.flow {
  background: #0549a5;
}

.flow-list {
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
}
.flow-item {
  position: relative;
}
.flow-item:nth-child(n + 2) {
  margin-top: 32px;
}
.flow-item:nth-child(n + 2)::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px solid #f65d00;
  border-bottom: 0;
}
.flow-item-inner {
  overflow: hidden;
  position: relative;
  padding: 40px 10.2% 46px 7.8%;
  background: #fff;
  border-radius: 12px;
}
.flow-number {
  padding: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f65d00;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: #fff;
  border-bottom-right-radius: 28px;
}
.flow-title {
  font-size: 18px;
  font-weight: 700;
}
.flow-description {
  margin-top: 15px;
  line-height: 1.38;
}
.flow-description a {
  color: #0065c2;
  text-decoration: underline;
}
.flow-sub-heading {
  max-width: 960px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .flow-title {
    text-align: center;
  }
  .flow-description {
    font-size: 15px;
    line-height: 1.5;
  }
  .flow-item-inner {
    padding: 23px 27px 23px 21px;
  }
  .flow-number {
    padding: 13px 16px;
    border-bottom-right-radius: 22px;
  }
  .flow-item:nth-child(n + 2) {
    margin-top: 26px;
  }
  .flow-item:nth-child(n + 2)::after {
    top: -18px;
  }
  .flow-sub-heading {
    margin-top: 30px;
  }
}
.branch {
  background: url("../img/bg_office.jpg") repeat 0 0;
}
.branch-heading {
  max-width: 960px;
}
.branch-item + .branch-item {
  margin-top: 23px;
}
.branch-title {
  padding-bottom: 7px;
  color: #0061e5;
  font-size: 20px;
  border-bottom: 1px solid #0061e5;
}
.branch-area-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 16px;
}
.branch-area-item {
  padding: 20px;
  background: #fff;
  border-radius: 6px;
}
.branch-area-name {
  font-size: 18px;
  font-weight: bold;
}
.branch-area-address a {
  display: inline-flex;
}
.branch-area-address img {
  width: 11px;
  height: 14px;
}
.branch-area-description {
  margin-top: 15px;
  line-height: 1.38;
}
.branch-area-tel-wrapper {
  margin-top: 13px;
  font-size: 14px;
}
.branch-area-tel-wrapper a {
  text-decoration: underline;
}
.branch-area-tel-wrapper a:hover {
  text-decoration: none;
}
.branch-area-tel-wrapper li {
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .branch-area-item {
    max-width: 228px;
  }
}
@media screen and (max-width: 767px) {
  .branch-title {
    font-size: 18px;
  }
  .branch-area-tel-wrapper {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
  .branch-title {
    position: relative;
  }
  .branch-title::before,
  .branch-title::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    background-color: #0061e5;
    transform: translateY(-50%);
  }
  .branch-title::before {
    width: 20px;
    height: 2px;
  }
  .branch-title::after {
    width: 2px;
    height: 20px;
    right: 9px;
  }
  .branch-title.is-open::after {
    display: none;
  }
  .branch-area-list {
    display: none;
  }
  .branch-area-item + .branch-area-item {
    margin-top: 8px;
  }
  .branch-item + .branch-item {
    margin-top: 36px;
  }
  .branch-area-description {
    margin-top: 10px;
  }
}

.summary {
  padding: 80px 0;
  background: url("../img/bg_company_01_pc.jpg") no-repeat top center,
    url("../img/bg_company_02_pc.jpg") no-repeat bottom 0 center;
}
.summary-movie {
  display: flex;
  justify-content: center;
}
.summary-movie iframe {
  width: 640px;
  height: 480px;
}
.summary-heading {
  margin: 60px auto 0;
  text-align: center;
  max-width: 918px;
}

.summary-company-container {
  position: relative;
  padding: 385px 10px 0;
}
.summary-company-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/img_company_01_pc.png") no-repeat center 0;
  width: 100%;
  height: 692px;
}

.summary-company {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  background: #fff;
  border-radius: 10px;
  padding: 51px 40px 80px;
}
.summary-company-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.summary-company-table {
  margin-top: 42px;
  width: 100%;
  border-collapse: collapse;
}
.summary-company-table th,
.summary-company-table td {
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 20px;
}
.summary-company-table th {
  font-weight: 700;
}
.summary-company-table tr:nth-child(odd) {
  background-color: #f0f0f0;
}
.summary-company-link {
  margin-top: 36px;
  text-align: center;
}
.company-link {
  display: inline-flex;
  align-items: center;
  padding: 25px 80px 25px 78px;
  font-size: 30px;
  letter-spacing: 1.2px;
}
.company-link img {
  margin-left: 15px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .summary {
    padding: 60px 0;
    background: url(../img/bg_company_02_sp.jpg) no-repeat bottom 0 center /
      cover;
  }
  .summary-movie {
    margin: 0 16px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .summary-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .summary-company-table,
  .summary-company-table tbody,
  .summary-company-table tr,
  .summary-company-table th,
  .summary-company-table td {
    display: block;
    width: 100%;
  }

  .summary-company-table th {
    padding: 12px 12px 7px 12px;
  }

  .summary-company-table td {
    padding: 0 12px 12px 12px;
    border-top: none;
  }
  .summary-heading {
    margin-top: 40px;
  }
  .summary-company-container::before {
    top: -13px;
    background: url("../img/img_company_01_sp.png") no-repeat center 0 / 100%;
    height: 284px;
  }
  .summary-company-container {
    padding: 181px 16px 0;
  }
  .summary-company {
    margin-top: -8px;
    padding: 30px 20px;
  }
  .summary-company-table th,
  .summary-company-table td {
    font-size: 15px;
  }
  .company-link {
    padding: 20px 45px 20px 44px;
    font-size: 20px;
  }

  .company-link img {
    width: 20px;
  }
  .summary-company-heading {
    font-size: 24px;
  }
  .sticky-footer {
    padding: 0;
    box-shadow: none;
  }
  .sticky-footer .kv-links {
    padding: 0;
    gap: 0;
  }
  .sticky-footer .kv-links-wrap {
    width: 50%;
    max-width: auto;
  }
  .sticky-footer .kv-links-item {
    border-radius: 0;
  }
  .sticky-footer .kv-links-wrap::after {
    content: none;
  }
}

.footer {
  padding: 20px 0;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 20px;
}
