@charset "UTF-8";

/*------------------------------------------

 CP 

------------------------------------------*/

/*--------------------------------
 Layout
--------------------------------*/

:root {
  --main-width: 520px;

  --post-padding-side: 14px;
  --item-padding-side: 14px;

  --z-base: 0;
  --z-sticky: 50;
}


/*--------------------------------
 Text
--------------------------------*/

:root {
  --fc-base: #202020;
  --ff-base: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-base: 1.7rem;
  --fw-base: 400;
  --lh-base: 1.85;
  --ls-base: 0;
  --ta-base: left;


  /* Variant */  

  --fc-gray: #707070;

  --fc-link: #0078de;
  --fc-link-hv: #f60;
  --fw-bold: 600;

  --lh-ttl: 1.6;
}


/*--------------------------------
 Color
--------------------------------*/

:root {
  --color-primary: #1665b3;
  --color-primary-l: #e7f3fe;
  --color-primary-ll: #f0f5fe;
  --color-primary-d: #0a579f;

  --color-secondary: #006ed5;

  --color-orange: #ff4f20;

  --color-accent: #fb5059;

  --color-page-bg: #f5f7fa;
  --color-page-bg-l: #f5f5f5;

  --color-border: #e0e3e6;
  --color-border-l: #f2f5f7;

  --color-item-wappy: #2d6bd6;

  --color-item-no1: var(--color-item-wappy);

  --color-btn: #009025;

  --color-yellow-l: #fffae9;

  --color-rank1: #ffc938;
  --color-rank2: #abafb6;
  --color-rank3: #5d463d;
}


/*--------------------------------
 Modules
--------------------------------*/

:root {
  --box-padding: 16px;

  --transition-base: .3s;
  --opacity-hv: .76;

  --block-r: 6px;

  --btn-color-orange: #fe612b;
  --btn-color-orange-d: #e75700;
}


@media ( min-width: 768px ) {
:root {
  --main-width: 520px;
  --post-padding-side: 28px;
}
}



/*------------------------------------------

 Base Setting

------------------------------------------*/

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  color: var(--fc-base);
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-base);
  letter-spacing: var(--ls-base);
  line-height: var(--lh-base);
  text-align: var(--ta-base);
  background: var(--color-page-bg);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

img, video, iframe{
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

a {
  cursor: pointer;
}

b, strong {
  font-weight: var(--fw-bold);
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.6;
}

h4, h5 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-ttl);
}

