@charset "UTF-8";

:root{
  /* --------------------
   ベース
  --------------------*/
  --header-height: 104px;

  --width-main: 520px;

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

  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-default: 1.55rem;
  --lh-default: 1.9;

  --post-fs: 1.6rem;
  --post-line-height: 1.95;


  /* --------------------
   色関連
  --------------------*/

  /* テーマカラー */
  --color-primary: #ff6000;
  --color-primary-l: #e8f3fe;
  --color-primary-d: #0a5cbc;

  --color-primary2: #38ADEE;

  /* テキスト */
  --fc-default: #333;

  --fc-gray: #666;

  --link-text: #0078de;
  --link-text: #0b57d0;
  --link-text: #197bea;
  --link-text-hover: #f60;

  --color-blue: #1199df;
  --color-l-blue: #4ebcf0;
  --color-blue-d: #123a93;
  --color-green: #00a250;
  --color-orange: #f7690a;
  --color-pink: #f7738c;
  --color-black: #1c1c1c;

  --bg-color: #f0f4f6;

  --color-page-bg: #ecf1f4;
  --color-page-bg-l: #f3f6f8;

  --color-box-bg: #f5f8f9;

  --border-color: #dfdfdf;

  --color-border: #dfdfdf;
  --color-border-bold: var(--color-page-bg);
  --color-border-dashed: #CED5DB;

  --color-box-bg: #f4f6f8;
  
  /* ボタン */
  --btn-green: #2aac5e;
  --btn-green-d: #1a9d4e;
  --btn-orange: #ff6541;
  --btn-orange-d: #ea5734;
  --btn-blue: #007dd5;
  --btn-blue-d: #006db9;


  /* --------------------
   モジュール
  --------------------*/

  --text-margin: 30px;
  --block-margin: 34px;
  --box-padding: 18px 20px;
  --box-padding-i: 20px 24px 20px 60px;
  --box-lh: 1.9;

  --box-r: 6px; 
  --btn-r: 6px;
}

/* --------------------
  Other
--------------------*/

:root {
  --z-modal: 1000;
  --z-header: 100;
  --z-sticky: 50;
}



@media all and (max-width: 768px) {
  :root{
    --header-height: 68px;

    --post-fs: 1.7rem;
    --post-line-height: 1.85;
    --box-lh: 1.8;

    --text-margin: 22px;
    --block-margin: 26px;
    --box-padding: 18px 16px;
    --box-padding-i: 16px 18px 16px 50px;

    --box-fs: 0.9rem;
    --btn-r: 5px;
  }
}


@media ( min-width: 480px ) {
:root {
  --padding-post-side: 28px;
  --padding-item-section-side: 20px;
}
}



html { font-size: 10px; }

body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--fc-default);
  font-family: var(--ff-default);
  font-size: var(--fs-default);
  font-weight: 400;
  line-height: var(--lh-default);
  text-align: left;
  background: var(--color-page-bg);
}

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

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

b {
  font-weight: 700 !important;
}

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

a {
  cursor: pointer;
}

br {
  line-height: inherit;
}

