@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600..900&display=swap");
/*テーマカラー設定*/
:root {
  --lp-main-color: #23b8be;
  --lp-accent-color: #028073;
  --lp-main-bg-color: #d2eaea;
  --lp-border-color: #ccc;
}

/* ================================================================
  大枠・共通パーツ
================================================================= */
.p-lp-wrapper {
  background-color: var(--lp-main-bg-color);
}

.p-lp-hero {
  margin-bottom: 0;
  background-color: var(--lp-main-color);
}
.p-lp-hero .l-inner {
  max-width: 100%;
  padding: 0;
}
.p-lp-hero img {
  width: 100%;
  margin-inline: auto;
}

/* セクション背景Wrapper */
.p-lp-bg-wrapper {
  padding-block: 70px 1px;
}
@media (width < 768px) {
  .p-lp-bg-wrapper {
    padding-block: 50px 1px;
  }
}

/* セクション背景色設定 */
.p-lp-bg-wrapper--bg01 {
  background: #FFF2CC;
}

.p-lp-bg-wrapper--bg02 {
  background: #ffe2c7;
}

.p-lp-bg-wrapper--bg03 {
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/renewal_01_bg_footer.jpg) no-repeat bottom center/cover;
}

/* ================================================================
  カテゴリーセクションタイトル
================================================================= */
.c-lp-heading-title {
  margin: 0 0 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--lp-main-color);
}
@media (width < 768px) {
  .c-lp-heading-title {
    font-size: 1.5rem;
  }
}

/* ================================================================
  商品グリッド
================================================================= */
.p-lp-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
}
@media (width < 768px) {
  .p-lp-item-grid {
    grid-template-columns: 100%;
    gap: 20px;
    padding: 12px;
    padding-bottom: 20px;
    margin-top: 30px;
  }
}

.p-lp-item-grid__image {
  width: 100%;
}
.p-lp-item-grid__image img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.p-lp-item-grid__content {
  padding-inline: 30px;
}
@media (width < 768px) {
  .p-lp-item-grid__content {
    padding-inline: 5px;
  }
}

.p-lp-item-grid__description {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__description {
    font-size: rem;
  }
}
.p-lp-item-grid__description strong {
  font-size: 115%;
}

.p-lp-item-grid__brand {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__brand {
    font-size: 1.3rem;
  }
}

.p-lp-item-grid__name {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (width < 768px) {
  .p-lp-item-grid__name {
    font-size: 1.8rem;
  }
}

.p-lp-item-grid__spec {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__spec {
    font-size: 1.1rem;
  }
}

.p-lp-item-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.p-lp-item-grid__tags li {
  padding: 8px 16px;
  background-color: var(--lp-accent-color);
  color: #fff;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}
@media (width < 768px) {
  .p-lp-item-grid__tags li {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

.p-lp-item-grid__price {
  line-height: 1;
  text-align: right;
}

.p-lp-item-grid__price-tax {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-lp-item-grid__price-tax span {
  font-size: 200%;
}
@media (width < 768px) {
  .p-lp-item-grid__price-tax {
    font-size: 1.3rem;
  }
}

.p-lp-item-grid__price-base {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}
.p-lp-item-grid__price-base span {
  font-size: 120%;
}

/* ================================================================
  リンクボタン
================================================================= */
.c-lp-link-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.c-lp-link-button a {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 6%;
  text-align: center;
  color: #fff;
  background: var(--lp-accent-color);
  border-radius: 4px;
}
@media (width < 768px) {
  .c-lp-link-button a {
    font-size: 1.4rem;
    padding: 15px 0;
  }
}

.c-lp-link-button--small a {
  max-width: max-content;
  margin-inline: auto;
  font-size: 1.1rem;
  padding: 15px 30px;
}
@media (width < 768px) {
  .c-lp-link-button--small a {
    font-size: 1rem;
  }
}

/* ================================================================
  サービス対象地域一覧
================================================================= */
.p-lp-service-area {
  padding: 60px 0;
  background-color: #fff;
}

.p-lp-service-area .l-inner {
  box-sizing: border-box;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5vw, 24px);
  padding-right: min(5vw, 24px);
}

.p-lp-service-area .c-lp-service-title {
  margin: 0 0 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--lp-main-color);
}

.p-lp-service-area__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

@media (width >= 768px) {
  .p-lp-service-area .c-lp-service-title {
    font-size: 2.5rem;
    margin: 0 0 1em;
  }
  .p-lp-service-area__text {
    font-size: 1.7rem;
  }
}
@media (width < 768px) {
  .p-lp-service-area {
    padding: 40px 0;
  }
  .p-lp-service-area .l-inner {
    max-width: 100%;
  }
}
/* ================================================================
  イントロ（カジタクは）
================================================================= */
.p-lp-intro-section .l-inner {
  box-sizing: border-box;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5vw, 24px);
  padding-right: min(5vw, 24px);
}

.p-lp-intro-section .c-lp-intro-title {
  margin: 0 0 1.25em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  color: var(--lp-main-color);
}

.p-lp-intro-section__image {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 18px;
}

@media (width >= 768px) {
  .p-lp-intro-section .c-lp-intro-title {
    margin-bottom: 1.5em;
    font-size: 2.5rem;
  }
}
/* ================================================================
  カテゴリ商品一覧（ピックアップ）
================================================================= */
.p-lp-category-product {
  --lp-category-product-gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-category-product-gap);
}
@media (width < 768px) {
  .p-lp-category-product {
    --lp-category-product-gap: 10px;
  }
}
.p-lp-category-product .p-item-list-category__item {
  max-width: 450px;
}

.p-lp-category-product--pickup .p-item-list-category__item {
  width: 100%;
}

/* ================================================================
  メニューセクション
================================================================= */
.p-lp-menu-section {
  padding: 60px 0;
  background: #fff;
}

.p-lp-menu-list {
  --lp-menu-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-menu-gap);
}