button {
  background: none;
  cursor: pointer;
  transition: var(--transition-base);
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fc-priamry {
  color: var(--color-primary);
}



/*------------------------------------------

 Header

------------------------------------------*/

.site-description {
  height: 22px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  background: #0d2c62;
  display: flex;
  justify-content: center;
  align-items: center;s
}


/*------------------------------------------

 Page Layout

------------------------------------------*/

.contents {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}

.main {
  width: 100vw;
  max-width: var(--main-width);
  margin: 0 auto;
}

.post {
  width: 100%;
  padding: 0 var(--post-padding-side) 40px;
  background: #fff;
}


@media ( min-width: 480px ) {
  .post {
    padding-top: 0;
    padding-bottom: 64px;
  }
}



/*------------------------------------------

 Post Header

------------------------------------------*/

.post-header {
  margin-bottom: 24px;
}

.post-mv {
  margin: 0 calc(var(--post-padding-side) * -1);
  position: relative;
}

.post-mv::after {
  width: fit-content;
  height: 22px;
  padding: 0 5px;
  color: #555;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  content: "PR";
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .9;
}

.post-mv img {
  width: 100%;
}

.post-ttl {
  margin-top: 14px;
  font-size: 1.75rem;
  line-height: 1.7;
}

.post-meta {
  margin-top: 14px;
}

.post-meta--dotted {
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.post-meta__item {
  padding: 2px 0;
  display: flex;
  justify-content: end;
  align-items: center;
  color: var(--fc-gray);
  font-size: 1.3rem;
}

.post-meta__item dd {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta__item dd:is(.--update *)::after {
  height: 16px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--color-secondary);
  border-radius: 2px;
  content: "Update!";
  display: flex;
  align-items: center;
}

.post-meta__item span {
  width: fit-content;
  height: 16px;
  padding: 0 3px 1px 3px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
}


@media ( min-width: 768px ) {

}



/*------------------------------------------

 Post First View

------------------------------------------*/

.post-fv {
  position: relative;
}

.post-fv__txt {
  width: fit-content;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.post-fv__txt::before {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 5;
  animation: fvTxt .65s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards;
}

@keyframes fvTxt {
  0% { right: 0; }
  100% { left: 100%; }
}

.post-fv__img {
  width: 134px;
  position: absolute;
  top: -30%;
  right: 4px;
  opacity: 0;
  animation: fvImg .26s ease-in;
  animation-delay: 1.05s;
  animation-fill-mode: forwards;
  transform: translateY(8px);
}

@keyframes fvImg {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}





/*------------------------------------------

 Post Body

------------------------------------------*/


:root {
  --text-margin: 24px;
  --block-margin: 28px;

  --fs-h2: 1.8rem;
  --fs-h3: 1.6rem;
  --fs-h4: 1.5rem;
}


/*--------------------------------
 Post Body / Heading
--------------------------------*/

.post-body > h2 {
  margin: 48px calc(var(--post-padding-side) * -1) 28px;
  padding: 12px 20px 12px;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
  background: var(--color-primary);
  position: relative;
  z-index: 0;
}


.post-body > h2::before {
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) rotate(45deg);
}

.post-body > h3 {
  margin-top: 44px;
  padding: 16px 12px 14px;
  font-size: 1.7rem;
  background: linear-gradient(to bottom, #fff, var(--color-page-bg));
  border: 1px solid var(--color-border);
  border-top: none;
  position: relative;
}

.post-body > h3::before{
  width: calc(100% + 2px);
  height: 4px;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
}


.post-body {
  font-size: var(--fs-base);
}

.post-body p {
  margin-top: var(--text-margin);
}

.post-body p:first-child {
  margin-top: 0;
}

.post-body .margin--l {
  margin-top: calc(var(--text-margin) * 1.5);
}

.post-body hr {
  width: 100%;
  height: 1px;
  margin: 36px 0 28px;
  border-top: 1px dotted #888;
}


/*--------------------------------
 Post Body / Media
--------------------------------*/

.post-body .img {
  margin: var(--block-margin) auto;
}

.post-body .img + .img {
  margin-top: -12px;
}

.post-body .figure {
  margin: var(--block-margin) 0;
}

.post-body .figure figcaption {
  padding: 4px 8px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.post-body .figure__inner {
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.img-style--border {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.post-body video {

}

@media ( min-width: 768px ) {

}



/*--------------------------------
 Post Body / Link
--------------------------------*/

.post-body a:not(:is([class*="btn"] *)) {
  color: var(--fc-link);
}

.post-body a:not(:is([class*="btn"] *)):hover {
  color: var(--fc-link-hv);
}

.post-body .txt-link {
  font-size: 110%;
  font-weight: var(--fw-bold);
}

.post-body .txt-link::after {
  width: 16px;
  height: 16px;
  margin: 0 2px 0 4px;
  background-image: url(../img/icon-link.svg);
  background-size: 100%;
  content: "";
  display: inline-block;
  transform: translateY(2px);
}

.post-body .txt-link:hover::after {
  background-image: url(../img/icon-link-hv.svg);
}



/*--------------------------------
 Post Body / List
--------------------------------*/

.post-body li {
  position: relative;
}

.post-body ul:not(:first-child) {
  margin-top: var(--text-margin);
}

.post-body .list--default li {
  padding-left: 16px;
}

.post-body .list--default li:not(:first-child) {
  margin-top: 3px;
}

.post-body .list--default li::before {
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 2px;
}

.post-body .list-lh--tight li:not(:first-child) {
  margin-top: 0;
}

.post-body .list--check-small li {
  padding: 0 0 0 28px;
  position: relative;
}

.post-body .list--check-small li::before {
  width: 18px;
  height: 18px;
  background: var(--color-primary) url(../img/check-white.svg) no-repeat center / 80%;
  content: "";
  display: block;
  border-radius: 3px;
  position: absolute;
  top: 7px;
  left: 0;
}


/*--------------------------------
 Post Body / Box
--------------------------------*/

.box {
  margin: var(--block-margin) 0;
  padding: var(--box-padding);
  border-radius: var(--block-r);
  position: relative;
}

.box:last-child {
  margin-bottom: 0;
}

.box:has(.box-caption--label) {
  margin-top: calc(var(--block-margin) + 34px);
  border-top-left-radius: 0;
}

.box:is(.box + *) {
  margin-top: calc(var(--block-margin * 0.6));
}


.box--border-primary {
  border: 2px solid var(--color-primary);
}

.box--border-gray {
  border: 3px solid #eee;
}

.box--border-dotted-orange {
  border: 2px dotted var(--color-orange);
}

.box--bg-gray {
  background: var(--color-page-bg);
}

.box--bg-yellow {
  background: #fffae7;
}

.box--bg-primary {
  background: var(--color-primary-l);
}

.box--shadow {
  box-shadow: var(--box-shadow-base);
}

.box--r-none {
  border-radius: 0;
}

.box--primary {
  background: var(--color-primary-ll);
}

.box--note {
  margin-top: calc(var(--block-margin) + 30px);
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f6f6f6 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f6f6f6 calc(100% - 1px));
  background-repeat: repeat;
  background-size: 16px 16px;
  background-position: -1px -1px;
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  border-radius: 0;
  position: relative;
}

.box--note__caption {
  height: 30px;
  padding: 2px 12px 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -34px;
  left: 0;
  gap: 4px;
}

.box--note__caption::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.box--note__caption + p,
.box--note__caption + ul {
  margin-top: 0 !important;
}



/*------------------------------------------

 Ranking

------------------------------------------*/

.ranking-ttl {
  margin: 0 -2px 32px;
  padding: 16px 0 15px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.ranking-ttl::after {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  content: "";
  display: block;
  top: 5px;
  left: 5px;
  position: absolute;
  z-index: -1;
}

.ranking-ttl span {
  height: 22px;
  margin: 0 auto 8px;
  padding: 0 20px;
  color: var(--color-primary);
  font-size: 1.5rem;
  background: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
}

.ranking {
  margin: 48px -12px 0;
}

.ranking__inner {
  overflow-x: scroll;
}

.ranking table {
  width: 100%;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.ranking thead th {
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.ranking thead th::before {
  width: 100%;
  height: 20px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking thead th:nth-child(1)::before {
  content: "No.1";
  background: var(--color-rank1);
}

.ranking thead th:nth-child(2)::before {
  content: "No.2";
  background: var(--color-rank2);
}

.ranking thead th:nth-child(3)::before {
  content: "No.3";
  background: var(--color-rank3);
}

.ranking thead th a {
  padding: 8px 4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
  display: block;
}

.ranking thead img {
  aspect-ratio: 16 / 9;
  margin: 0 auto 4px;
  object-fit: contain;
}

.ranking thead th span {
  font-weight: 600;
  text-decoration: underline;
}

.ranking thead .column--heading {
  width: 56px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
  background: #f3f3f3;
  border: none;
  position: sticky;
  left: 0;
}

.ranking thead .column--heading::before {
  width: 1px;
  height: 100%;
  background: var(--color-border);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ranking tbody th {
  padding: 3px 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
  background: #f3f3f3;
  border-top: 1px solid var(--color-border);
  position: sticky;
  left: 0;
}

.ranking tbody th::before {
  width: 1px;
  height: 100%;
  background: var(--color-border);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ranking tbody td {
  min-height: 56px;
  padding: 10px 0;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.ranking__seal {
  width: 26px;
  margin: 0 auto 2px;
}

.ranking tbody .column--link {
  padding: 10px;
}

.ranking tbody .column--link a {
  height: 48px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  background: var(--btn-color-orange);
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  transition: .2s;
}

.ranking tbody .column--link a::after {
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-link-white.svg);
  background-size: 100%;
  content: "";
  display: block;
}

.ranking tbody .column--link a:hover {
  color: #fff;
  opacity: .75;
}




/*------------------------------------------

 Item

------------------------------------------*/

.point-sections {
  counter-reset: pointSection;
}

.point-section {
  margin-top: 48px;
}

.point-section__heading {
  padding: 12px 12px 12px 20px;
  font-size: 1.85rem;
  background: linear-gradient(to bottom, #fff, var(--color-page-bg));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.point-section__heading::before {
  margin: 0 0 3px;
  color: var(--color-primary);
  font-size: 1.45rem;
  counter-increment: pointSection;
  content: "選び方ポイント" counter(pointSection);
  display: block;
}

.point-section__heading::after {
  width: 4px;
  height: calc(100% - 12px);
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
}



/*------------------------------------------

 Item

------------------------------------------*/

.items {
  margin: 40px calc(var(--post-padding-side) * -1) 0;
  padding: 24px 10px;
  background: var(--color-primary);
}

.items:is(.area-search + *) {
  margin-top: 0;
}

.item {
  padding: 4px var(--item-padding-side) 28px;
  background: #fff;
}

.item + .item {
  margin-top: 24px;
}

.item:not(:first-child) {
  margin-top: 24px;
}

.item-heading {
  margin: 0 0 16px;
  padding: 4px 12px;
  font-size: var(--fs-h4);
  border-left: 4px solid var(--color-primary);
  background: var(--color-page-bg);
}


.item-rating {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-rating::before {
  height: 20px;
  margin-right: 8px;
  padding: 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--color-page-bg);
  border-radius: 3px;
  content: "おすすめ度";
  display: flex;
  align-items: center;
}

.item-rating span {
  font-size: 1.8rem;
  font-weight: 600;
}

.item-rating img {
  width: 94px;
  margin: 0 0 0 3px;
  transform: translateY(0px);
}


.item-img {
  margin-top: 16px;
}

.item-img:is(.item-header + *) {
  margin-top: 24px;
}

.item-img img {
}


/*------------------------------------------
 Item / Header
------------------------------------------*/


.item-header {
  margin: 0 calc(var(--item-padding-side) * -1);
  padding: 12px var(--item-padding-side);
  background: #fff;
  border-radius: 6px 6px 0 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: var(--z-sticky);
}

.item-header:is(.item:first-child *) {
  position: sticky;
  top: 0;
}

.item-header::before {
  aspect-ratio: 1 / 1;
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}

.item-header:is(.item:first-child *)::before {
  background-image: url(../img/badge-rank1.svg);
}

.item-header:is(.item:nth-child(2) *)::before {
  background-image: url(../img/badge-rank2.svg);
}

.item-header:is(.item:nth-child(3) *)::before {
  background-image: url(../img/badge-rank3.svg);
}


.item-header::after {
  width: calc(100% - (var(--item-padding-side) * 2));
  height: 3px;
  background: #f3f3f3;
  content: "";
  display: block;
  left: var(--item-padding-side);
  position: absolute;
  bottom: 0;
}

.item-ttl a {
  font-size: 2rem;
  text-decoration: underline;
}

.item-header .item-header__catch {
  margin-top: 2px;
  font-size: 1.45rem;
  font-weight: 500;
}



/*------------------------------------------

 Item / Point

------------------------------------------*/


.item-inner-heading {
  margin: 0 0 20px;
  padding: 10px 14px;
  color: var(--color-primary);
  font-size: 1.75rem;
  background: var(--color-primary-ll);
  border-top: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-inner-heading::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  display: block;
  transform: translateY(-1px);
}

.label-heading {
  width: fit-content;
  height: 28px;
  margin: 24px auto 0;
  padding: 0 20px;
  color: #fff;
  font-size: 1.55rem;
  background: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
}


.item-point {
  margin-top: 32px;
}



.item-point__section + .item-point__section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dotted #ccc;
}

.item-point__section h4 {
  padding-left: 38px;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
}

.item-point__section h4::before {
  width: 26px;
  aspect-ratio: 1 / 1;
  background-color: var(--color-secondary);
  background-image: url(../img/check-white.svg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 2px;
  transform: translateY(-50%);
}

.item-point__section p{
  margin-top: 8px;
  font-size: 1.5rem;
}



/*------------------------------------------

 Item / Features

------------------------------------------*/

.item-features {
  margin-top: 40px;
}

.item-features ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.item-features li a {
  height: 30px;
  padding: 0 10px;
  color: var(--color-primary) !important;
  font-size: 1.35rem;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
}



/*------------------------------------------

 Item / Label List

------------------------------------------*/

.item-label-list {
  margin-top: 16px;
}

.item-label-list ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-label-list li {
  height: 26px;
  padding: 0 3px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*------------------------------------------

 Item / Recommend For

------------------------------------------*/

.recommend-for {
  margin-top: 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recommend-for__heading {
  padding: 8px 0;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-radius: 6px 6px 0 0;
}

.recommend-for ul {
  margin-top: 0 !important;
  padding: 8px 16px;
}

.recommend-for li {
  padding: 8px 0 8px 32px;
  font-weight: 500;
  position: relative;
}

.recommend-for li:not(:first-child) {
  margin-top: 0;
  border-top: 1px dashed #ccc;
}

.recommend-for li::before {
  width: 18px;
  height: 18px;
  background: var(--color-primary) url(../img/check-white.svg) no-repeat center / 80%;
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}





/*------------------------------------------

 Item / Info Table

------------------------------------------*/

.item-info-table {
  margin-top: calc(var(--block-margin) - 4px);
}

.item-info-table dl {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--block-r);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2px;
  overflow: hidden;
}

.item-info-table__item dt {
  color: #fff;
  padding: 1px 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
}

.item-info-table__item dd {
  height: 68px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-info-table__item dd::before {
  width: 40px;
  height: 40px;
  margin: 0 0 2px;
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  opacity: 0.15;
}

.item-info-table__item .column--nijumaru::before {
  background-image: url(../img/icon-seal-nijumaru.svg);
}

.item-info-table__item .column--maru::before {
  background-image: url(../img/icon-seal-maru.svg);
}

.item-info-table__item .column--sankaku::before {
  background-image: url(../img/icon-seal-sankaku.svg);
}



/*------------------------------------------

 Item / Detail Table

------------------------------------------*/

.item-detail-table .item-detail-table__txt {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.item-detail-table {
  margin-top: 28px;
}

.item-detail-table table {
  width: 100%;
  border: 1px solid var(--color-border);
}

.item-detail-table th {
  width: 88px;
  padding: 6px 0;
  color: #555;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: var(--color-page-bg);
  border-bottom: 1px solid var(--color-border);
}

.item-detail-table td {
  padding: 6px 10px;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--color-border);
}

.item-detail-table td a {
  font-weight: 600;
  text-decoration: underline;
}




/*------------------------------------------

 Item / Comment

------------------------------------------*/

.comment {
  margin-top: 40px;
}

.comment__ttl {
  margin: 0 1px 24px;
  padding: 5px 0 5px 20px;
  background: linear-gradient(to bottom, #fff, var(--color-page-bg));
  border: 1px solid #fff;
  outline: 1px solid var(--color-border);
  border-radius: 3px;
  position: relative;
}

.comment__ttl::before {
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.comment-item {
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.comment-item:not(:first-child) {
  margin-top: 16px;
}

.comment-item__header {
  padding: 12px;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  gap: 10px;
}

.comment-item__heading {
  font-size: 1.55rem;
}

.coment-item__avatar img {
  aspect-ratio: 1 / 1/;
  border-radius: 100%;
}

.comment-item__body {
  margin-top: 12px;
  padding: 0 12px 16px;
}

.comment-item__body p {
  font-size: 1.4rem;
}

.comment-item__body p:not(:first-child) {
  margin-top: 12px;
}



/*------------------------------------------

 Section / Service List

------------------------------------------*/

.service-list {
  margin: 20px calc(var(--post-padding-side) * -1) 0;
  padding: 28px 10px;
  background: var(--color-primary);
}

.service-list__ttl {
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 12px;
}

.service-list__ttl::before {
  width: 30px;
  height: 62px;
  content: "";
  background: url(../img/ttl-frame.png) no-repeat center / 100%;
  display: block;
  opacity: 0.5;
}

.service-list__ttl::after {
  width: 30px;
  height: 62px;
  content: "";
  background: url(../img/ttl-frame.png) no-repeat center / 100%;
  display: block;
  opacity: 0.5;
  transform: scale(-1, 1);
}

.service-list__ttl b {
  color: #fcefaa;
}

.service-list__items {
  margin-top: 20px;
}

.service-list__item {
  padding: 16px 20px 28px;
  background: #fff;
  position: relative;
}

.service-list__item:not(:first-child) {
  margin-top: 20px;
}

.service-list__item::before {
  width: 40px;
  height: 24px;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 16px;
  left: -3px;
}

.service-list__item:first-child::before {
  content: "1";
  background: var(--color-rank1);
}

.service-list__item:nth-child(2)::before {
  content: "2";
  background: var(--color-rank2);
}

.service-list__item:nth-child(3)::before {
  content: "3";
  background: var(--color-rank3);
}


.service-list__img {
  height: 56px;
}

.service-list__img img {
  height: 100%;
}

.service-list__service-name {
  margin-top: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.service-list__service-name::after {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-link.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}

.service-list__service-name a {
  font-size: 1.6rem;
  text-decoration: underline;
}

.service-list__txt {
  margin: 12px 0 0;
  padding: 10px 0;
  text-align: center;
  line-height: 1.7;
  background: var(--color-primary-ll);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-list__txt p {
  margin: 0;
  font-size: 1.45rem;
}

.service-list__txt p + p {
  margin-top: 2px;
}

.service-list__txt p b {
  color: var(--color-primary);
  font-size: 108%;
  font-weight: 700;
}

.service-list__btn {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-list__btn a {
  height: 64px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service-list__btn a.--detail {
  width: 40%;
  color: #707070;
  font-size: 1.45rem;
  border: 1px solid #ddd;
  border-bottom-width: 3px;
}

.service-list__btn a.--detail::after {
  width: 14px;
  height: 14px;
  background-image: url(../img/arrow-down.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.service-list__btn a.--official {
  color: #fff;
  background: var(--btn-color-orange);
  border-bottom: 3px solid var(--btn-color-orange-d);
  flex: 1;
}

.service-list__btn a.--official:is(.service-list__item:not(:first-child) *) {
  background: var(--color-primary);
  border-bottom-color: #092c67;
}

.service-list__btn a.--official::after {
  width: 15px;
  height: 15px;
  background-image: url(../img/icon-link-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.service-list__micro-copy {
  margin: 2px 0;
  font-size: 1.6rem;
  text-align: center;
  animation: textBlink 1.9s ease-in infinite;
}

@keyframes textBlink {
  0% {
    opacity: 1
  }
  60% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}



/*------------------------------------------

 Section / Area Search

------------------------------------------*/

.area-search {
  margin: 0 calc(var(--post-padding-side) * -1) 0;
  padding: 32px var(--post-padding-side) 40px;
  background: var(--color-primary-ll);
}

.area-search__ttl {
  padding: 0 0 8px;
  color: var(--color-primary);
  font-size: 1.8rem;
  border-bottom: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.area-search__ttl::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-pin.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.area-search-block {
  margin-top: 20px;
}

.area-search-block:is(.area-search__ttl + *) {
  margin-top: 18px;
}

.area-search-block__heading {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.area-search-block ul {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 8px;
}

.area-search-block li a {
  height: 28px;
  padding: 0 14px;
  font-size: 1.35rem;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
}



/*------------------------------------------

 Section Features

------------------------------------------*/


.features {
  margin: 0 calc(var(--post-padding-side) * -1);
  padding: 24px 10px;
  background: var(--color-page-bg);
  counter-reset: features;
}

.features__ttl {
  padding: 20px 0;
  color: #fff;
  font-size: 1.95rem;
  text-align: center;
  background: var(--color-primary);
  position: relative;
  z-index: 0;
}

.features__ttl::after {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
}

.features-item {
  padding: 20px 16px 24px;
  margin-top: 16px;
  background: #fff;
}

.features-item + .features-item {
  margin-top: 20px;
}

.features-item h3 {
  font-size: 1.95rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.features-item h3::before {
  height: 20px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.4rem;
  background: var(--color-primary);
  counter-increment: features;
  content: "特徴" counter(features);
  display: flex;
  align-items: center;
}

.features-item h3 span {
  color: var(--color-secondary);
}

.features-item__img {
  margin-top: 16px;
}

.features-item__body {
  margin-top: 16px;
  font-size: 1.55rem;
}

.features-item__body p:not(:first-child) {
  margin-top: 16px;
}

.features__link {
  margin: 20px 4px 4px 0;
  text-align: right;
  line-height: 1.85;
}

.features__link a {
  font-size: 1.9rem;
  font-weight: 600;
  text-decoration: underline;
}


/*------------------------------------------

 Modules / Button

------------------------------------------*/

.btn--page-link {
  margin: 36px auto 0;
}

.btn--page-link a {
  height: 56px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #00a848, #009025);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn--page-link a::after {
  width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-circle.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(90deg);
}

.post-body .btn--page-link__guide {
  margin-top: 16px;
  font-size: 1.4rem;
  text-align: center;
}

.post-body .btn-sub {
  width: 90%;
  margin: 32px auto;
}

.post-body .btn-sub a {
  height: 88px;
  padding: 0 0 2px;
  color: var(--fc-link);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid #ccc;
  box-shadow: 0 3px 0  #ccc;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.post-body .btn-sub a span {
  text-decoration: underline;
}



/*------------------------------------------

 Modules / CTA

------------------------------------------*/

/*--------------------------------
 CTA / Micro Copy
--------------------------------*/

.cta-micro-copy--top {
  text-align: center;
}

/*--------------------------------
 CTA / Button
--------------------------------*/

:root {
  --cta-btn-height: 88px;
}

.btn {
  margin-top: 24px;
}

.btn:is(.cta-micro-copy--top + *) {
  margin-top: 6px;
}

.btn:is(.micro-copy--header + *) {
  margin-top: 6px;
}

.btn a {
  margin: 0 -3px;
  width: 560px;
  max-width: 100%;
  height: var(--cta-btn-height);
  padding: 0 0 1px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-align: center;
  background: #ff6d25;
  border-radius: calc(var(--cta-btn-height) / 2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.btn a::after {
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-circle.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: .2s;
}

.btn--small a {
  height: 68px;
  background: var(--color-primary);
  border: 0;
  font-size: 1.6rem;
  gap: 6px;
  box-shadow: none;
}

.btn a span {
  position: relative;
}

.btn-animation--shiny {
  position: relative;
  overflow: hidden;
}

.btn-animation--shiny::before {
  width: 30px;
  height: 100%;
  background: #ffb554;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 0;
  animation: shiny 3s ease-in-out infinite;
  opacity: .9;
}

.btn-animation--shiny span,
.btn-animation--shiny::after {
  z-index: 10;
}

@keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  85% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  86% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/*--------------------------------
 CTA / Official Link
--------------------------------*/

.official-link {
  margin-top: 20px;
}

.official-link p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.official-link p::before {
  width: fit-content;
  height: 20px;
  padding: 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--color-page-bg);
  border-radius: 3px;
  content: "公式";
  display: flex;
  align-items: center;
}

.official-link a{
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: underline;
}


/*------------------------------------------

 Modules / Pickup

------------------------------------------*/

.pickup-box {
  margin: 40px -6px 0;
  padding: 0 0 20px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.pickup-box__heading {
  padding: 10px 0;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pickup-box__img {
  max-width: 400px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.cta-select-btn {
  margin: 16px 0 -4px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-select-btn a {
  height: 64px;
  color: var(--color-primary);
  font-weight: 600;
  border: 1px solid var(--color-primary);
  border-bottom-width: 3px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-select-btn a:last-child::after {
  width: 40px;
  height: 45px;
  background: url(../img/icon-finger.png) no-repeat center / 100%;
  content: "";
  display: block;
  position: absolute;
  bottom: -24px;
  right: -24px;
  animation: sway-x 1.6s ease-in-out infinite;
  will-change: transform;
}

.post-body .cta-select__micro-copy {
  margin: 16px 0 -4px;
  font-weight: 600;
  text-align: center;
}

@keyframes sway-x {
  0%, 100% { transform: translateX(-5px); }
  50%      { transform: translateX( 5px); }
}



/*------------------------------------------

 Box Point

------------------------------------------*/

.box--point {
  --color-orange: #ff7a3d;
  margin-top: calc(var(--block-margin) + 24px);
  padding: 0;
  border: 2px solid var(--color-orange);
  border-radius: 0;
  position: relative;
}

.box--point.color--primary {
  border-color: var(--color-primary);
}

.box--point__caption {
  width: fit-content;
  height: 26px;
  padding: 0 12px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  background: var(--color-orange);
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: -28px;
  left: -2px;
}

.box--point__caption:is(.color--primary *) {
  background: var(--color-primary);
}

.box--point__caption::before {
  width: 18px;
  height: 18px;
  background: url(../img/icon-light-white.svg) no-repeat center / 100%;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.box--point ul {
  margin: 0 !important;
  padding: 18px 20px;
}

.box--point .list--default li::before {
  background: var(--color-orange);
}

.box--point .list--default li:is(.color--primary *)::before {
  background: var(--color-secondary);
}



/*------------------------------------------

 Modules - Talk

------------------------------------------*/

.talk {
  margin: 30px -4px 0;
  display: flex;
  align-items: start;
}

.talk:first-child {
  margin: 0;
}

.talk__img {
  width: 58px;
  height: 58px;
  position: relative;
}

.talk__img:last-child::after {
  width: 56px;
  height: 20px;
  color: var(--fc-gray);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  content: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}

.talk__img img {
  border-radius: 100%;
}

.talk__text {
  min-height: 58px;
  padding: 12px 14px;
  background: #f4f7f9;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  position: relative;
}

.talk__text:before {
  width: 15px;
  height: 23px;
  background: url(../img/talk-arrow.svg) no-repeat;
  background-size: 15px 23px;
  content: "";
  display: block;
  position: absolute;
  top: 3px;
}

.talk__text:last-child {
  margin: 0 0 0 14px;
}

.talk__text:last-child:before {
  left: -13px;
}

.talk__text:first-child {
  margin: 0 14px 0 0;
}

.talk__text:first-child:before {
  right: -13px;
  transform: scale(-1, 1);
}

.talk__text p {
  line-height: 1.6;
}

.talk__text p + p {
  margin-top: 16px;
}

.talk + .talk {
  margin-top: 20px;
}

.talk.margin--l {
  margin-top: 44px !important;
}



/*------------------------------------------

 Mdoules / Image Slide

------------------------------------------*/

.img-slide {
  margin: 0 calc(var(--post-padding-side) * -1);
  padding: 12px 0;
  background: var(--color-primary-ll);
}

.img-slide__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.img-slide ul {
  margin-top: 0 !important;
  animation: scroll-left 15s infinite linear .5s both;
  display: flex;
  gap: 6px;
}

.img-slide li {
  width: 160px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



@media all and (max-width: 768px) {
  .img-slide li {
    width: calc(100vw / 3.8);
  }
}


/*------------------------------------------

Modules / Search Figure

------------------------------------------*/

.search-figure {
  margin: 24px 0;
}

.search-figure__inner {
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--color-page-bg);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-figure__txt-area {
  height: 48px;
  color: #555;
  font-size: 1.65rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 4px;
  position: relative;
}

.search-figure__txt-area::after {
  width: 64px;
  height: 64px;
  background-image: url(../img/icon-batsu.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  animation: batsuBlink 1.6s steps(1, end) infinite;
}

@keyframes batsuBlink {
  0%   { opacity: 0.6; }
  50%  { opacity: 0; }
  100% { opacity: 0.6; }
}

.search-figure__btn {
  width: 60px;
  height: 48px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #333;
  border-radius: 0 4px 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media ( min-width: 480px ) {
  .search-figure__inner {
    width: 360px;
  }
}



/*------------------------------------------

 Modules / Low Stock Box

------------------------------------------*/

.low-stock-box {
  max-width: 380px;
  margin: 16px auto 32px;
  box-shadow: 0 3px 8px rgba(0 , 0, 0, 0.09);
}

.low-stock-box__ttl {
  padding: 1px 18px 0 18px;
  background: var(--color-primary);
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.low-stock-box__ttl img {
  margin-top: -16px;
}

.low-stock-box__body {
  padding: 24px 20px;
  position: relative;
}

.low-stock-box-monthly {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.low-stock-box-monthly::after {
  width: 3px;
  height: 100%;
  background: #ccc;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.low-stock-box-monthly__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  position: relative;
  z-index: 1;
}

.low-stock-box-monthly__item dt {
  height: 44px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background: #acacac;
  border-radius: 5px 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.low-stock-box-monthly__item dd {
  height: 44px;
  padding: 4px 12px;
  font-size: 1.5rem;
  font-weight: 600;
  background: #eee;
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
}

.low-stock-box-monthly__item dt:is(.--now *) {
  height: 56px;
  background:  var(--color-primary);
}

.low-stock-box-monthly__item dd:is(.--now *) {
  height: 56px;
  font-size: 1.65rem;
  font-weight: 700;
  background:  var(--color-primary-l);
}

.low-stock-box__label {
  width: fit-content;
  height: 20px;
  padding: 0 4px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--fc-red);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 16px;
  right: 8px;
  z-index: 10;
  transform: rotate(-8deg);
  animation: blinkSteps .9s steps(1, end) infinite;
}

@keyframes blinkSteps {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}


/*------------------------------------------

 Entry Flow

------------------------------------------*/

.entry-flow__heading {
  margin: 32px 0 20px;
  padding: 12px 16px;
  font-size: 1.75rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: 5px solid var(--color-primary);
}

.entry-flow__more-btn {
  width: 100%;
  height: 48px;
  margin: 16px 0 0;
  color: #666;
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.entry-flow__more-btn::after {
  width: 15px;
  height: 15px;
  background: url(../img/arrow-down.svg) no-repeat center / 100%;
  content: "";
  display: block;
  transition: .2s;
}

.entry-flow__more-btn.is-open::after {
  transform: rotate(-180deg);
}

.entry-flow__wrapper {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: .2s;
}

.entry-flow__wrapper.is-open {
  height: 100%;
  margin-top: 20px;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.entry-flow {
  padding-top: 8px;
  counter-reset: entryFlow;
  position: relative;
}

.entry-flow::before {
  width: 8px;
  height: calc(100% - 4px);
  background: var(--color-page-bg);
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 12px;
}

.entry-flow-item {
  position: relative;
}

.entry-flow-item + .entry-flow-item {
  margin-top: 24px;
}

.entry-flow-item::before {
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 100%;
  outline: 3px solid #fff;
  counter-increment: entryFlow;
  content: counter(entryFlow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4px;
  left: 0;
}

.entry-flow-item__body {
  padding-left: 44px;
}

.entry-flow-item__body p {
  font-size: 1.5rem;
}

.entry-flow-item__body p a {
  text-decoration: underline;
}

.entry-flow-item__img {
  margin-top: 16px;
}

.entry-flow-item__img img {
  width: 270px;
  border: 1px solid var(--color-border);
}


/*------------------------------------------

 Footer

------------------------------------------*/

.g-footer {
  width: 100vw;
  max-width: var(--main-width);
  margin: 0 auto;
  background: #1b212c;
}

.g-footer__inner {
  margin: 0 auto;
  padding: 28px var(--post-padding-side);
}

.footer-copyright {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
}


@media ( min-width: 768px ) {
  .g-footer {
    width:;
  }

  .g-footer__inner {
    padding: 32px 0;
  }
}
