body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
}

.drawer {
  background-image: url("../images/drawer_bg.webp");
  background-color: #f7f7f7;
  height: 100vh;
  padding: 0;
  max-width: 0;
  width: 90vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: -390px;
  transition: .4s;
  z-index: 501;
  scrollbar-color: #929292 #fff;
  scrollbar-width: thin;
}

.drawer::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}

.drawer::-webkit-scrollbar-thumb {
  background: #929292;
  width: 6px;
  border-radius: 5px;
}

.drawer-btn label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.drawer-btn .icon {
  background: url("../images/00_02_header_bg_drawermenu.webp") center/cover no-repeat;
  cursor: pointer;
  height: calc(80 * (100vw / 750));
  width: calc(80 * (100vw / 750));
  position: relative;
  transition: .4s;
}

@media screen and (min-width: 750px) {
  .drawer-btn .icon {
    height: 80px;
    width: 80px;
  }
}

.drawer-btn .icon::before, .drawer-btn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: calc(4 * (100vw / 750));
  width: calc(55 * (100vw / 750));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 750px) {
  .drawer-btn .icon::before, .drawer-btn .icon::after {
    height: 4px;
    width: 55px;
  }
}


.drawer-btn .icon::before {
  top: 14px;
  transition: .4s;
}

.drawer-btn .icon::after {
  bottom: 14px;
  transition: .4s;
}

.drawer-btn .icon:hover {
  background-color: #6889a9;
}

.drawer-btn .icon .border {
  color: #fff;
  font-size: calc(11 * (100vw / 520));
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  letter-spacing: -.1rem;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 750));
  }
}

@media screen and (min-width: 750px) {
  .drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 980));
  }
}

.drawer-list {
  list-style: none;
  padding: 0;
  margin: 25px auto 0;
  width: 85%
}

.drawer-list li {
  margin: 0 0 15px;
}

.drawer-list li a {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 3px 0px #ccc;
  display: block;
  font-size: calc(20 * (100vw / 420));
  font-weight: bold;
  color: #000;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 580px) {
  .drawer-list li a {
    font-size: 22px;
  }
}

@media screen and (min-width: 750px) {
  .drawer-list li a {
    font-size: 22px;
  }
}

#drawer:checked + .drawer {
  padding: 5px 10px 15px;
  max-width: 390px;
  right: 0;
}

#drawer:checked + .drawer .drawer-btn .icon::before {
  top: -5px;
  transform: rotate(45deg);
}

#drawer:checked + .drawer .drawer-btn .icon::after {
  bottom: 5px;
  transform: rotate(-45deg);
}

#drawer:checked ~ .drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
}

.header {
  /*  position: fixed;*/
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100vw;
}

.header--wrap {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 750px;
}

.header-logo {
  max-width: calc(188 *(100vw / 750));
  padding: calc(22 *(100vw / 750)) 4vw;
}

@media screen and (min-width: 750px) {
  .header-logo {
    max-width: 188px;
    padding: 22px ;
  }
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header-drawerbtn {
  position: relative;
}

.header-drawerbtn label {
  background: url("../images/00_02_header_bg_drawermenu.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: calc(15 *(100vw / 750));
  top: calc(15 *(100vw / 750));
}

@media screen and (min-width: 750px) {
  .header-drawerbtn label {
    right: 15px;
    top: 15px;
  }
}

.header-drawerbtn .icon {
  border-radius: 50px;
  height: calc(80 *(100vw / 750));
  width: calc(80 *(100vw / 750));
  position: relative;
  transition: .4s;
}

@media screen and (min-width: 750px) {
  .header-drawerbtn .icon {
    height: 80px;
    width: 80px;
  }
}

.header-drawerbtn .icon::before,
.header-drawerbtn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: calc(4 *(100vw / 750));
  width: calc(55 *(100vw / 750));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 750px) {
  .header-drawerbtn .icon::before,
  .header-drawerbtn .icon::after {
    height: 4px;
    width: 55px;
  }
}

.header-drawerbtn .icon::before {
  top: calc(35 *(100vw / 750));
}

@media screen and (min-width: 750px) {
  .header-drawerbtn .icon::before {
    top: 35px;
  }
}

.header-drawerbtn .icon::after {
  bottom: calc(35 *(100vw / 750));
}

@media screen and (min-width: 750px) {
  .header-drawerbtn .icon::after {
    bottom: 35px;
  }
}

.header-drawerbtn .icon .border {
  background-color: #fff;
  height: calc(4 *(100vw / 750));
  width: calc(55 *(100vw / 750));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 750px) {
  .header-drawerbtn .icon .border {
    height: 4px;
    width: 55px;
  }
}

.header-drawerbtn .text {
  color: #fff;
  font-size: calc(13 * (100vw / 750));
  letter-spacing: .1rem;
  margin: 2px 0 0;
}

.lp-section {
}

.lp-container {
  max-width: 750px;
  margin: 0 auto;
}

.lp-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Swiper用カルーセル */
.lp-carousel {
  max-width: 750px;
  margin: 0 auto;
  background: url("../images/01_06_bg_comment.webp") center/cover no-repeat;
  overflow: hidden;
}

.swiper {
  width: 100%;
}

.swiper-slide {
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: clamp(33px, 6vw, 66px);
  height: clamp(33px, 6vw, 66px);
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-next {
  background-image: url("../images/arrow_next.webp");
  right: 10px;
}

.swiper-button-prev {
  background-image: url("../images/arrow_prev.webp");
  left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.lp-cta {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.lp-cta-inner {
  position: relative;
}

.lp-cta .cta-bg {
  width: 100%;
  height: auto;
  display: block;
}

.cta-button {
  position: absolute;
  top: 21%;
  width: 100%;
}

.cta-button img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-sns {
  width: 88%;
  position: absolute;
  top: 71%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
}

.cta-sns img {
  max-width: 201px;
  width: 100%;
  height: auto;
  display: block;
}


.footer {
  aspect-ratio: 750 / 990;
  background: url('../images/11_01_footer.webp') no-repeat center top;
  background-size: cover;
  color: white;
  margin: auto;
  max-width: 750px;
  text-align: center;
  font-family: sans-serif;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
}

.logo {
  margin: auto 0 0;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(50 * (100vw / 750)) 30px;
  list-style: none;
  margin: calc(120 * (100vw / 750)) 0 calc(20 * (100vw / 750));
  width: 75%;
}

@media screen and (min-width:750px) {
  .footer-nav {
    gap: 50px 30px;
    margin: 120px 0 20px;
  }
}

.footer-nav li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: calc(28 * (100vw / 750));
}

@media screen and (min-width:750px) {
  .footer-nav li a {
    font-size: 28px;
  }
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.copyright {
  border-top: 1px solid #fff;
  font-size: calc(20 * (100vw / 750));
  margin: auto 0 25px;
  padding: 15px 0 0;
  width: 100%;
}

@media screen and (min-width:750px) {
  .copyright {
    font-size: 20px;
  }
}

.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}

.cta-fixed img {
  height: 90px; /* 高さ固定 */
  width: auto;
  cursor: pointer;
}

/* スマホ専用のサイズ調整 */
@media (max-width: 768px) {
  .cta-fixed img {
    height: 55px;  /* ←ここがポイント！ */
  }
}