@charset "UTF-8";

/* --------------------
 Base
--------------------*/

:root{
  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic", sans-serif;
  --ff-zen-maru: "Zen Maru Gothic", sans-serif;

  --fs-default: 1.7rem;
  --line-height-default: 2;

  --ls-zen-maru: 0.03em;
}


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

:root{
  --fc-default: #333;

  --color-link-text: #0078de;
  --color-link-text-hv: #f60;

  --color-main: #00a86f;
  --color-main-l: #fffae6;

  --color-main-yellow: #ffcc22;

  --color-main-blue: #0082cb;
  --color-main-red: #f13b3b;
  --color-main-orange: #ff6845;

  --color-border-gray: #eaeaea;
  --color-border-dashed: #dad8d6;

  --color-border-table: #ddd;

  --color-page-bg: #f5f7f5;
  --color-page-bg-d: #e9ebe9;

  --color-box-bg: #f6f7f6;

  --btn-green: #03a832;
  --btn-green-d: #2f9742;
  --btn-orange: #ff784f;
  --btn-orange-d: #f86240;
  --btn-blue: #008ECE;
  --btn-blue-d: #007CB4;
}


/* --------------------
 Size
--------------------*/

:root{

  --header-height: 96px;

  --post-padding-side: 64px;
  --item-section-padding-side: 40px;

  --margin-l: 48px;
  
  --post-line-height: 2;

  --btn-r: 6px;

  --text-margin: 24px;
  --box-margin: 32px;
  --box-padding: 18px 24px;


  --color-red: #ea2031;
  --color-blue: #1199df;
  --color-green: #00a250;
  --color-purple: #9b77bb;
  --color-orange: #f7690a;
  --color-pink: #f7738c;

  --border-color: #dfdfdf;
  --link-color: #0078de;

  
  --box-padding-i: 20px 24px 20px 60px;
  --box-lh: 1.9;

  --box-r: 6px;

  --main-width: 728px;
  --width-sub: 300px;

  --btn-height: 80px;
}


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

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

    --fs-default: 1.45rem;
    --line-height-default: 1.9;

    --margin-l: 36px;
    --post-line-height: 1.76;
    --box-lh: 1.8;

    --text-margin: 20px;
    --box-margin: 24px;
    
    --box-padding: 14px 16px;

    --btn-height: 76px;
  }
}


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;
  letter-spacing: 0;
  line-height: var(--line-height-default);
  text-align: left;
  background: var(--color-page-bg);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font-size: inherit;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 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;
}

b, h1, h2, h3, h4{
  font-weight: 600;
}

a {
  cursor: pointer;
}

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



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

Header

------------------------------------------*/
.g-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: none;
}

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

.g-header__site-name{
  width: 260px;
  transform: translateY(-3px);
}

@media all and (max-width: 768px) {
  .g-header{
    border-bottom: 0;
  }

  .g-header__inner{
    width: 100%;
    padding: 0 16px;
  }

  .g-header__site-name{
    width: 172px;
    transform: translateY(-2px);
  }
}



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

Layout

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

