main {
  max-width: 50%;
  padding: 2rem 0;
  margin: 0 auto;
}

h1 {
  width: 30%;
  background: var(--color-blue);
  color: white;
  font-size: 20px !important;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0 auto !important;
}

.logo {
  width: 70%;
  margin: 10px auto;
  transition: 0.3s;
}

.logo:hover {
  opacity: 0.5;
}

.slider {
  background: var(--color-blue);
  border-radius: 20px;
  padding: 40px;
  padding-bottom: 60px;
  margin: 50px auto !important;
  position: relative;
}

.slick-track {
  display: flex;
  align-items: center;
}

.item {
  display: flex !important;
  flex-direction: column;
}

.item-back {
  width: 70%;
  height: 320px;
  background: rgb(255 255 255 / 80%);
  border-radius: 20px;
  flex-direction: column;
  padding: 20px;
}

.item:first-child .item-back, .item:last-child .item-back {
  gap: 1rem;
}

.item .img {
  height: 230px;
}

.item .img img {
  width: auto;
  height: 100%;
}

.item p {
  color: #333;
  font-size: 18px;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  text-align: center;
}

.slick-arrow {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  background: white;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.3s;
}

.slick-arrow:hover,
.slick-arrow.slick-disabled {
  background: white;
  opacity: 0.5;
}

.slick-arrow:focus {
  background: white !important;
}

.slick-arrow.slick-disabled {
  pointer-events: none;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-arrow::before {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  color: var(--color-blue);
  opacity: 1;
}

.slick-next::before {
  content: '\f105';
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: inherit;
}

.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  color: white !important;
  font-size: 15px;
  opacity: 0.5 !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
}

.enter-form {
  flex-direction: column;
  gap: 2rem;
}

.enter-form p {
  text-align: center;
}

form {
  width: 70%;
  flex-direction: column;
  gap: 1rem;
}

form input {
  width: 100%;
}

form button {
  width: 300px;
  background: var(--color-blue);
  color: white;
  font-size: 18px;
  border-radius: 999px;
  padding: 15px;
}

.enter-form a {
  color: var(--color-blue);
  font-weight: bold;
}

.enter-form a:hover {
  color: var(--color-beige);
}





@media screen and (max-width: 1500px) {
  main {
    max-width: 70%;
  }

  .logo {
    width: 65%;
  }
}





@media screen and (max-width: 1200px) {
  main {
    max-width: none;
  }

  .logo {
    width: 55%;
  }

  .slider {
    border-radius: 0;
  }
}





@media screen and (max-width: 1024px) {
  .logo {
    width: 65%;
  }

  .item .img {
    height: 200px;
  }
}





@media screen and (max-width: 767px) {
  h1 {
    width: 50%;
    font-size: 18px!important;
  }

  .logo {
    width: 90%;
  }

  .slider {
    margin: 30px auto !important;
  }

  .item-back {
    width: 90%;
    height: 230px;
  }

  .item .img {
    height: 130px;
  }

  .item p {
    font-size: 16px;
  }

  .slick-arrow {
    width: 40px;
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }

  .enter-form {
    gap: 1.5rem;
  }

  .enter-form p {
    font-size: 14px;
  }

  form {
    width: 90%;
  }

  form button {
    width: 100%;
    font-size: 16px;
  }
}





@media screen and (max-width: 376px) {
  .item .img {
    height: 110px;
  }
}