@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
:root {
}
::-webkit-scrollbar {
}
::-webkit-scrollbar-thumb {
}
::-webkit-scrollbar-track {
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
ul , li {
  list-style: none;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  background: #fff;
  color: #813e49;
}
div.cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 600px;
  max-height: 100dvh;
  background: #853f4b;
}
div.cover::before {
  display: block;
  content: "";
  width: 300px;
  height: 300px;
  background: #fff;
  mask: url(../image/logo.svg) no-repeat center / cover;
}
main section {
  margin-inline: auto;
  padding-inline: 50px;
  width: 100%;
  max-width: 1200px;
  margin-block: 100px;
}
main section p {
  color: #000;
}
main section ul {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-block: 100px;
}
main section ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}
main section ul li h3 {
  background: #000;
  height: 1px;
  font-size: 20px;
  position: relative;
}
main section ul li h3 span {
  display: block;
  padding-inline: 0 20px;
  line-height: 30px;
  position: absolute;
  top: -17px;
  left: 0;
  background: #fff;
}
main section ul li p {
  margin-top: 30px;
}
main section ul li div:first-child {
  max-width: calc(100% - 250px);
}
main section ul li div:last-child {
  width: 200px;
  height: 200px;
  background: center / cover;
  border-radius: 50%;
}
main section iframe {
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 660px) {
  main section {
    margin-top: 30px;
    padding-inline: 20px;
  }
  main section ul li {
    flex-direction: column;
    gap: 50px;
  }
  main section ul li div:first-child {
    max-width: unset;
  }
  main section ul li p {
    margin-top: 50px;
  }
  main section iframe {
    margin-top: 0;
  }
}
footer {
  border-top: 5px solid;
}
footer > div {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  margin-block: 50px;
  padding-inline: 20px;
  width: 100%;
  max-width: 1600px;
}
footer > div::before {
  display: block;
  content: "";
  width: 160px;
  height: 60px;
  background: #853f4b;
  mask: url(../image/logo2.png) no-repeat left center / contain;
}
footer address span {
  display: inline-block;
  width: 100px;
}
@media (max-width: 660px) {
  footer > div {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-block: 30px;
    font-size: 13px;
  }
  footer address span {
    width: 80px;
  }
}