.p-lp-menu-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 15px;
  border: 2px solid rgb(from var(--lp-main-color) r g b/0.5);
  background-color: #fff;
  border-radius: 10px;
}
@media (width >= 768px) {
  .p-lp-menu-item {
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    padding: 20px;
    width: calc((100% - var(--lp-menu-gap) * 1) / 2);
  }
  .p-lp-menu-item.--wide {
    width: 60%;
  }
}

.p-lp-menu-item__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-lp-menu-item__detail {
  align-self: center;
}
.p-lp-menu-item__detail img {
  margin-top: 10px;
  border-radius: 10px;
}

.p-lp-menu-item__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--lp-accent-color);
}
@media (width < 768px) {
  .p-lp-menu-item__title {
    font-size: min(4.5vw, 1.3rem);
  }
}

.p-lp-menu-item__notes {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.p-lp-menu-notes {
  margin-top: 40px;
}
.p-lp-menu-notes .c-lp-link-button {
  margin-top: 10px;
  max-width: 500px;
  margin-inline: auto;
}

.p-lp-menu-notes__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (width < 768px) {
  .p-lp-menu-notes__text {
    font-size: 0.9rem;
  }
}

/* ================================================================
  ご利用までの流れ
================================================================= */
.p-lp-flow-section .l-inner {
  box-sizing: border-box;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5vw, 24px);
  padding-right: min(5vw, 24px);
}

.p-lp-flow-section .c-lp-heading-title {
  margin-bottom: 10px;
}
@media (width < 768px) {
  .p-lp-flow-section .c-lp-heading-title {
    margin-bottom: 8px;
  }
}

.p-lp-flow-section__heading-note {
  font-size: 1.2rem;
  margin-bottom: 50px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--lp-main-color);
}
@media (width < 768px) {
  .p-lp-flow-section__heading-note {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

.p-lp-flow-section__content {
  padding: 34px;
  background-color: #fff;
}

.p-lp-flow-section__lead {
  margin: 0 0 1.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-lp-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-lp-flow-list li:not(:last-child) {
  position: relative;
}
.p-lp-flow-list li:not(:last-child)::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--lp-main-color);
  position: absolute;
  top: 8px;
  right: -22px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-lp-flow-item {
  margin: 0;
}

.p-lp-flow-item__title {
  margin: 0 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--lp-accent-color);
}

.p-lp-flow-item__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (width >= 768px) {
  .p-lp-flow-section .c-lp-heading-title {
    font-size: 2.5rem;
  }
}
@media (width < 768px) {
  .p-lp-flow-section__content {
    padding-top: 24px;
  }
  .p-lp-flow-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-lp-flow-list li:not(:last-child) {
    position: relative;
  }
  .p-lp-flow-list li:not(:last-child)::before {
    content: "";
    width: 24px;
    height: 12px;
    top: initial;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .p-lp-flow-section__lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  .p-lp-flow-item__title {
    font-size: 1.25rem;
  }
}
.p-lp-flow-detail-list {
  counter-reset: flow-detail;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.p-lp-flow-detail-item {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  gap: 20px;
  align-items: center;
  margin: 0 0 16px;
  padding: 22px 20px;
  background-color: #fff;
  border-radius: 20px;
  counter-increment: flow-detail;
}

.p-lp-flow-detail-item::before {
  content: counter(flow-detail);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--lp-main-color);
}
@media (width < 768px) {
  .p-lp-flow-detail-item::before {
    display: none;
  }
}

.p-lp-flow-detail-item:last-child {
  margin-bottom: 0;
}

.p-lp-flow-detail-item figure {
  margin: 0;
}

.p-lp-flow-detail-item img {
  display: block;
  width: 100%;
  height: auto;
}

.p-lp-flow-detail-content h3 {
  margin: 0 0 0.35em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #3d302f;
}
@media (width < 768px) {
  .p-lp-flow-detail-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .p-lp-flow-detail-content h3::before {
    content: counter(flow-detail);
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--lp-main-color);
  }
}

.p-lp-flow-detail-content p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3d302f;
}

@media (width < 768px) {
  .p-lp-flow-detail-list {
    margin-top: 20px;
  }
  .p-lp-flow-detail-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 14px;
  }
  .p-lp-flow-detail-item::before {
    order: 2;
    align-self: flex-start;
    width: auto;
    font-size: 2rem;
    line-height: 1;
  }
  .p-lp-flow-detail-item figure {
    order: 1;
    width: 100%;
  }
  .p-lp-flow-detail-content {
    order: 3;
    width: 100%;
  }
  .p-lp-flow-detail-content h3 {
    margin-bottom: 0.3em;
    font-size: 1.5rem;
  }
  .p-lp-flow-detail-content p {
    font-size: 1.1rem;
    line-height: 1.55;
  }
}
/* ================================================================
  安心のイオングループ
================================================================= */
.p-lp-group-section {
  padding: 60px 0;
}
.p-lp-group-section .l-inner {
  box-sizing: border-box;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5vw, 24px);
  padding-right: min(5vw, 24px);
}
.p-lp-group-section .c-lp-heading-title {
  margin: 0 0 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(7vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--lp-accent-color);
}

.p-lp-group-section__accent {
  color: #ad2379;
}

.p-lp-group-section__image {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

@media (width >= 768px) {
  .p-lp-group-section .c-lp-heading-title {
    font-size: 2.5rem;
  }
}
@media (width < 768px) {
  .p-lp-group-section {
    padding: 40px 0;
  }
}