@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://use.fontawesome.com/releases/v6.4.2/css/all.css);
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

a {
  text-decoration: none;
}

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

.global_head {
  margin: 0;
}

.wrap {
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  position: relative;
}
.wrap::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.png) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.content {
  font-family: "Noto Sans JP";
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .content {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) {
  .content {
    max-width: 1500px;
    width: calc(100% - 40px);
    padding: 180px 0;
  }
}
.content::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .section {
    max-width: 1100px;
    width: calc(100% - 40px);
  }
}

.hero {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .hero {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    margin-bottom: 80px;
  }
}
.hero h1 {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    max-width: 1000px;
  }
}

h2 {
  line-height: 1;
}

.intro {
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .intro {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .intro {
    margin-bottom: 120px;
  }
}
.intro p {
  font-weight: 600;
  -webkit-text-stroke: 5.5px #231815;
  text-stroke: 5.5px #231815;
  paint-order: stroke;
  text-shadow: 6px 6px 0 #000;
}
@media only screen and (max-width: 767px) {
  .intro p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}
@media only screen and (min-width: 768px) {
  .intro p {
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
    line-height: 2.1;
    margin: 0 0 30px;
  }
}
.intro p:last-child {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .topics {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .topics {
    margin-bottom: 120px;
  }
}
.topics h2 {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .topics h2 {
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .topics h2 {
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .topics h2 img {
    width: 180px;
  }
}
@media only screen and (min-width: 768px) {
  .topics h2 img {
    width: 280px;
  }
}
.topics__list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .topics__list {
    flex-direction: column;
    gap: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .topics__list {
    gap: 20px;
  }
}
.topics__item {
  position: relative;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .topics__item {
    width: calc(50% - 20px);
  }
  .topics__item:hover .topics__txt {
    background-color: #0081cc;
  }
}
.topics__img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
@media only screen and (max-width: 767px) {
  .topics__img {
    width: 150px;
  }
}
@media only screen and (min-width: 768px) {
  .topics__img {
    width: 220px;
  }
}
.topics__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__txt {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .topics__txt {
    padding: 15px 18px;
    width: calc(100% - 150px);
  }
}
@media only screen and (min-width: 768px) {
  .topics__txt {
    width: calc(100% - 220px);
    padding: 22px;
    transition: 0.3s;
  }
}
.topics__ttl {
  margin: 0;
  font-weight: 600;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.05rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .topics__ttl {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 62px;
  }
}
@media only screen and (min-width: 768px) {
  .topics__ttl {
    height: 75px;
    margin-bottom: 30px;
    font-size: 1.05rem;
  }
}
.topics__ttl a {
  color: #fff;
}
.topics__ttl a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.topics__date {
  margin: 0;
  text-align: right;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .topics__date {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .topics__date {
    font-size: 0.95rem;
  }
}
.topics__soon {
  text-align: center;
  font-weight: 600;
  -webkit-text-stroke: 5.5px #231815;
  text-stroke: 5.5px #231815;
  paint-order: stroke;
  text-shadow: 6px 6px 0 #000;
}
@media only screen and (max-width: 767px) {
  .topics__soon {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    margin: 30px 0 100px;
  }
}
@media only screen and (min-width: 768px) {
  .topics__soon {
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
    margin: 50px 0 150px;
  }
}

@media only screen and (max-width: 767px) {
  .sns {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .sns {
    margin-bottom: 120px;
  }
}
.sns__lead {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.15rem;
  -webkit-text-stroke: 5.5px #231815;
  text-stroke: 5.5px #231815;
  paint-order: stroke;
  text-shadow: 6px 6px 0 #000;
}
@media only screen and (max-width: 767px) {
  .sns__lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__lead {
    font-size: 1.9rem;
    margin-bottom: 50px;
  }
}
.sns__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .sns__content {
    gap: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sns__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}
.sns__item {
  background-color: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 768px) {
  .sns__item {
    transition: 0.3s;
  }
  .sns__item:hover {
    background-color: #0081cc;
  }
}
.sns__item a {
  color: #fff;
}
.sns a {
  display: flex;
  gap: 0 20px;
}
@media only screen and (max-width: 767px) {
  .sns a {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sns a {
    padding: 20px 40px;
  }
}
.sns__icon {
  border-radius: 50%;
  background-color: #000;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sns__icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__icon {
    width: 70px;
    height: 70px;
  }
}
.sns__icon::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .sns__icon::before {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .sns__icon::before {
    font-size: 2rem;
  }
}
.sns__icon.icon-x::before {
  content: "\e61b";
}
.sns__icon.icon-insta::before {
  content: "\f16d";
}
.sns__name {
  margin: 0 0 3px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .sns__name {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .sns__name {
    font-size: 1.5rem;
  }
}
.sns__account {
  margin: 0;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .sns__account {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .sns__account {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 767px) {
  .sale {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    margin-bottom: 120px;
  }
}
.sale__content {
  background-color: rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 767px) {
  .sale__content {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__content {
    padding: 50px 50px;
  }
}
.sale h2 {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 2px solid #666;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .sale h2 {
    font-size: 1.3rem;
  }
}
.sale p {
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .sale p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 768px) {
  .sale p {
    font-size: 1.05rem;
    line-height: 2;
  }
}
.sale ul {
  margin: 0;
  display: grid;
  gap: 5px 0;
  border: 1px solid #666;
}
@media only screen and (max-width: 767px) {
  .sale ul {
    padding: 20px 20px 20px 35px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
@media only screen and (min-width: 768px) {
  .sale ul {
    padding: 20px 20px 20px 40px;
    line-height: 1.7;
  }
}

.bottom p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1rem;
  -webkit-text-stroke: 5.5px #231815;
  text-stroke: 5.5px #231815;
  paint-order: stroke;
  text-shadow: 6px 6px 0 #000;
}
@media only screen and (max-width: 767px) {
  .bottom p {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .bottom p {
    font-size: 1.6rem;
  }
}

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

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */