* {
  margin: 0;
  padding: 0;
}

a {
  display: block;
}
a:hover {
  opacity: 0.8;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}

main {
  background-color: #ffeade;
}

article {
  max-width: 960px;
  margin: auto;
}

.sec01,
.sec02,
.sec03,
.sec04,
.sec05,
.sec06,
.sec07 {
  position: relative;
}

.sec07 {
  background-color: #fff;
  padding-bottom: 10%;
}

.btn_detail {
  text-align: center;
  padding: 0 20px;
}
.btn_detail img {
  margin: 0 auto;
}

.sec01__title01 {
  position: absolute;
  width: 65%;
  top: 1%;
  left: 0%;
}

.sec01__title02 {
  position: absolute;
  width: 46%;
  top: 54%;
  left: 47%;
}

.sec02__title01 {
  position: absolute;
  width: 32%;
  top: 6.5%;
  left: 34%;
}

.sec02__img02 {
  position: absolute;
  margin-bottom: 120px;
}

.sec02__btn01 {
  position: absolute;
  width: 50%;
  top: 96.6%;
  left: 25%;
}

.sec03__title01 {
  position: absolute;
  width: 77%;
  top: 3%;
  left: 11%;
}

.sec04__title01 {
  position: absolute;
  width: 77%;
  top: 5%;
  left: 11%;
}

.sec05__title01 {
  position: absolute;
  width: 38%;
  top: 8.7%;
  left: 30%;
}

.sec05__btn01 {
  position: absolute;
  width: 38%;
  top: 26.5%;
  left: 31%;
}

.sec05__txt01 {
  position: absolute;
  width: 55%;
  top: 92%;
  left: 24%;
}

.sec06__title01 {
  position: absolute;
  width: 54%;
  top: 1.5%;
  left: 24%;
}

.sec06__link01 {
  position: absolute;
  width: 62%;
  top: 86.5%;
  left: 22.3%;
}
.sec06__link01:hover {
  opacity: 0.6;
}

.sec07__title {
  margin-bottom: 10%;
}

.sec07__block {
  margin-top: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec07__block a:nth-child(1) {
  width: 11%;
}
.sec07__block a:nth-child(2) {
  width: 10%;
}
.sec07__block a:nth-child(3) {
  width: 23%;
}
.sec07__block a:not(:last-child) {
  margin-right: 3%;
}

.popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup__bg {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.popup__container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .popup__container {
    width: 94%;
  }
}

.popup__box {
  width: 100%;
  max-width: 500px;
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.popup__description {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .popup__description {
    font-size: 18px;
  }
}

.popup__name {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .popup__name {
    font-size: 16px;
  }
}

.popup__box input {
  width: 100%;
  max-width: 300px;
  display: block;
  padding: 5px;
  font-size: 16px;
  margin: 0 auto 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .popup__box input {
    font-size: 14px;
  }
}

.popup__btn-wrap {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.popup__btn-wrap a {
  margin: 30px 5px 0;
}
.popup__btn-wrap a.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.popup__note {
  font-size: 12px;
  color: #f00;
  margin-top: 30px;
}

.popup__flex {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.popup__flex label {
  margin: 0 20px;
  cursor: pointer;
}
.popup__flex input {
  padding: 10px;
  display: block;
  margin: 0 auto;
  width: 25px;
  height: 25px;
}

.fade-in {
  transition: 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}
.fade-in.active {
  opacity: 1;
  transform: none;
}

.delay {
  transition-delay: 0.3s;
}/*# sourceMappingURL=style.css.map */