body {
  position: relative;
}

header {
  position: fixed;
  top: 10px;
  right: 10px;
}
main {
  width: 100%;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mainview {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.mainview .catch {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 600px;
  height: auto;
}
.mainview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 480px) {
  .mainview .catch {
    max-width: 100%;
    padding: 40px;
    height: auto;
  }
}

section {
  position: relative;
  max-width: 920px;
  margin: 120px auto;
}
@media screen and (max-width: 480px) {
  section {
    width: 95%;
  }
}

.title-01 {
  font-size: 2.6rem;
  padding-bottom: 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .title-01 {
    font-size: 1.6rem;
  }
}
.title-01::after {
  content: "";
  display: block;
  background: #000;
  width: 60px;
  height: 5px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.title-02 {
  font-size: 2rem;
  text-align: center;
}
.title-02.white {
  color: #fff;
}

.title-03 {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  display: block;
  margin-left: 30px;
}
.title-03:before {
  content: "";
  display: block;
  background: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: -30px;
}

.title-box {
  background: #000;
  color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 20px;
  font-weight: 700;
  text-align: center;
}

.text-01 {
  font-size: 1.25rem;
  font-weight: 700;
}

.text-02 {
  font-size: 1.5rem;
  font-weight: 700;
}

.text-03 {
  font-size: 1rem;
  font-weight: 700;
}

.text-box {
  border: 3px solid #000;
  border-radius: 0 0 30px 30px;
  background: #fff;
  color: #000;
  padding: 20px;
  text-align: center;
}

.box-end {
  background: #000;
  color: #fff;
  padding-block: 120px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  .box-end {
    height: 100vh;
    padding-block: calc((100vh - 3rem) / 2);
  }
}

.box-column02 {
  display: flex;
  flex-wrap: wrap;
}
.box-column02 .child {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
.box-column02 .child:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .box-column02 .child {
    width: 100%;
    margin-right: 0;
  }
  .box-column02 .child:nth-child(n+1) {
    margin-top: 40px;
  }
}

.align-center {
  align-items: center;
}

.box-column03 {
  display: flex;
  flex-wrap: wrap;
}
.box-column03 .child {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
}
.box-column03 .child:nth-child(3n) {
  margin-right: 0;
}
.box-column03 .child:nth-child(n+4) {
  margin-top: 30px;
}
.box-column03.small .child {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
}
.box-column03.small .child:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .box-column03 .child {
    width: 100%;
    margin-right: 0;
  }
  .box-column03 .child:nth-child(n+1) {
    margin-top: 40px;
  }
  .box-column03.small {
    display: block;
  }
  .box-column03.small .child {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .sp-box-column03 {
    display: flex;
    flex-wrap: wrap;
  }
  .sp-box-column03 .sp-child {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .sp-box-column03 .sp-child:nth-child(3n) {
    margin-right: 0;
  }
  .sp-box-column03 .sp-child:nth-child(n+1) {
    margin-top: 0;
  }
}

.box-img-yazi {
  width: 30px;
  height: auto;
  margin: 30px auto;
}
.box-img-yazi img {
  width: 100%;
  height: 100%;
}

.dl-profile {
  display: flex;
  flex-wrap: wrap;
}
.dl-profile dt, .dl-profile dd {
  padding: 5px;
  margin-block: 10px;
}
.dl-profile dt {
  width: 120px;
  border: 2px solid #000;
  border-radius: 20px;
  text-align: center;
  margin-right: 10px;
}
.dl-profile dd {
  width: calc(100% - 130px);
}
@media screen and (max-width: 480px) {
  .dl-profile {
    align-items: center;
    font-size: 0.9rem;
  }
}

.hashtag {
  display: inline-block;
  margin-right: 10px;
}
.hashtag span:before {
  content: "#";
  margin-right: 3px;
}

.box-round {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.box-round img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.box-mame {
  position: relative;
  background: #000;
  padding: 30px;
  border-radius: 30px;
}
.box-mame .title {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 20px;
}
.box-mame .title span {
  width: 100px;
  height: 100px;
  padding: 30px;
  background: #000;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}
.box-mame::before {
  content: "";
}

.square {
  aspect-ratio: 1/1;
  margin-inline: auto;
}
.square img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .square {
    max-width: 100%;
    aspect-ratio: 1/1;
  }
}

.m-t20 {
  margin-top: 20px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t120 {
  margin-top: 120px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.white {
  color: #fff;
}

.opacity-07 {
  opacity: 0.7;
}

.timeline {
  list-style: none;
}

.timeline > li {
  padding-bottom: 60px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.timeline-date {
  position: relative;
  width: 5rem;
  height: 5rem;
  float: left;
  background: #000;
  color: #fff;
  padding: 1.8rem 0;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
}

.timeline-content {
  position: relative;
  width: 75%;
  float: left;
  padding: 0 0 30px 30px;
}
.timeline-content h3 {
  padding-bottom: 10px;
}
.timeline-content .text-03 {
  padding-bottom: 10px;
}
.timeline-content p + p p {
  padding-bottom: 10px;
}
.timeline-content p + p:last-child {
  padding-bottom: none;
}
.timeline-content:after {
  content: "";
  display: block;
  background: #000;
  width: 3px;
  height: 100%;
  position: absolute;
  bottom: -5rem;
  left: -2.5rem;
  z-index: 1;
}

.list-01 {
  list-style: none;
}
.list-01 li {
  border-bottom: 1px solid #000;
  padding: 5px;
}
.list-01 li span {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  padding: 0 8px;
  margin-right: 8px;
}

.list-02 {
  list-style: none;
  text-align: center;
}
.list-02 li {
  padding-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .list-02 li {
    font-size: 1rem;
  }
}

.box-strong {
  max-width: 1000px;
  height: 420px;
  background: url(img/rune14.jpg);
  background-size: cover;
  background-position: top center;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .box-strong {
    max-width: 100%;
  }
}

.box-medium {
  max-width: 800px;
  margin-inline: auto;
}

.box-small {
  border: 1px solid #000;
  padding: 20px;
  border-radius: 20px;
}

.box-img {
  width: 400px;
  max-width: 100%;
  display: inline-block;
}
.box-img img {
  width: 100%;
  height: 100%;
}

.text-small {
  font-size: 0.9rem;
}

.text-line {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 30px;
}

.button-01 {
  text-align: center;
  max-width: 240px;
  margin-inline: auto;
}
.button-01:nth-child(n+2) {
  margin-top: 20px;
}
.button-01 a {
  display: block;
  background: #000;
  color: #fff;
  padding: 16px;
  border-radius: 30px;
  text-decoration: none;
}

.card-black {
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.card-black > figure {
  display: block;
  width: 120px;
  max-width: 100%;
  height: 120px;
  margin-inline: auto;
  padding: 20px;
}
.card-black > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-black .card-title {
  font-weight: 700;
  font-size: 0.9rem;
  padding-bottom: 10px;
  height: 3rem;
}
.card-black .card-list {
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: auto;
}
.card-black .card-list li {
  position: relative;
  display: block;
  margin-left: 20px;
}
.card-black .card-list li:before {
  content: "";
  display: block;
  background: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1em;
  left: -16px;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */