/* リセットCSS */
/* Minimal Reset & Base Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: Arial, system-ui, sans-serif;
  line-height: 21px;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style-position: inside;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  transition: opacity 0.5s;
}

a.button {
  display: inline-block;
  border: #000 solid 1px;
  padding: 14px 36px;
  font-size: 12px;
}

h2 {
  line-height: 28px;
  font-size: 24px;
  font-weight: bold;
}

p {
  line-height: 21px;
  font-size: 14px;
}

/* mv */
.mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 80px;
  object-fit: cover;
}

.mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  /* width: 120px;
  height: auto; */
}

.mv-logo img {
  width: 120px;
  height: auto;
}

/* container */
.container {
  max-width: 1078px;
  padding-left: 19px;
  padding-right: 19px;
  margin: 0 auto;
}

/* about */
.about-section {
  text-align: center;
  margin-bottom: 80px;
}

.about-section p {
  margin: 20px 0 40px;
}

.txt-box {
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.img-box {
  display: flex;
  gap: 20px;
  text-align: center;
}

.img-wrapper {
  position: relative;
  width: 100%;
  max-width: 510px;
  overflow: hidden;
  margin: 0 auto;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  width: 290px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  color: #fff;
  text-align: center;
}

@media (max-width:896px) {
  .img-box {
    flex-direction: column;
  }

}

/* fashion */
.fashion {
  background-image: url(./images/fashion.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 520px;
  width: 100vw;
  padding-top: 60px;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

.fashion p {
  margin: 20px auto 30px;
}

@media (max-width:896px) {
  .fashion{
    width: 100%;
  }
  
}

/* book */
.book {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.book-item {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 120px;
}

.book-item img {
  display: flex;
  max-width: 500px;
}

.book-item.reverse {
  flex-direction: row-reverse;
}

.book-item p {
  max-width: 500px;
}

.book-item .txt-box p {
  margin: 40px 0 30px;
}

.book .txt-box a {
  display: inline-block;
  margin-top: 60px;
}

@media screen and (max-width:896px) {
  .book{
    gap: 60px;
  }

  .book-item,
  .book-item.reverse {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .book-item img {
    width: 100%;
    max-width: 337px;
  }

  .book-item.reverse .txt-box {
    order: -1;
  }

  .book-item.reverse .book-img {
    order: 1;
  }

}

/* footer */
.footer-container {
  background-color: #333333;
  color: #fff;
}

.footer-cont img {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 19px;
}

.footer-cont {
  font-size: 12px;
  width: 150px;
  justify-content: center;
}

.footer-cont h3 {
  text-wrap: nowrap;
  font-size: 16px;
  margin-bottom: 10px;
}

.copy {
  padding: 30px;
  text-align: center;
  font-size: 12px;
}

@media (max-width:896px) {
  .footer-box{
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 19px 60px;
  }

   .footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer-logo img {
    width: 120px; /* 必要ならサイズ調整 */
    height: auto;
  }

  .footer-cont{
    margin-bottom: 30px;
  }
  
}