@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
h3.bline {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1em;
  color: #C00000;
  letter-spacing: 0.5em;
}
h3.bline.orange {
  color: #E07A00;
}
h3.bline span {
  padding-left: 0.5em;
  position: relative;
}
h3.bline span::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 100%;
  height: calc(100% + 6px);
  background: url(../img/company/companyprofile/b_line.jpg) no-repeat 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
h3.bline span:has(small) {
  padding-right: 0.5em;
}
h3.bline span small {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  h3.bline {
    font-size: 2.6rem;
    letter-spacing: 0.25em;
  }
  h3.bline span {
    padding-right: 0.5em;
  }
}

picture {
  display: inline-block;
}
picture img {
  vertical-align: bottom;
}

.mokuji {
  background: #f7f7f7;
  padding: 2em;
  margin-bottom: 2em;
}
.mokuji ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.mokuji ul::before {
  content: "目次";
  display: block;
  font-size: 3rem;
  border-left: 3px solid #C00000;
  padding-left: 1em;
  margin-bottom: 0.5em;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}
.mokuji ul li {
  margin-left: 2em;
  position: relative;
  font-size: 1.4rem;
}
.mokuji ul li:not(:last-child) {
  padding-bottom: 0.75em;
}
.mokuji ul li::before {
  content: "－";
  color: #C00000;
  position: absolute;
  top: 0;
  left: -1.5em;
}
.mokuji ul li a {
  transition: 0.3s;
}
.mokuji ul li a:hover {
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .mokuji ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .mokuji ul::before {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}

@media screen and (max-width: 900px) {
  .spscroll {
    position: relative;
    width: 100%;
    overflow-x: scroll;
  }
  .spscroll::before, .spscroll::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .spscroll::before {
    content: "";
    width: 7rem;
    height: 7rem;
    background: black(0.75);
  }
  .spscroll::after {
    font-family: "Material Symbols Outlined";
    content: "\e9ec";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
    font-size: 5rem;
    color: white(1);
    animation: spscrollicon_after ease-in 1s infinite;
  }
  .spscroll.isactive::before, .spscroll.isactive::after {
    animation: spscrollicon 1s forwards;
  }
  .spscroll > * {
    width: auto;
    max-width: none;
    max-height: 400px;
    max-width: none;
  }
  .spscroll > table th {
    white-space: nowrap;
  }
}
@keyframes spscrollicon_after {
  0% {
    transform: translate(-50%, -50%) rotate(-20deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-20deg);
  }
}
@keyframes spscrollicon {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=companyprofile.css.map */