@charset "UTF-8";

:root{
/* -------------------------
 Layout
--------------------------*/

--header-height: 88px;

--main-width: 480px;

--post-padding-side: 24px;
--item-section-padding-side: 20px;



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

--fc-default: #22272a;
--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.65rem;
--lh-default: 2;

--post-fs: 18px;
--post-line-height: 2;


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

/* テーマカラー */
--color-primary: #0088d6;
--color-primary-ll: #f0f6fd;

--color-secondary: #468aef;

--main-color: #f97a0e;
--main-color-l: #fffaee;
--main-color-ll: #fffbf3;
--main-color-d: #f85c19;

--page-bg-color: #f5f5f5;
--color-page-bg: #f3f6f9;

--border-color: #dfdfdf;
--color-border: #e3e5ea;

--bg-color-gray: #f6f7f8;

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

/* テキスト */
--fc-pink: #FF6581;
--fc-blue: #0340a5;
--fc-orange: #ff6130;

--link-text: #0078de;
--link-text-hover: #f60;

/* ボタン */
--btn-green: #01a958;
--btn-green-d: #089d55;
--btn-orange: #ff8134;
--btn-orange-d: #d95c0f;
--btn-blue: #3377d2;
--btn-blue-d: #2c6cc3;
--color-orange: #f7690a;


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

--box-margin: 36px;
--box-padding: 20px 20px;
--box-border-radius: 6px;

--btn-height: 88px;
--btn-r: 6px;
--text-margin: 24px;

--star-color-5: #f9522e;
--star-color-4: #ff7d34;
--star-color-3: #ffce5a;
  
}


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

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

  --post-fs: 16px;
  --post-line-height: 1.9;

  --fs-default: 1.6rem;
  --lh-default: 1.9;
  
  --text-margin: 26px;

  --box-margin: 28px;
  --box-padding: 12px 14px;
}
}


html {
  font-size: 10px;
}

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

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

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

b {
  font-weight: 700 !important;
}

h1, h2, h3, h4, h5 {
  font-weight: 700 !important;
}

a {
  cursor: pointer;
}

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

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

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

Header

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

