@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  line-height: 1.8;
  font-family: "M PLUS 1p", sans-serif;
  background: url(img/bg.webp);
  color: #f1f1f1;
}

img {
  vertical-align: middle;
}

h1 {
  font-size: 2em;
  margin-bottom: 50px;
}

h2 {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 50px 0;
  line-height: 1;
  font-size: 2em;
  color: #c0225b;
  span {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(45px, 5vw, 80px);
    color: transparent;
    -webkit-text-stroke: 1px #f1f1f1;
  }
}

h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #c0225b;
}

.center {
  text-align: center;
}

.pink {
  color: #c0225b;
  font-weight: bold;
}

a {
  color: #c0225b;
}

a:hover {
  opacity: .5;
}

ul {
  margin-left: 30px;
}

section {
  padding: 100px 0;
}

.orange {
  background: url(img/color.png);
  background-size: cover;
  background-position: center;
  h2 {
    color: #f1f1f1;
    span {
      color: transparent;
    }
  }
}

.bg {
  color: #fff;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.mb20 {
  margin-bottom: 20px;
}

#top img {
  width: 100%;
  height: auto;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 20px 10px;
  backdrop-filter: blur(20px);
  background: rgba(17, 17, 17, .9);
  width: 100%;
  z-index: 10;
  a {
    color: #f1f1f1;
    text-decoration: none;
  }
  .title {
    font-weight: bold;
    font-size: 1.5em;
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .header-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
  }
}

.buy {
  line-height: 1;
  border: 2px solid #c0225b;
  color: #c0225b;
  padding: 6px 10px 8px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  background: repeating-linear-gradient(135deg, #1d1d1d, #1d1d1d 10px, #111 10px, #111 20px);
}

.width {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.price {
  background: url(img/color.png);
  background-size: cover;
  margin-top: 100px;
  text-align: center;
  color: #fff;
  padding: 30px 10px;
  gap: 10px;
  position: relative;
  span {
    display: inline-block;
    font-size: 1.3em;
  }
  h3 {
    color: #fff;
    margin: 20px 0 0;
  }
  img {
    position: absolute;
    top: -10px;
    transform: translate(-50%, -50%);
  }
}

.entry {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin: 50px 0;
  padding: 20px;
  text-decoration: none;
  border: 3px solid #c0225b;
  font-size: 1.5em;
  line-height: 1;
  text-align: center;
  background: repeating-linear-gradient(135deg, #1d1d1d, #1d1d1d 20px, #111 20px, #111 40px);
  span {
    display: block;
    font-size: 2em;
    margin-bottom: 10px;
  }
}

.background-area {
  background-image: url('img/back.png'); /* 画像パスを適宜変更 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  width: 100%;
  height: 50svh; 
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 5vw, 70px);
  color: #f1f1f1;
  text-align: center;
  text-shadow: 0 0 25px rgba(17, 17, 17, .5);
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-box {
  width: 48%;
  margin-bottom: 30px;
  padding: 30px;
  background: #f1f1f1;
  color: #111;
  border: 5px solid #f5f5f5;

  h4 {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    color: #c0225b;
    margin-bottom: 20px;
    font-size: 1.8em;
  }
}

.column-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;

  .column-3-box {
    width: 32%;
    text-align: center;
    background: #f1f1f1;
    color: #111;
    margin: 20px 0;
    span {
      display: block;
      padding: 10px;
    }
    img {
      width: 100%;
    }
  }
}

.photo-area {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}

.photo-area img {
  height: 100%;
  width: 100%;
  display: inline-block;
  animation: scroll-left 25s linear infinite;
}

.photo-area img:nth-child(2) {
  /* 2枚目は1枚目の右に並ぶように */
  margin-left: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-template-areas:
    "box1 box1 box2 box3"
    "box1 box1 box4 box5"
    "box6 box7 box10 box10"
    "box8 box9 box10 box10"
    "box105 box105 box105 box105";
  width: 100%;
  max-width: 800px;
  margin: auto;
  gap: 1px;
}

.box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
}

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

.box .number {
  position: absolute;
  bottom: 0;
  left: 8px;
  font-size: clamp(25px, 4vw, 50px);
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 1px black;
  text-shadow: 2px 2px 0 black;
}

.box1 { grid-area: box1; }
.box2 { grid-area: box2; }
.box3 { grid-area: box3; }
.box4 { grid-area: box4; }
.box5 { grid-area: box5; }
.box6 { grid-area: box6; }
.box7 { grid-area: box7; }
.box8 { grid-area: box8; }
.box9 { grid-area: box9; }
.box10 { grid-area: box10; }

.box105 {
  grid-area: box105;
  height: 250px;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
}

.box105 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 480px) {
  .container {
    max-width: 100vw;
  }
}

.icon {
  margin-top: 10px;
  img {
    mix-blend-mode: multiply;
  }
}

.feature {
  text-align: center;
  margin-top: 30px;
}

table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  td, th {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
  }
}

.mini {
  font-size: .8em;
  margin-top: 10px;
  text-align: right;
  a {
    color: #c0225b;
  }
}

footer {
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background: url(img/color.png);
  background-size: cover;
}

@media screen and (max-width: 750px) {
  body {
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
    font-size: 14px;
  }
  .flex-box {
    width: 100%;
  }
  .column-3 {
    .column-3-box {
      width: 100%;
    }
  }
}