@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=New+Tegomin&family=Zen+Antique+Soft&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #000;
  color: #fff;
}

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

a {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

.global_head {
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Zen Antique Soft";
  text-align: center;
  margin: 0 0 30px;
  font-size: 3rem;
  font-style: italic;
  color: #ccc;
}
@media only screen and (max-width: 767px) {
  h2 {
    margin: 0 0 20px;
    font-size: 2.3rem;
  }
}

.wrap {
  font-family: "Noto Sans JP";
  padding: 30px 0 150px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding: 20px 0 80px;
  }
}

.hero__ttl {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 900px;
  width: calc(100% - 30px);
}
@media only screen and (max-width: 767px) {
  .hero__ttl {
    width: calc(100% - 50px);
    margin: 0 auto 40px;
  }
}
.hero__lead {
  margin: 0 auto;
  max-width: 1100px;
  width: calc(100% - 40px);
  display: grid;
  gap: 80px 0;
}
@media only screen and (max-width: 767px) {
  .hero__lead {
    width: calc(100% - 30px);
    gap: 30px 0;
  }
}
.hero__lead-item:nth-of-type(1) {
  text-align: left;
}
.hero__lead-item:nth-of-type(2) {
  text-align: center;
}
.hero__lead-item:nth-of-type(3) {
  text-align: right;
}
.hero__lead-item img {
  width: auto;
  height: 72px;
}
@media only screen and (max-width: 767px) {
  .hero__lead-item img {
    height: 30px;
  }
}
.hero__img {
  width: calc(100% - 30px);
  margin: 0 auto;
  text-align: center;
  background: url(../img/bg.png) no-repeat top 20px center/1300px;
}
@media only screen and (max-width: 767px) {
  .hero__img {
    background: url(../img/bg.png) no-repeat top center/600px;
  }
}
.hero__img-item {
  transform: translateY(-10%) rotate(125deg);
}
.hero__img-item img {
  width: 180px;
  filter: drop-shadow(5px 5px 50px black);
}
@media only screen and (max-width: 767px) {
  .hero__img-item img {
    width: 80px;
  }
}

.intro {
  text-align: center;
  margin: -40px 0 40px;
  display: grid;
  gap: 10px 0;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 0 20px;
  }
}
.intro p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .intro p {
    font-size: 0.9rem;
  }
}

.note {
  border: 1px solid rgba(153, 153, 153, 0.5);
  max-width: 850px;
  margin: 0 auto 100px;
  padding: 30px 45px;
}
@media only screen and (max-width: 767px) {
  .note {
    width: 90%;
    margin: 0 auto 50px;
    padding: 20px 25px;
  }
}
.note__ttl {
  font-weight: 600;
  margin: 0 0 10px -10px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .note__ttl {
    font-size: 0.95rem;
  }
}
.note ul {
  margin: 0 0 0 15px;
  display: grid;
  gap: 10px 0;
}
@media only screen and (max-width: 767px) {
  .note ul {
    font-size: 0.9rem;
  }
}

.topics {
  max-width: 1300px;
  width: calc(100% - 30px);
  margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
  .topics {
    margin: 0 auto 50px;
  }
}
.topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}
@media only screen and (max-width: 767px) {
  .topics__list {
    gap: 20px;
  }
}
.topics__item {
  width: calc((100% - 60px) / 4);
  border: 1px solid rgba(153, 153, 153, 0.5);
  border-radius: var(--radius-card);
  transition: opacity var(--transition-base);
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__item {
    width: calc((100% - 20px) / 2);
  }
}
.topics__item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.topics__item:hover .topics__pic img {
  transform: scale(1.1);
}
.topics__item a {
  color: var(--color-white);
}
.topics__pic {
  background-color: #000;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__pic {
    height: 120px;
  }
}
.topics__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.topics__pic img.noimage {
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__text {
  padding: 15px 13px;
}
@media only screen and (max-width: 767px) {
  .topics__text {
    padding: 8px 7px 10px;
  }
}
.topics__ttl {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 73px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .topics__ttl {
    margin: 0 0 5px;
    font-size: 0.8rem;
    line-height: 1.3;
    height: 52px;
  }
}
.topics__date {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  text-align: right;
  color: #777;
}
@media only screen and (max-width: 767px) {
  .topics__date {
    font-size: 0.65rem;
  }
}

.sns__item {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(153, 153, 153, 0.5);
  backdrop-filter: blur(5px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sns__item {
    width: 90%;
    padding: 20px 20px 20px 90px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item {
    width: 550px;
    padding: 35px 35px 35px 120px;
    transition: 0.2s;
    cursor: pointer;
  }
  .sns__item:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .sns__item:hover .text::before {
    right: 55px;
  }
  .sns__item:hover .text::after {
    right: 33px;
  }
}
.sns__item::before {
  content: "\e61b";
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .sns__item::before {
    font-size: 2rem;
    left: 27px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item::before {
    font-size: 2.6rem;
    left: 40px;
  }
}
.sns__item .text {
  font-family: "Noto Sans JP";
}
@media only screen and (min-width: 768px) {
  .sns__item .text {
    text-align: left;
  }
}
.sns__item .text::before {
  content: "";
  border-top: solid 2px #ccc;
  border-right: solid 2px #ccc;
  transform: rotate(45deg);
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .sns__item .text::before {
    width: 8px;
    height: 8px;
    top: 37px;
    right: 41px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text::before {
    width: 12px;
    height: 12px;
    top: 54.5px;
    right: 62px;
    transition: 0.2s;
  }
}
.sns__item .text::after {
  content: "";
  border: 1px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .sns__item .text::after {
    width: 38px;
    height: 38px;
    right: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text::after {
    width: 50px;
    height: 50px;
    right: 40px;
    transition: 0.2s;
  }
}
.sns__item .text p {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .sns__item .text p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item .text p {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0 0 5px;
  }
}
.sns__item .text a {
  color: #ccc;
}
@media only screen and (max-width: 767px) {
  .sns__item .text a {
    font-size: 0.8rem;
    text-align: left;
  }
}
.sns__item .text a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sns__item .text a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */