@charset "UTF-8";
* {
  color: #222;
  padding: 0;
  margin: 0;
}

p {
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alexandria", "Zen Kaku Gothic Antique", sans-serif;
  background-color: #D9D9D9;
}
body main {
  margin: 0;
  padding: 0;
}
body .back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 4rem;
  width: 60px;
  height: 60px;
  font-size: 32px;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  body .back-to-top {
    right: 2rem;
  }
}
body .back-to-top:hover {
  color: #fff;
}
body .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  top: 42px;
  left: 34px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  header {
    display: none;
  }
}
header .header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-menu ul li a {
  color: #fff;
  font-size: 20px;
  line-height: 2;
  text-decoration: none;
}
header .header-menu ul li a:hover {
  color: #111;
}

main {
  position: relative;
}
main .container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  main .container {
    margin-left: 18px;
    margin-right: 18px;
  }
}
main .side-logo {
  position: absolute;
  top: -10px;
  right: 0;
  height: 800px;
  width: auto;
  z-index: 10;
}
main .side-logo img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  main .side-logo {
    display: none;
  }
}
main .fv {
  width: 100%;
  min-height: 120vh;
  background-image: url("../img/fv-bg.png");
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: repeat-x;
}
main .fv .fv-logo {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 236px;
  height: auto;
  z-index: 10;
}
main .fv .fv-logo img {
  width: 100%;
  height: auto;
}
main .fv .fv-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(0, -120px);
  padding: 164px 18px;
  position: relative;
  width: 100%;
  margin-top: 100px;
  z-index: 10;
  box-sizing: border-box;
}
main .fv .fv-box .fv-img {
  width: 478px;
  height: auto;
}
main .fv .fv-box .fv-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  main .fv .fv-box .fv-img {
    width: 90%;
  }
}
main .fv .fv-box .fv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  padding: 0 18px;
  box-sizing: border-box;
}
main .fv .fv-box .fv-copy p {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  z-index: 10;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  main .fv .fv-box .fv-copy p {
    font-size: 28px;
  }
}
main .fv .fv-box .fv-copy p span {
  display: block;
}
main .fv .fv-box .fv-copy p span:nth-of-type(3) {
  display: inline;
}
@media (max-width: 768px) {
  main .fv .fv-box .fv-copy p span:nth-of-type(3) {
    display: block;
  }
}
main .case,
main .profile {
  margin-top: 164px;
}
main .section-h .section-h-jp {
  font-size: 20px;
  font-weight: 700;
}
main .section-h h2 {
  font-size: 64px;
  line-height: 1;
}
main .section-h .section-h-p {
  margin-top: 20px;
  font-size: 14px;
}
main .business .section-h,
main .profile .section-h {
  text-align: right;
}
main .business {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}
main .business-box {
  max-width: 810px;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  main .business-box {
    gap: 18px;
  }
}
main .business-box .business-item {
  background-color: #fff;
  padding: 20px 16px;
  width: 150px;
  height: 150px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .business-box .business-item {
    width: 140px;
    height: 140px;
  }
}
main .business-box .business-item img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  main .business-box .business-item img {
    height: 70px;
  }
}
main .business-box .business-item p {
  font-weight: 700;
  font-size: 16px;
}
main .business-box .business-item p .business-font-small {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  main .business-box .business-item p .business-font-small {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  main .business-box .business-item p {
    font-size: 12px;
  }
}
main .case-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr; /* 1列目: 自動幅, 2列目: 残り全部 */
  gap: 30px 0;
}
main .case-box .case-item {
  display: contents;
  align-items: center;
  margin-top: 30px;
}
main .case-box .case-item .case-item-num {
  background-color: #111;
  width: 116px;
  min-height: 116px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  main .case-box .case-item .case-item-num {
    width: 80px;
  }
}
main .case-box .case-item .case-item-num p {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  aspect-ratio: initial;
}
@media screen and (max-width: 768px) {
  main .case-box .case-item .case-item-num p {
    font-size: 40px;
  }
}
main .case-box .case-item .case-item-p {
  background-color: #fff;
  width: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 700px;
}
main .case-box .case-item .case-item-p p {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .case-box .case-item .case-item-p p {
    font-size: 16px;
    font-weight: 500;
  }
  main .case-box .case-item .case-item-p p .span-700 {
    font-weight: 700;
  }
  main .case-box .case-item .case-item-p p .span-br {
    display: block;
  }
  main .case-box .case-item .case-item-p p .span-coron {
    display: none;
  }
}
main .case-etc {
  margin-top: 24px;
  max-width: 816px;
}
main .case-etc p {
  font-size: 40px;
  font-weight: 700;
  text-align: right;
}
main .profile .profile-box {
  display: flex;
  gap: 56px;
  width: 100%;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  main .profile .profile-box {
    flex-direction: column;
  }
}
main .profile .profile-box .profile-map {
  width: 40%;
  height: 560px;
}
@media screen and (max-width: 768px) {
  main .profile .profile-box .profile-map {
    width: 100%;
    height: 300px;
  }
}
main .profile .profile-box .profile-map iframe {
  width: 100%;
  height: 100%;
}
main .profile .profile-box .profile-data {
  flex: 1;
}
main .profile .profile-box .profile-data table {
  width: 100%;
  border-collapse: collapse;
}
main .profile .profile-box .profile-data table tr:last-child {
  border-bottom: 2px solid #111;
}
main .profile .profile-box .profile-data table tr td {
  border-top: 2px solid #111;
  text-align: left;
  line-height: 1.8;
  padding: 14px 0;
}
main .profile .profile-box .profile-data table tr td:first-child {
  font-weight: 700;
}
main .profile .profile-box .profile-data table tr td img {
  height: 16px;
  width: auto;
}

footer {
  background-color: #111;
  height: 47px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
}
footer .c-box p {
  font-size: 12px;
  color: #fff;
  margin: 0;
}/*# sourceMappingURL=style.css.map */