img, video, iframe {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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-primary {
  color: var(--color-primary);
}

.line-red {
  color: #dc2626;
  background: linear-gradient(to bottom, transparent 20%, #ffefef 20%, #ffefef 100%);
}

.line-orange {
  background: linear-gradient(to bottom, transparent 40%, #ffe8dc 0%);
}


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

Header

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

.g-header {
  width: 100%;
  background: #fff;
}

.g-header__inner{
  width: 748px;
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-header .site-name {
  width: 156px;
  padding: 0 0 8px;
}

.g-header .site-name img {
  width: 100%;
  height: auto;
}

.g-header .site-description{
  margin: -4px 0 0 22px;
  line-height: 1.5;
  color: #777;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.g-header .site-description > span{
  display: block;
}

.g-header .site-description span + span{
  margin-top: 4px;
}

.g-nav{
  margin: -4px 0 0;
}

.g-nav ul{
  display: flex;
  align-items: center;
}

.g-nav li:not(:first-child){
  margin-left: 4px;
}

.g-nav a{
  width: 72px;
  color: currentColor;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.g-nav a img{
  width: 48px;
  height: auto;
}

.g-nav a span{
  font-size: 1.4rem;
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .g-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
  }

  .g-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 0 0 14px;
    box-sizing: border-box;
  }

  .g-header .site-name {
    width: 118px;
    padding: 0 0 2px;
  }

  .g-header .site-name img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .g-header .site-description{
    margin: -3px 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .g-nav{
    margin: 0;
  }

  .g-nav li{
    border-left: 1px solid #eaeaea;
  }

  .g-nav li:not(:first-child){
    margin-left: 0;
  }

  .g-nav a{
    width: 64px;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .g-nav a img{
    width: 44px;
    margin: -1px 0 0;
  }

  .g-nav a span{
    margin: -2px 0 0;
    font-size: 1.1rem;
  }
}



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

Page Layout

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

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

.main{
  width: 100vw;
  max-width: 520px;
}

@media ( min-width: 768px ) {
  .main {
    width: 560px;
  }
}



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

 Article

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

.post {
  padding: 0 var(--padding-post-side) 44px;
  background: #fff;
  border-top: 4px solid var(--color-primary);
}

.post-header{
  margin: 0 0 56px;
}

.post-mv {
  margin: 0 calc(var(--padding-post-side) * -1) 0;
  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-ttl {
  padding: 14px 0 0;
  font-size: 2.1rem;
  line-height: 1.7;
}

.post-ttl:first-letter {
  color: var(--color-primary);
  font-size: 110%;
}

.post-meta {
  margin: 10px 0 20px;
  padding: 2px 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.post-meta dl {
  display: flex;
  align-items: center;
}

.post-meta__item {
  color: #666;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-meta dt {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-meta__item.--update-date dt::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-update.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(0);
}



.post-header__update-date:before{
  
}

.post-header__cat:before{
  background-image: url(../img/icon-cat.svg);
}

.tag-list{
  margin: 12px 0 20px;
}

.tag-list ul{
  margin: 0 0 -10px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.tag-list li{
  height: 28px;
  margin: 0 10px 10px 0;
  padding: 0 20px;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 28px;
  background: var(--color-primary);
  border-radius: 3px;
}


@media all and (max-width: 768px) {
  

  .post-header{
    margin: 0 0 40px;
  }

  .post-header__image{
    margin: -20px calc(var(--padding-post-side) * -1) 0;
  }

  .post-header__title{
    margin: 14px 0 0;
    font-size: 1.85rem;
  }

  .post-header__meta{
    margin: 12px 0 0;
    padding: 1px 12px;
  }

  .post-header__meta div{
    font-size: 1.3rem;
  }

  .post-header__meta div:before{
    width: 15px;
    margin-right: 4px;
  }

  .tag-list{
    margin: 12px 0 16px;
  }

  .tag-list ul{
    margin: 0 -6px -6px 0;
  }

  .tag-list ul li{
    height: 24px;
    line-height: 24px;
    margin: 0 6px 6px 0;
    padding: 0 8px;
    font-size: 1.35rem;
  }
}

.post-body .fc-red {
  color: #df2b2c !important;
}


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

 Post Body

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

.post-body > h2 {
  margin: 52px 0 0;
  padding: 16px 12px 16px 18px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.55;
  background: var(--color-page-bg-l);
  background-size: 4px 4px;
  border-radius: 6px;
  position: relative;
  z-index: 0;
}

.post-body > h2::before {
  width: 5px;
  height: calc(100% - 20px);
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

.post-body h2:has(.heading-label) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

h2 .heading-label {
  height: 26px;
  margin: 4px 0 0;
  padding: 0 20px;
  color: var(--color-primary);
  font-size: 1.75rem;
  background: #fff;
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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 a {
  color: var(--link-text);
}

.post-body .ranking-find{
  margin: 52px 0 0px;
  text-align: center;
}

.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.7);
}

.post-body .img {
  margin: var(--block-margin) 0;
  text-align: center;
}

.post-body .img:is(.img + *) {
  margin-top: -6px;
}

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

.post-body .img img {
  width: 400px;
}

.post-body .img + .ta-center {
  margin-top: -20px;
  color: #777;
  font-size: 1.4rem;
}


.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: 12px 16px;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.post-body .img video {
  width: 400px;
  margin: 0 auto;
  display: block;
}

.post-body .img a:hover img {
  opacity: 0.85;
  transform: translate(2px, 2px);
}


.post-body hr{
  margin: 36px 0;
  border-top: 2px dotted #bbb;
}



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

 Box

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

.post-body .box{
  margin-top: var(--block-margin);
  padding: var(--box-padding);
  border-radius: var(--box-r);
}

.post-body .box + p{
  margin-top: var(--block-margin);
}



/*------------------------------------------
 Box / Border
------------------------------------------*/

.post-body .box--border-gray {
  border: 3px solid #eaeaea;
}


/*------------------------------------------
 Box / Background
------------------------------------------*/

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

.post-body .box--bg-blue{
  background: #eff7fd;
}

.post-body .box--bg-purple{
  background: #edf8fe;
}

.post-body .box--bg-main{
  background: #edf8fe;
}

.post-body .box--bg-pink{
  background: #FFEFF1;
}


/*------------------------------------------
 Box / Quote
------------------------------------------*/

.post-body .box-quote{
  margin: var(--block-margin);
  padding: 16px 20px;
  background: #f4f4f4;
  border-left: 2px solid #aaa;
}

.post-body .box-quote + .box-quote{
  margin-top: 28px;
}

.post-body .box-quote p{
  line-height: 1.8;
  font-size: 14px;
}

.post-body .box-quote p:not(:first-child){
  margin-top: 14px;
}

.post-body .box-quote .quotation-source{
  text-align: right;
  color: #888;
  font-size: 11px;
}

.post-body .box-quote .quotation-source:before{
  content: "引用元：";
  display: inline;
}

.post-body .box-quote__image{
  text-align: center;
}

.post-body .box-quote__image img{
  width: 100%;
  box-sizing: border-box;
}


@media all and (max-width: 768px) {
  .post-body .box-quote{
    padding: 14px;
  }
  .post-body .box-quote p{
    font-size: 12px;
    line-height: 1.7;
  }

  .post-body .box-quote .quotation-source{
    font-size: 10px;
  }

  .post-body .box-gray + p,
  .post-body .box-yellow + p{
    margin-top: 32px;
  }

}



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

 Policy box

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

.box-policy{
  margin-top: 40px;
  padding: 36px 28px 30px;
  background: #fff;
  border: 3px solid #dfecf6;
  box-shadow: 0 1px 7px rgba(0,0,0,0.03);
  border-radius: 6px;
  position: relative;
}

.box-policy:before{
  width: fit-content;
  height: 40px;
  padding: 0 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-primary);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  content: "当サイトのポリシー";
  display: flex;
  align-items: center;
  position: absolute;
  top: 22px;
  left: -12px;
}

.box-policy__image{
  width: 460px;
  margin: 0 auto;
}

.box-policy__image img{
  width: 100%;
  height: auto;
}

.box-policy__body{
  margin: 24px 0 0;
}

.box-policy__body p{
  font-size: 16px;
  line-height: 1.7;
}

@media all and (max-width: 768px) {
  .box-policy{
    margin: 36px -4px 0;
    padding: 28px 16px 20px;
  }

  .dot + .box-policy {
    margin-top: 44px;
  }

  .box-policy:before{
    height: 32px;
    padding: 0 32px;
    font-size: 16px;
    top: 14px;
    left: -5px;
  }

  .box-policy__image{
    width: 100%;
    max-width: 480px;
  }

  .box-policy__body{
    margin: 16px 0 0;
  }

  .box-policy__body p{
    font-size: 1.35rem;
    line-height: 1.6;
  }
}


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

 Intro box

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

.box-intro{
  margin: 48px 0 0;
}

.box-intro__header{
  padding: 12px 0 18px;
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

.box-intro__header p{
  margin: 0 0 3px !important;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-intro__header p:before{
  width: 40px;
  height: 1px;
  margin: 0 6px 0 0;
  background: #fff;
  content: "";
  display: block;
  opacity: 0.6;
}

.box-intro__header p:after{
  width: 40px;
  height: 1px;
  margin: 0 0 0 6px;
  background: #fff;
  content: "";
  display: block;
  opacity: 0.6;
}


.box-intro__header img{
  width: 320px;
}

.box-intro__body{
  padding: 28px 32px 0;
  background: var(--color-page-bg);
  border-radius: 0 0 5px 5px;
}

.box-intro__body p{
  font-size: 15px;
}

.box-intro__body p:not(:first-child){
  margin-top: 18px;
}

.box-intro__image{
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
}

.box-intro__image div{
  margin-right: -16px;
  padding: 0 0 24px;
  flex: 1;
}

.box-intro__image img{
  width: 176px;
  transform: translate(16px, -8px);
}

.box-intro .pc-hidden{
  display: none;
}


@media all and (max-width: 640px) {
  .box-intro{
    margin: 40px 0 0;
  }

  .box-intro__header{
    padding: 10px 0 16px;
  }

  .box-intro__header p{
    font-size: 14px;
  }

  .box-intro__header p:before,
  .box-intro__header p:after{
    width: 32px;
  }

  .box-intro__header img{
    max-width: 294px;
  }

  .box-intro__body{
    padding: 18px 16px 0;
  }

  .box-intro__body p{
    font-size: 14px;
    line-height: 1.7;
  }

  .box-intro__body p:not(:first-child){
    margin-top: 14px;
  }

  .box-intro__body .sp-hidden + p{
    margin-top: 0;
  }

  .box-intro__image{
    margin-top: 14px;
  }

  .box-intro__image div{
    margin-right: -8px;
  }

  .box-intro__image img{
    width: 132px;
    transform: translate(6px, -20px);
  }

  .box-intro .pc-hidden{
    display: block;
  }
  .box-intro .sp-hidden{
    display: none;
  }
}



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

 Recommended for

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

.recommended-for-box{
  margin: 56px 0;
  border: 3px solid var(--color-primary);
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.13);
  position: relative;
}

.recommended-for-box:after{
  width: 160px;
  height: 160px;
  border: 80px solid transparent;
  border-top-color: #eaedfc;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -126px;
  left: 50%;
  transform: translateX(-50%) scale(1.05, 0.33);
}

.recommended-for-box .recommended-for-box__find{
  margin: 0;
  padding: 10px;
  text-align: center;
  background: #eaedfc;
  border-radius: 4px 4px 0 0;
}

.recommended-for-box__find span{
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  display: block;
}

.recommended-for-box__find span:first-child{
  margin: -1px 0 4px;
  font-size: 14px;
}

.recommended-for-box .recommended-for-box__find:before{
  content: none;
}

.recommended-for-box ul{
  width: fit-content;
  padding: 12px 0 18px;
  margin: 0 auto !important;
}

.recommended-for-box ul li{
  font-size: 17px;
  text-align: center;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recommended-for-box ul li:not(:first-child){
  margin-top: 2px;
}

.recommended-for-box ul li span{
  font-weight: 600;
}

.recommended-for-box ul li:before{
  width: 7px;
  height: 7px;
  margin: 0 8px 0 0;
  background: var(--color-primary-d);
  border-radius: 100%;
  content: "";
  display: block;
}


@media all and (max-width: 768px) {
  .recommended-for-box {
    margin: 48px -10px 46px;
    border-width: 2px;
  }

  .recommended-for-box:after {
    bottom: -120px;
    transform: translateX(-50%) scale(0.9, 0.28);
  }
  
  .recommended-for-box__find span{
    font-size: 16px;
  }

  .recommended-for-box__find span:first-child{
    margin: -1px 0 4px;
    font-size: 12px;
  }

  .recommended-for-box ul{
    padding: 13px 0 18px;
  }

  .recommended-for-box ul li{
    font-size: 15px;
    line-height: 1.6;
  }

  .recommended-for-box ul li:not(:first-child){
    margin-top: 3px;
  }

  .recommended-for-box ul li:before{
    margin: 0 6px 0 0;
  }
}



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

 List

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

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

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

.post-body li {
  line-height: 1.7;
  position: relative;
}

.list--default li {
  margin-top: 6px;
  padding: 0 0 0 20px;
}

.list--default li:first-child {
  margin-top: 0;
}

.list--default li:before{
  width: 5px;
  height: 5px;
  content: "";
  display: block;
  background: var(--color-primary);
  position: absolute;
  top: 11px;
  left: 4px;
}





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

 CTA

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

.btn-micro-copy--top {
  font-size: 1.7rem;
  text-align: center;
}

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

.btn{
  margin: 28px auto 0;
}

.btn:is(.btn-micro-copy--top + *) {
  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.9rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: linear-gradient(to bottom, #00a848, #009025);
  border: 3px solid #fff;
  border-radius: calc(var(--cta-btn-height) / 2);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  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: 22px;
  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 {
  margin-top: 20px;
}

.btn--small a {
  height: 76px;
  font-size: 1.65rem;
  border-radius: 38px;
}

.btn--small a::after {
  width: 18px;
}

.btn a span {
  position: relative;
}

.btn a:hover{
  color: #fff;
}

.btn .btn-label-text{
  width: 220px;
  height: 26px;
  line-height: 22px;
  color: var(--btn-orange);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: #fff;
  border: 2px solid var(--btn-orange);
  border-radius: 13px;
  box-sizing: border-box;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.btn .btn-label-text:after{
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-left-color: #fff;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.btn--comment {
  margin-top: 16px;
}

.btn--comment a {
  height: 56px;
  color: #00a848;
  font-size: 1.65rem;
  font-weight: 600;
  border: 2px solid #00a848;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

.post-body .official-link {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.official-link::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;
}



/*-------------------------------
 Button Animation
--------------------------------*/


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

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

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

@keyframes btnShiny {
  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; }
}


.btn-animation--puru {
  animation: btnPuru 2.5s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}


@keyframes btnPuru {
  0% {
    transform: scale(0.9, 0.9);
  }
  5% {
    transform: scale(1.08, 1.08);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.03, 1.03);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}


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

 Link Icon

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

.txt-link {
  font-size: 110%;
  font-weight: 700;
}

.txt-link::after {
  width: 19px;
  height: 19px;
  margin: 7px 4px 0;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: top;
}

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

.ta-right a {
  text-decoration: underline;
}



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

 Ranking table

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

/*------------------------------------------
 Ranking table / Title
------------------------------------------*/

.post-body .ranking-title{
  margin: 56px calc(var(--padding-post-side) * -1) 24px;
  padding: 16px 12px;
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.post-body .ranking-title span{
  width: fit-content;
  height: 24px;
  line-height: 24px;
  margin: 0 0 0 10px;
  padding: 0 8px;
  color: var(--color-primary-d);
  font-size: 17px;
  font-weight: 600;
  background: #fff;
  border-radius: 4px;
  display: block;
}

.ranking-title:after{
  width: 32px;
  height: 32px;
  border: 16px solid transparent;
  border-top-color: var(--color-primary);
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) scale(1, 0.95);
}


@media all and (max-width: 768px) {
  .post-body .ranking-title{
    margin: 28px calc(var(--padding-post-side) * -1) 20px;
    padding: 18px 10px;
    font-size: 1.9rem;
    border-width: 4px;
    position: relative;
  }

  .post-body .ranking-title span{
    height: 20px;
    line-height: 20px;
    margin: 0 0 0 8px;
    padding: 0 6px;
    font-size: 14px;
  }

  #ranking-table + .ranking-title{
    margin-top: 40px;
  }

  .ranking-title:after{
    bottom: -26px;
  }
}

.post-body .ranking__scroll-caption{
  display: none;
}


.ranking {
  margin: 32px calc(var(--padding-post-side) * -1) 0;
}

.ranking__inner{
  width: 100%;
}

.ranking-top5 .ranking__inner{
  width: 140%;
}

.ranking-float-label{
  width: 130px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  background: #FB1717;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  animation: floatingY 1s ease-in-out infinite alternate-reverse;
}

.ranking-float-label span{
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: block;
  transform: scaleX(0.92);
}

.ranking-float-label:after{
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-top-color: #FB1717;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes floatingY {
  0% {
    transform: translate(-50%, 3px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.ranking .service-columun{
  border-bottom: 2px solid #f4f4f4;
  position: sticky;
  top: 0;
  z-index: 50;
}

.ranking .service-columun ul{
  box-sizing: border-box;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.ranking .service-columun ul li{
  margin: 0;
  padding: 0 12px 16px;
  flex: 1;
  background: #fff;
  position: relative;
}

.ranking .service-columun ul li:before{
  width: calc(100% + 24px);
  height: 24px;
  line-height: 24px;
  margin: 0 -12px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  content: '';
  display: block;
  position: static;
}

.ranking .service-columun ul li:nth-child(1):before{
  content: 'No.1';
  background: #f8c02b;
}

.ranking .service-columun ul li:nth-child(2):before{
  content: 'No.2';
  background: #a5a8ad;
}

.ranking .service-columun ul li:nth-child(3):before{
  content: 'No.3';
  background: #5a4036;
}

.ranking .service-columun ul li:nth-child(4):before{
  content: 'No.4';
  background: #1a1d1d;
}

.ranking .service-columun ul li:nth-child(5):before{
  content: 'No.5';
  background: #1a1d1d;
}

.ranking .service-columun li:first-child{
  background: #fffaed;
}

.ranking .service-columun ul li:not(:first-child){
  border-left: 1px solid #eaeaea;
}

.ranking .service-columun__catch{
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.ranking .service-columun__image{
  width: fit-content;
  margin: 6px auto 0;
  padding: 0 0 4px;
  text-align: center;
  box-sizing: border-box;
}

.ranking .service-columun__image img{
  width: 116px;
}

.ranking .service-columun__name{
  line-height: 1.2;
  font-size: 14px;
  margin: 6px 0 0;
  text-align: center;
}

.ranking .service-columun__name a{
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.ranking .service-columun__name a b{
  color: var(--link-text);
}

.ranking .service-columun__name a:hover b{
  color: #f60;
}

.ranking .review-columun li {
  min-height: 56px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranking .review-columun li p {
  line-height: 1;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.ranking .review-columun__star {
  width: 92px;
  margin: 3px auto;
}

.ranking .review-columun__star img {
  width: 100%;
  display: block;
}

.ranking__find {
  height: 26px;
  line-height: 26px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  background: #f4f4f4;
}

.ranking__find span {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: block;
  position: sticky;
  left: 12px;
}

.ranking__find .label {
  height: 18px;
  line-height: 18px;
  margin: 3px 0 0 8px;
  padding: 0 8px;
  color: var(--color-main-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.05em;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  vertical-align: top;
}

.ranking__columun ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  box-sizing: border-box;
}

.ranking__columun ul li {
  line-height: 1.5;
  padding: 10px 12px;
  font-size: 16px;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.ranking__columun ul li:first-child {
  background: #fffaed;
}

.ranking__columun ul li:not(:first-child) {
  margin: 0 !important;
  border-left: 1px solid #eaeaea;
}

.ranking__columun ul li:before {
  content: none;
}

.ranking__columun ul li > div {
  line-height: 1.3;
  text-align: center;
}

.ranking__columun ul li > div span {
  margin: 4px 0 0;
  font-size: 92%;
  text-align: center;
  display: block;
}

.ranking__columun ul li b {
  font-weight: 600 !important;
}


.ranking .price-columun li{
  min-height: 56px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ranking .button-columun li a{
  width: 100%;
  height: 52px;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #00a03c;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0,0,0,0.14);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.ranking .button-columun li .no1-button{
  background: #00a03c;
}

.ranking .button-columun li a span{
  width: fit-content;
  line-height: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(0,0,0,0.02);
  display: block;
}

.ranking .button-columun li a:after{
  width: 16px;
  height: 16px;
  margin: 0 0 0 5px;
  background: url(../img/icon-link-white.svg) no-repeat;
  background-size: 16px 16px;
  content: "";
  display: block;
}

.ranking .button-columun li a span span{
  display: inline;
}

.ranking .button-columun li a span:first-child{
  font-size: 16px;
}

.ranking .button-columun a + p{
  margin: 8px 0 0;
  color: #ee1818;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.ranking .text-large li{
  font-size: 16px;
}

.ranking .fc-red{
  color: #e02626 !important;
}

.ranking .footnote{
  margin: 0 0 0 2px;
  color: #888;
  font-size: 82%;
}

.ranking .seal{
  width: 100%;
  margin: 0 0 3px;
  text-align: center;
}

.ranking .seal img{
  width: 30px;
  height: auto;
}

.ranking .certificate-label{
  width: fit-content;
  margin: 4px auto 0;
  color: #f56a54;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.08em;
}

@keyframes scrollCaptionAnimation {
  0%, 20%, 40%{
    transform: translateX(0);
  }
  10%, 30% {
    transform: translateX(5px);
  }
}


@media all and (max-width: 768px) {
  .post-body .ranking__scroll-caption{
    margin: 0 -12px 0 0 !important;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    display: block;
    animation: scrollCaptionAnimation 2.3s ease-in-out infinite;
  }

  .ranking-head{
    margin: 52px -18px 0;
    padding: 1px 12px 22px;
  }

  .ranking-head__label{
    height: 26px;
    line-height: 22px;
    margin: -13px auto 14px;
    padding: 0 28px;
    font-size: 17px;
  }

  .post-body .ranking-head h2{
    font-size: 22px;
  }

  .ranking__inner{
    width: 100%;
  }

  .ranking-top5 .ranking__inner{
    width: 160%;
  }

  .ranking-float-label{
    width: 114px;
    font-size: 12px;
    top: 11px;
  }

  .ranking .service-columun ul li {
    padding: 0 8px 14px;
  }

  .ranking .service-columun ul li:before {
    width: calc(100% + 12px);
    height: 20px;
    line-height: 20px;
    margin: 0 -6px 10px;
    font-size: 13px;
  }

  .ranking .service-columun__image{
    width: 92px;
    margin: 4px auto 0;
  }
  .ranking .service-columun__image img{
    width: 100%;
  }

  .ranking .review-columun li{
    min-height: 64px;
  }


  .ranking .review-columun li p{
    margin: -2px 0 1px;
    font-size: 14.5px;
  }

  .ranking .review-columun__star{
    width: 100%;
    max-width: 98px;
    margin: 4px auto 1px;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .ranking .service-columun__catch{
    font-size: 11px;
  }
  .ranking .service-columun__name{
    margin: 2px 0 0;
  }

  .ranking .service-columun__name a{
    font-size: 1.5rem;
  }

  .ranking__find{
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    text-align: center;
  }

  .ranking__find span{
    font-size: 14px;
  }

  .ranking__find .label{
    height: 16px;
    line-height: 16px;
    margin: 2px 0 0 8px;
    padding: 0 6px;
    font-size: 11px;
  }

  .ranking__columun ul li{
    line-height: 1.3;
    padding: 8px 6px;
    font-size: 1.45rem;
  }

  .ranking .text-large li{
    font-size: 14px;
  }

  .ranking .price-columun li{
    min-height: 48px;
    font-size: 16px;
  }

  .ranking .sp-none{
    display: none;
  }

  .ranking .button-columun li{
    padding: 12px 6px;
  }

  .ranking .button-columun li a{
    height: 48px;
  }

  .ranking .button-columun li a:after{
    width: 14px;
    height: 14px;
    margin: 0px 0 0 3px;
    background-size: 14px 14px;
  }

  .ranking .button-columun li a span{
    font-size: 14px;
    letter-spacing: -0.04em;
  }
  .ranking .button-columun li a span span{
    display: none;
  }
  .ranking .button-columun li a span:first-child{
    font-size: 15px;
  }
  .ranking .seal img{
    width: 27px;
  }

  .ranking .certificate-label{
    margin-top: 2px;
  }

  .ranking .button-columun a + p{
    margin-top: 4px;
    font-size: 13px;
  }
}

@media all and (max-width: 600px) {
  .ranking .service-columun ul li{
    padding: 0 6px 14px;
  }
}






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

 Ranking TOP3

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

.ranking-top3{
  margin: 40px -64px 0;
  padding: 40px 64px 24px;
  background: #F4f4f4;
}

.ranking-top3__find{
  margin-bottom: 28px;
  text-align: center;
}

.ranking-top3__find img{
  width: 280px;
}

.ranking-top3__inner{
  display: flex;
}

.ranking-top3__column{
  padding: 4px 10px 16px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  flex: 1;
  position: relative;
}

.ranking-top3__column:before{
  width: 36px;
  height: 36px;
  line-height: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #ddd;
  border: 3px solid #ccc;
  border-radius: 100%;
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.ranking-top3__column:not(:first-child){
  margin-left: 10px;
}

.ranking-top3 .ranking-top3__title{
  margin: 0 -10px 10px !important;
  padding: 0 0 4px;
  text-align: center;
  border-bottom: 4px solid #73543f;
}

.ranking-top3__column:nth-child(1) .ranking-top3__title{
  border-color: #f8c02b;
}
.ranking-top3__column:nth-child(2) .ranking-top3__title{
  border-color: #a5a8ad;
}

.ranking-top3__column:nth-child(1):before{
  background: #FFCB45;
  border-color: #FFC328;
  content: "1";
}

.ranking-top3__column:nth-child(2):before{
  background: #B2B5B9;
  border-color: #A5A8AD;
  content: "2";
}

.ranking-top3__column:nth-child(3):before{
  background: #96674A;
  border-color: #8A5A3D;
  content: "3";
}

.ranking-top3__title a{
  color: var(--fc-default);
  font-weight: 600;
  font-size: 15px;
  
}

.ranking-top3__image img{
  width: 100%;
}

.ranking-top3__image a:hover{
  opacity: 0.8;
}

.ranking-top3__text{
  margin: 10px 0;
}

.ranking-top3__text p{
  line-height: 1.4;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.ranking-top3__text p .fc-red{
  color: #ef4914;
}

.ranking-top3__button a{
  height: 46px;
  line-height: 1.2;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: #38c1ac;
  border: 1px solid #2ba996;
  border-bottom-width: 3px;
  border-radius: 5px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.ranking-top3__button a span{
  margin: 0 0 2px;
  line-height: 1.2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

@media all and (max-width: 768px) {
  .ranking-top3{
    margin: 32px -18px 0;
    padding: 26px 8px 20px;
  }

  .ranking-top3__find{
    margin-bottom: 24px;
  }

  .ranking-top3__find img{
    width: 250px;
  }

  .ranking-top3__column{
    padding: 10px 6px 12px;
  }

  .ranking-top3__column:not(:first-child){
    margin-left: 4px;
  }

  .ranking-top3__column:before{
    width: 30px;
    height: 30px;
    line-height: 24px;
    font-size: 13px;
    top: -14px;
  }

  .ranking-top3 .ranking-top3__title{
    margin: 0 -6px 8px !important;
    padding: 0 0 2px;
  }

  .ranking-top3__title a{
    font-size: 13px;
  }

  .ranking-top3__text p{
    font-size: 12px;
  }

  .ranking-top3__button a{
    font-size: 13px;
    border-radius: 4px;
    letter-spacing: -0.06em;
  }

  .ranking-top3__button a span{
    font-size: 12px;
    letter-spacing: -0.06em;
  }
}






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

 Ranking Table Horizontal

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


.ranking-table-horizontal{
  margin: 72px -36px 0;
}

.ranking-table-horizontal.--fit .ranking-table-horizontal__inner{
  width: 100%;
}

.ranking-table-horizontal table{
  width: 100%;
  table-layout: fixed;
}

.ranking-table-horizontal table thead th{
  height: 26px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  background: var(--color-primary);
}

.ranking-table-horizontal th *,
.ranking-table-horizontal a *{
  color: inherit;
}

.ranking-table-horizontal table thead th:not(:first-child){
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ranking-table-horizontal table thead .ranking-table-horizontal__column-price{
  width: 220px;
}


.ranking-table-horizontal table tbody{
  counter-reset: tableHorizontalNum;
}

.ranking-table-horizontal table tbody td{
  height: 110px;
  padding: 0 10px;
  font-size: 1.55rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
}

.ranking-table-horizontal table tbody td:not(:first-child){
  border-left: 1px solid var(--color-border);
}

.ranking-table-horizontal__column-item{
  position: relative;
}

.ranking-table-horizontal__column-item a{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.ranking-table-horizontal__column-item a span{
  margin-bottom: -3px;
  font-size: 1.25rem;
  font-weight: 600;
}

.ranking-table-horizontal__column-item img{
  width: 72px;
  transition: .2s;
}

.ranking-table-horizontal__column-item a:hover img{
  opacity: 0.7;
}

.ranking-table-horizontal__column-item a:hover span{
  color: var(--link-text-hover);
}

tbody .ranking-table-horizontal__column-item:after{
  width: 28px;
  height: 28px;
  border-left: 14px solid #888;
  border-top: 14px solid #888;
  border-right: 14px solid transparent;
  border-bottom: 14px solid transparent;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 1;
}

tbody .ranking-table-horizontal__column-item:before{
  width: 28px;
  height: 28px;
  padding: 0 10px 10px 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  box-sizing: border-box;
  counter-increment: tableHorizontalNum;
  content: counter(tableHorizontalNum);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 5;
}

.ranking-table-horizontal tbody tr:nth-child(1) .ranking-table-horizontal__column-item:after{
  border-left-color: #f8c02b;
  border-top-color: #f8c02b;
}

.ranking-table-horizontal tbody tr:nth-child(2) .ranking-table-horizontal__column-item:after{
  border-left-color: #a5a8ad;
  border-top-color: #a5a8ad;
}

.ranking-table-horizontal tbody tr:nth-child(3) .ranking-table-horizontal__column-item:after{
  border-left-color: #5a4036;
  border-top-color: #5a4036;
}

.ranking-table-horizontal__column-price dl > div{
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
}

.ranking-table-horizontal__column-price dl > div:not(:first-child){
  margin-top: 2px;
}

.ranking-table-horizontal__column-price dl dt{
  width: 64px;
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--color-box-bg);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table-horizontal__column-price dl dd{
  padding: 0 12px;
  font-size: 1.55rem;
  text-align: left;
  flex: 1;
}

.ranking-table-horizontal__column-button a{
  height: 52px;
  width: 100%;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--btn-green);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: .2s;
}

.ranking-table-horizontal__column-button a:hover{
  color: #fff;
  opacity: 0.7;
}

.ranking-table-horizontal__column-button.--no1 a{
  background: var(--btn-orange);
}


@media all and (max-width: 768px) {
  .sp-none{
    display: none;
  }

  .ranking-table-horizontal{
    margin: 56px calc(var(--padding-post-side) * -1);
  }

  .ranking-table-horizontal table thead th{
    height: 30px;
    font-size: 1.15rem;
  }

  .ranking-table-horizontal table thead .ranking-table-horizontal__column-item{
    width: 84px;
  }

  tbody .ranking-table-horizontal__column-item img{
    width: 64px;
  }

  tbody .ranking-table-horizontal__column-item:before{
    width: 24px;
    height: 24px;
    font-size: 1.15rem;
  }

  tbody .ranking-table-horizontal__column-item:after{
    width: 24px;
    height: 24px;
    border-width: 12px;
  }

  .ranking-table-horizontal table thead .ranking-table-horizontal__column-price{
    width: 112px;
  }

  .ranking-table-horizontal table tbody td{
    height: 96px;
    padding: 0 4px;
    font-size: 1.25rem;
  }

  .ranking-table-horizontal__column-item a span{
    margin: 2px 0 -2px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .ranking-table-horizontal__column-price dl dt{
    width: 40px;
    font-size: 1rem;
  }

  .ranking-table-horizontal__column-price dl dd{
    padding: 0 0 0 4px;
    font-size: 1.15rem;
  }

  .ranking-table-horizontal__column-button a{
    height: 48px;
    font-size: 1.25rem;
  }
}



/*------------------------------------------
 
 Author Information

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

.author-info{
  margin: 32px 0 40px;
  padding: 20px;
  border: 1px solid #aaa;
  display: flex;
}

.author-info__image{
  width: 120px;
  margin: 0 24px 0 0;
  display: flex;
  align-items: center;
}

.author-info__image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
}

.author-info__text{
  padding: 2px 0 0;
  flex: 1;
}

.author-info__name{
  display: flex;
  align-items: center;
}

.author-info__name .author-info__title{
  margin-right: 5px;
  color: var(--color-primary);
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}

.author-info__name p{
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.7;
}

.author-info__message{
  margin: 8px 0 0;
}

.author-info__message p{
  font-size: 1.55rem;
  line-height: 1.7;
}


@media all and (max-width: 768px) {
  .author-info{
    margin: 22px -4px 0;
    padding: 12px 12px 14px;
  }

  .author-info__image{
    width: 76px;
    margin-right: 14px;
  }

  .author-info__text{
    padding: 0;
  }

  .author-info__name{
    display: block;
  }

  .author-info__name .author-info__title{
    margin: 0 0 -1px 0;
    font-size: 1.35rem;
  }

  .author-info__name p{
    font-size: 1.65rem;
  }

  .author-info__message{
    margin: 4px 0 0;
  }

  .author-info__message p{
    font-size: 1.3rem;
    line-height: 1.5;
  }
}



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

 Item Section

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

.items {
  margin-top: 32px;
}

.item-section {
  margin: 0 -8px;
  padding: 4px var(--padding-item-section-side) 32px;
  border: 2px solid var(--color-page-bg);
  border-radius: 12px;
}

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

.item-section:first-child {
  border-color: var(--color-primary);
}

.item-inner-heading {
  margin: 32px 0 0;
  padding: 12px 16px;
  font-size: 1.75rem;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
}



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

 Item Header

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

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

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

.item-header:is(.item-section:nth-child(1) *)::before {
  background-image: url(../img/icon-rank1.svg);
}

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

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


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

.item-ttl a {
  font-size: 2.2rem;
  font-weight: 600;
  text-decoration: underline;
}

/*.item-ttl a::after {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-link.svg);
  background-size: 100%;
  content: "";
  display: block;
}

.item-ttl a:hover::after {
  background-image: url(../img/icon-link-hover.svg);
}*/

.item-catch {
  font-size: 1.5rem;
  font-weight: 600;
}

.item-img {
  margin: 24px auto 0;
  text-align: center;
  position: relative;
  z-index: 0;
}

.item-img__label-hq::after {
  width: 100px;
  height: 100px;
  background: url(../img/badge-hq.png);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  right: 8px;
  z-index: 1;
  transform: rotate(16deg);
}

.item-img img {
  max-width: 300px;
}



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

 Item Section Heading

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

.item-section-heading {
  padding: 8px 10px 8px 38px;
  font-size: 1.65rem;
  background: linear-gradient(to bottom , #fff, #f5f5f5);
  border: 1px solid var(--color-border);
  border-bottom-width: 2px;
  border-radius: 4px;
  position: relative;
}

.item-section-heading::before {
  width: 23px;
  height: 23px;
  border: 6px solid var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}


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

 Item Point

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

.item-point {
  counter-reset: itemPoint;
}

.item-point-section {
  margin-top: 64px;
}

.item-point-section h4 {
  margin-bottom: 24px;
  padding: 10px 12px;
  font-size: 1.8rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 4px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.item-point-section h4::before {
  width: fit-content;
  height: 26px;
  padding: 3px 12px 0;
  color: #fff;
  font-size: 1.4rem;
  background: var(--color-primary);
  counter-increment: itemPoint;
  content: "✅️ 選ばれいてるポイント" counter(itemPoint);
  display: flex;
  align-items: center;
  position: absolute;
  top: -29px;
  left: 0;
}



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

 Item Score

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

.item-score{
  margin: 24px 0 16px;
  padding: 20px 0;
  background: #f3f6f8;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.item-score > div{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.item-score__point{
  border-right: 1px dashed #d0d0d0;
}

.item-score__point-label {
  width: fit-content;
  height: 20px;
  margin: -3px auto 0 !important;
  padding: 0 10px;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.item-score .item-score__point-text{
  margin: 12px 0 6px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.item-score__point-star{
  width: 112px;
}

.item-score__chart{
  padding: 4px 0;
}

.item-score__chart img{
  width: 75%;
}


@media all and (max-width: 768px) {
  .item-score{
    margin: 20px 0 16px;
    padding: 12px 0;
    grid-template-columns: 112px 1fr;
  }

  .item-score__point{
    padding: 0 12px;
  }

  .item-score .item-score__point-text{
    margin: 10px 0 4px;
    font-size: 1.8rem;
  }

  .item-score__point-star{
    width: 100%;
  }

  .item-score__chart{
    padding: 4px 0;
  }

  .item-score__chart img{
    width: 92%;
    max-width: 320px;
  }
}


.author-comment {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.author-comment__avatar {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
  overflow: hidden;
}

.author-comment__body {
  padding: 12px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  position: relative;
  z-index: 0;
}

.author-comment__body p {
  font-size: 1.55rem;
  line-height: 1.6;
}

.author-comment__body::before {
  width: 16px;
  height: 16px;
  background: #fff;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  transform: rotate(-135deg);
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: -1;
}



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

 Item Info Table

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

.item-info-table {
  margin: 24px -3px 0;
}

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

.item-info-table dt {
  height: 22px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.item-info-table dd {
  font-weight: 600 !important
}

.item-info-table__seal {
  width: 28px;
  margin: 0 auto 3px;
}

.item-info-table__notes {
  margin-top: 4px;
  text-align: right;
}



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

 Item Details

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

.item-details {
  margin: 24px 0 32px;
}

.item-details caption {
  margin: 0 0 12px;
  font-weight: 600;
}

.item-details table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--color-border);
}

.item-details th {
  width: 56px;
  color: #777;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border-bottom: 3px solid var(--color-black);
}

.item-details td {
  padding: 10px;
  border-bottom: 1px solid var(--color-border);
}

.item-details__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.item-details__list li {
  height: 32px;
  padding: 0 8px;
  color: var(--fc-default);
  font-size: 1.3rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-details .item-details__link {
  margin-top: 8px;
}

.item-details__link a {
  font-size: 1.5rem;
  text-decoration: underline;
}



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

 Certificate Section

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


.certificate-section{
  margin: 40px -20px 0;
  padding: 0 48px 28px;
  background: var(--color-page-bg);
}

.certificate-section + p{
  margin-top: 10px !important;
}

.certificate-section .certificate-section__find{
  margin: 0 -48px 28px;
  padding: 8px 12px;
  font-size: 20px;
  text-align: center;
}

.certificate-section ul{
  margin: 0;
  display: flex;
  justify-content: center;
}

.certificate-section li{
  max-width: 240px;
  flex: 1;
}

.certificate-section li:not(:first-child){
  margin-left: 20px;
}

.certificate-section .certificate-section__label{
  width: calc(100% - 10px);
  height: 28px;
  line-height: 28px;
  margin: -10px auto 0!important;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-radius: 14px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.certificate-section .certificate-section__label:after{
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  box-shadow: inset 1px 1px 0 rgba(0,0,0,0.08);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}

.certificate-section .certificate-section__label:before{
  width: 22px;
  height: 22px;
  content: "";
  display: block;
  background: url(../img/icon-certificate-check.svg);
  background-size: 22px 22px;
  position: absolute;
  top: 2px;
  right: 1px;
  z-index: 1;
}


.certificate-section .certificate-section__label.disable{
  background: #666;
}

.certificate-section .certificate-section__label.disable:before{
  content: none;
}

.certificate-section__img{
  border: 1px solid #ddd;
}

.certificate-section__img img{
  width: 100%;
}


@media all and (max-width: 768px) {
  .certificate-section{
    margin: 26px -16px 0;
    padding: 0 12px 20px;
  }

  .certificate-section + p{
    margin: 8px -3px 0 0 !important;
  }

  .certificate-section .certificate-section__find{
    padding: 4px 12px;
    margin: 0 -12px 20px;
    font-size: 16px;
  }

  .certificate-section li:not(:first-child){
    margin-left: 10px;
  }

  .certificate-section .certificate-section__label{
    width: 100%;
    height: 24px;
    line-height: 24px;
    margin: -8px auto 0 !important;
    padding: 0 6px;
    font-size: 12px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .certificate-section .certificate-section__label:after{
    width: 16px;
    height: 16px;
  }

  .certificate-section .certificate-section__label:before{
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    right: 2px;
  }

}



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

 Comment

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

.comment {
  margin-top: 28px;
}

.comment:is(.comment-large + *) {
  margin-top: 0;
}

.comment-items {
  margin-top: 24px;
}

.comment-item {
  height: auto;
  padding: 14px 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  opacity: 1;
}

.comment-item--img {
  width: 360px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  opacity: 1;
}

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

.comment-item.is-hidden,
.comment-item--img.is-hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  overflow: hidden;
  display: none;
}

.comment-item + .comment-item {
  margin-top: 18px;
}

.comment-item__header {
  padding: 0 14px 14px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-item__avatar {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  overflow: hidden;
}

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

.comment-item__digest {
  margin: -2px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.comment-item__rating {
  margin: 4px 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment-item__rating span {
  font-size: 1.7rem;
}

.comment-item__rating img {
  width: 88px;
  margin: 0;
  transform: translateY(0);
}

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

.comment-item__body p {
  font-size: 1.45rem;
  line-height: 1.6;
}

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

.comment .comment__notes {
  margin-top: 12px;
  color: #999;
  font-size: 1rem;
  line-height: 1.6;
  text-align: right;
}

.comment__more-btn {
  width: calc(100% - 24px);
  height: 48px;
  margin: 16px auto 0;
  color: #777;
  font-weight: 600;
  background: #fff;
  border: 2px solid var(--color-border);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/*------------------------------------------
 
 Comment Matome

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

.comment-matome {
  margin-top: 28px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.comment-matome__heading {
  padding: 4px 0;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.comment-matome__heading::before {
  width: 28px;
  height: 28px;
  background: url(../img/icon-comment-white.svg) no-repeat center / 100%;
  content: "";
  display: block;
}

.comment-matome ul {
  margin: 0;
  padding: 12px 16px;
}

.comment-matome li {
  padding: 0 0 0 32px;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
}

.comment-matome li:not(:first-child) {
  margin-top: 5px;
}

.comment-matome li::before {
  width: 24px;
  height: 24px;
  background: url(../img/check-baloon.svg) no-repeat center / 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}


/*------------------------------------------
 
 Talk

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

.talk {
  margin-top: var(--block-margin);
  display: flex;
  align-items: start;
}

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

.talk__img {
  width: 60px;
  overflow: hidden;
}

.talk__img::after {
  width: 100%;
  margin-top: 8px;
  content: "前田";
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  display: block;
}

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

.talk__text {
  min-height: 60px;
  padding: 14px;
  background: #f4f7f9;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  align-items: 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 {
  font-size: 95%;
  line-height: 1.7;
}

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



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

 Section / Choosing Tips

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

.choosing-tips__heading {
  margin-top: 28px;
}

.choosing-tips__heading h3 {
  padding: 12px 0 12px 48px;
  font-size: 2rem;
  border-bottom: 3px solid var(--color-page-bg);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.choosing-tips__heading h3 .--num {
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 1.6rem;
  background: var(--color-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  transform: translateY(-50%);
}

.choosing-tips__heading h3::before {
  width: 120px;
  height: 3px;
  background: var(--color-primary);
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
}

.choosing-tips__body {
  margin-top: 20px;
}

.choosing-tips__body p:not(:first-child) {
  margin-top: 20px;
}

.choosing-tips .img {
  margin: 20px 0;
}


.choosing-matome {
  margin: 32px 0 0;
  padding: 18px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
}

.choosing-matome__heading {
  width: fit-content;
  height: 28px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
  font-size: 1.7;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
}

.choosing-matome ul {
  margin-top: 12px;
  counter-reset: choosingMatome;
}

.choosing-matome li {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0 0 32px;
  position: relative;
}

.choosing-matome li::before {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 1.4rem;
  background: var(--color-primary);
  border-radius: 100%;
  counter-increment: choosingMatome;
  content: counter(choosingMatome);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.choosing-matome li:not(:first-child) {
  margin-top: 6px;
}



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

 Modules / Button Sub

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

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

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

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

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



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

 Modules / problem List

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

.problem-list {
  margin: 0 -9px;
  padding: 8px 14px;
  background: #f3f3f3;
}

.problem-list li {
  padding: 9px 0 9px 22px;
  font-size: 1.65rem;
  font-weight: 700;
  border-top: 1px dashed #ccc;
  position: relative;
}

.problem-list li:first-child {
  border-top: none;
}

.problem-list li::before {
  width: 7px;
  height: 7px;
  background: #726988;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}



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

 Modules / Facts List

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

.facts-list {
  margin-top: var(--block-margin);
  padding: 16px 20px;
  background: #eaf7ff;
  border-radius: var(--box-r);
  position: relative;
  overflow: hidden;
}

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

.facts-list li {
  padding-left: 18px;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
}

.facts-list li::before {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 4px;
}

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


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

 Modules / Memo Box

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

.memo-box {
  margin: 48px 0 32px;
  padding: 18px 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-primary);
  position: relative;
}

.memo-box__label {
  width: fit-content;
  height: 28px;
  padding: 0 12px 0 8px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 0;
  gap: 4px;
}

.memo-box__label::before {
  width: 17px;
  height: 17px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.memo-box p {
  margin-top: 0;
  font-size: 1.5rem;
}

.memo-box p + p {
  margin-top: 12px;
  line-height: 1.7;
}

.memo-box .img {
  margin-top: 16px;
}


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

 Modules / Box Point

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

.box-point {
  margin-top: 28px;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.box-point:is(.ta-center + *) {
  margin-top: 16px;
}

.box-point__heading {
  padding: 6px 0;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.box-point__heading span {
  padding: 0 8px;
  background: var(--color-primary);
  display: block;
  position: relative;
  z-index: 5;
}

.box-point ul {
  margin-top: 0;
  padding: 5px;
}

.box-point li {
  min-height: 52px;
  padding: 8px 10px 8px 35px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  background: var(--color-page-bg-l);
  border-radius: 4px;
  display: flex;
  align-items: center;
  position: relative;
}

.box-point li:not(:first-child) {
  margin-top: 3px;
}

.box-point li::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-check-simple.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}



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

 Modules / Table Price

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

.price-table {
  margin-top: var(--block-margin);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.price-table__item {
  border: 2px solid var(--color-primary);
  border-radius: 5px;
}

.price-table dt {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  background: var(--color-primary);
}

.price-table dd {
  height: 64px;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

 Modules / Author Profile

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

.author-profile {
  margin-top: 32px;
  padding: 20px 16px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px));;
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: -1px -1px;               
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-primary);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.author-profile__avata {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  overflow: hidden;
}

.author-profile__ttl {
  color: var(--color-primary);
  font-size: 1.7rem;
}

.author-profile__txt p {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1.7;
}



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

 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; }
}



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

 Check point

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

.check-point {
  margin-top: 36px;
  padding: 0 16px 16px;
  border: 3px dotted var(--color-primary);
  border-radius: 8px;
}

.check-point::before {
  width: fit-content;
  height: 24px;
  margin: -20px 0 0;
  padding: 0 12px;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 600;
  background: #fff;
  content: "CHECK!";
  display: block;
}

.check-point ul {
  margin-top: 16px !important;
}

.check-point li {
  padding-left: 38px;
  font-size: 1.7rem;
  font-weight: 600;
}

.check-point li:not(:first-child){
  margin-top: 4px;
}

.check-point li::before {
  width: 28px;
  height: 28px;
  content: "";
  background-image: url(../img/icon-check-l.svg);
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}



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

 Modules / Arrow Down

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

.arrow-down {
  margin: 24px 0;
  height: 20px;
  display: flex;
  justify-content: center;
}

.arrow-down::before {
  width: 240px;
  height: 20px;
  background: url(../img/arrow-down.svg) no-repeat center / 100%;
  content: "";
  display: block;
  animation: pikopiko 1s steps(1, end) infinite;
}


@keyframes pikopiko {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(0);
  }
}


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

 CTA Text

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

.txt-cta {
  margin-top: 40px;
  border: 3px solid var(--color-page-bg);
  border-radius: 6px;
  padding: 16px;
}

.txt-cta p {
  margin-top: 0;
  font-size: 1.6rem;
}

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



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

 Price Compare

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

.price-compare {
  margin-top: 24px;
}

.price-compare table {
  width: 100%;
  border: 1px solid var(--color-border);
  table-layout: fixed;
}

.price-compare thead th {
  padding: 10px 0;
  font-weight: 600;
  font-size: 1.3rem;
  text-align: center;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}

.price-compare thead th:first-child {
  width: 72px;
}

.price-compare tbody th {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background: var(--color-page-bg);
  border-bottom: 1px solid var(--color-border);
}

.price-compare tbody td {
  padding: 12px 0;
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border);
}

.price-compare tbody td img {
  width: 28px;
  margin-bottom: 1px;
  display: block;
}


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

 Footer

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

.g-footer {
  width: 100%;
  color: #fff;
  background: var(--color-black);
  border-top: 1px solid var(--color-border-bold);
}

.g-footer__inner{
  width: var(--width-main);
  margin: 0 auto;
  padding: 56px 0;
}

.g-footer .f-nav ul{
  display: flex;
  justify-content: center;
}

.g-footer .f-nav li{
  padding: 0 12px;
  position: relative;
}

.g-footer .f-nav li:not(:first-child):before{
  width: 1px;
  height: 18px;
  background: #ddd;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.g-footer .f-nav a{
  font-size: 13px;
}

.g-footer .copyright {
  margin: 4px 0 0;
  text-align: center;
}

.g-footer .copyright small {
  font-size: 1.2rem;
}

.g-footer.sp-nav-open {
  position: fixed;
}

@media all and (max-width: 768px) {
  .g-footer__inner{
    width: 100%;
    padding: 32px var(--padding-post-side);
  }
}



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

404

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

.page-404{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-404__box{
  width: 480px;
  max-width: calc(100% - 28px);
  padding: 40px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0,0,0,0.02);
  box-sizing: border-box;
}

.page-404__find{
  line-height: 1.2;
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.page-404__image{
  margin: 24px auto 32px;
  padding: 0 20px;
  text-align: center;
}

.page-404__image img{
  width: 100%;
  max-width: 400px;
  height: auto;
}

.page-404 p{
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.page-404__image .page-404 p{
  margin: 0;
}

.page-404__link-area{
  margin-top: 20px;
}

.page-404__link-area p{
  margin-top: 0;
  font-size: 1.9rem;
  line-height: 1.8;
}


@media all and (max-width: 768px) {

  .page-404__box{
    padding: 40px 20px;
  }
  
  .page-404__find{
    font-size: 28px;
  }

  .page-404__image{
    margin: 18px 0 24px;
  }

  .page-404 p{
    font-size: 1.4rem;
  }

  .page-404__link-area{
    margin: 16px 0 0;
  }

  .page-404__link-area p{
    font-size: 1.6rem;
  }
}