@charset "utf-8";

/* 全体のスタイル */
body,
html {
  margin: 0;
  padding: 0;
  /* font-family: Arial, sans-serif; */
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #000;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background-color: #FFFDF4;
  color: #000;
  overflow-x: hidden;
}

header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


main {
  background-image: url(../images/back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
}

main p.set {
  padding: 0 20px;
}

.msg {
  width: 95%;
  margin: 0 auto;
}
.adults {
  position: relative;
}

.adults .adults_msg {
  width:80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 1;
  color: #fff;
}

.adults .adults_msg .img {
  width: 15%;
  height: auto;
  min-width: 33px;
  min-height: 33px;
  margin-bottom: auto;
}

.adults .adults_msg .text {
  width: fit-content;
  min-width: 372px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}

.adults .adults_msg .text a{
  color: #fff;
  text-decoration: none;
  display: inline;
  transition: color 0.3s ease;
}

.adults picture{
  width: 100%;
  height: auto;
  z-index: 2;
}






@media screen and (max-width:550px) {
  .adults .adults_msg .text {
    font-size: 3.0vw;
  }
}