.contents {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.main {
  width: var(--main-width);
}

.sub{
  width: var(--width-sub);
  margin-left: 48px;
}

@media all and (max-width: 768px) {
  .contents {
    width: 100%;
    margin: 0 auto;
    padding: 0 4px;
    display: block;
  }

  .main {
    width: 100%;
  }

  .sub{
    width: 100%;
    margin: 32px 0 0;
    padding: 0 8px;
  }
}

 

/*------------------------------------------
 
 Post / Header

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

.post {
  padding: 44px var(--post-padding-side);
  background: #fff;
}

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

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

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

.post-header__image.--bg-color {
  padding: 48px var(--post-padding-side) 0;
}

/*.post-header__image.--bg-color{
  margin: -44px calc(var(--post-padding-side) * -1) 0;
  padding: 28px var(--post-padding-side);
  background-color: var(--color-main);
  background-image: linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.08) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.08));
  background-size: 4px 4px;
  position: relative;
}*/

.post-header__image.--bg-color:after{
  height: 20px;
  padding: 0 6px;
  color: #999;
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ddd;
  content: "PR";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40px;
  right: 76px;
}

.post-header__image.--bg-color img{
  
}

.post-header__title{
  margin: 16px 0 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}

.post-header__meta{
  margin: 16px 0 0;
  padding: 2px 20px;
  background: var(--color-page-bg);
  display: flex;
}

.post-header__meta div{
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.post-header__meta div:not(:first-child){
  margin-left: 16px;
}

.post-header__meta div:before{
  width: 16px;
  aspect-ratio: 1 / 1;
  margin: 0 8px 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.post-header__update-date:before{
  background-image: url(../img/icon-update.svg);
}

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

.post-header .img{
  margin: 20px 0 !important;
}


@media all and (max-width: 768px) {
  .post {
    margin: 0 -4px;
    padding-top: 0;
    padding-bottom: 32px;
  }

  .post:has(.area-table){
    padding-bottom: 0;
  }

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

  .post-header__image{
    margin: -20px -18px 0;
  }

  .post-header__image.--bg-color{
    margin-top: -20px;
    padding: 0;
  }

  .post-header__image.--bg-color:after{
    height: 16px;
    padding: 0 4px 1px;
    font-size: 1.2rem;
    top: 1px;
    right: 1px;
  }

  .post-header__image.--bg-color img{
    
  }

  .post-header__title{
    margin: 12px 0 0;
    font-size: 1.75rem;
  }

  .post-header__meta{
    margin-top: 12px;
    padding: 2px 10px;
  }

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

  .post-header__meta div:not(:first-child){
    margin-left: 12px;
  }

  .post-header__meta div:before{
    width: 15px;
    margin: 0 6px 0 0;
  }
}


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

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


.post-body h2 {
  line-height: 1.55;
  margin: 64px 0px 0;
  padding: 16px 16px 16px 22px;
  font-family: var(--ff-zen-maru);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.65;
  background: linear-gradient(135deg, transparent 25%, var(--color-page-bg) 25%, var(--color-page-bg) 50%, transparent 50%, transparent 75%, var(--color-page-bg) 75%, var(--color-page-bg));
  background-size: 4px 4px;
  border: 2px solid #fff;
  border-radius: var(--box-r);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  outline: 1px solid var(--color-border-gray);
  position: relative;
}

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

.post-body h2:is(.item-section + *){
  margin-top: 56px;
}

.post-body > h3{
  line-height:  1.5;
  margin: 52px 0 0;
  font-size: 2rem;
}

.post-body > h3{
  padding: 12px 14px;
  color: #fff;
  background: var(--color-main);
}

.post-body h4 + p{
  margin: 8px 0 0;
}

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

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

.post-body p:where(.box + *),
.post-body p:where(.img + *){
  margin-top: var(--box-margin)
}

.post-body a { color: var(--color-link-text); }
.post-body a:hover { color: var(--color-link-text-hv); }


.post-body .list-check li {
  margin:  8px 0 0;
  padding: 0 0 0 40px;
}

.post-body .list-check li:before {
  width: 28px;
  height: 28px;
  background: url(../img/icon-check.png);
  background-size: 28px 28px;
  top: 1px;
}

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

.post-body .img{
  margin-top: var(--box-margin);
}

.post-body .img:is(.ta-center + *){
  margin-top: calc(var(--box-margin) - 12px);
}

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

.post-body .img--border{
  border: 1px solid #ddd;
  padding: 12px;
  box-sizing: border-box;
}

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

.post-body .embed{
  margin: 36px 0 0;
  overflow: hidden;
}

.post-body .embed + .embed{
  margin: 20px 0 0;
}

.post-body .embed iframe{
  width: 100%;
  box-sizing: border-box;
}

.post-body .embed + p{
  margin: 8px 0 0;
}

.post-body .img a {
  display: block;
  text-align: center;
  line-height: 1.7;
  font-size: 110%;
  font-weight: bold;
}

.post-body .img a:hover img {
  opacity: 0.8;
}

.post-body .img + .img {
  margin: 24px 0 0;
}

.post-body hr{
  margin: 36px 0;
  border-top: 1px solid #e5e8ec;
}



@media all and (max-width: 768px) {
  .post-header{
    padding: 20px 0 0;
  }

  .post-header .img{
    margin: 12px -16px !important;
  }

  .post-body .img:is(.ta-center + *){
    margin-top: calc(var(--box-margin) - 10px);
  }

  .post-body .post-ttl h1 {
    font-size: 20px;
  }

  .post-body h2 {
    margin: 52px -10px 0;
    font-size: 1.85rem;
    padding: 12px 12px 12px 16px;
  }

  .post-body h2:before {
    width: 4px;
    height: calc(100% - 16px);
    top: 8px;
  }

  .post-body h2:is(.items + *){
    margin-top: 28px;
  }

  .post-body h3 {
    margin: 40px 0 0;
    padding: 10px 12px;
    font-size: 18px;
  }

  .post-body h2 + h3{
    margin: 28px 0 0;
  }

  .post-body h4{
    font-size: 18px;
  }

  .post-body h4:before{
    width: 18px;
    height: 18px;
    top: 6px;
  }

  .post-body .img + .img {
    margin: 14px 0 0;
  }

  .post-body .margin-wide {
    margin-top: var(--margin-l);
  }

  .post-body hr{
    margin: 28px 0;
    border-top: 1px solid #e5e8ec;
  }
}



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

 List

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

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

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

.post-body li{
  line-height: 1.65;
  margin: 6px 0 0;
  position: relative;
}

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

.list-default li {
  padding: 0 0 0 16px;
}

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

.list-default.--style-blue li:before{
  background-color: #157dd6;
}

.list-check-small:is(.box > *){
  padding: 4px 0;
}

.list-check-small li{
  line-height: 1.6;
  margin: 4px 0 0;
  padding: 0 0 0 24px;
  font-size: var(--post-fs);
  position: relative;
}

.list-check-small li:before{
  width: 17px;
  aspect-ratio: 1 / 1;
  content: "";
  background-color: var(--color-main);
  background-image: url(../img/icon-check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
  border-radius: 3px;
  display: block;
  position: absolute;
  top: 5px;
  left: -1px;
}

.list-check-small--orange li:before{
  background-color: var(--color-orange);
}

.list-check-small--blue li:before{
  background-color: var(--color-blue);
}

.list-check-small--pink li:before{
  background-color: var(--color-pink);
}

.list-check-small--main li:before{
  background-color: var(--color-main);
}

.list--multiline li{
  line-height: 1.75;
}

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


@media all and (max-width: 768px) {
  .post-body ul li{
    margin-top: 5px;
  }

  .list-default li:before {
    top: 9px;
  }

  .list-check-small:is(.box > *){
    padding: 2px 0;
  }

  .list-check-small li{
    padding: 0 0 0 22px;
  }

  .list-check-small li:before{
    width: 15px;
    top: 4px;
  }
}



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

 Box

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

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

.post-body .box--border-gray {
  border: 3px solid var(--color-border-gray);
}

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

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

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


/*------------------------------------------
 Box / Point
------------------------------------------*/

.box-point{
  margin-top: var(--box-margin);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
  border-radius: var(--box-r);
}

.box-point .box-point__heading{
  padding: 8px 0;
  color: #fff;
  font-family: var(--ff-zen-maru);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: var(--ls-zen-maru);
  line-height: 1.6;
  background: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--box-r) var(--box-r) 0 0px;
}

.box-point__find span{
  font-size: 106%;
}

.box-point__find span:first-child{
  margin-right: 3px;
}

.box-point__find span:last-child{
  margin-left: 3px;
}

.box-point ul{
  margin-top: 0;
  padding: 4px 12px;
  border: 2px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.box-point ul li{
  margin: 0;
  padding: 9px 20px 9px 44px;
  font-size: 1.55rem;
  line-height: 1.7;
  position: relative;
}

.box-point ul li:before{
  width: 24px;
  aspect-ratio: 1 / 1;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  background: url(../img/icon-check-point.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
}

.box-point li:not(:first-child){
  border-top: 1px dashed var(--color-border-dashed);
}

.box-point + .ta-right{
  margin-top: 8px;
}


@media all and (max-width: 768px) {
  .box-point{
    margin-left: -4px;
    margin-right: -4px;
  }

  .box-point .box-point__heading{
    padding: 6px 0 7px;
    font-size: 1.6rem;
  }

  .box-point ul{
    padding: 2px 12px;
  }

  .box-point ul li{
    line-height: 1.7;
    margin: 0;
    padding: 9px 2px 9px 32px;
    font-size: 1.45rem;
    font-weight: 500;
  }

  .box-point ul li:before{
    width: 22px;
    left: 0px;
  }

  .box-point + .ta-right{
    margin-top: 8px;
  }
}



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

 Choice Point

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

.choice-point{
  margin: 72px calc(var(--post-padding-side) * -1) 0;
  padding: 0 calc(var(--post-padding-side) - 20px) 56px;
  background-color: var(--color-main-purple-l);
  counter-reset: choice-num;
}

.choice-point .choice-point__title{
  margin: 0 -44px;
  padding: 12px 0;
  font-family: var(--ff-sippori);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  background-color: #fff;
  border-top: 4px solid var(--color-main);
  border-radius: 0;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.choice-point .choice-point__title b{
  font-weight: inherit;
}

.choice-point .choice-point__title:before{
  content: none;
}

.choice-point__summary{
  margin: 36px 0 0;
  padding: 24px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.01);
}

.choice-point__summary ul{
  counter-reset: choicePointSummaryNum;
}

.choice-point__summary li{
  padding: 0 0 0 34px;
  font-size: 1.75rem;
  position: relative;
}

.choice-point__summary li:before{
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-main);
  border-radius: 100%;
  counter-increment: choicePointSummaryNum;
  content: counter(choicePointSummaryNum);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.choice-point__section{
  margin-top: 48px;
  padding: 16px 40px 40px;
  background: #fff;
  border-top: 4px solid var(--color-main);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
  position: relative;
}

.choice-point__label{
  width: fit-content;
  height: 28px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  background: var(--color-main);
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.choice-point__label:after {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  counter-increment: choice-num;
  content: counter(choice-num)
}

.choice-point .choice-point__find{
  margin: 4px 0 16px;
  padding: 0;
  font-family: var(--ff-sippori);
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  border: none;
}

.choice-point .choice-point__find:before{
  content: none;
}

.choice-point__find-img{
  margin: 0 0 32px;
}

.choice-point__section p,
.choice-point__section li{
  font-size: 1.65rem;
}

.choice-point p + p{
  margin-top: calc(var(--text-margin) - 4px);
}

.choice-point p:where(.img + *),
.choice-point p:where(.box + *),
{
  margin-top: calc(var(--box-margin) - 6px);
}

.choice-point .choice-point__find-img +  p{
  margin: 20px 0 0;
}

.choice-point .box-gray{
  margin: 22px 0 0;
}


@media all and (max-width: 768px) {
  .choice-point{
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 0 10px 28px;
  }

  .choice-point .choice-point__title{
    margin: 0 -10px;
    padding: 10px 0;
    font-size: 1.85rem;
  }

  .choice-point__summary{
    margin-top: 24px;
    padding: 16px 16px;
  }

  .choice-point__summary li{
    padding: 0 0 0 30px;
    font-size: 1.6rem;
  }

  .choice-point__summary li:before{
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
  }

  .choice-point__section{
    margin-top: 32px;
    padding: 16px 18px 28px;
    border-width: 3px;
  }

  .choice-point__box:not(:first-child){
    margin-top: 20px;
  }

  .choice-point__label{
    height: 20px;
    line-height: 17px;
    font-size: 1.15rem;
    top: -20px;
  }

  .choice-point__label:after{
    font-size: 1.15rem;
  }

  .choice-point .choice-point__find{
    margin: 0 0 10px;
    font-size: 1.85rem;
  }

  .choice-point__find-img{
    margin: 0 0 22px;
  }

  .choice-point__section p,
  .choice-point__section li{
    font-size: 1.45rem;
    line-height: 1.7;
  }

  .choice-point__section .box{
    margin-top: calc(var(--box-margin) - 4px);
  }

  .choice-point .choice-point li{
    font-size: 15px;
  }

  .choice-point .box-gray{
    margin: 18px 0 0;
  }

}



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

 Recap Section

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

.recap-section__title h2{
  margin: 64px 0 0;
  padding: 0;
  font-weight: 800;
  text-align: center;
  background: none;
}

.recap-section__title h2:before{
  content: none;
}

.recap-section__title h2 span{
  width: fit-content;
  height: 28px;
  margin: 0 auto 8px;
  padding: 0 24px;
  color: #fff;
  font-size: 1.6rem;
  background: var(--color-main-red);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media all and (max-width: 768px) {
  .recap-section__title h2{
    margin: 48px 0 0;
  }

  .recap-section__title h2 span{
    height: 24px;
    margin: 0 auto 12px;
    font-size: 1.4rem;
  }
}



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

 Point Section

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

.point-section{
  margin: 24px 0 0;
  counter-reset: point-number 0;
}

.point-section__list{
  padding: 20px 24px 24px;
  background: #fff;
  border: 4px solid #eee;
  border-radius: 10px;
}

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

.point-section h4{
  margin: 0;
  padding: 0 0 0 42px;
}

.point-section h4:before{
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(point-number);
  counter-increment: point-number 1;
  position: absolute;
  top: 2px;
  left: 0;
}

.point-section p{
  font-size: 16px;
}

.point-section p a,
.point-section li a{
  font-weight: bold;
  text-decoration: underline;
}



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

  .point-section{
    margin: 18px 0 0;
  }

  .point-section__list{
    padding: 12px 14px 16px;
    border-width: 3px;
  }

  .point-section__list:not(:first-child){
    margin-top: 14px;
  }

  .point-section h4{
    padding: 0 0 0 34px;
    font-size: 17px;
  }

  .point-section h4:before{
    width: 28px;
    height: 28px;
    font-size: 14px;
    left: -2px;
  }

  .point-section h5{
    padding: 1px 12px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
  }

  .point-section p,
  .point-section li{
    line-height: 1.70;
    font-size: 14px;
  }
}



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

 Check find

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

.check-find{
  padding: 14px 0 14px 40px !important;
  position: relative;
  border-top: none !important;
  border-bottom: 2px dotted #aaa !important;
}

.check-find:before{
  width: 30px;
  height: 30px;
  content: "";
  background: url(../img/icon-check.png) no-repeat center;
  background-size: 20px 14px;
  border-radius: 15px;
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
}

.check-find--orange:before{
  background-color: var(--color-orange);
}

.check-find--blue:before{
  background-color: var(--color-blue);
}

.check-find--gold:before{
  background-image: url(../img/icon-check-gold.png);
}



@media all and (max-width: 768px) {
  .check-find{
    padding: 12px 0 12px 34px !important;
  }
  .check-find:before{
    width: 26px;
    height: 26px;
    content: "";
    background-size: 18px 13px;
    top: 11px;
  }
}



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

 Number find

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

.num-find{
  padding: 14px 0 14px 40px !important;
  position: relative;
}

.num-find span{
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  background: var(--color-main);
  border-radius: 15px;
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
}


@media all and (max-width: 768px) {
  .num-find{
    padding: 12px 0 10px 34px !important;
  }
  .num-find span{
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 13px;
    border-radius: 13px;
    top: 12px;
  }
}



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

 Link Btn

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

.post-body .btn-microcopy--top{
  margin-top: 36px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.btn-microcopy--top:before{
  width: 2px;
  height: 32px;
  margin-right: 3px;
  background: #bbb;
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(-17deg);
}

.btn-microcopy--top:after{
  width: 2px;
  height: 32px;
  background: #bbb;
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(17deg);
}

.btn{
  margin: 32px auto 0;
  padding: 0;
  box-sizing: border-box;
}

.btn:is(.btn-microcopy--top + *){
  margin-top: 12px;
}

.btn a{
  width: 100%;
  height: var(--btn-height);
  line-height: 1;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--btn-blue);
  border: 1px solid var(--btn-blue-d);
  border-radius: calc(var(--btn-height) / 2);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  overflow: hidden;
  transition: .2s;
}

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

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

.btn--color-orange a{
  background: var(--btn-orange);
  border-color: var(--btn-orange-d);
}

.btn span{
  position: relative;
  z-index: 5;
}

.btn span + span{
  margin: 11px 0 1px;
}

.btn .btn-label-text{
  width: 220px;
  height: 26px;
  line-height: 22px;
  color: var(--btn-orange);
  font-size: 15px;
  font-weight: bold;
  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-inpage-link a{
  height: 68px;
  font-size: 1.7rem;
  background: var(--color-main);
  border: none;
  outline: none;
}

.btn-inpage-link a:after{
  margin-top: -10px;
  background-image: url(../img/arrow-circle-down.svg);
  animation: pyokopyokoDown 2s ease infinite;
  transform: translateY(0);
}

.post-body .official-link{
  margin: 20px 0 0;
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-body .official-link:before{
  height: 22px;
  margin: 0 10px 0 0;
  padding: 0 10px;
  font-size: 1.45rem;
  background: var(--color-page-bg-d);
  border-radius: 4px;
  content: "公式";
  display: flex;
  align-items: center;
}

.post-body .official-link a{
  text-decoration: underline;
}

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

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

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

.btn--color-orange.btn-animation--shiny a:before{
  background-color: #ffa279;
}

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


@media all and (max-width: 768px) {
  .btn-micro-copy{
    font-size: 14px !important;
    line-height: 1.5;
  }

  .post-body .btn-microcopy--top{
    font-size: 1.6rem;
    gap: 14px;
  }

  .btn-microcopy--top:before,
  .btn-microcopy--top:after{
    height: 32px;
  }

  .btn{
    width: 100%;
    margin: 28px auto 0;
    padding: 0;
  }

  .btn-micro-copy + .btn{
    margin-top: 0;
  }

  .btn .btn-label-text{
    width: 200px;
    height: 22px;
    line-height: 18px;
    font-size: 13px;
    top: -12px;
  }

  .btn + .ta-right{
    margin: 12px 0 0;
  }

  .btn a{
    font-size: 1.7rem;
    border-radius: 5px;
  }

  .btn a:after{
    width: 19px;
    right: 10px;
  }

  .btn span + span{
    margin: 10px 0 1px;
  }

  .btn-inpage-link a{
    height: 56px;
    font-size: 1.55rem;
  }

  .post-body .official-link{
    margin: 14px 0 0;
    font-size: 1.45rem;
  }

  .post-body .official-link:before{
    height: 20px;
    padding: 0 8px;
    font-size: 1.25rem;
  }
}



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

 CTA box

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

.cta-box{
  margin: 28px 0 0;
  background: #fff2f0;
  border: 2px dotted var(--color-main);
  padding: var(--box-padding);
}

.cta-box li{
  padding: 0 0 0 32px;
  position: relative;
}

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

.cta-box li:before{
  width: 22px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-check-cta.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}


@media all and (max-width: 768px) {
  .cta-box li{
    padding: 0 0 0 27px;
  }

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

  .cta-box li:before{
    width: 20px;
  }
}



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

 Link Icon

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

.icon-link{
  width: 18px;
  height: 24px;
  margin: 3px 0 0 6px;
  background: url(../img/icon-link.svg) no-repeat;
  background-position: 0 6px;
  background-size: 18px 18px;
  display: inline-block;
  vertical-align: top;
}

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


@media all and (max-width: 768px) {
  .icon-link{
    width: 16px;
    height: 22px;
    margin: 1px 0 0 4px;
    background-size: 15px 15px;
  }
}



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

 Ranking Table

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

/*------------------------------------------
 Ranking Table / Title
------------------------------------------*/

.ranking__title{
  margin: 56px 0 0;
}

.ranking__title h2{
  margin: 0;
  font-size: 2.4rem;
  background: #f6f6f6;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-top: 5px solid var(--color-main);
  border-bottom: 1px solid var(--color-border-gray);
  border-radius: 0;
}

.ranking__title h2:before{
  content: none;
}

.ranking__title h2 span{
  width: fit-content;
  height: 30px;
  margin: 0 0 8px;
  padding: 0 24px;
  color: #fff;
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 30px;
  background: var(--color-main);
  border-radius: 15px;
}


@media all and (max-width: 768px) {
  .ranking__title{
    margin: 44px -16px 0;
  }

  .ranking__title h2{
    font-size: 2rem;
    border-top-width: 4px;
  }

  .ranking__title h2 span{
    height: 24px;
    font-size: 1.4rem;
    line-height: 24px;
    border-radius: 12px;
  }
}


/*------------------------------------------
 Ranking table / Base
------------------------------------------*/

.ranking{
  margin: 56px -24px 0;
}

.ranking:is(.ranking__title + *){
  margin-top: 20px;
}

.ranking__inner{
  width: 100%;
}

.post-body .ranking__scroll-guide{
  margin: 32px -40px 0;
  color: #777;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
  animation: scrollGuide 2.5s infinite;
}

@keyframes scrollGuide{
  0%{ transform:translateX(0); }
  60%{ transform:translateX(0); }
  70%{ transform:translateX(3px); }
  80%{ transform:translateX(0); }
  90%{ transform:translateX(3px); }
  100%{ transform:translateX(0); }
}

.ranking__section-title{
  height: 28px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranking__section-title span{

}

.ranking__column > ul{
  display: flex;
  justify-content: center;
  border-left: 1px solid var(--color-border-gray);
  border-right: 1px solid var(--color-border-gray);
}

.ranking__column > ul > li{
  margin: 0 !important;
  padding: 12px 6px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
}

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

.ranking__column > ul > li:not(:first-child){
  border-left: 1px solid var(--color-border-gray);
}

.ranking .seal{
  width: 30px;
  margin: 0 auto 6px;
  text-align: center;
}

.ranking .seal img{
  aspect-ratio: 1 / 1;
}


/*------------------------------------------
 Ranking table / Column Parts
------------------------------------------*/

.ranking .service-column{
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.ranking .service-column ul{
  box-sizing: border-box;
  border-left: 1px solid var(--color-border-gray);
  border-right: 1px solid var(--color-border-gray);
  counter-reset: rankingService;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

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

.ranking .service-column ul li:before{
  height: 24px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  background: #1a1d1d;
  counter-increment: rankingService;
  content: 'No.' counter(rankingService);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking .service-column ul li:nth-child(1):before{
  background: #f8c02b;
}

.ranking .service-column ul li:nth-child(2):before{
  background: #a5a8ad;
}

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

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

.ranking .service-column ul li:not(:first-child){
  border-left: 1px solid var(--color-border-gray);
}

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

.ranking .service-column__image{
  margin: 0 20px 12px;
  padding: 2px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.ranking .service-column__image img{
  width: 100%;
}

.ranking .service-column__name{
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.ranking .service-column__name a{  
  text-decoration: underline;
}

.ranking .review-column li{
  min-height: 80px;
}

.ranking .review-column li p{
  line-height: 1;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.ranking .review-column__star{
  width: 104px;
  margin: 6px auto 2px;
}


/*------------------------------------------
 Ranking table / Button
------------------------------------------*/

.ranking .button-column li{
  padding: 16px 8px;
}

.ranking .button-column li a{
  width: 100%;
  height: 52px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  background: var(--btn-blue);
  border-radius: calc(var(--btn-r) - 1px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking .button-column li a:after{
  width: 16px;
  aspect-ratio: 1 / 1;
  margin: 0 0 0 3px;
  background: url(../img/icon-link-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.ranking .button-column .no1-button{
  background-color: var(--btn-orange);
}


@media all and (max-width: 768px) {
  .ranking{
    margin: 32px -16px 0;
  }

  .post-body .ranking__scroll-guide{
    margin: 24px -4px 0;
    font-size: 1.3rem;
  }

  .ranking__section-title{
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    font-size: 1.35rem;
  }

  .ranking__section-title span{
    left: 10px;
  }

  .ranking__column > ul > li{
    line-height: 1.3;
    padding: 8px 6px;
    font-size: 1.35rem;
  }

  .ranking .seal{
    width: 29px;
  }

  .ranking .service-column{
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--color-border-gray);
  }

  .ranking .service-column ul li{
    padding: 0 6px 12px;
  }

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

  .ranking .service-column__image{
    margin: 6px -3px 3px;
    padding: 6px 2px;
  }

  .ranking .service-column__image img{
    width: 100%;
  }

  .ranking .service-column__name{
    font-size: 1.45rem;
  }

  .ranking .review-column li{
    height: 68px;
  }

  .ranking .review-column li p{
    margin: -4px 0 2;
    font-size: 1.55rem;
  }

  .ranking .review-column__star{
    width: 100%;
    max-width: 92px;
    margin: 3px auto 0;
    padding: 0 4px;
  }

  .ranking .service-column__name a{
    font-size: 1.3rem;
  }

  .ranking .button-column li{
    padding: 10px 6px;
  }

  .ranking .button-column li a{
    font-size: 1.45rem;
  }


  .ranking .button-column li a:after{
    width: 14px;
    height: 14px;
    margin: 0 0 0 2px;
  }
}



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

 Tool Tip

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

.ranking .tooltip__icon{
  height: 18px;
  width: 18px;
  margin: 3px 0 0 4px;
  background: #888;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.ranking .tooltip__icon:before{
  content: "？";
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  display: block;
}

.tooltip__filter{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.tooltip__filter.open{
  display: block;
  animation-name: tooltipFadeIn;
  animation-duration: 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

.tooltip__modal{
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.tooltip__modal.open{
  display: flex;
  animation-name: tooltipFadeIn;
  animation-duration: 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

.tooltip__box{
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.12);
  position: relative;
  z-index: 10000;
}

.tooltip__box-inner{
  padding: 28px 24px;
}

.tooltip__box-inner h5{
  font-size: 18px;
  font-weight: bold;
}

.tooltip__box-inner p{
  font-size: 16px;
  line-height: 1.6;
}

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

.tooltip__close-btn{
  width: 30px;
  height: 30px;
  background: #222;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -10px;
  right: -10px;
}

.tooltip__close-btn:before{
  content: "×";
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.tooltip__inner-close-btn{
  height: 48px;
  margin: 16px 0 0;
  color: #777;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.08);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooltip__inner-close-btn:after{
  margin: 0 0 0 3px;
  font-size: 18px;
  content: "×";
}

@keyframes tooltipFadeIn {
  0% {
  }
  100% {
    opacity: 1;
  }
}


@media all and (max-width: 768px) {
  .ranking .tooltip__icon{
    width: 16px;
    height: 16px;
  }

  .ranking .tooltip__icon:before{
    font-size: 10px;
    line-height: 16px;
  }

  .tooltip__box{
    width: calc(100% - 32px);
  }

  .tooltip__box-inner{
    padding: 24px 20px;
  }

  .tooltip__box-inner p{
    font-size: 14px;
  }

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



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

 Trend Box

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

.trend-box{
  margin: 48px -32px 0;
  padding: 28px 32px;
  border: 8px solid #ffe6e8;
  border-radius: 5px;
}

.trend-box .trend-box__find{
  margin: 0 0 20px;
  padding: 0;
  color: var(--color-main);
  line-height: 1.6;
}

.trend-box .trend-box__find:before{
  content: none;
}

.trend-box p{
  margin-top: 12px;
  font-size: 17px;
}


@media all and (max-width: 768px) {
  .trend-box{
    margin: 40px -14px 0;
    padding: 20px 14px;
    border-width: 6px;
  }

  .trend-box .trend-box__find{
    margin: 0 0 14px;
    font-size: 18.5px;
  }

  .trend-box p{
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.8;
  }
}



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

 Label List

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

.label-list{
  margin: 32px 0 40px;
}

.label-list__find{
  height: 28px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.label-list__find span{
  width: fit-content;
  height: 28px;
  line-height: 28px;
  margin: 0 auto;
  padding: 0 16px;
  color: var(--color-main);
  font-size: 19px;
  font-weight: 700;
  background: #fff;
  display: block;
  position: relative;
  z-index: 1;
}

.label-list__find:after{
  width: 100%;
  height: 2px;
  background: var(--color-main);
  border-radius: 6px;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

.post-body .label-list ul{
  margin: 20px 0 0;
  display: flex;
}

.post-body .label-list ul li{
  height: 32px;
  line-height: 32px;
  color: #FA7373;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  flex: 1;
  background: #FFEEEF;
  border: 1px solid #FCC9C2;
  border-radius: 16px;
}

.post-body .label-list ul li.disable{
  color: #bbb;
  background: #f3f3f3;
  border-color: #ddd;
}

.post-body .label-list ul li:not(:first-child){
  margin: 0 0 0 6px;
}

@media all and (max-width: 768px) {
  .label-list{
    margin: 16px 0 32px;
  }
  .label-list__find span{
    font-size: 17px;
  }
  .post-body .label-list ul{
    margin: 10px 0 0;
  }
  .post-body .label-list ul li{
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }
}



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

 Ranking Table Horizontal

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

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

.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{
  width: 120px;
  height: 30px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  background: var(--color-main);
}

.ranking-table-horizontal th.column--item{
  width: 120px;
  position: sticky;
  left: 0;
}

.ranking-table-horizontal th.column--process{
  width: 140px;
}

.ranking-table-horizontal th.column--review{
  width: 160px;
}

.ranking-table-horizontal th.column--price{
  width: 160px;
}

.ranking-table-horizontal th.column--plan{
  width: 140px;
}

.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: 120px;
  padding: 0 10px;
  font-size: 1.45rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
}

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

.ranking-table-horizontal td.column--item{
  background: #fff;
  position: sticky;
  left: 0;
  z-index: var(--z-sticky);
}

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

.ranking-table-horizontal td.column--item a span{
  margin: 4px 0 -3px;
  font-size: 1.25rem;
  font-weight: 600;
}

.ranking-table-horizontal td.column--item img{
  transition: .2s;
}

.ranking-table-horizontal td.column--item a:hover img{
  opacity: 0.7;
}

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

.ranking-table-horizontal td.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;
}

.ranking-table-horizontal td.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) td.column--item:after{
  border-left-color: #f8c02b;
  border-top-color: #f8c02b;
}

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

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

.ranking-table-horizontal td .seal{
  width: 28px;
  margin: 0 auto 8px;
}

.ranking-table-horizontal td .seal img{
  width: 100%;
}


.ranking-table-horizontal__column-button a{
  height: 52px;
  width: 100%;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--btn-purple);
  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-green);
}


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

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

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

  .ranking-table-horizontal th.column--process{
    width: 112px;
  }

  .ranking-table-horizontal th.column--review{
    width: 140px;
  }

  .ranking-table-horizontal th.column--price{
    width: 140px;
  }

  .ranking-table-horizontal th.column--plan{
    width: 104px;
  }

  .ranking-table-horizontal table thead th{
    width: 104px;
  }

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

  .ranking-table-horizontal td.column--item a span{
    font-size: 1.1rem;
  }

  .ranking-table-horizontal td.column--item img{
    width: 80px;
  }

  .ranking-table-horizontal td.column--item:before{
    width: 24px;
    height: 24px;
    font-size: 1.15rem;
  }

  .ranking-table-horizontal td.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: 44px;
    font-size: 1.25rem;
  }
}



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

 Item info table

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

.item-info-table{
  margin-top: 32px;
}

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

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

.item-info-table dd{
  height: 68px;
  font-size: 1.6rem;
  font-weight: 500;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.item-info-table .column-score{
  font-size: 1.75rem;
  line-height: 1;
  text-align: center;
}

.item-info-table .column-score img{
  width: 96px;
  margin: 2px 0 3px;
}

.item-info-table .column-seal:before{
  width: 40px;
  aspect-ratio: 1 / 1;
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0.17;
}

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

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

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

.item-info-table dd > div{
  position: relative;
  z-index: 5;
}

.contact-methods{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.contact-methods li{
  width: 26px;
  margin: 0 !important;
}

@media all and (max-width: 768px) {
  .item-info-table{
    margin: 28px 0 0;
  }

  .item-info-table dt{
    height: 22px;
    padding: 0 0 2px;
    font-size: 1.3rem;
  }

  .item-info-table .column-score{
    font-size: 1.65rem;
  }

  .item-info-table .column-score img{
    width: 88px;
    margin: 3px 0;
  }

  .item-info-table dd{
    font-size: 1.5rem;
  }

  .item-info-table .column-seal:before{
    width: 38px;
  }

  .contact-methods{
    gap: 4px;
  }
}



/*------------------------------------------
 Normal table
------------------------------------------*/

.normal-table{
  margin: var(--box-margin);
}

.normal-table table{
  width: 100%;
  border-top: 1px dashed #c0c0c0;
}

.normal-table th{
  padding: 12px 0;
  font-weight: bold;
  border-bottom: 1px dashed #c0c0c0;
  box-sizing: border-box;
}

.normal-table .width-normal{
  width: 120px;
}

.normal-table th span{
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background: #f0f4f5;
  border-radius: 16px;
  display: block;
}

.normal-table td{
  padding: 12px 14px;
  font-size: 15px;
  border-bottom: 1px dashed #c0c0c0;
  box-sizing: border-box;
}

.normal-table td a[data-gtm-click="table-link"]{
  font-size: 16px;
  font-weight: bold;
}

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

.normal-table .tag-list li{
  height: 24px;
  line-height: 22px;
  margin: 0 5px 5px 0;
  padding: 0 12px;
  color: var(--color-main);
  font-size: 14px;
  background: #f2fdf1;
  border: 1px solid #dbf5d5;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
}

.normal-table .tag-list .disable{
  color: #888;
  border-color: var(--border-color);
  background: #f6f6f6;
}

.normal-table .icon-link{
  width: 16px;
  height: 24px;
  margin: 0 0 0 4px;
  background-size: 16px 16px;
}

@media all and (max-width: 768px) {
  .normal-table .width-normal{
    width: 80px;
  }
  .normal-table th{
    padding: 10px 0;
  }

  .normal-table th span{
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }

  .normal-table td{
    padding: 10px 12px;
    font-size: 14px;
  }

  .normal-table .tag-list li{
    height: 20px;
    line-height: 18px;
    padding: 0 6px;
    font-size: 13px;
  }

  .normal-table .icon-link{
    width: 14px;
    height: 22px;
    margin: 0 0 0 4px;
    background-size: 14px 14px;
  }
}


/*------------------------------------------
 Ranking Find
------------------------------------------*/

.ranking-find h2{
  padding: 22px 0 56px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  background: url(../img/ranking-ttl-bg.jpg) bottom center no-repeat;
  border: none;
}


@media all and (max-width: 768px) {
  .ranking-find h2{
    margin: 44px -16px 0;
    padding: 18px 12px 42px;
    font-size: 20px;
  }
}



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

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

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

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

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

.talk__img img {
  width: inherit;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  border: 2px solid #eee;
}

.talk__text {
  min-height: 76px;
  padding: 16px 22px;
  background: #f4f7f9;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

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

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

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

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

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

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

.talk + .talk {
  margin: 24px 0 0;
}


@media all and (max-width: 768px) {
  .talk{
    margin-left: -4px;
    margin-right: -4px;
  }

  .talk__img {
    width: 58px;
  }

  .talk__text {
    min-height: 58px;
    padding: 12px 14px;
  }

  .talk__text:before{
    width: 15px 23px;
    background-size: 15px 23px;
    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;
  }

  .talk__text p{
    line-height: 1.55;
    font-size: 1.4rem;
  }

  .talk + .talk {
    margin: 20px 0 0;
  }
}



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

 Item Section

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

.item-section{
  margin: 56px -64px 0;
  padding: 20px 20px 10px;
  position: relative;
  background: var(--color-main-l);
  border-style: solid;
}

.item-section + .item-section{
  padding: 10px 20px;
  margin-top: 0;
  border-top: none;
}

.item-section:last-child{
  padding-bottom: 20px;
}

.button-item-section-more + .item-section{
  margin-top: 0;
  padding-top: 0;
}

.item-section.item-section--hidden{
  opacity: 0;
  display: none;
}

.item-section__inner{
  padding: 12px var(--item-section-padding-side) 56px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .01);
}

.item-section__inner:is(.item-section:first-child *){
  outline: 2px solid var(--color-main-yellow);
}

.item-section__site-image{
  margin: 32px 0 0;
  text-align: center;
}

.item-section .item-section__site-image img{
  width: 320px;
}

.item-section__text{
  margin: 32px 0 32px;
}

.post-body .item-section__text .img{
  margin: 22px 0 0;
}

.button-item-section-more{
  margin: 0 -64px;
  padding: 0 24px 24px;
  background: #deeedd;
}

.button-item-section-more span{
  height: 64px;
  font-size: 16px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  cursor: pointer;
}

.button-item-section-more span:after{
  margin: 0 0 0 4px;
  color: #aaa;
  font-size: 20px;
  content: "＋";
}

.button-item-section-more span:hover{
  opacity: 0.8;
}

@media all and (max-width: 768px) {
  .item-section{
    margin: 20px -18px 0;
    padding: 20px 5px;
  }

  .item-section + .item-section{
    padding: 0 6px 20px;
  }

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

  .item-section__inner{
    padding: 7px 16px 32px;
  }

  .item-section__site-image{
    margin: 24px 0 0;
  }
  
  .item-section .item-section__site-image img{
    width: 260px;
  }
  
  .post-body .item-section__text p:not(:first-child){
    margin: 20px 0 0;
  }
  
  .post-body .item-section__text .img{
    margin: 20px 0 0;
  }

  .button-item-section-more{
    margin: 0 -18px;
    padding: 0 16px 20px;
  }

  .button-item-section-more span{
    height: 52px;
    font-size: 15px;
  }

  .button-item-section-more span:after{
    margin: 0 0 0 2px;
    font-size: 18px;
  }
}



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

 Item Header

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

.item-header{
  margin: 0 calc(var(--item-section-padding-side) * -1);
  padding: 12px var(--item-section-padding-side);
  border-radius: 10px 10px 0 0;
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

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

.item-header:before{
  width: 60px;
  height: 60px;
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  transform: translateY(-3px);
}

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

.item-header:where(.rank1 *):before{
  background-image: url(../img/icon-rank1.svg);
}

.item-header:where(.rank2 *):before{
  background-image: url(../img/icon-rank2.svg);
}

.item-header:where(.rank3 *):before{
  background-image: url(../img/icon-rank3.svg);
}

.item-header > div{
  margin-left: 16px;
  flex: 1;
}

.item-header h3{
  margin: 0;
}

.item-header h3 a{
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}

.item-header h3 a:after{
  width: 22px;
  height: 22px;
  margin: 2px 0 0 4px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

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

.item-header__star{
  margin-top: -3px;
  display: flex;
  align-items: center;
}

.item-header__star span{
  margin: 1px 4px 0 0;
  font-family: Arial;
  font-size: 21px;
  font-weight: bold;
}

.item-header__star:before{
  width: fit-content;
  height: 25px;
  line-height: 25px;
  margin: 1px 8px 0 0;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  background: #f0f0f0;
  border-radius: 4px;
  content: "総合評価";
  display: block;
}

.item-header__star img{
  width: 104px;
  margin: 0;
  display: block;
}

.item-header__catch p{
  margin: 2px 0 9px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}


@media all and (max-width: 768px) {
  .item-header{
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .item-header:before{
    width: 54px;
    transform: translateY(0);
  }

  .item-header > div{
    margin-left: 14px;
  }

  .item-header h3{
    padding: 0;
  }

  .item-header h3 a{
    font-size: 2.1rem;
  }

  .item-header h3 a:after{
    width: 21px;
  }

  .item-header__catch p{
    font-size: 1.45rem;
  }

  .item-header__star{
    margin-top: -4px;
  }

  .item-header__star:before{
    height: 20px;
    line-height: 20px;
    margin: 1px 6px 0 0;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: -0.03em;
  }

  .item-header__star span{
    margin: 1px 3px 0 0;
    font-size: 19px;
  }

  .item-header__star img{
    width: 90px;
  }
}



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

 Item section / Point

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

.item-section-point{
  margin: 56px 0;
}

.item-section-point .item-section-point__heading{
  padding: 10px 16px 10px 22px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  background: var(--color-main);
  border-radius: 3px;
  position: relative;
}

.item-section-point .item-section-point__heading:before{
  width: 4px;
  height: calc(100% - 16px);
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
}

.item-section-point__block{
  margin-top: 36px;
  padding-top: 20px;
  border-top: 2px dotted #d0d0d0;
}

.item-section-point__block:is(.item-section-point__heading + *){
  margin-top: 28px;
  padding: 0;
  border: none;
}

.item-section-point h4{
  padding: 0 0 0 22px;
  font-size: 1.9rem;
  position: relative;
}

.item-section-point h4:before{
  width: 11px;
  height: 11px;
  background: var(--color-main-yellow);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
}

.item-section-point h4:not(:first-child){
  
}

.item-section-point p{
  margin-top: 12px;
  font-size: 1.55rem;
}

.item-section-point p:is(h4 + *){
  margin-top: 10px;
}

.item-section-point__image{
  margin-top: 20px;
}

.item-section-point__image ul{
  display: flex;
  align-items: center;
  gap: 24px;
}

.item-section-point__image li{
  margin: 0 !important;
  flex: 1;
}

.item-section-point__image img{
  width: 400px;
}


@media all and (max-width: 768px) {
  .item-section-point{
    margin: 36px 0;
  }

  .item-section-point .item-section-point__heading{
    padding: 8px 12px 8px 22px;
    font-size: 1.7rem;
  }

  .item-section-point__block{
    margin-top: 28px;
    padding-top: 18px;
  }

  .item-section-point__block:is(.item-section-point__heading + *){
    margin-top: 24px;
  }

  .item-section-point h4{
    font-size: 1.7rem;
  }

  .item-section-point h4:before{
    top: 10px;
  }

  .item-section-point p{
    margin-top: 14px;
    font-size: 1.4rem;
    line-height: 1.75;
  }

  .item-section-point__image{
    margin-top: 18px;
  }

  .item-section-point__image ul{
    gap: 6px;
  }
}



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

 Tips

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

.tips{
  margin: var(--box-margin);
}

.tips__list{
  border: 2px solid var(--color-main);
  border-radius: 8px;
  background: #FFF6F7;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.tips__list:not(:first-child){
  margin: 40px 0 0;
}

.tips__find{
  padding: 16px 0 12px;
  background: var(--color-main);
  position: relative;
}

.tips__find div{
  line-height: 1.5;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tips__find span{
  width: 48px;
  height: 48px;
  line-height: 44px;
  color: #fffac6;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: var(--color-main);
  border-radius: 24px;
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.tips__inner{
  padding: 20px 28px;
}

.post-body .tips p{
  font-size: 16px;
} 

.post-body .tips p:not(:first-child){
  margin: 16px 0 0;
}


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

  .tips__list:not(:first-child){
    margin: 32px 0 0;
  }

  .tips__find{
    padding: 14px 0 12px;
  }

  .tips__find span{
    width: 44px;
    height: 44px;
    line-height: 40px;
    font-size: 18px;
    top: -18px;
  }

  .tips__find div{
    font-size: 18px;
  }

  .tips__inner{
    padding: 16px 14px;
  }

  .post-body .tips p{
    font-size: 15px;
  }

  .post-body .tips p:not(:first-child){
    margin: 14px 0 0;
  }

}



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

 Comment

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


.comment{
  margin: 40px calc(var(--item-section-padding-side) * -1) 0;
  padding: 48px var(--item-section-padding-side) 32px; 
  background: #f5f5f5;
}

.comment__title{
  margin: 0 0 20px;
  padding: 8px 16px 8px 22px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  background: var(--color-main);
  border-radius: 3px;
  position: relative;
}

.comment__title:before{
  width: 4px;
  height: calc(100% - 16px);
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
}

.comment-list__list{
  background: #fff;
  box-shadow: 0 2px 3px rgba(0,0,0,0.04);
}

.comment-list__list:not(:first-child){
  margin: 20px 0 0;
}

.comment-list__header{
  padding: 12px 24px;
  border-bottom: 1px solid var(--color-border-gray);
  display: flex;
  align-items: center;
}

.comment-list__icon{
  width: 56px;
  height: 56px;
  margin: 0 10px 0 0;
  border: 2px solid #e0e0e0;
  border-radius: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.comment-list__icon img{
  width: 100%;
}

.comment-list__meta{
  padding: 3px 0 0;
  flex: 1;
}

.comment .comment-list__meta p{
  line-height: 1.6;
  margin: 0;
  color: var(--main-color-d);
  font-size: 16px;
  font-weight: 600;
}

.comment .comment-list__meta .name{
  margin: 0 0 3px;
  color: #888;
  font-size: 14px;
  font-weight: normal;
}

.comment-list__text{
 padding: 24px 28px;
}

.comment-list__text p{
  margin: 14px 0 0;
  line-height: 1.7;
  font-size: 1.6rem;
}

.comment-list--hidden{
  display: none;
  opacity: 0;
}

.comment__more-button{
  margin: 20px 0 14px;
  padding: 0 20px;
}

.comment__more-button button{
  width: 100%;
  height: 40px;
  background: var(--color-page-bg-d);
  color: #777;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .2s;
}

.comment__more-button button:after{
  margin: 0 0 0 3px;
  color: #aaa;
  font-size: 15px;
  content: "＋";
}

.comment__more-button button:hover{
  color: var(--fc-link);
  opacity: 0.8;
  box-shadow: none;
}

.comment-list--open{
  opacity: 0;
  animation-name: commentFade;
  animation-duration: .15s;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
  display: block;
}

.comment .comment__notes{
  margin: 8px 0 0;
  color: #666;
  font-size: 12px;
  text-align: right;
}

@keyframes commentFade {
  0%{
    transform: translateY(0);
  }
  100%{
    opacity: 1;
  }
}


@media all and (max-width: 768px){
  .comment{
    margin: 32px -16px 0;
    padding: 24px 12px;
  }

  .comment__title{
    padding: 7px 10px 7px 22px;
    font-size: 1.75rem;
  }

  .comment-list__list:not(:first-child){
    margin: 12px 0 0;
  }

  .comment-list__header{
    padding: 10px 16px;
  }

  .comment-list__icon{
    width: 48px;
    height: 48px;
  }

  .comment .comment-list__meta{
    padding: 4px 0 0;
  }

  .comment .comment-list__meta p{
    font-size: 1.55rem;
  }

  .comment .comment-list__meta .name{
    margin: 0 0 1px;
    font-size: 1.25rem;
  }

  .comment-list__text{
    padding: 16px;
  }

  .comment-list__text p{
    margin: 14px 0 0;
    font-size: 1.4rem;
  }

  .comment .comment__notes{
    margin: 12px 0 0;
    font-size: 1rem;
  }

  .comment__more-button button{
    height: 32px;
    font-size: 1.35rem;
  }
}



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

 Pick Up

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

.pickup-section{
  margin: 56px -24px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.pickup-section .pickup-section__find{
  padding: 4px 0;
  color: #fff;
  font-family: var(--ff-zen-maru);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: var(--ls-zen-maru);
  text-align: center;
  background: var(--color-main);
  border-radius: 6px 6px 0 0;
}

.pickup-section .pickup-section__find{
  content: none;
}

.pickup-section__inner{
  padding: 24px;
  border: 2px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  overflow: hidden;
}

.pickup-section__image{
  width: 176px;
  margin: 0 24px 0 0;
  padding: 2px;
  box-sizing: border-box;
}

.pickup-section__image img{
  width: 100%;
  border: 1px solid #ddd;
}

.pickup-section__meta{
  flex: 1;
}

.pickup-section__item-name{
  line-height: 1.6;
}

.pickup-section__item-name a{
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}

.pickup-section__item-name a .icon-link{
  width: 20px;
  height: 26px;
  margin: 0 0 0 8px;
  background-size: 20px 20px;
}

.pickup-section__body{
  margin: 8px 0 0;
}

.pickup-section__body p{
  font-size: 1.4rem;
  line-height: 1.8;
}

.pickup-section__button{
  margin: 16px 0 0;
}

.pickup-section__button li:not(:first-child){
  margin-top: 8px;
}

.pickup-section__button a{
  height: 44px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  background: var(--btn-orange);
  border-radius: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  position: relative;
}

.pickup-section__button a:hover{
  color: #fff;
  opacity: 0.7;
}

.pickup-section__button.--blank-link a:before{
  height: 20px;
  line-height: 20px;
  margin: 0 8px 0 0;
  padding: 0 5px;
  color: var(--btn-orange);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 3px;
  content: "無料";
  display: block;
  background: #fff;
  border-radius: 4px;
}

.pickup-section__button.--blank-link a:after{
  width: 8px;
  height: 12px;
  background: url(../img/arrow-button-white.svg) no-repeat;
  background-size: 8px 12px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.pickup-section__button .--blank-link a span{
  color: #fff;
}

.pickup-section__button .--inpage-link a{
  background: #fff;
  border: 1px solid #ddd;
}

.pickup-section__button .--inpage-link a span{
  color: #777;
}


@media all and (max-width: 768px) {
  .pickup-section{
    margin: 36px -8px 0;
  }

  .pickup-section .pickup-section__find{
    padding: 8px 0 9px;
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .pickup-section__inner{
    padding: 20px 14px 24px;
    display: block;
  }

  .pickup-section__image{
    width: 72%;
    max-width: 320px;
    margin: 0 auto;
  }

  .pickup-section__meta{
    margin: 16px 0 0;
  }

  .pickup-section__item-name{
    margin: -1px 0 0;
  }

  .pickup-section__item-name a{
    font-size: 18px;
    letter-spacing: -0.01em;
    transform: scaleX(0.96);
  }

  .pickup-section__item-name a .icon-link{
    width: 18px;
    height: 24px;
    margin: -1px 0 0 7px;
    background-size: 18px 18px;
  }

  .pickup-section__body{
    margin: 6px 0 0;
  }

  .pickup-section__body p{
    font-size: 1.4rem;
    line-height: 1.75;
  }

  .pickup-section__button{
    margin: 12px 0 0;
  }

  .pickup-section__button a{
    height: 42px;
    border-radius: 21px;
  }

  .pickup-section__button .--blank-link a{
    height: 56px;
    border-radius: 28px;
  }

  .pickup-section__button a:before{
    height: 21px;
    line-height: 21px;
    font-size: 1.3rem;
  }
  .pickup-section__button a:after{
    right: 10px;
  }

  .pickup-section__button a span{
    font-size: 1.55rem;
  }
}


/*------------------------------------------
 
 Season Trend

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

.season-trend{
  margin-top: 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.season-trend__head{
  position: relative;
}

.season-trend__head div{
  width: 120px;
  height: 76px;
  background: url(../img/illust-advisor.png) no-repeat;
  background-size: 120px 153px;
  overflow: hidden;
  position: absolute;
  bottom: 0px;
  right: 2px;
  display: none;
}

.season-trend__heading{
  padding: 12px 8px;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  background: var(--color-main);
  border-radius: 6px 6px 0 0;
}

.season-trend__heading span{
  font-family: var(--ff-zen-maru);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: var(--ls-zen-maru);
}

.season-trend__heading span + span{
  margin-left: 3px;
}

.season-trend__heading:after{
  width: 80px;
  height: 72px;
  background: url(../img/avatar-search.png) no-repeat;
  background-size: 100% auto;
  background-position: top center;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 12px;
  overflow: hidden;
}

.season-trend__body{
  padding: 22px 28px;
  background: #fffcee;
  border: 2px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.season-trend__body p{
  font-size: 1.5rem;
  line-height: 1.8;
}

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

.season-trend .season-trend__catch{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.box-season-trend + .ranking-table-wide{
  margin-top: 48px;
}


@media all and (max-width: 768px) {
  .season-trend{
    margin: 28px -8px;
  }

  .season-trend__heading{
    padding: 9px 56px 9px 0;
  }

  .season-trend__heading span{
    font-size: 1.7rem;
    line-height: 1.2;
    text-align: center;
  }

  .season-trend__heading span + span{

  }

  .season-trend__heading:after{
    width: 68px;
    height: 60px;
    right: 8px;
  }

  .season-trend__head div{
    width: 96px;
    height: 68px;
    background-size: 96px 122px;
    right: 2px;
  }

  .season-trend__body{
    padding: 16px;
  }

  .season-trend__body p{
    font-size: 14.5px;
    line-height: 1.6;
  }

  .season-trend__body .season-trend__catch{
    font-size: 17px;
    line-height: 1.6;
  }

  .season-trend__body p:not(:first-child){
    margin: 8px 0 0;
  }

}


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

Area Table

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

.area-table{
  margin-top: 64px;
}

.area-table .area-table__title{
  margin: 0 -32rpx;
  padding: 16px 12px;
  color: #fff;
  background: var(--color-main);
  border-radius: 6px 6px 0 0;
}

.area-table__title span{
  font-family: var(--ff-zen-maru);
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.55;
  display: block;
  letter-spacing: 0;
}

.area-table .area-table__notes-text{
  margin: 24px 0 8px;
  font-size: 1.3rem;
  text-align: right;
}

.area-table__region{
  margin-top: 24px;
}

.area-table__region:is(.area-table__notes-text + *){
  margin-top: 16px;
}

.area-table .area-table__region-heading{
  margin: 0 0 16px;
  padding: 2px 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  background: var(--color-main);
  border-radius: 5px 5px 0 0;
}

.area-table .area-table__region-inner{
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.area-table__region-inner li{
  margin: 0 !important;
}

.area-table__region-inner a{
  height: 40px;
  color: var(--link-color);
  font-size: 1.45rem;
  border: 1px solid #e0e0e0;
  border-bottom-width: 2px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media all and (max-width: 768px) {
  .area-table{
    margin: 32px calc(var(--post-padding-side) * -1) 0;
    padding: 24px 10px 0;
    background: var(--color-page-bg);
  }

  .area-table__inner{
    background: #fff;
    padding: 6px 10px 20px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.07);
  }

  .area-table .area-table__title{
    margin: 40px -4px 20px;
    padding: 12px 0 14px;
    border-radius: 4px 4px 0 0;
  }

  .area-table .area-table__title span{
    font-size: 1.8rem;
  }

  .area-table__ttl span{
    font-size: 16px;
    transform: scaleX(0.94);
  }

  .area-table__ttl br{
    display: block;
  }

  .area-table .area-table__notes-text{
    margin: 14px 0 -2px;
    font-size: 12px;
  }

  .area-table .area-table__region-heading{
    font-size: 1.4rem;
  }

  .area-table .area-table__region-inner{
    gap: 8px;
  }

  .area-table__region-inner a{
    padding: 3px 10px;
    font-size: 1.4rem;
  }
}


/*------------------------------------------
 
 Footer CTA

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

.f-cta p{
  line-height: 1.6;
}

.f-cta__image{
  margin-top: 20px;
}

.f-cta__image img{
  width: 300px;
}

.f-cta__image a{
  transition: var(--duration-default);
}

.f-cta__image a:hover{
  opacity: var(--opacity-hover);
}


@media all and (max-width: 768px) {
  .f-cta__image{
    margin-top: 12px;
  }

  .f-cta__image img{
    width: 260px;
    max-width: 300px;
  }
}



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

Index

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

.box-index{
  margin: var(--box-margin);
  padding: 16px 24px;
  background: #f5f5f5;
  position: relative;
  border-radius: var(--box-border-radius);
}

.box-index input[type="checkbox"]{
  display: none;
}

.box-index__find{
  font-size: 18px;
  font-weight: bold;
}

.box-index__inner{
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: 0.3s;
}

.box-index__button{
  width: 56px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  text-align: center;
  background: #e0e0e0;
  border-radius: 3px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.box-index__button:before{
  content: "開く";
}

.box-index__toggle:checked + .box-index__button:before{
  content: "閉じる";
}

.box-index__toggle:checked ~ .box-index__inner{
  height: auto;
  padding: 12px 0 4px;
}

.box-index ul{
  padding: 0 4px;
}

.box-index li{
  margin: 4px 0 0;
  font-size: 15px;
  counter-increment: num;
  display: flex;
}

.box-index li:first-child{
  margin: 0;
}

.box-index li:before{
  height: calc(100% - 2px);
  margin: 1px 10px 1px 0;
  padding: 0 8px 0 0;
  font-size: 13px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  content: counter(num);
  display: flex;
  align-items: center;
}


@media all and (max-width: 768px) {
  .box-index{
    padding: 16px 14px;
  }
  .box-index__button{
    top: 17px;
  }
  .box-index__toggle:checked ~ .box-index__inner{
    padding: 12px 0 4px;
  }
  .box-index__find{
    font-size: 16px;
  }
  .box-index li{
    font-size: 14px;
  }
}



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

Sub

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

.sub-section:not(:first-child){
  margin: 28px 0 0;
}

.sub-section__inner{
  padding: 12px 16px 16px;
  background: #fff;
  border-radius: 8px;
}

.sub-section__title{
  padding: 4px 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 3px solid var(--color-page-bg);
  display: flex;
  align-items: center;
  position: relative;
}

.sub-section__title:before{
  width: 64px;
  height: 3px;
  background: var(--color-main);
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.sub-section__title span{
  margin: -1px 2px 0 0;
}


/*------------------------------------------
 Sub / Ranking
------------------------------------------*/

.sub-ranking{
  padding: 6px;
  background: linear-gradient(to bottom right, #ceb06a, #7d5437);
  border-radius: 8px;
}

.sub-ranking__inner{
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.sub-ranking__title{
  padding: 8px 0;
  font-weight: 700;
  line-height: 1.6;
  background: var(--color-page-bg);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.sub-ranking__title span{
  color: var(--color-main);
  font-size: 1.5rem;
}

.sub-ranking__items{
  padding: 0 12px;
}

.sub-ranking__item:not(:first-child){
  border-top: 1px dashed var(--color-border-dashed);
}

.sub-ranking__item a{
  padding: 8px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: .2s;
}

.sub-ranking__item a:before{
  width: 44px;
  aspect-ratio: 1 / 1;
  margin: 0 0 0 4px;
  background-size: 100%;
  content: "";
  display: block;
}

.sub-ranking__item:nth-child(1) a:before{
  background-image: url(../img/icon-rank1.svg);
}

.sub-ranking__item:nth-child(2) a:before{
  background-image: url(../img/icon-rank2.svg);
}

.sub-ranking__item:nth-child(3) a:before{
  background-image: url(../img/icon-rank3.svg);
}

.sub-ranking__item:nth-child(n + 4) a:before{
  width: 38px;
  transform: translateX(3px);
}

.sub-ranking__item:nth-child(4) a:before{
  background-image: url(../img/icon-rank4.svg);
}

.sub-ranking__item:nth-child(5) a:before{
  background-image: url(../img/icon-rank5.svg);
}

.sub-ranking__item a:hover{
  opacity: .7;
}

.sub-ranking__item img{
  width: 50%;
}


/*------------------------------------------
 Sub / Campaign List
------------------------------------------*/

.sub-campaign-list{
  margin-top: 4px;
}

.sub-campaign-list li{
  padding: 14px 0;
  font-size: 1.55rem;
  line-height: 1.5;
}

.sub-campaign-list li:not(:first-child){
  border-top: 1px dashed var(--color-border-dashed);
}

.sub-campaign-list li a{
  margin: 3px 0 0;
  color: var(--link-color);
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: underline;
  display: block;
}


@media all and (max-width: 768px) {
  .sub-section:not(:first-child){
    margin-top: 20px;
  }

  .sub-section__inner{
    padding: 12px 14px;
  }

  .sub-ranking{
    padding: 5px;
  }

  .sub-ranking__title{
    padding: 9px 0;
    font-size: 1.75rem;
  }

  .sub-ranking__item img{
    max-width: 120px;
  }

  .sub-campaign-list li{
    font-size: 1.5rem;
  }
}


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

Footer

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

.g-footer {
  width: 100%;
  margin: 80px 0 0;
  background: #fff;
}

.g-footer__inner{
  padding: 24px 0 26px;
}

.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: 1.4rem;
}

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

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

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

@media all and (max-width: 768px) {
  .g-footer {
    margin: 56px 0 0;
    width: 100%;
    min-width: 100%;
  }
}


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

Popup

------------------------------------------*/
.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  overflow: hidden;
  display: none;
}
.popup__filter {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
}
.popup__content {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}
.popup__box {
  width: 480px;
  height: auto;
  background: #fff;
  position: relative;
  z-index: 80;
}
.popup__box a {
  display: block;
}
.popup__box a:hover {
  opacity: 0.8;
}
.popup__box img {
  max-width: 100%;
  width: 480px;
}
.popup__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
}
.popup__close {
  width: 32px;
  height: 32px;
  line-height: 28px;
  color: #fff;
  font-size: 1.22rem;
  font-weight: bold;
  text-align: center;
  background: #000;
  border-radius: 16px;
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
  z-index: 10;
}
@media all and (max-width: 768px) {
  .popup__content {
    padding: 0 16px;
    box-sizing: border-box;
  }
}





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

404

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

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

.page-404__box{
  width: 480px;
  max-width: calc(100% - 32px);
  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-main);
  font-size: 3.8rem;
  font-weight: bold;
  text-align: center;
}

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

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

.page-404 p{
  margin: 12px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

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

.page-404 a{
  color: var(--color-link-text);
  font-size: 2rem;
}

.page-404 a:hover{
  color: var(--color-link-text-hv);
}

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

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

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

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

}

.animation-pyokopyoko{
  animation: pyokopyoko 2s ease infinite;
}


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

 Animation

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


@keyframes pyokopyoko {
  0%{
    transform: translateY(0);
  }
  9%{
    transform: translateY(5px);
  }
  18%{
    transform: translateY(0);
  }
  27%{
    transform: translateY(5px);
  }
  36%{
    transform: translateY(0);
  }
}


@keyframes pyokopyokoDown {
  0%{
    transform: translateY(0);
  }
  9%{
    transform: translateY(3px);
  }
  18%{
    transform: translateY(0);
  }
  27%{
    transform: translateY(3px);
  }
  36%{
    transform: translateY(0);
  }
}