.g-header{
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.g-header__inner{
  height: 100%;
  padding: 0 14px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.g-header__site-name img{
  width: 180px;
}

.g-header__month{
  height: 38px;
  margin: 0 0 0 16px;
  padding: 0 8px;
  border: 2px solid var(--color-primary);
  box-sizing: border-box;
}

.g-header__month p{
  height: 100%;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.g-header__month p span{
  color: var(--color-primary);
  font-family: "Inter";
  font-size: 105%;
  font-weight: 600;
}

@media all and (max-width: 768px) {
  .g-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .g-header__inner{
    justify-content: start;
  }

  .g-header__site-name img{
    width: 142px;
  }

  .g-header__month{
    height: 32px;
    margin: 0 0 0 10px;
    padding: 0 6px;
  }

  .g-header__month p{
    font-size: 13.5px;
  }
}



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

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

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

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

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

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


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

.post-eyecatch {
  margin: 0 calc(var(--post-padding-side) * -1);
  padding: 28px var(--post-padding-side);
  background: var(--color-secondary);
  position: relative;
}

.post-eyecatch:after{
  height: 22px;
  padding: 0 6px;
  color: #999;
  font-size: 1.6rem;
  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-eyecatch img {
  border-radius: 16px;
}

.post-title{
  margin: 24px 0 0;
  line-height: 1.65;
  font-size: 2.1rem;
  font-weight: 600;
}

.post-meta{
  margin: 12px 0 0;
  padding: 3px 0;
  border-top: 1px dotted #bbb;
  border-bottom: 1px dotted #bbb;
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-meta > div{
  color: #666;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
}

.post-meta__update:before{
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
  background: url(../img/icon-update.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.post-meta__cat:before{
  width: 17px;
  height: 17px;
  margin: 0 6px 0 0;
  background: url(../img/icon-cat.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}


@media all and (max-width: 768px) {
  .post-eyecatch {
    padding: 14px;
  }

  .post-eyecatch:after {
    height: 16px;
    padding: 0 4px 1px;
    font-size: 1.25rem;
    top: 1px;
    right: 1px;
  }

  .post-eyecatch img {
    border-radius: 14px;
  }

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

  .post-meta {
    padding: 2px 0;
    gap: 10px;
  }

  .post-meta > div {
    font-size: 1.25rem;
  }

  .post-meta__update:before {
    width: 16px;
    height: 16px;
  }

  .post-meta__cat:before {
    width: 16px;
    height: 16px;
  }
}


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

.post-body > h2 {
  line-height: 1.55;
  margin: 64px 0px 0;
  padding: 16px;
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(135deg, transparent 25%, rgba(38, 53, 138, 0.05 ) 25%, rgba(38, 53, 138, 0.05 ) 50%, transparent 50%, transparent 75%, rgba(38, 53, 138, 0.05 ) 75%, rgba(38, 53, 138, 0.05 ));
  background-size: 4px 4px;
  border-left: 5px solid var(--color-primary);
  box-sizing: border-box;
}

.post-body > h3{
  line-height:  1.5;
  margin: 52px 0 0;
  padding: 17px 14px 14px;
  font-size: 19px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  position: relative;
}

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

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

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

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

.post-body p:first-child {
  margin: 0;
}
.post-body .align-center{
  line-height: 1.5;
  text-align: center;
}
.post-body .align-center *{
  line-height: 1.5;
}
.post-body .link-text {
  line-height: 1.7;
  font-size: 110%;
}

.post-body a {
  line-height: inherit;
  color: var(--link-text);
}

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


.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: calc(var(--text-margin) * 1.7);
}

.post-body .img {
  margin: var(--box-margin);
  text-align: center;
}
.post-body .img img {
  width: 100%;
}

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

.post-body .img a:hover img {
  opacity: 0.8;
}
.post-body .img + .img {
  margin: -16px 0 0;
}
.post-body .box-gray {
  margin: var(--box-margin);
  padding: var(--box-padding);
  border: 3px solid #eaeaea;
  border-radius: var(--box-border-radius);
}
.post-body .box-red{
  margin: var(--box-margin);
  padding: var(--box-padding);
  background: #fef1f2;
  border-radius: var(--box-border-radius);
}
.post-body .box-pink{
  margin: var(--box-margin);
  padding: var(--box-padding);
  background: #FFEFF1;
  border-radius: 6px;
}

.post-body .box-yellow{
  margin: var(--box-margin);
  padding: var(--box-padding);
  border-radius: var(--box-border-radius);
  background: #fffae7;
}

.post-body .arrow {
  width: 100%;
  height: 64px;
  margin: 16px 0;
  background: url(../img/arrow.png) no-repeat center;
  animation: infinite move-arrow steps(3) 1s;
}
@keyframes move-arrow {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 9px);
  }
}
.post-body .link-right {
  margin: 24px 0 0;
}
.post-body .link-right p {
  line-height: 1.5;
  text-align: right;
  font-size: 17px;
}
.post-body .link-right p a {
  font-weight: 600;
}

.post-body .btn-text{
  margin: 28px 0 0;
}

.post-body .btn-text div{
  color: #ee1818;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  animation:blink 0.5s ease-in-out infinite alternate;
}

.post-body .btn-text p{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.post-body .notes{
  border: 3px solid #f14b3f;
  margin: 24px 0 0;
  padding: 12px 20px;
}

.post-body .notes__find{
  margin: -12px -20px 12px !important;
  background: #f14b3f;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.post-body .notes__find + p{
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

.post-body .notes__find:before{
  width: 20px;
  height: 20px;
  content: "";
  display: inline-block;
  vertical-align: top;
  margin: 6px 6px 0 0;
  background: url(../img/icon-notes.png);
  background-size: 20px;
}

@keyframes blink{
  0% {opacity:0;}
  80% {opacity:1;}
}

.post-body .pr{
  margin: -26px 0 0 !important;
  font-size: 12px;
  color: #888;
  text-align: right;
}

.post-body .link-list{
  margin: 48px 0 24px;
}

.post-body .link-list li{
  line-height: 1.2;
  padding: 0;
}

.post-body .link-list li:before{
  content: none;
}

.post-body .link-list li a{
  font-size: 12px;
  color: #666;
}

.post-body .check-point{
  margin: var(--box-margin);
  padding: 24px 24px 32px;
  background: #dcf4ff;
  border-radius: 10px;
}

.post-body .check-point__ttl{
  line-height: 1.5;
  margin: 0;
  padding: 0 0 16px;
  color: #1b4ba2;
  font-size: 24px !important;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.post-body .check-point__ttl:before{
  width: 90px;
  height: 128px;
  content: "";
  background: url(../img/check-ttl.png) no-repeat;
  background-size: 90px 128px;
  display: block;
  position: absolute;
  right: 16px;
  bottom: 0;
}

.post-body .check-point h2{
  margin: 0 0 24px;
  padding: 18px;
  color: #1b4ba2;
  text-align: center;
  background: none;
  border-top: 2px solid #1b4ba2;
  border-bottom: 2px solid #1b4ba2;;
}

.post-body .check-point h2 br{
  display: none;
}


.post-body .check-point p{
  margin-top: 20px;
  font-size: 17px;
}

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

.post-body .check-point li{
  font-size: 17px;
}

.post-body .check-point__section{
  margin: 16px 0 0;
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow:  0 5px 8px rgba(0,0,0,0.04);
}

.post-body .check-point__ttl + .check-point__section{
  margin: 0;
}
.post-body h2 + .check-point__section{
  margin: 0;
}

.post-body .check-point__find{
  margin: 0;
  padding: 0 0 10px 42px;
  position: relative;
  border-bottom: 2px solid #e0e0e0;
  border-top: none;
}

.post-body .check-point__find:before{
  line-height: 1;
  content: "\f058";
  color: var(--color-l-blue);
  font-size: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}

.post-body .check-point .box-gray{
  margin-top: 20px;
}

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

.post-body .box-blue:before {
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin: -12px 0 0;
  content: "!";
  background: #4fb4ee;
  display: block;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 20px;
}


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

.post-body .txt-link {
  font-size: 110%;
  font-weight: 600;
}

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

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

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



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

  .content-head .img{
    margin: 12px -16px !important;
  }

  .post-body .post-ttl h1 {
    font-size: 20px;
  }
  .post-body > h2 {
    margin: 60px -10px 0;
    font-size: 20px;
    padding: 8px 12px;
  }

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

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

  .post-body .find-v2{
    margin: 40px 0 12px;
    padding: 12px 12px 12px 18px;
    font-size: 18px;
  }
  .post-body .ranking-find{
    margin: 32px -18px 0;
  }
  .post-body .list-check li {
    padding: 0 0 0 34px;
    font-size: 17px;
  }
  .post-body .list-check li:before{
    width: 24px;
    height: 24px;
    background-size: 24px;
    top: 2px;
  }
  .post-body .img + .img {
    margin: -8px 0 0;
  }
  .post-body .margin-wide {
    margin: 44px 0 0 !important;
  }
  .post-body .pr{
    font-size: 11px;
    margin: -12px -10px 0 !important;
  }

  .post-body .check-point{
    margin: 28px -8px 0;
    padding: 16px 8px;
  }
  .post-body .check-point__ttl{
    font-size: 21px !important;
    padding: 0 80px 14px 0;
  }
  .post-body .check-point__ttl:before{
    width: 72px;
    height: 102px;
    background-size: 72px;
    height: 102px;
    right: 12px;
  }
  .post-body .check-point h2{
    margin: 0 0 14px;
    padding: 8px 12px;
    font-size: 19px;
  }
  .post-body .check-point h2 br{
    display: block;
  }
  .post-body .check-point p{
    margin-top: 14px;
    font-size: 15px;
  }
  .post-body .check-point li{
    font-size: 15px;
  }
  .post-body .check-point__section{
    padding: 16px 16px 20px;
  }
  .post-body .check-point__find{
    padding: 0 0 8px 30px;
  }
  .post-body .check-point__find:before{
    font-size: 23px;
    top: 0px;
  }
  .post-body .check-point .box-gray{
    margin-top: 16px;
  }
  .post-body .box-blue:before {
    left: 14px;
  }
  .post-body .box-blue p{
    font-size: 14px;
  }

  .post-body hr{
    margin: 28px 0;
  }
}
@media all and (max-width: 640px) {
  .post-body .img a {
    font-size: 15px;
  }
  .post-body .box-red {
    margin: 18px 0;
    padding: 10px 16px;
  }
  .post-body .embed + p{
    margin: 0;
  }
  .post-body .arrow {
    height: 44px;
    margin: 12px 0 0;
    background-size: 85%;
  }
  .post-body .link-right {
    margin: 20px 0 0;
  }
  .post-body .link-right p {
    font-size: 16px;
  }
  .post-body .notes{
    padding: 16px 16px 14px;
  }
  .post-body .notes__find{
    margin: -16px -16px 12px !important;
  }
  .post-body .notes__find:before{
    width: 18px;
    height: 18px;
    margin: 4px 5px 0 0;
    background-size: 18px;
  }
  .post-body .notes__find + p{
    font-size: 15px;
  }
  .post-body .pr + .img{
    margin: 8px 0 -6px;
  }
}


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

 List

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

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

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

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

.list-default li {
  line-height: 1.6;
  margin: 6px 0 0;
  padding: 0 0 0 16px;
  font-size: var(--post-fs);
  position: relative;
}

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

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

.list-check-small li:before{
  width: 17px;
  height: 17px;
  content: "";
  background-color: var(--color-primary);
  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: 6px;
  left: 0;
}


@media all and (max-width: 768px) {
  .list-default li, .list-check-small li {
    margin: 5px 0 0;
  }
  .list-default li:before {
    top: 10px;
  }
  .list-check-small li:before{
    top: 4px;
  }
}



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

 Box

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





/*------------------------------------------
 Lead Box
------------------------------------------*/

.fc-blue-d{
  color: #464A56;
}

.lead-box{
  margin: var(--box-margin);
  padding: 24px 28px;
  background: #EEF5FA;
  border-radius: 8px;
  box-sizing: border-box;
}

.lead-box li{
  line-height: 170%;
  margin: 4px 0 0 !important;
  padding: 0 0 0 16px !important;
  font-size: var(--post-fs);
  position: relative;
}

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

.lead-box li:before{
  background: #72CDDD;
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  top: 12px !important;
  left: 0;
}

@media all and (max-width: 768px) {
  .lead-box {
    padding: 16px 18px;
  }
  .lead-box li{
    font-size: 0.86rem;
  }
  .lead-box li:before{
    top: 10px !important;
  }
}


.box-point {
  margin-top: var(--box-margin);
  border-radius: 6px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.box-point .box-point__heading {
  margin: 0;
  padding: 6px 8px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-radius: 6px 6px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.box-point ul li {
  margin: 0;
  padding: 8px 16px 8px 46px;
  line-height: 1.8;
  position: relative;
}

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

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


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

  .box-point {
    margin: 24px -4px 0;
  }

  .box-point .box-point__heading {
    padding: 4px 8px;
    font-size: 1.55rem;
  }

  .box-point ul {
    margin: 0;
    padding: 3px 8px;
  }

  .box-point ul li {
    padding: 9px 10px 9px 34px;
    font-size: 1.45rem;
    line-height: 1.7;
  }

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


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

 Box tell

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

.box-tell{
  margin: 24px 0 0;
  padding: 26px 20px 20px;
  background: #fcf0f3;
}

.box-tell__find{
  width: 100%;
  text-align: center;
}

.box-tell__find img{
  width: 100%;
}

.box-tell .box-tell__time{
  margin-top: 10px !important;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

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


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

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

.season-trend{
  margin: var(--box-margin);
  background: var(--main-color-ll);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.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: 8px;
}

.season-trend__find{
  line-height: 1.6;
  padding: 12px 8px;
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

.season-trend__find span{
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
}

.season-trend__find span + span{
  margin-left: 6px;
}

.season-trend__body{
  padding: 22px 28px;
  border: 2px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 5px 5px;
}

.season-trend__body p{
  font-size: 16px;
  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-left: -8px;
    margin-right: -8px;
  }

  .season-trend__find{
    padding: 9px 0;
  }

  .season-trend__find span{
    padding: 0 16px 0 0;
    font-size: 1.75rem;
    line-height: 1.2;
    text-align: center;
    display: block;
  }

  .season-trend__find span + span{
    margin: 4px 0 0;
  }

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

  .season-trend__body .season-trend__catch{
    font-size: 1.65rem;
    line-height: 1.7;
  }

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

}


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

 Table

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

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

.table-default table{
  width: 100%;
  border: 1px solid #ddd;
}

.table-default th{
  width: 140px;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
}

.table-default td{
  padding: 10px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}


@media all and (max-width: 768px) {
  .table-default th{
    width: 96px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .table-default td{
    padding: 10px 8px;
    font-size: 15px;
  }

}



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

 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: 600;
  font-size: 14px;
  text-align: center;
  background: var(--color-primary);
  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

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

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

.btn{
  max-width: 100%;
  margin: 32px auto 0;
  box-sizing: border-box;
}

.btn:is(.service-list__micro-copy + *) {
  margin-top: 10px;
}

.btn a{
  height: var(--btn-height);
  padding: 0 0 2px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.08);
  display: block;
  background: var(--btn-orange);
  border-bottom: 4px solid #d95c0f;
  border-radius: var(--btn-r);
  box-sizing: border-box;
  box-shadow: 0 3px 4px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.btn-orange a:after{
  background: url(../img/arrow-button-orange.svg) no-repeat;
}

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

.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-animation{
  animation: btnPurun 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}

@keyframes btnPurun {
  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 {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.btn--color-green .btn-animation--shiny:before{
  background-color: #97dea8;
}

.btn-animation--shiny:is(.pickup-section-btn *)before{
  background-color: #ffbc52;
}

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

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

  .btn{
    margin: 28px auto 0;
  }

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

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

  .btn a:after{
    width: 18px;
    height: 18px;
  }

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



/*------------------------------------------
 
 Button footer box

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

.button-footer-box{
  margin: 32px 0 0;
  padding: 0 16px 24px;
  background: var(--bg-color-gray);
}

.button-footer-box h4{
  margin: 0;
  padding: 14px 0 12px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.button-footer-box h4:before{
  width: 32px;
  height: 32px;
  background: url(../img/icon-safety.png) no-repeat;
  background-size: 95%;
  background-position: center center;
  border-radius: 100%;
  overflow: hidden;
  content: "";
  display: block;
}

.button-footer-box dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.button-footer-box dl > div{
  padding: 10px 16px;
  background: #fff;
}

.button-footer-box dt {
  padding: 0 0 0 20px;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
}

.button-footer-box dt:before {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
}

.button-footer-box dt span{
}

.button-footer-box dd{
  margin: 2px 0 0;
  color: #606060;
  font-size: 1.55rem;
  line-height: 1.7;
}


@media all and (max-width: 768px) {
  .button-footer-box {
    margin: 28px 0 0;
    padding: 0 12px 20px;
  }

  .button-footer-box h4{
    padding: 12px 0 8px;
    font-size: 1.65rem;
  }

  .button-footer-box h4:before{
    width: 31px;
    height: 31px;
    top: -1px;
  }

  .button-footer-box dl {
    gap: 5px;
  }

  .button-footer-box dl > div {
    padding: 9px 12px;
  }

  .button-footer-box dt:before{
    width: 9px;
    height: 9px;
    top: 10px;
  }

  .button-footer-box dt{
    padding: 0 0 0 18px;
    font-size: 1.5rem;
  }

  .button-footer-box dd{
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 1.3rem;
  }
}


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

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

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

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

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



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

 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-title{
  margin: 52px -36px 0;
}

.ranking-title h2{
  margin: 0;
  padding: 10px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  background: var(--color-primary);
  border: none;
  border-top: 4px solid #0ca863;
  border-bottom: 4px solid #0ca863;
}

.ranking-title h2 span{
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  display: block;
}

.ranking-title h2 *{
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.6;
}


.ranking-title div{
  transform: scaleX(0.96);
}

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



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

 Mdoules / Image Slide

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

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

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

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

.img-slide li {
  width: 120px;
  background: #fff;
}

.img-slide li img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

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



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



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

 Ranking

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

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

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

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

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

.ranking__inner {
  overflow-x: scroll;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

 Pick Up

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

.pickup-section{
  margin: 32px -8px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
}

.pickup-section .pickup-section__heading {
  padding: 4px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.pickup-section .pickup-section__heading:before {
  width: 20px;
  height: 20px;
  background: url(../img/icon-crown.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.pickup-section__inner {
  padding: 16px 12px 20px;
  border: 1px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: flex-start;
}

.pickup-section__image{
  width: 92px;
  margin: 0 14px 0 0;
  padding: 1px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.pickup-section__image img{
  width: 100%;
}

.pickup-section__meta{
  flex: 1;
}

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

.pickup-section__item-name a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pickup-section__item-name a::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-link.svg) no-repeat center / 100%;
  content: "";
  display: block;
}


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

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

.pickup-section-btn {
  margin: 12px 0 0 -104px;
}

.pickup-section-btn a {
  height: 44px;
  background: var(--btn-orange);
  border-radius: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: .2s;
  position: relative;
  overflow: hidden;
}

.pickup-section-btn a:hover {
  opacity: 0.75;
}

.pickup-section-btn a span{
  position: relative;
  z-index: 10;
}

.pickup-section-btn__label{
  height: 22px;
  padding: 0 6px;
  color: var(--btn-orange);
  font-size: 1.35rem;
  font-weight: 600;
  border-radius: 3px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
}

.pickup-section-btn__text{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.pickup-section-btn 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%);
}


@media all and (max-width: 768px) {
  .pickup-section__item-name {
    margin: -1px 0 0;
  }

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

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

  

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

  .pickup-section-btn__label {
    height: 18px;
    font-size: 1.25rem;
    line-height: 18px;
  }

  .pickup-section-btn a:after {
    right: 10px;
  }

  .pickup-section-btn__text {
    font-size: 1.5rem;
  }
}



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

 Choice Point

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

.choice-point{
  margin: 36px -64px;
  padding: 0 32px 32px;
  background: #f6f6f6;
}

.choice-point .choice-point__ttl{
  margin: 0 -32px;
  padding: 20px 32px;
  text-align: center;
  border: none;
  color: #fff;
  background: var(--color-red);
}

.choice-point__ttl br{
  display: none;
}

.choice-point-section h2{
  margin-top: 20px;
}

.choice-point-section__box{
  margin: 32px 0 0;
  padding: 24px;
  background: #ecf5fd;
  border-radius: 5px;
}

.choice-point-section__box ul{
  counter-reset: choicePointNum;
}

.choice-point-section__box li{
  padding: 0 0 0 36px;
  position: relative;
}

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

.choice-point-section__box li:before{
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 100%;
  counter-increment: choicePointNum 1;
  content: counter(choicePointNum);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2px;
  left: 0;
}


.choice-point__section{
  margin: 28px 0 0;
  padding: 28px 40px 44px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.choice-point__section:first-child{
  margin: 0;
}

.choice-point__find{
  line-height: 1.4;
  margin:  0 0 28px;
  padding: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid var(--border-color);
}

.choice-point__find span{
  width: 120px;
  height: 22px;
  line-height: 22px;
  margin: 0 auto 5px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: var(--color-red);
  display: block;
}

.choice-point__section p{
  margin: 18px 0 0;
  font-size: 17px;
}

.choice-point ul{
  margin: 20px 24px 0;
}

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

.choice-point ul li:before{
  background: var(--btn-blue);
}


@media all and (max-width: 768px) {
  .choice-point{
    margin: 36px -18px 28px;
    padding: 0 8px 16px;
    background: #f0f0f0;
  }

  .choice-point-section__box{
    padding: 16px;
  }

  .choice-point .choice-point__ttl{
    margin: 0 -8px 16px;
    padding: 16px 20px;
    font-size: 21px;
  }
  .choice-point__ttl br{
    display: block;
  }
  .choice-point__find{
    margin: 0 0 22px;
    font-size: 19px;
  }
  .choice-point__find span{
    width: 96px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
  .choice-point__section{
    margin: 10px 0 0;
    padding: 22px 18px 32px;
  }
  .choice-point p{
    margin: 14px 0 0;
    font-size: 15px;
  }
  .choice-point .box-gray{
    margin: 22px 0;
  }
  .choice-point ul{
    margin: 12px 16px 0;
  }

  .choice-point-section__box li{
    padding: 0 0 0 36px;
    font-size: 16px;
  }

  .choice-point-section__box li:not(:first-child){
    margin-top: 6px;
  }

  .choice-point-section__box li:before{
    top: 0;
  }

  .choice-point ul li:before{
    top: 9px;
  }
}



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

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



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

 Choide point section

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

.choice-point-section h4{
  margin: 52px 0 20px;
  padding: 0 0 8px 44px;
  border-bottom: 1px dashed #ccc;
  position: relative;
}


.choice-point-section h4:before{
  content: none;
}

.choice-point-section span{
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  left: 0;
}

.choice-point-section p {
  margin: 20px 0 0;
  font-size: 16px;
}

.choice-point-section .talk{
  margin: 24px 0 0;
}


@media all and (max-width: 768px) {
  .choice-point-section h4{
    margin: 40px 0 20px;
    padding: 0 0 8px 36px;
    font-size: 19px;
  }

  .choice-point-section h4 span{
    width: 30px;
    height: 30px;
    font-size: 15px;
    top: 0;
    left: -2px;
  }

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

}



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

 Other Recommend

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

.other-recommend-site{
  margin: var(--box-margin);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 3px rgba(0,0,0,0.03);
}

.other-recommend-site + .other-recommend-site{
  margin-top: 20px;
}

.other-recommend-site > *:first-child{
  margin-top: 0;
}

.other-recommend-site p{
  line-height: 1.7;
  font-size: 16px;
}

.other-recommend-site .other-recommend-site__link{
  margin-top: 18px;
}


@media all and (max-width: 768px) {
  .other-recommend-site{
    padding: 16px 14px;
  }

  .other-recommend-site + .other-recommend-site{
    margin-top: 14px;
  }

  .other-recommend-site p{
    font-size: 15px;
  }

  .other-recommend-site .other-recommend-site__link{
    margin-top: 8px;
  }
}



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

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

.ranking-table{
  margin: 32px -32px 0;
}

.ranking-table__notes{
  display: none;
}

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

.ranking-table th{
  padding: 4px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.ranking-table th .small{
  color: #fff;
  font-size: 12px;
}

.ranking-table th div{
  color: #fff;
  text-align: center;
}

.ranking-table tr > td:first-child{
  background: #fff9e5;
}

.ranking-table td{
  line-height:  1.5;
  padding: 8px 4px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

.ranking-table__icon{
  width: 36px;
  margin: 4px auto;
  display: block;
}


.ranking-table__item-img img{
  width: 95%;
  margin: 0 auto;
  display: block;
}

.ranking-table__item-img a{
  color: var(--link-text);
  font-weight: 600;
}

.ranking-table__item-img td{
  padding: 4px 0 16px;
  line-height: 1.3;
  border: none;
  font-size: 14px;
  position: relative;
}

.ranking-table__item-img td:before{
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  font-size: 28px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f521";
  top: 4px;
  left: 4px;
  z-index: 10;
}

.ranking-table__item-img td:after{
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 100;
}

.ranking-table__item-img td:nth-child(1):before{
  color: #dcaa23;
}

.ranking-table__item-img td:nth-child(1):after{
  content: "1";
}

.ranking-table__item-img td:nth-child(2):before{
  color: #b3b6b8;
}

.ranking-table__item-img td:nth-child(2):after{
  content: "2";
}

.ranking-table__item-img td:nth-child(3):before{
  color: #7a5f50;
}

.ranking-table__item-img td:nth-child(3):after{
  content: "3";
}

.ranking-table__item-img td:nth-child(4):after{
  content: "4";
}

.ranking-table__item-img td:nth-child(5):after{
  content: "5";
}

.ranking-table__link td{
  border: none;
}

.ranking-table__link a{
  width: 88%;
  height: 52px;
  line-height: 52px;
  margin: 8px auto;
  padding: 0 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: var(--btn-green);
  display: block;
  border-radius: 6px;
  box-sizing: border-box;
  position: relative;
}

.ranking-table__link a:after{
  margin: -8px 0 0;
  line-height: 1;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  content: "\f105";
  display: block;
  position: absolute;
  top: 50%;
  right:  8px;
}

.ranking-table__link a:hover{
  color: #fff;
  opacity: 0.8;
}

.ranking-table__link td:first-child a{
  background: var(--btn-orange);
}

@media all and (max-width: 768px) {
  .ranking-table{
    margin: 24px -12px 0;
    overflow-x: scroll;
  }
  .ranking-table__notes{
    margin: 0 0 4px !important;
    text-align: right;
    font-size: 14px !important;
  }
  .ranking-table__items{
    height: 26px;
  }
  .ranking-table th{
    width: calc(100% - 8px);
    height: 26px;
    padding: 1px 0;
    font-size: 14px;
    position: absolute;
  }
  .ranking-table td{
    width: 110px;
    font-size: 12px;
  }
  .ranking-table__icon{
    width: 32px;
  }
  .ranking-table__price td{
    font-size: 13px;
  }
  .ranking-table__link a{
    height: 58px;
    line-height: 58px;
  }
  .ranking-table__link a:after{
    margin: -7px 0 0;
    font-size: 14px;
    right: 6px;
  }
  .ranking-table__item-img td:before{
    font-size: 22px;
    top: 0px;
    left: 2px;
  }
  .ranking-table__item-img td:after{
    font-size: 10px;
    top: 1px;
    left: 2px;
  }
}


/*------------------------------------------
 Ranking table 2
------------------------------------------*/

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

.ranking-table-2__inner{
  overflow-x: scroll;
}

.ranking-table-2__inner p:first-child{
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px !important;
}

.ranking-table-2 .fc-red{
  color: #f95652;
}

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

.ranking-table-2 th{
  width: 62px;
  line-height: 1.4;
  padding: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  background: #eee;
  border: 1px solid #ddd;
  box-sizing: border-box;
  vertical-align: middle;
}

.ranking-table-2 th:after{
  width: 2px;
  height: 100%;
  content: "";
  background: #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
}

.ranking-table-2 th:before{
  width: 1px;
  height: 100%;
  content: "";
  background: #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
}

.ranking-table-2 td{
  line-height: 1.5;
  padding: 6px 8px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.ranking-table-2 thead td{
  position: relative;
}

.ranking-table-2 thead td:before{
  width: 32px;
  height: 25px;
  content: "";
  background-image: url(../img/icon-rank.png);
  background-repeat: no-repeat;
  background-size: 32px 25px;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 10;
}

.ranking-table-2 thead td:after{
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 3px;
  left: 4px;
  z-index: 100;
}

.ranking-table-2 thead td:nth-child(2):before{
  background-image: url(../img/icon-rank1.png);
}

.ranking-table-2 thead td:nth-child(2):after{
  content: "1";
}

.ranking-table-2 thead td:nth-child(3):before{
  background-image: url(../img/icon-rank2.png);
}

.ranking-table-2 thead td:nth-child(3):after{
  content: "2";
}

.ranking-table-2 thead td:nth-child(4):before{
  background-image: url(../img/icon-rank3.png);
}

.ranking-table-2 thead td:nth-child(4):after{
  content: "3";
}

.ranking-table-2 thead td:nth-child(5):after{
  content: "4";
}

.ranking-table-2 thead td:nth-child(6):after{
  content: "5";
}

.ranking-table-2__item{
  padding: 0 0 4px;
  line-height: 1.3;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.ranking-table-2__item img{
  width: 100%;
  max-width: 140px;
  margin: 8px auto 4px;
  display: block;
}

.ranking-table-2__img{
  width: calc(100% - 6px);
}

.ranking-table-2 .w200{
  width: 200px;
}
.ranking-table-2 .va-mid{
  vertical-align: middle;
}

.ranking-table-2 .ranking-table__icon{
  width: 32px;
  margin: 2px auto 4px;
}

.ranking-table-2 .ranking-table-2__btn{
  width: 88%;
  height: 48px;
  line-height: 48px;
  margin: 4px auto;
  padding: 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: var(--btn-green);
  display: block;
  border-radius: 6px;
  box-sizing: border-box;
  position: relative;
}

.ranking-table-2 .ranking-table-2__btn:after{
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url(../img/arrow-btn.png) no-repeat;
  background-size: 7px 11px;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}

.ranking-table-2 .btn-orange{
  background: var(--btn-orange);
}

.ranking-table-2 .ranking-table-2__btn:hover{
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

@media all and (max-width: 768px) {
  .ranking-table-2{
    margin-left: -16px;
    margin-right: -16px;
  }
  .ranking-table-2__item{
    font-size: 14px;
  }
  .ranking-table-2 .ranking-table__icon{
    width: 24px;
  }
  .ranking-table-2__item img{
    max-width: 140px;
  }
  .ranking-table-2 th{
    font-size: 12px;
    position: sticky;
    z-index: 200;
    left: 0;
  }
  .ranking-table-2 td{
    padding: 6px;
    font-size: 12px;
  }
  .ranking-table-2__inner p:first-child{
    padding: 0 0 0 8px;
  }
}


/*------------------------------------------
 Ranking table wide
------------------------------------------*/

.ranking-table-wide{
  margin: 32px -24px 0;
}

.ranking-table-wide__inner{
  overflow-y: scroll;
}
.ranking-table-wide__notes{
  color: #555 !important;
  font-weight: 600;
  font-size: 14px !important;
  margin: 0 0 6px !important;
}

.ranking-table-wide .ranking-table-wide__service-name{
  margin: 4px 0 0;
  display: block;
  color: var(--link-text);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.ranking-table-wide .ranking-table-wide__service-name:after{
  width: 11px;
  height: 12px;
  margin: 1px 0 0 2px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 11px 12px;
  content: "";
  display: inline-block;
  vertical-align: top;
}

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

.ranking-table-wide thead th{
  line-height: 1.2;
  width: 96px;
  padding: 3px 2px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: #f2f2f2;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

.ranking-table-wide thead .cell-img{
  width: 116px;
  left: 0;
  position: sticky;
}

.ranking-table-wide .cell-img:after{
  width: 2px;
  height: 100%;
  content: "";
  background: var(--border-color);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
}

.ranking-table-wide .cell-img:before{
  width: 1px;
  height: 100%;
  content: "";
  background: var(--border-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
}

.ranking-table-wide .width-wide{
  width: 160px;
}

.ranking-table-wide .name{
  width: 120px;
}

.ranking-table-wide .name a{
  font-weight: 600;
}

.ranking-table-wide td{
  height: 100%;
  line-height: 1.5;
  border: 1px solid var(--border-color);
  text-align:  center;
  font-size: 13px;
  background: #fff;
  vertical-align: middle;
}

.ranking-table-wide tbody td:first-child{
  padding: 8px 4px;
  left: 0;
  position: sticky;
}

.ranking-table-wide .button-cell div{
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranking-table-wide .button-cell:before{
  float: left;
  min-height: 80px;
  content: "";
  display: block;
}

.ranking-table-wide tbody tr:first-child td{
  background: #fff9e5;
}

.ranking-table-wide tbody tr:first-child .btn-link{
  background: var(--btn-orange);
}

.ranking-table-wide tbody td:first-child:before{
  width: 1px;
  height: 100%;
  content: "";
  background: var(--border-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
}

.ranking-table-wide tbody td:first-child:after{
  width: 2px;
  height: 100%;
  content: "";
  background: var(--border-color);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
}

.ranking-table-wide tbody td {
  min-height: 88px;
  padding: 4px 6px;
}

.ranking-table-wide td img{
  max-width: 100%;
  max-height: 100%;
}

.ranking-table-wide .ranking-table__icon{
  width: 24px;
}

.ranking-table-wide .price-btn{
  padding: 8px 12px;
  color: #fff;
  background: #02bb80;
}

.ranking-table-wide .item-img:before{
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 10;
  border-left: 12px solid #444;
  border-top: 12px solid #444;
  border-right: 12px solid transparent;
  border-bottom: 12px solid transparent;
  box-sizing: border-box;
  content: "";
}

.ranking-table-wide .item-img:after{
  width: 17px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  content: "1";
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  z-index: 20;
  top: 0;
  left: 0;
  position: absolute;
}

.ranking-table-wide tbody tr{
  counter-increment: num;
}

.ranking-table-wide tbody tr:nth-child(1) .item-img:before{
  border-top-color: #f8c400;
  border-left-color: #f8c400;
}

.ranking-table-wide tbody tr:nth-child(2) .item-img:before{
  border-top-color: #b3b6b8;
  border-left-color: #b3b6b8;
}

.ranking-table-wide tbody tr:nth-child(3) .item-img:before{
  border-top-color: #7a5f50;
  border-left-color: #7a5f50;
}

.ranking-table-wide tbody tr .item-img:after{
  content: counter(num);
}

.ranking-table-wide .btn-link{
  width: 80px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: var(--btn-green);
  border-radius: 4px;
  display: block;
  transition: 0.25s;
}

.ranking-table-wide .btn-link:hover{
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}


.ranking-table-wide--fit .ranking-table-wide__inner{
  padding: 16px;
  background: #ff8ea6;
  background-size: 72px 72px;
  border-radius: 6px;
}

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

.ranking-table-wide--fit thead th{
  width: auto;
}

.rankiing-table-wide--fit tbody tr td:first-child{
  padding: 6px 10px;
}

.ranking-table-wide--fit thead .cell-img{
  width: 160px;
}

input[name="ranking-table-radio"]{
  display: none;
}

.ranking-table__tab-menu{
  padding: 0 10px;
}

.ranking-table__tab-menu ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table__tab-menu li{
  flex: 1;
}

.ranking-table__tab-menu li:first-child{
  margin: 0 2px 0 0;
}

.ranking-table__tab-menu label{
  height: 40px;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table__tab-area{
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.ranking-table__tab-area thead th{
  height: 38px;
}

#table-tab-menu1:checked ~ .ranking-table__tab-menu label[for="table-tab-menu1"]{
  color: #fff;
  background: #ff8ea6;
  border-color: #ff8ea6;
}

#table-tab-menu1:checked ~ .ranking-table-wide__inner #ranking-table__table1{
  height: auto;
  opacity: 1;
  visibility: visible;
}

#table-tab-menu2:checked ~ .ranking-table__tab-menu label[for="table-tab-menu2"]{
  color: #fff;
  background: #ff8ea6;
  border-color: #ff8ea6;
}

#table-tab-menu2:checked ~ .ranking-table-wide__inner #ranking-table__table2{
  height: auto;
  opacity: 1;
  visibility: visible;
}


.table-star{
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-star img{
  width: 18px;
}

.table-star p{
  line-height: 1;
  margin: 0 0 0 2px;
  color: #e31f1f;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}


@media all and (max-width: 768px) {
  .ranking-table-wide{
    margin: 24px -18px 0;
  }
  .ranking-table-wide thead th{
    font-size: 12px;
  }
  .ranking-table-wide tbody td {
    height: 92px;
    line-height: 1.3;
    padding: 4px 6px;
  }
  .ranking-table-wide .ranking-table__icon{
    width: 24px;
  }

  .ranking-table__tab-menu{
    padding: 0 2px;
  }
  .ranking-table__tab-menu label{
    height: 36px;
    font-size: 14px;
  }
  .ranking-table-wide--fit .ranking-table-wide__inner{
    padding: 8px;
    border-radius: 0;
  }
  .ranking-table-wide--fit thead th{
    padding: 4px 2px;
    font-size: 11px;
  }
  .ranking-table-wide--fit thead .cell-img{
    width: 116px;
  }
  .ranking-table-wide--fit tbody td{
    font-size: 12px;
  }
  .table-star img{
    width: 15px;
  }
  .table-star p{
    font-size: 14px;
  }
}


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

 Infomation table

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

.info-table{
  margin: 32px 0 0;
}

.info-table table{
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #ddd;
}

.info-table table:not(:first-child){
  margin: 3px 0 0;
}

.info-table th{
  width: 80px;
  padding: 1px 8px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background: var(--color-page-bg);
  border-bottom: 1px solid #e4e1dd;
}

.info-table th br{
  display: none;
}

.info-table td{
  padding: 10px 8px;
  line-height: 1.4;
  color: #4a4a4a;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e4e1dd;
  vertical-align: middle;
}

.info-table td b{
  color: #4a4a4a;
}

.info-table td .fc-red{
  color: #e02626;
}

.info-table__list .other{
  padding: 0 3px;
  color: var(--fc-default);
  font-size: 1.5rem;
  background: none;
}

.info-table p{
  margin: 8px 0 0;
  font-size: 12px;
  color: #999;
  text-align: right;
}

.info-table__icon{
  width: 26px;
  margin: 1px auto 4px;
  display: block;
}

.info-table__icon img{
  width: 100%;
}

.info-table__label{
  width: fit-content;
  margin: 3px auto 0;
  padding: 0 8px;
  color: #1356a6;
  font-size: 14px;
  font-weight: 600;
  background: #ffe95a;
  border-radius: 3px;
  display: block;
}

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

  .info-table th {
    width: 60px;
    padding: 10px 0;
    font-size: 1.25rem;
  }

  .info-table th br {
    display: block;
  }

  .info-table td {
    padding: 10px 10px;
    font-size: 1.35rem;
  }

  .info-table p {
    margin: 4px 0 0;
    font-size: 10px;
  }

  .info-table__list {
    padding: 0 8px;
  }

  .info-table__list ul {
    padding: 4px 0;
    gap: 4px;
  }

  .info-table__list li {
    height: 24px;
    padding: 0 5px;
    font-size: 1.2rem;
  }

  .info-table__list .other {
    padding: 0 2px;
    font-size: 1.2rem;
  }

  .info-table__label {
    margin: 2px auto 0;
    padding: 0 3px;
    font-size: 12px;
    letter-spacing: -0.04em;
    transform: scaleX(0.95);
  }
}


/*------------------------------------------
 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: 600;
  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: 600;
  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: 600;
}

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



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

 Item Section

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

.items {
  margin: 32px calc(var(--post-padding-side) * -1) 0;
  padding: 24px 8px;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.item {
  padding: 4px var(--item-section-padding-side) 32px;
  background: #fff; 
  position: relative;
  transition: .2s;
}

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

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

.item-section.item-section--open{
  opacity: 0;
  animation-name: itemSectionFade;
  animation-duration: .15s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

.item-section__inner {
  padding: 20px var(--item-section-padding-side) 56px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.item-section__inner:is(.item-section:first-child *) {
  outline: 2px solid #fcd345;
}

.item-img {
  margin: 28px 0 0;
}

.item-img.pickup {
  background: #fff7e6;
}

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

@keyframes itemSectionFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@media all and (max-width: 768px) {
  .items{
    margin-top: 36px;
    padding: 24px 6px;
  }

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

  .item-section__inner {
    padding: 12px var(--item-section-padding-side) 32px;
  }

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

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

   .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 secction / Ranking Title
------------------------------------------*/

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

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

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

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

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

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

.item-header__inner{
  flex: 1;
}

.item-ttl {
  margin: 0;
  padding: 0;
  font-size: 1.9rem;
  border: none;
}

.item-ttl a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

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

.item-rating span{
  margin: 1px 4px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.item-rating:before{
  width: fit-content;
  height: 22px;
  line-height: 22px;
  margin: 1px 10px 0 0;
  padding: 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--color-page-bg);
  border-radius: 4px;
  content: "総合評価";
  display: block;
}

.item-rating img{
  width: 96px;
  margin: 0 0 0 3px;
  display: block;
}


@media all and (max-width: 768px) {
  .item-section-header {
    margin: 0 -16px;
    padding: 6px 16px;
  }

  .item-section-header:before {
    width: 50px;
    height: 50px;
    top: calc(50% - 2px);
    left: 14px;
  }
}


/*------------------------------------------
 Item secction / Body
------------------------------------------*/

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

.item-section__text p:not(:first-child){
  margin-top: 22px;
}

.post-body .item-section__text .talk{
  margin: 22px 0 !important;
}


@media all and (max-width: 768px) {
  .post-body .item-section__text p{
    font-size: 1.4rem;
  }

  .post-body .item-section__text .talk{
    margin: 20px 0 !important;
  }

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



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

 Service point

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

.service-point{
  margin-top: 64px;
  counter-reset: servicePoint;
}

.service-point__section:not(:first-child){
  margin-top: 32px;
}

.service-point .service-point__find{
  margin: 0;
  padding: 12px 20px 12px 76px;
  color: var(--fc-default);
  line-height: 1.7;
  background: #f4f4f4;
  border: none;
  border-radius: 6px;
  position: relative;
}

.service-point .service-point__find:before{
  width: 20px;
  height: 100%;
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.service-point__find span{
  width: 64px;
  height: 64px;
  padding: 1px 0 0;
  background: var(--color-primary);
  border-radius: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  transform: translateY(-50%);
}

.service-point__find span:before{
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  content: "POINT";
  display: block;
}

.service-point__find span:after{
  margin: 3px 0 0;
  color: #ffedad;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  counter-increment: servicePoint;
  content: counter(servicePoint);
  display: block;
}

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



@media all and (max-width: 768px) {
  .service-point{
    margin-top: 40px;
  }

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

  .service-point .service-point__find{
    margin: 0 -12px 0 0;
    padding: 10px 14px 10px 52px;
    font-size: 1.65rem;
    border-radius: 5px;
  }

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

  .service-point__find span{
    width: 52px;
    height: 52px;
    padding: 2px 0 0;
    left: -12px;
  }

  .service-point__find span:before{
    font-size: 10px;
    transform: scale(0.94);
  }

  .service-point__find span:after{
    margin: 2px 0 0;
    font-size: 21px;
  }

  .service-point__section p{
    margin-top: 16px;
    font-size: 1.55rem;
  }

  .service-point__section li{
    font-size: 1.4rem;
  }
}


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

 Tips

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

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

.tips__list{
  border: 2px solid var(--color-primary);
  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-primary);
  position: relative;
}

.tips__find div{
  line-height: 1.5;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  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: 600;
  background: var(--color-primary);
  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

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

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

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



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

 Comment

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

.comment {
  margin: 32px 0 0;
}

.comment__more-btn {
  width: 100%;
  height: 36px;
  margin-top: 12px;
  color: #999;
  font-size: 1.45rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center ;
}

.comment__hidden-area {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity .2s;
}

.comment__hidden-area.is-open {
  margin-top: 16px;
  height: initial;
  visibility: visible;
  opacity: 1;
}

.comment__heading {
  padding: 12px 12px 12px 26px;
  color: #fff;
  font-size: 1.9rem;
  background: var(--color-primary);
  border-radius: 5px;
  position: relative;
}

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

.comment__items {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

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

.comment-item__header {
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.comment-item__avatar {
  width: 56px;
  height: 56px;
  border: 2px solid #e8e8e8;
  border-radius: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.comment-item__digest {
  margin: 0 0 3px;
  flex: 1;
}

.comment-item__digest > p {
  font-size: 1.65rem;
  font-weight: 600;
}

.comment-item__digest-sub {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 0;
}

.comment-item__star {
  width: fit-content;
  height: 20px;
  padding: 0 10px 0 0;
  border: 1px solid var(--star-color-5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.comment-item__star:before {
  padding: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  content: "満足度";
  background: var(--star-color-5);
  display: flex;
  align-items: center;
}

.comment-item__star:has(.star--4) {
  border-color: var(--star-color-4);
}
.comment-item__star:has(.star--4):before {
  background-color: var(--star-color-4);
}

.comment-item__star:has(.star--3) {
  border-color: var(--star-color-3);
}
.comment-item__star:has(.star--3):before {
  background-color: var(--star-color-3);
}

.comment-item__star img {
  width: 84px;
  transform: translateY(0);
}

.comment-item .comment-item__poster-info {
  margin: 1px 0 0;
  color: #777;
  font-size: 1.4rem;
  font-weight: 500;
}

.comment-item__body {
  padding: 18px 24px;
}

.comment-item__body p {
  font-size: 1.55rem;
  line-height: 1.8;
}

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

.comment .comment__notes {
  margin-top: 12px;
  color: #777;
  font-size: 1.2rem;
  text-align: right;
}


@media all and (max-width: 768px) {
  .comment__heading {
    padding: 10px 10px 10px 24px;
    font-size: 1.7rem;
  }

  .comment__items {
    margin-top: 20px;
    gap: 16px;
  }

  .comment-item__header {
    padding: 12px;
    gap: 8px;
  }

  .comment-item__avatar {
    width: 50px;
    height: 50px;
  }

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

  .comment-item__star {
    height: 18px;
    padding: 0 8px 0 0;
  }

  .comment-item__star:before {
    font-size: 1.1rem;
  }

  .comment-item__star img {
    width: 76px;
  }

  .comment-item .comment-item__poster-info {
    font-size: 1.2rem;
  }

  .comment-item__body {
    padding: 16px 14px;
  }

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

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



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

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


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

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

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

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

.talk__img {
  width: 76px;
  border-radius: 100%;
  overflow: hidden;
}

.talk__img img {
  width: inherit;
}

.talk__text {
  min-height: 76px;
  padding: 14px 20px;
  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.8;
  font-size: 1.6rem;
}

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

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



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

Area Table

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

.area-table{
  
}

.post-body .area-table__find{
  margin: 64px 0 24px;
  padding: 14px 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-top: 4px solid var(--color-primary);
  box-sizing: border-box;
}

.post-body .area-table__find span{
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.6;
  display: inline-block;
  letter-spacing: -0.05em;
}

.area-table__ttl br{
  display: none;
}

.area-table .area-table__notes-text{
  margin-bottom: 10px !important;
  font-size: 15px;
  text-align: right;
}

.area-table__section{
  border: 1px solid #e0e0e0;
}

.area-table__region{
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.area-table__region:last-child{
  border-bottom: 1px solid #e0e0e0;
}

.area-table__region-find{
  font-size: 16px !important;
  font-weight: 600;
  text-align: center;
  background: #f4f4f4;
}

.area-table__region-inner{
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
}

.area-table__region-inner li{
  width: 33.33333%;
  margin: 0 !important;
  padding: 0 !important;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}

.area-table__region-inner li:nth-child(n+7){
  border-bottom: none;
}
.area-table__region-inner li:nth-child(3n){
  border-right: none;
}

.area-table__region-inner li:before{
  content: none !important;
}

.area-table__region-inner a{
  padding: 10px 12px;
  color: var(--link-text);
  font-size: 16px;
  display: block;
}


@media all and (max-width: 768px) {
  .post-body .area-table__find{
    margin: 40px 0 20px;
    padding: 10px 0;
    font-size: 17.5px;
  }

  .area-table__ttl span{
    font-size: 17.5px;
  }

  .area-table__ttl br{
    display: block;
  }

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

  .area-table__region-find{
    font-size: 13px !important;
  }

  .area-table__region-inner a{
    padding: 4px 10px;
    font-size: 14px;
  }
}



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

Area

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

.area {
  margin-top: 24px;
}

.area__block {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-top: 1px solid var(--color-border);
  gap: 10px;
}

.area__block:last-child {
  border-bottom: 1px solid var(--color-border);
}

.area dt {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-page-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.area ul {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area li {
  font-size: 1.5rem;
  line-height: 1.2;
}

.area li:not(:last-child) {
  padding-right: 8px;
  border-right: 1px solid #aaa;
}

.area li a {
  text-decoration: underline;
}


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

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

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



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

Profile

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

.profile{
  margin: var(--box-margin);
  padding: 20px 20px 24px;
  background: #f4f7f9;
  border-radius: 6px;
  display: flex;
}

.profile__icon{
  width: 72px;
  height: 72px;
  border-radius: 36px;
  overflow: hidden;
}

.profile__icon img{
  width: 100%;
  height: auto;
}

.profile__info{
  flex: 1;
  padding: 6px 0 0 16px;
}

.profile__name{
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.profile__name span{
  width: fit-content;
  height: 22px;
  line-height: 20px;
  margin: 0 8px 0 0;
  padding: 0 16px;
  color: var(--color-primary);
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 11px;
  box-sizing: border-box;
}

.profile__text{
  margin: 6px 0 0;
}

.profile__text p{
  font-size: 0.85rem;
}

@media all and (max-width: 768px) {
  .profile{
    padding: 12px 14px 16px;
  }
  .profile__icon{
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
  .profile__info{
    padding: 4px 0 0 12px;
  }
  .profile__name{
    font-size: 1`6px;
  }
  .profile__name span{
    padding: 0 12px;
    font-size: 11px;
  }
  .profile__text p{
    line-height: 1.7;
    font-size: 0.76rem;
  }
}


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

.contents.sp-nav-open {
  position: fixed;
  z-index: 0;
}

@media all and (max-width: 768px) {
  .contents {
    width: fit-content;
    margin: 0 auto;
    margin-top: var(--header-height);
    box-sizing: border-box;
  }
}

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

.main__section {
  padding: 48px 56px;
}

@media all and (max-width: 768px) {
  .main__section {
    padding: 24px 16px;
  }
}


.recommend-find{
  margin: 32px 0 16px;
  padding: 8px 12px;
  color: #fff;
  font-size: 20px;
  background: #333;
}

.post-list-table table {
  width: 100%;
  background: #fff;
}
.post-list-table th {
  padding: 4px 0;
  background: #ffb9ce;
  border: 1px solid #ffb9ce;
  vertical-align: middle;
  cursor: pointer;
}
.post-list-table th div{
  line-height: 1.1;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  position: relative;
}
.post-list-table th div:after{
  width: 7px;
  height: 8px;
  margin: -4px 0 0;
  background: url('../img/arrow-sort.png');
  background-size: 7px 8px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6px;
}
.post-list-table td {
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}
.post-list-table td:first-child {
  text-align: left;
}
.post-list-table td img {
  width: 32px !important;
  height: auto;
  margin: 0 4px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.post-list-table td a {
  color: var(--link-text);
}

.post-list-table td a:hover {
  color: var(--link-text-hover);
}

.post-list-table .name {
  width: 220px;
}

.post-list-table .price {
  width: 56px;
}

@media all and (max-width: 640px) {
  .recommend-find{
    margin: 24px 0 12px;
    font-size: 18px;
  }
  .post-list-table{
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch
  }
  .post-list-table table{
    width: 748px;
  }
}



.wp-pagenavi {
  padding: 24px 0 0;
  font-size: 0;
  vertical-align: top;
  text-align: center;
}
.wp-pagenavi span {
  display: inline-block;
}
.wp-pagenavi .current {
  margin: 0 3px;
  padding: 9px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: #00365b;
}
.wp-pagenavi .extend {
  line-height: 36px;
  padding: 0 10px;
  font-size: 13px;
  vertical-align: top;
}
.wp-pagenavi a {
  margin: 0 3px;
  padding: 9px 18px;
  font-size: 15px;
  background: #e7e7e6;
  display: inline-block;
}
.wp-pagenavi a:hover {
  color: #ac873d;
}
@media all and (max-width: 768px) {
  .wp-pagenavi {
    margin: 16px 0 24px;
    padding: 0;
  }
  .wp-pagenavi .current {
    margin: 0 2px;
    padding: 4px 12px;
  }
  .wp-pagenavi .extend {
    padding: 0 8px;
  }
  .wp-pagenavi a {
    margin: 0 2px;
    padding: 4px 12px;
  }
}



.talk-password {
  margin: 24px 0 0;
}
.talk-password > p {
  line-height: 2.1;
  margin: 28px 0 0;
  font-size: 19px;
}
.talk-password > p:first-child {
  margin: 0;
}
.talk-password > p a {
  color: #0065cc;
}
.talk-password > p a:hover {
  color: #f60;
}
@media all and (max-width: 768px) {
  .talk-password > p {
    margin: 20px;
    font-size: 18px;
  }
}



div#ez-toc-container {
  width: 100%;
  margin: 40px 0 0;
  padding: 32px;
  background: #f6f6f4;
  border: 1px solid #f6f6f4;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
div#ez-toc-container:before {
  width: calc(100% + 2px);
  height: 5px;
  background: #00365b;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
}
div#ez-toc-container p.ez-toc-title {
  height: 39px;
  line-height: 39px;
  margin: 0 0 0 -10px;
  padding: 0 0 0 48px;
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  position: relative;
}
div#ez-toc-container p.ez-toc-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/sprite.png);
  background-position: 0px -66px;
  width: 39px;
  height: 39px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  div#ez-toc-container p.ez-toc-title:before {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
div#ez-toc-container ul.ez-toc-list {
  margin: 16px 0 0;
}
div#ez-toc-container ul.ez-toc-list > li {
  margin: 16px 0 0;
  padding: 0 0 0;
}
div#ez-toc-container ul.ez-toc-list > li:before {
  content: none;
}
div#ez-toc-container ul.ez-toc-list > li > a {
  padding: 4px 0;
  font-size: 15px;
  border-bottom: 2px solid #e5e8ec;
  display: block;
}
div#ez-toc-container ul.ez-toc-list > li:first-child {
  margin: 0;
}
div#ez-toc-container ul.ez-toc-list > li ul {
  margin: 12px 0 0;
}
div#ez-toc-container ul.ez-toc-list > li li {
  padding: 2px 0 2px 24px;
}
div#ez-toc-container ul.ez-toc-list > li li:before {
  top: 13px;
}
div#ez-toc-container ul.ez-toc-list li {
  line-height: 2;
}
div#ez-toc-container ul.ez-toc-list li a {
  color: #464646;
  font-size: 15px;
}
div#ez-toc-container ul.ez-toc-list li a:hover {
  color: #0065cc;
  text-decoration: none;
}
div#ez-toc-container ul.ez-toc-list > ul {
  margin: 0;
}
@media all and (max-width: 768px) {
  div#ez-toc-container {
    padding: 20px 16px;
  }
  div#ez-toc-container .ez-toc-title {
    margin: 0 0 0 -4px;
  }
  div#ez-toc-container ul.ez-toc-list li {
    line-height: 1.6;
  }
  div#ez-toc-container ul.ez-toc-list li a {
    line-height: 1.6;
    font-size: 13px;
  }
}

.other-post {
  margin: 32px 0 0;
}
.other-post__find {
  padding: 10px 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: #00365b;
  position: relative;
}
.other-post__list {
  margin: 16px -4px 0;
  font-size: 0;
}
.other-post__list article {
  padding: 0 4px;
  box-sizing: border-box;
}
.other-post__list a {
  width: 100%;
  padding: 8px 8px 12px;
  background: #fff;
  box-sizing: border-box;
  display: block;
}
.other-post__list a:hover img {
  opacity: 0.8;
}
.other-post__list a:hover .other-post__ttl {
  color: #0065cc;
}
.other-post__thumb {
  width: 100%;
  height: 126px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  background: #111;
}
.other-post__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.15s;
  -webkit-transition: 0.15s;
  -ms-transition: 0.15s;
  width: 100%;
  height: auto;
}
.other-post__ttl {
  min-height: 57px;
  margin: 10px 2px 0;
  line-height: 1.5;
  font-size: 13px;
}
.other-post .slick-dots {
  margin: 16px 0 0;
  text-align: center;
}
.other-post .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background: #d0d0ce;
  border-radius: 4px;
  display: inline-block;
}
.other-post .slick-dots .slick-active {
  background: #00365b;
}
@media all and (max-width: 768px) {
  .other-post {
    margin: 12px 0 0;
  }
  .other-post__find {
    padding: 8px 12px;
    font-size: 17px;
  }
  .other-post__list {
    margin: 8px -2px 20px;
  }
  .other-post__list article {
    padding: 0 2px;
  }
  .other-post__thumb {
    height: auto;
  }
  .other-post__thumb:before {
    padding: 56.25% 0 0;
    content: "";
    display: block;
  }
  .other-post__ttl {
    min-height: auto;
    min-height: initial;
  }
}
@media all and (max-width: 640px) {
  .other-post__ttl {
    height: 54px;
    font-size: 12px;
    overflow: hidden;
  }
}

.ranking-cm {
  margin: 32px 0 0;
  position: relative;
}
.ranking-cm__icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.ranking-cm__icon img {
  width: 100%;
  height: auto;
}
.ranking-cm__text {
  margin: 0 0 0 102px;
  padding: 20px 24px;
  background: #f4f7f9;
  border-radius: 6px;
  position: relative;
}
.ranking-cm__text p {
  font-size: 16px;
}
.ranking-cm__text a {
  color: #0065cc;
}
.ranking-cm__text a:hover {
  color: #f60;
}
.ranking-cm__text:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -15px;
  background-image: url(../img/sprite.png);
  background-position: -124px -36px;
  width: 16px;
  height: 26px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ranking-cm__text:before {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
@media all and (max-width: 768px) {
  .ranking-cm__icon {
    width: 44px;
    height: 44px;
  }
  .ranking-cm__text {
    margin: 0 0 0 64px;
    padding: 16px 20px;
  }
  .ranking-cm__text p {
    font-size: 15px;
  }
  .ranking-cm__text p br {
    display: none;
  }
  .ranking-cm__text p a {
    padding: 0 0 0 12px;
  }
}



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

Area page

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

.area-header {
  margin: -44px -64px 0;
  padding: 8px 0;
  text-align: center;
  background: var(--color-primary);
}

.area-header p{
  width: fit-content;
  height: 30px;
  line-height: 30px;
  margin: 0 auto !important;
  padding: 0 24px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 600;
  background: #fff;
  border-radius: 18px;
  opacity: 0;
  animation: bounce 4.6s ease-out;
  animation-fill-mode: forwards;
  animation-delay: .7s;
}

.area-header__image {
  margin: 0 -64px;
  padding: 24px;
}

.area-header__image img{
  width: 100%;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeImage .7s;
  animation-fill-mode: forwards;
}

.item-section__eyecatch{
  margin: 28px 0 0;
  padding: 20px;
  background: #fff2f4;
  border-radius: 6px;
}

.item-section__eyecatch.bg-gray{
  background: #f6f6f6;
}

.post-body .item-section__eyecatch .img{
  margin: 16px 0 0;
  padding: 0 16px;
}

.review-star{
  width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-star__label{
  margin: 0 6px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.review-star__star{
  width: 120px;
  margin: -2px 0 0;
}

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


.review-star .review-star__point{
  line-height: 1;
  margin: 0 0 0 4px;
  color: #e31f1f;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}


@keyframes fadeImage {
  from{
    opacity: 0;
    transform: translateY(32px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes bounce {
  0% {
    transform: scale(0, 0);
  }
  7% {
    transform: scale(1.08, 1.08);
    opacity: 1;
  }
  12% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.03, 1.03);
  }
  18% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}


@media all and (max-width: 768px) {
  
  .area-header{
    margin: 0 -18px;
    padding: 8px 0;
  }

  .area-header p{
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    border-radius: 12px;
  }

  .area-header__image{
    margin: 0 -18px;
    padding: 0;
  }

  .item-section__eyecatch{
    margin: 16px 0 0;
    padding: 16px;
  }

  .post-body .item-section__eyecatch .img{
    margin: 12px 0 0;
    padding: 0;
  }

  .review-star{
    width: fit-content;
    box-sizing: border-box;
  }
  .review-star__label{
    font-size: 12px;
  }
  .review-star__star{
    width: 104px;
  }
  .review-star .review-star__point{
    font-size: 18px;
  }
}



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

Job Sample

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

.job-sample{
  margin: 28px 0 ;
  padding: 0 0 24px !important;
}

.job-sample .swiper-pagination{
  top: auto !important;
  bottom: 0;
  border-radius: 2px;
  overflow: hidden;
}

.job-sample .swiper-pagination-progressbar{
  background: #eee;
}

.job-sample .swiper-pagination-progressbar-fill{
  background: var(--color-primary) !important;
}

.job-sample__list{
  width: 360px !important;
  padding: 0 10px;
  box-sizing: border-box;
}

.job-sample__list-inner{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.09);
}

.job-sample__image img{
  width: 100%;
}

.job-sample__info-table{
  margin: 12px 0 0;
  padding: 0 16px 16px;
}

.job-sample__info-table table{
  width: 100%;
}

.job-sample__info-table th{
  width: 44px;
  padding: 6px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px dashed #ccc;
}

.job-sample__info-table td{
  padding: 6px 8px 6px 0;
  font-size: 16px;
  border-bottom: 1px dashed #ccc;
}

.job-sample__info-table tr:last-child th,
.job-sample__info-table tr:last-child td{
  border: none;
}


.job-sample__title td{
  color: var(--color-primary);
  font-weight: 600;
}

.job-sample__tag{
  margin: -6px 0 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hideden;
}

.job-sample .job-sample__tag li{
  width: fit-content;
  height: 20px;
  line-height: 20px;
  margin: 6px 6px 0 0 !important;
  padding: 0 10px;
  color: var(--color-primary);
  font-size: 13px;
  background: #FFF6F7;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  white-space: nowrap;
}


@media all and (max-width: 768px) {
  .job-sample__list{
    width: 300px !important;
    padding: 0 8px;
  }
  job-sample__info-table{
    padding: 0 12px 14px;
  }
}








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

Contact

------------------------------------------*/
.contact-form {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #e5e5e5;
}
.contact-form__label {
  font-size: 15px;
}
.contact-form dt {
  margin: 16px 0 0;
}
.contact-form dt:first-child {
  margin: 0;
}
.contact-form dd {
  margin: 6px 0 0;
}
.contact-form__tag {
  height: 16px;
  line-height: 16px;
  margin: 6px 0 0 6px;
  padding: 0 5px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  background: #f01717;
  display: inline-block;
  vertical-align: top;
}
.contact-form__text {
  width: 320px;
  height: 40px;
  line-height: 40px;
  padding: 0 3px;
  font-size: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06) inset;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.contact-form textarea {
  width: 100%;
  height: 240px;
  padding: 0 3px;
  font-size: 15px;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  box-sizing: border-box;
  resize: vertical;
}
.contact-form__check {
  margin: 4px 0 0;
  font-size: 15px;
}
.contact-form__check label {
  cursor: pointer;
}
.contact-form__check label:hover {
  color: #0065cc;
}
.contact-form__check input {
  width: 14px;
  height: 14px;
  margin: 6px 4px 0 0;
  vertical-align: top;
}
.contact-form__submit {
  width: 320px;
  height: 56px;
  margin: 24px 0 0;
  position: relative;
}
.contact-form__submit:before {
  margin: -4px 0 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  background-image: url(../img/sprite.png);
  background-position: -154px -18px;
  width: 6px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .contact-form__submit:before {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
.contact-form__submit input {
  width: 320px;
  height: 56px;
  line-height: 56px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #00365b;
  border-radius: 3px;
  transition: opacity 0.15s;
  -webkit-transition: opacity 0.15s;
  -ms-transition: opacity 0.15s;
}
.contact-form__submit input:hover {
  opacity: 0.8;
}
@media all and (max-width: 640px) {
  .contact-form__text {
    width: 100%;
  }
  .contact-form__check {
    font-size: 14px;
  }
  .contact-form__check input {
    margin-top: 5px;
  }
  .contact-form__submit {
    width: 100%;
  }
  .contact-form__submit input {
    width: 100%;
  }
}

.parts-search-none p {
  font-size: 16px;
}
.parts-search-none a {
  color: #0065cc;
}
.parts-search-none a:hover {
  color: #f60;
}

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

Sub

------------------------------------------*/
.sub {
  width: 300px;
  float: right;
}
.sub__section {
  margin: 16px 0 0;
  padding: 16px 12px 24px;
  background: #fff;
}
.sub__section:first-child {
  margin: 0;
}
.sub__section-ttl {
  margin: -12px 0 6px;
  padding: 4px 0;
  font-size: 18px;
  border-bottom: 3px solid #e0e0e0;
  position: relative;
}
.sub .sub-profile {
  padding: 28px 8px 0;
}
.sub .sub-profile__img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
}
.sub .sub-profile__img img {
  width: inherit;
  height: auto;
  position: relative;
  z-index: 10;
}
.sub .sub-profile__img:before {
  width: 200px;
  height: 200px;
  content: "";
  background: #ac873d;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 0;
}
.sub .sub-profile__text {
  margin: 20px 0 0;
}
.sub .sub-profile__text .name {
  margin: 24px 0 0;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.sub .sub-profile__text p {
  line-height: 1.7;
  margin: 12px 0 0;
  font-size: 14px;
}
.sub .sub-profile__text p:first-child {
  margin: 0;
}
.sub .sub-profile__text p a {
  color: #777;
}
.sub .sub-profile__text p a:hover {
  color: #0065cc;
}
.sub .sub-profile__text > ul {
  margin: 12px 0 0;
}
.sub .sub-profile__text > ul li {
  line-height: 1.7;
  padding: 0 0 0 18px;
  font-size: 14px;
  position: relative;
}
.sub .sub-profile__text > ul li:before {
  content: '';
  display: block;
  background-image: url(../img/sprite.png);
  background-position: -168px -36px;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 8px;
  left: 6px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sub .sub-profile__text > ul li:before {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
.sub .sub-profile__banner {
  margin: 16px 0 0;
}
.sub .sub-profile__banner li {
  margin: 10px 0 0;
}
.sub .sub-profile__banner li:first-child {
  margin: 0;
}
.sub .sub-profile__banner img {
  width: 100%;
  height: auto;
}
.sub .sub-profile__banner a {
  transition: opacity 0.15s;
  -webkit-transition: opacity 0.15s;
  -ms-transition: opacity 0.15s;
}
.sub .sub-profile__banner a:hover {
  opacity: 0.8;
}
.sub .sub-post {
  margin: 0 0 -10px;
  padding: 8px 4px 0;
}
.sub .sub-post li {
  border-top: 1px dotted #d0d0ce;
}
.sub .sub-post li:first-child {
  border: none;
}
.sub .sub-post a {
  padding: 7px 6px 10px;
  display: block;
}
.sub .sub-post a:hover p {
  color: #0065cc;
}
.sub .sub-post a span {
  display: none;
}
.sub .sub-post time {
  line-height: 1.5;
  color: #777;
  font-size: 12px;
}
.sub .sub-post p {
  line-height: 1.5;
  font-size: 14px;
}
.sub .sub-category {
  margin: 0 0 -10px;
  padding: 8px 4px 0;
}
.sub .sub-category li {
  border-top: 1px dotted #d0d0ce;
}
.sub .sub-category li:first-child {
  border: none;
}
.sub .sub-category a {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 6px 0 20px;
  font-size: 14px;
  display: block;
  position: relative;
  box-sizing: border-box;
}
.sub .sub-category a:hover {
  color: #0065cc;
}
.sub .sub-category a:before {
  margin: -2px 0 0;
  content: '';
  display: block;
  background-image: url(../img/sprite.png);
  background-position: -168px -36px;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 6px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sub .sub-category a:before {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
.sub .sub-search {
  height: 64px;
  margin: 16px 0 0;
  background: #fff;
  border: 4px solid #e7e7e6;
  box-sizing: border-box;
  position: relative;
}
.sub .sub-search__text {
  margin: 0 48px 0 0;
}
.sub .sub-search input[type="text"] {
  width: 100%;
  height: 56px;
  line-height: 56px;
  padding: 0 4px;
  font-size: 14px;
  box-sizing: border-box;
}
.sub .sub-search__btn {
  height: 56px;
  position: absolute;
  top: 0;
  right: 0;
}
.sub .sub-search input[type="submit"] {
  background-image: url(../img/sprite.png);
  background-position: 0px 0px;
  width: 48px;
  height: 56px;
  transition: opacity 0.15s;
  -webkit-transition: opacity 0.15s;
  -ms-transition: opacity 0.15s;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sub .sub-search input[type="submit"] {
    background-image: url(../img/sprite@2x.png);
    background-size: 182px 137px;
  }
}
.sub .sub-search input[type="submit"]:hover {
  opacity: 0.7;
}
.sub .sub-series {
  padding: 20px 4px 0;
}
.sub .sub-series li {
  margin: 16px 0 0;
}
.sub .sub-series li:first-child {
  margin: 0;
}
.sub .sub-series__img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.12s;
  -webkit-transition: opacity 0.12s;
  -ms-transition: opacity 0.12s;
}
.sub .sub-series__img img {
  width: 100%;
  height: auto;
  margin: -105px 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.sub .sub-series p {
  line-height: 1.5;
  margin: 8px 0 0;
  font-size: 14px;
}
.sub .sub-series a:hover .sub-series__img {
  opacity: 0.8;
}
.sub .sub-series a:hover p {
  color: #0065cc;
}
@media all and (max-width: 768px) {
  .sub {
    width: 100%;
    float: none;
    display: none;
  }
  .sub__section {
    margin: 10px 0 0;
  }
  .sub__section:first-child {
    margin: 10px 0 0;
  }
  .sub .sub-search {
    margin: 10px 0 0;
  }
  .sub .sub-series__img {
    height: auto;
  }
  .sub .sub-series__img img {
    margin: 0;
    position: static;
  }
}

.sub-form select{
  width: 100%;
  height: 36px;
  padding: 0 24px 0 4px;
  font-size: 13px;
  box-sizing: border-box;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.sub-form li div{
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
}

.sub-form li div:before {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin: -2px 0 0;
  padding: 0;
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  pointer-events: none;
}

.sub-form select::-ms-expand {
  display: none;
}

.sub-form__single{
  margin: 12px 0 0;
}

.sub-form__single li{
  width: 100%;
}

.sub-form__double{
  margin: 8px -4px 0;
  font-size: 0;
}

.sub-form__double li{
  margin: 8px 0 0;
  padding: 0 4px;
  width: 50%;
  display: inline-block;
  box-sizing: border-box;
}

.sub-form__double li:first-child{
  margin: 0;
}

.sub-form__double li:nth-child(2){
  margin: 0;
}

.sub-form__submit{
  margin: 12px 0 0 ;
}

.sub-form__submit input{
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  background: var(--btn-green);
  border-radius: 4px;
}



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

Other page

------------------------------------------*/
.other-page {
  padding: 32px 0;
  background: #f0f0f0;
}
.other-page__wrapper {
  width: 880px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.other-page__ttl {
  line-height: 1.2;
  margin: 0 0 32px 0;
  font-size: 32px;
  font-weight: 600;
}
.other-page__table table {
  width: 100%;
  border: 2px solid #e0e0e0;
}
.other-page__table th {
  width: 260px;
  padding: 12px 16px;
  font-size: 17px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}
.other-page__table td {
  padding: 12px 16px;
  font-size: 17px;
  border-bottom: 1px solid #e0e0e0;
}

.other-page__table a {
  color: var(--link-text);
}

.other-page__table a:hover {
  text-decoration: underline;
}

.other-page__text h2 {
  line-height: 1.5;
  margin: 24px 0 0;
  padding: 6px 0;
  font-size: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.other-page__text h2:first-child {
  margin: 0;
}

.other-page__text p {
  margin: 12px 0 0;
  font-size: 16px;
}


@media all and (max-width: 880px) {
  .other-page {
    padding: 12px;
  }
  .other-page__wrapper {
    width: 100%;
    padding: 32px 16px;
  }
  .other-page__ttl {
    font-size: 24px;
    margin: 0 0 24px 0;
  }
  .other-page__table table {
    display: block;
  }
  .other-page__table tbody {
    display: block;
  }
  .other-page__table tr {
    display: block;
  }
  .other-page__table th {
    width: 100%;
    padding: 6px 16px;
    display: block;
    box-sizing: border-box;
  }
  .other-page__table td {
    display: block;
  }
  .other-page__text h2 {
    margin: 20px 0 0;
    font-size: 22px;
  }
  .other-page__text p {
    margin: 10px 0 0;
    font-size: 15px;
  }
}


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

Footer

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

.g-footer {
  width: 100%;
  margin: 48px 0 0;
  padding: 20px 0 26px;
  background: #fff;
}

.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{
  color: #777;
  font-size: 13px;
}

.g-footer .copyright {
  margin: 4px 0 0;
  text-align: center;
}
.g-footer .copyright small {
  font-size: 12px;
}
.g-footer.sp-nav-open {
  position: fixed;
}
@media all and (max-width: 768px) {
  .g-footer {
    margin: 32px 0 0;
    padding: 20px 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: 600;
  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;
  }
}


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

Voice

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

.voice-pink .voice__box {
  border: 2px solid #f299a3;
}
.voice-pink .voice__box:before {
  background: #f299a3;
}

.voice-blue .voice__box {
  border: 2px solid #3592e1;
}
.voice-blue .voice__box:before {
  background: #3592e1;
}

.voice {
  margin: 32px 0 0;
}
.voice__box {
  margin: 16px 0 0;
  padding: 20px;
  position: relative;
}
.voice__box:first-child {
  margin: 0;
}
.voice__box:before {
  content: "VOICE";
  display: block;
  width: 80px;
  color: #fff;
  height: 28px;
  line-height: 26px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.voice__img img {
  width: 100%;
}
.voice__text {
  margin: 16px 0 0;
}
.voice__text p {
  line-height: 1.6;
  margin: 16px 0 0;
  font-size: 17px;
}
.voice__text p:first-child {
  margin: 0;
}
.voice__notes{
  margin: 12px 0 0;
}
.voice__notes p {
  margin: 12px 0 0;
  color: #888;
  font-size: 11px;
  text-align: right;
}
@media all and (max-width: 640px) {
  .voice__box {
    padding: 14px;
  }
  .voice__box:before {
    width: 64px;
    height: 20px;
    line-height: 18px;
    font-size: 14px;
  }
  .voice__text p {
    font-size: 15px;
  }
}


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

404

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

.page-404{
  width: 100%;
  height: 100vh;
  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-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 a{
  color: var(--link-text);
}

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

@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: 14px;
  }
}



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

 Item / Recommend For

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

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

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

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

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

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

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


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

Header Alert

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

.header-alert{
  background: #fb8da2;
}

.header-alert a{
  width: 100%;
  height: 34px;
  text-align: center;
  display: flex;
  align-items: center;
}

.header-alert span{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  animation: blink 0.8s ease-in-out infinite alternate;
}


@keyframes blink{
  0% {opacity: 0.05; }
  100% { opacity:1; }
}