@charset "utf-8";

/* CSS Document */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #191919;
  width: 100%;
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 10px;
}

.box {
  margin-bottom: 3rem;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  margin-bottom: 1rem;
}

header .logo {
  max-width: 150px;
}

.mv {
  position: relative;
}

.mv .mv-txt {
  position: absolute;
  background-color: #7a172b;
  color: #ededed;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 75%;
  width: 40%;
}

.mv .mv-txt p {
  font-size: min(2.3vw, 24px);
  position: absolute;
  top: 16%;
  padding-right: 40px;
  padding-left: 40px;
  line-height: 1.8;
}

.cta {
  text-align: center;
}

.cta a {
  text-decoration: none;
  font-size: 1.4rem;
  text-align: center;
  background-color: #7a172b;
  font-weight: 700;
  color: #ededed;
  padding: 0.6rem 1.6rem 0.8rem;
}

.cta a::after {
  content: "▶";
  margin-left: 0.5em;
  font-size: 0.9em;
  color: #ededed;
}

.cta a:hover {
  opacity: 0.8;
}

.jisseki h2 {
  position: relative;
  padding: 0 65px;
  text-align: center;
}

.jisseki h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #191919;
}

.jisseki h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

.jisseki li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.under-img {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding-left: 0;
  gap: 5px;
}

/* スマホ */
@media only screen and (max-width: 768px) {
  .mv .mv-img p:nth-child(2) {
    display: none;
  }

  .mv .mv-img img {
    width: 100%;
  }

  .mv .mv-txt {
    height: 80%;
    width: 80%;
  }

  .mv .mv-txt p {
    font-size: min(5vw, 24px);
    top: 45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    line-height: 1.4;
    width: 80%;
  }

  .under-img {
    flex-wrap: wrap;
  }

  .under-img li {
    width: 48%;
  }

  .under-img li img {
    width: 100%;
  }
}

/* PC */
@media only screen and (min-width: 769px) {
  .mv .mv-img {
    display: flex;
  }

  .jisseki ul {
    list-style: none;
    text-align: center;
    padding-left: 0;
  }

  .jisseki li {
    font-size: 1.2rem;
  }
}