* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.pc_only {
  display: none;
}

.el_secTtl {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #0cc1dc;
  padding-top: 60px;
}

.el_secTtl span {
  font-size: 1.3em;
}

.content {
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}

/* contents */

.ly_header {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
}

.bl_header_logo {
  display: flex;
  width: 150px;
  margin-left: 20px;
}

.bl_header_logo img {
  width: 100%;
}

.bl_header_nav {
  gap: 20px;
}

.bl_header_nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #0cc1dc;
  font-weight: 700;
}

.el_header_nav_btn {
  color: #2e2f2e;
  width: 242px;
  height: 72px;
  background: #e1fe0e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.el_header_nav_btn a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.el_header_nav_btn img {
  width: 24px;
  height: 24px;
}

/* メイン */

.bl_main_fv,
.bl_main_fv img {
  width: 100%;
}

.bl_main_fv {
  position: relative;
}

/* about */

.bl_about_cont {
  margin-top: 40px;
}

.bl_about_ttl {
  border: 1px solid #0cc1dc;
  font-weight: 500;
  color: #0cc1dc;
  display: flex;
  margin: 0 auto;
  width: max-content;
  padding: 2px 40px;
}

.bl_about_sub {
  margin-top: 30px;
}

.bl_about_list {
  margin-top: 40px;
}

.bl_about_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.bl_about_list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  width: 150px;
  font-weight: 600;
}

/* intro */

.bl_intro p {
  margin-top: 40px;
}

.bl_intro img {
  margin-top: 40px;
  width: 100%;
}

/* feature */
.bl_feature {
  background: #e1fe0e;
  margin-top: 60px;
  padding-bottom: 60px;
}

.bl_feature_list {
  margin-top: 40px;
}

.bl_feature_list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.bl_feature_list li {
  background: white;
}

.bl_feature_list li img {
  width: 100%;
}

.bl_feature_list_txt {
  padding: 36px;
}

.bl_feature_list_txt h3 {
  text-align: center;
}

.bl_feature_list_txt p {
  margin-top: 36px;
}

/* shop */

.bl_shop_sub {
  margin-top: 40px;
}

.bl_shop_list {
  margin-top: 40px;
}

.bl_shop_list img {
  width: 100%;
}

.bl_shop_list ul li {
  background: #e1fe0e;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_shop_list ul li:not(:first-child) {
  margin-top: 20px;
}

.bl_shop_list_txt {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.bl_shop_list_txt_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_shop_list_txt p a {
  text-decoration: underline;
}

.el_shop_btn {
  border: 1px solid #2e2f2e;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 48px;
  margin: 0 auto;
}

.el_shop_btn.btn_blue {
  background: #0cc1dc;
  border-color: #0cc1dc;
  color: white;
}

.el_shop_btn.btn_orange {
  background: #f07000;
  border-color: #f07000;
  color: white;
}

.el_sticky_btn.btn_orange {
  background: #f07000;
  border-color: #f07000;
  color: white;
}

/* cta */

.bl_cta {
  background: #000;
  margin-top: 60px;
  padding: 60px 20px;
  position: relative;
}

.el_ctaTtl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
}

.el_cta_btn {
  background: #e1fe0e;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 48px;
  margin: 20px auto 0;
  border-radius: 999px;
}

.el_cta_bg_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  max-width: 315px;
}

.el_cta_bg_right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15%;
  max-width: 316px;
}

/* faq */

.bl_faq {
  margin-top: 40px;
}

.bl_faq details {
  list-style: none;
  border-bottom: 1px solid #e4e4e4;
}

.bl_faq details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 20px 0;
}

summary::-webkit-details-marker {
  display: none;
}

.bl_faq details summary h3 {
  font-size: 16px;
}

.bl_faq details summary h3 span {
  color: #0cc1dc;
}

.bl_faq details summary img {
  transition: all 0.3s ease-in-out;
}
.bl_faq details[open] summary img {
  transform: rotate(45deg);
}

.bl_faq_txt {
  padding-bottom: 20px;
}

/* footer */

.bl_footer {
  margin-top: 60px;
  padding: 0 20px 100px;
  max-width: 1240px;
}

.bl_footer img {
  width: 200px;
}

.bl_footer_inner {
  margin-top: 40px;
}

.bl_footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_footer_nav_policy {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl_footer_nav_policy a {
  display: flex;
  text-decoration: underline;
  font-size: 12px;
}

.bl_footer_nav h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.bl_footer_nav {
  margin-top: 40px;
}

/* sticky */
.bl_sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: white;
}

.el_sticky_btn {
  background: #e1fe0e;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 48px;
  border-radius: 999px;
  margin: 0 auto;
}

/* ハンバーガーメニュー */
.el_menu_btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 1001;
}

.sp_header_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.sp_header_nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.sp_header_nav ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.bl_sp_shop_list_ttl {
  border: 1px solid #2e2f2e;
  font-weight: 500;
  color: #2e2f2e;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: max-content;
  padding: 20px;
}

.bl_sp_shop_list_ttl h3 {
  margin-bottom: 20px;
}

.bl_sp_shop_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .el_menu_btn {
    display: flex;
  }
  .pc_only {
    display: none !important;
  }
  .sp_header_nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .sp_header_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }

  .bl_header_logo {
    width: 260px;
  }

  .bl_header_nav ul {
    gap: 40px;
  }

  .el_secTtl {
    padding-top: 80px;
    font-size: 40px;
  }
  .bl_about_sub,
  .bl_intro_sub,
  .bl_shop_sub {
    text-align: center;
  }

  .bl_about_list li {
    width: 200px;
  }

  .bl_intro {
    margin-top: 60px;
  }

  .bl_feature_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bl_feature_list li {
    width: 100%;
  }

  .bl_shop_list ul li {
    flex-direction: row;
  }

  .bl_shop_list ul li img {
    width: 50%;
  }

  .bl_shop_list_txt {
    width: 50%;
  }

  .bl_cta {
    padding: 80px 0;
  }

  .el_cta_btn {
    width: 400px;
    height: 64px;
  }

  .bl_footer {
    max-width: 1240px;
    margin-inline: auto;
    padding-top: 160px;
    display: flex;
    justify-content: space-between;
  }

  .bl_footer_inner {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    gap: 60px;
  }

  .bl_footer_nav {
    margin-top: 0;
  }

  .bl_sticky {
    border-top: 1px solid #e4e4e4;
  }

  .bl_sticky .el_sticky_btn {
    width: 400px;
    height: 64px;
    font-size: 20px;
    font-weight: 600;
  }
}

@media screen and (min-width: 960px) {
  .bl_feature_list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
