@charset "UTF-8";

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

:root{
  --header-height: 0;

  --width-main: 748px;

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

  --z-header: 1000;
  --z-sticky: 500;
  --z-module: 100;
  --z-popup: 10000;
  --z-hide: -100;
}

@media all and (max-width: 768px) {
:root{
  --padding-post-side: 18px;
  --padding-item-section-side: 12px;
}
}


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

:root{
  --fc-default: #202020;
  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic", sans-serif;
  --fs-default: 1.7rem;
  --fw-default: 400;
  --lh-default: 2;
  --ls-default: 0.01em;

  --fw-bold: 600;

  --item-section-block-title-fs: 1.9rem;
}


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

:root{
  --fc-link: #0078de;
  --fc-link-hv: #f60;

  --color-black: #4d4d4d;
  --color-blue: #1199df;
  --color-l-blue: #4ebcf0;
  --color-blue-d: #123a93;
  --color-green: #05ae68;
  --color-orange: #fc613b;
  --color-pink: #f7738c;

  --color-yellow-l: #fffaee;

  --color-border: #dfdfdf;
  --color-border-black: var(--color-black);

  --color-kangoroo: #8dc610;

  --link-color: #0078de;

  --color-main: #26c3d9;
  --color-main-l: #ebf9fc;
  --color-main-d: #04a7bd;

  --color-secondary: #97cd1e;

  --color-accent: #fc7069;

  --color-main-pink: #ff7f8e;
  --color-main-pink-l: #ffebee;
  --color-main-pink-d: #f45665;

  --color-main-green: #0099b0;
  --color-main-green-l: #e3f6f1;

  --color-page-bg: #f2f7fd;
  --color-page-bg-d: #e3ebf5;

  --color-btn-orange: #fd7757;
  --color-btn-orange-d: #ef5c3a;

  --color-btn-green: #09bcc7;
  --color-btn-green-d: #019ea8;

  --color-box-bg: #f4f5f7;

  --color-star-5: ;
  --color-star-4: ;
  --color-star-3: ;
}



/* --------------------
 Module
--------------------*/

:root{
  --zen-maru: "Zen Maru Gothic", serif;

  --text-margin: 32px;

  --box-margin: 36px;
  --box-padding: 20px;
  --box-r: 6px;

  --btn-height: 80px;

  --btn-green: var(--color-main-d);
  --btn-green-d: #0291a6;

  --btn-orange: #fd7757;
  --btn-orange-d: #ef5c3a;
  
  --btn-highlight: #f57275;
}


@media all and (max-width: 768px) {
:root{
  --fs-default: 1.45rem;
  --lh-default: 1.85;

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

  --box-r: 5px;
  --btn-r: 5px;

  --btn-height: 70px;

  --item-section-block-title-fs: 1.7rem;
}
}



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

 Base Setting

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

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

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

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

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

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

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

a {
  color: var(--link-color);
  cursor: pointer;
}


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

.fc-main-color {
  color: var(--color-main);
}



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

Header

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




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

Main

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

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

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

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


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

  .main {
    width: 100%;
  }
}



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

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


.post {
  padding: 0 var(--padding-post-side) 48px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

@media all and (max-width: 768px) {
  .post {
    margin: 0;
    padding-top: 0;
    padding-bottom: 24px;
    box-shadow: none;
  }
}



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

 Post / Header

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

.post-main-img {
  margin: 0 calc(var(--padding-post-side) * -1);
  padding: 28px 48px;
  background-image: linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.06) 25%, rgba(255, 255, 255, 0.06) 50%,  transparent 50%, transparent 75%, rgba(255, 255, 255, 0.06) 75%, rgba(255, 255, 255, 0.06) 100%);
  background-size: 10px 10px;
  background-repeat: repeat;
  background-color: var(--color-main);
  position: relative;
}

.post-main-img::after {
  width: fit-content;
  height: 20px;
  padding: 0 4px;
  color: #666;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 19px;
  background: #fff;
  border: 1px solid #ccc;
  content: "PR";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  opacity: .9;
}

.post-main-img img {
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}


.post-ttl {
  margin: 18px 0 0;
  line-height: 1.6;
  font-size: 2.1rem;
}

.post-meta {
  margin: 16px 0 0;
  padding: 4px 16px;
  background: var(--color-box-bg);
}

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

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

.post-meta dt {
  padding: 0 0 0 20px;
  position: relative;
}

.post-meta dt::before {
  width: 16px;
  height: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

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

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


@media all and (max-width: 768px) {
  .post-main-img {
    margin: 0 calc(var(--padding-post-side) * -1);
    padding: 8px;
  }

  .post-main-img::after {
    padding: 0 3px;
    height: 20px;
    line-height: 18px;
    font-size: 1.15rem;
    top: 3px;
    right: 3px;
  }

  .post-ttl {
    margin: 12px 0 0;
    font-size: 1.65rem;
  }

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

  .post-meta dl {
    gap: 12px;
  }

  .post-meta dt {
    font-size: 1.3rem;
  }

  .post-meta dd {
    font-size: 1.3rem;
  }

  .post-meta dt::before {
    width: 15px;
    height: 15px;
  }
}



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

 Post Body / Base

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

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

.post-body > h2 {
  line-height: 1.55;
  margin: 64px 0px 0;
  padding: 14px 16px;
  font-size: 2.3rem;
  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: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  outline: 1px solid var(--color-border);
  position: relative;
}

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

.post-body > h3{
  line-height:  1.5;
  margin: 52px 0 0;
  padding: 14px 0;
  font-size: 20px;
  border-bottom: 2px dotted #bbb;
}

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

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

.post-body .margin-wide {
  margin-top: 56px !important;
}

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

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

.post-body .img.ta-left img {
  margin: 0;
}

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

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

.post-body hr{
  margin: 32px 0;
  border-top: 1px solid var(--color-border);
}



@media all and (max-width: 768px) {
  .post-body > h2 {
    margin: 60px calc(var(--padding-post-side) * -1) 0;
    font-size: 1.9rem;
    padding: 12px 12px 12px 14px;
  }

  .post-body > h2:before{
    width: 3px;
    height: calc(100% - 20px);
    border-radius: 0 3px 3px 0;
    top: 10px;
  }

  .post-body > h3 {
    margin: 40px 0 0;
    font-size: 18px;
  }
  .post-body h2 + h3{
    margin: 28px 0 0;
  }

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

  .post-body .margin-wide {
    margin-top: 44px !important;
  }

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



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

 Post Body / Box

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

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

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

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

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

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

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



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

 Table

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

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

.post-body .table-default table{
  width: 100%;
  border: 1px solid #ddd;
  box-sizing: bordet-box;
}

.post-body .table-default th{
  padding: 12px 10px;
  font-size: 15px;
  font-weight: var(--fw-bold);
  text-align: center;
  background: #f4f7f9;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.post-body .table-default .width-short{
  width: 150px;
}

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

@media all and (max-width: 768px) {
  .post-body .table-default th{
    padding: 10px 4px;
    font-size: 12px;
  }

  .post-body .table-default .width-short{
    width: 80px;
  }

  .post-body .table-default td{
    padding: 10px 8px;
    font-size: 14px;
  }
}



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

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

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

.list-default li:before{
  width: 7px;
  height: 7px;
  content: "";
  display: block;
  background: var(--color-main);
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 0;
}

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

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

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

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

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

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


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



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

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

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

.talk__img {
  width: 76px;
  background: var(--color-main-l);
  border-radius: 100%;
  overflow: hidden;
}

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

.talk__text {
  min-height: 76px;
  padding: 16px 20px;
  background: #f4f7f9;
  border-radius: 10px;
  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:before {
  left: -15px;
}

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

.talk__text p {
  line-height: 1.8;
  font-size: 1.65rem;
}

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

@media all and (max-width: 768px) {
  .talk {
    margin: var(--box-margin) -4px 0;
    gap: 14px;
  }

  .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:before{
    left: -13px;
  }

  .talk__text:first-child:before{
    right: -13px;
  }

  .talk__text p{
    line-height: 1.7;
    font-size: 96%;
  }

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



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

 Season Trend

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

.box-season-trend{
  margin: var(--box-margin);
  background: #fdf6f0;
  position: relative;
}

.box-season-trend__caption{
  width: fit-content;
  line-height: 1.4;
  padding: 0 8px;
  font-size: 17px;
  color: #fff;
  font-weight: var(--fw-bold);
  background: var(--color-main);
  transform: translate(-6px, 3px) rotate(-4.5deg);
}

.box-season-trend__text{
  padding: 14px 16px;
}

.box-season-trend__text p{
  margin: 8px 0 0;
  font-size: 16px;
}

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



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

 Season Trend

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


.box-point {
  margin-top: var(--box-margin);
}

.box-point .box-point__heading {
  height: 40px;
  margin: 0;
  padding: 0 16px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  background: var(--color-main);
  border-radius: 6px 6px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.box-point ul li{
  padding: 8px 0 8px 42px;
  font-size: 1.7rem;
  line-height: 1.7;
  position: relative;
}

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

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

.box-point__notes {
  margin-top: 12px;
}

.box-point__notes p{
  color: #777;
  font-size: 1.2rem;
  text-align: right;
}


@media all and (max-width: 768px) {
  .box-season-trend{
    margin: 32px 0 0;
  }
  
  .box-season-trend__caption{
    font-size: 16px;
  }

  .box-season-trend__text{
    padding: 12px 14px 14px;
  }

  .box-season-trend__text p{
    line-height: 1.8;
    font-size: 15px;
  }
  .box-season-trend + .ranking-table-wide{
    margin-top: 32px;
  }

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

  .box-point .box-point__heading{
    height: 36px;
    padding: 0;
    font-size: 1.45rem;
  }

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

  .box-point ul li{
    line-height: 1.75;
    padding: 6px 10px 6px 36px;
    font-size: 1.35rem;
  }

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

  .box-point__notes {
    margin-top: 8px;
  }

  .box-point__notes p{
    font-size: 1rem;
  }
}


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

 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: var(--fw-bold);
  font-size: 16px;
  text-align: center;
}

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



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

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


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



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

 Button

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

.btn {
  width: 100%;
  margin-top: 40px;
  padding: 0 24px;
  position: relative;
}

.btn a {
  height: var(--btn-height);
  color: #fff;
  font-size: 20px;
  display: block;
  background: var(--btn-green);
  border-radius: calc(var(--btn-height) / 2);
  box-shadow: 0 4px 0 var(--btn-green-d);
  box-sizing: border-box;
  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: 20px;
  transform: translateY(-50%);
  z-index: 5;
}

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

.btn span{
  line-height: 1;
  text-align:  center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.btn--highlight a{
  background: var(--btn-orange);
  box-shadow: 0 4px 0 var(--btn-orange-d);
}


@media all and (max-width: 768px) {
  .btn{
    margin: 28px 0 0;
    padding: 0;
  }

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

  .btn span{
    font-size: 1.65rem;
  }
}


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

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

@keyframes poyon {
  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:before {
  width: 30px;
  height: 100%;
  background: #29c9e1;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  opacity: 0.8;
  animation: shiny 2.8s ease-in-out infinite;
}

.btn-animation--shiny:is(.btn--highlight *):before{
  background-color: #ff944c;
}

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

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


/*-------------------------------------
 Button / Around modules
-------------------------------------*/

.post-body .cta-microcopy--bottom{
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

.post-body .official-link {
  margin: 28px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.official-link:before {
  height: 24px;
  line-height: 24px;
  padding: 0 8px;
  content: "公式";
  font-size: 1.5rem;
  font-weight: 500;
  background: var(--color-page-bg);
  border-radius: 3px;
}

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


@media all and (max-width: 768px) {
  .post-body .cta-microcopy--bottom {
    margin: 18px 0 0;
    font-size: 1.55rem;
  }

  .post-body .official-link {
    margin: 16px 0 0;
  }

  .post-body .official-link:before {
    height: 22px;
    font-size: 1.35rem;
  }

  .official-link a{
    font-size: 1.5rem;
  }
}


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

 Link Icon

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

.icon-link{
  width: 18px;
  height: 24px;
  margin: 0 2px 0 6px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 18px 18px;
  display: inline-block;
  transform: translateY(7px);
}

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: 0 2pxr 0 4px;
    background-size: 16px 16px;
  }
}



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

 Post Footer

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

.post-body .post-footer-banner__catch {
  margin: 56px 0 20px;
  font-size: 108%;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}


.post-footer-banner__image {
  margin-top: 16px;
}

.post-footer-banner__image a {
  width: fit-content;
  margin: 0 auto;
  padding: 4px;
  background: var(--color-kangoroo);
  display: block;
  position: relative;
  transition: .2s;
  overflow: hidden;
}

.post-footer-banner__image a:after {
  width: 30px;
  height: 100%;
  background: #b8ea21;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  animation: shiny 2.8s ease-in-out infinite;
}

.post-footer-banner__image img {
  width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.post-footer-banner .post-footer-banner__official-link {
  margin: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

@media all and (max-width: 768px) {
  .post-body .post-footer-banner__catch {
    margin: 40px 0 14px;
    font-size: 1.7rem;
  }

  .post-footer-banner__image {
    margin-top: 12px;
  }

  .post-footer-banner__image img{
    width: 100%;
    max-width: 296px;
  }

  .post-footer-banner .post-footer-banner__official-link{
    font-size: 1.5rem;
    text-align: center;
  }
}



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

 Pickup

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

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

.pickup-box__heading {
  padding: 4px 0;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: var(--color-main);
}

.pickup-box__body {
  padding: 24px;
  border: 3px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  column-gap: 24px;
  row-gap: 12px;
  grid-template-areas:
    "img txt"
    "img btn";
}

.pickup-box__img { grid-area: img; }
.pickup-box__txt { grid-area: txt; }
.pickup-box__btn { grid-area: btn; }

.pickup-box__service-title a {
  font-size: 2rem;
  line-height: 1.6;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.pickup-box__txt p {
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.pickup-box__btn a {
  height: 64px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.5;
  background: var(--btn-orange);
  border: 1px solid var(--btn-orange-d);
  border-radius: 5px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pickup-box__btn a:hover {
  color: #fff;
}

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

.pickup-box__btn a span {
  position: relative;
  z-index: 5;
}



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

  .pickup-box__heading {
    padding: 3px 0;
    font-size: 1.55rem;
  }

  .pickup-box__body {
    padding: 18px 12px;
    border-width: 2px;
    grid-template-columns: 94px 1fr;
    column-gap: 14px;
    row-gap: 10px;
    grid-template-areas:
      "img txt"
      "btn btn";
  }

  .pickup-box__service-title a {
    font-size: 1.7rem;
  }

  .pickup-box__service-title a:after {
    width: 17px;
    height: 17px;
  }

  .pickup-box__txt p {
    margin: 2px 0 0;
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .pickup-box__btn a {
    height: 56px;
    font-size: 1.4rem;
  }

  .pickup-box__btn a:after {
    width: 15px;
    height: 15px;
    right: 10px;
  }
}



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

 Ranking Horizontal

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

.ranking-horizontal {
  margin: 64px calc(var(--padding-post-side) * -1) 0;
  padding: 48px 40px;
  background: var(--color-main);
  border-radius: 20px;
}

.ranking-horizontal-title {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ranking-horizontal-title__label {
  height: 24px;
  padding: 0 20px;
  color: var(--color-main-d);
  font-size: 1.6rem;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.ranking-horizontal__inner {
  margin-top: 28px;
}

.ranking-horizontal__more-btn {
  margin-top: 20px;
}

.ranking-horizontal__more-btn button {
  width: 80%;
  height: 36px;
  margin: 0 auto;
  color: #666;
  font-size: 1.5rem;
  font-weight: 500;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.ranking-horizontal__more-btn button:hover {
  opacity: 0.8;
}


/*------------------------------------------
 Ranking Horizontal / Table Base
------------------------------------------*/

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

.ranking-horizontal thead th {
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: var(--color-page-bg);
  border: 1px solid var(--color-border);
}

.ranking-horizontal tbody th {
  background: #fff;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border);
  position: relative;
}

.ranking-horizontal tbody td {
  height: 108px;
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: 600;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border);
  position: relative;
}

.ranking-horizontal .--hidden {
  display: none;
  opacity: 0;
}

.ranking-horizontal .--open {
  display: table-row;
  animation: rankingFadeIn .15s .05s ease-in;
  animation-fill-mode: forwards;
}

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


/*------------------------------------------
 Ranking Horizontal / Thead
------------------------------------------*/

.ranking-horizontal thead .col--item{
  width: 148px;
}

.ranking-horizontal thead .col--btn{
  width: 120px;
}

/*------------------------------------------
 Ranking Horizontal / Tbody
------------------------------------------*/

.ranking-horizontal tbody .seal img{
  width: 32px;
}

/*-- Badge ----------*/

.ranking-horizontal .badge--pickup {
  width: 100px;
  height: 18px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 18px;
  text-align: center;
  background: var(--color-accent);
  border-radius: 3px;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  animation: badgeFloat 1.3s ease-in-out infinite;
}

.ranking-horizontal .badge--pickup:after {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.ranking-horizontal .badge--pickup span{
  position: relative;
  z-index: 5;
}

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

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

.ranking-horizontal tbody .col--item {
  padding: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.ranking-horizontal tbody .col--item img{
  margin-bottom: -8px;
}

.ranking-horizontal tbody .col--item img + span{
  text-decoration: underline;
}

/*-- Rating ----------*/

.ranking-horizontal .col--rating > div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.ranking-horizontal .col--rating img{
  width: 18px;
  margin: 0;
}

.ranking-horizontal .col--rating span{
  font-size: 1.8rem;
}

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

.ranking-horizontal tbody .col--btn a{
  height: 48px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--btn-green);
  border: 1px solid var(--btn-green-d);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}

.ranking-horizontal tbody .col--btn a:after{
  width: 15px;
  height: 15px;
  background: url(../img/icon-link-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.ranking-horizontal tbody tr:first-child .col--btn a {
  background: var(--btn-orange);
  border-color: var(--btn-orange-d);
}


@media all and (max-width: 768px) {
  .ranking-horizontal {
    margin-top: 32px;
    padding: 28px 5px;
  }

  .ranking-horizontal-title {
    font-size: 2rem;
    gap: 6px;
  }

  .ranking-horizontal-title__label{
    height: 22px;
    padding: 0 16px;
    font-size: 1.4rem;
  }

  .ranking-horizontal__inner{
    margin-top: 16px;
  }

  .ranking-horizontal__more-btn {
    margin-top: 14px;
    padding: 0 8px;
  }

  .ranking-horizontal__more-btn button {
    width: 100%;
    height: 28px;
    font-size: 1.3rem;
  }

  .ranking-horizontal thead th {
    padding: 1px 0;
    font-size: 1.15rem;
  }

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

  .ranking-horizontal thead .col--item{
    width: 104px;
  }

  .ranking-horizontal thead .col--rating {
    width: 60px;
  }

  .ranking-horizontal thead .col--btn{
    width: 56px;
  }

  .ranking-horizontal .badge--pickup {
    width: 80px;
    height: 16px;
    font-size: 1.1rem;
    line-height: 16px;
    top: 0px;
  }

  .ranking-horizontal tbody .col--item {
    padding: 0 2px;
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .ranking-horizontal .col--rating img{
    width: 13px;
    transform: translateY(-1px);
  }
  
  .ranking-horizontal .col--rating span{
    font-size: 1.4rem;
  }

  .ranking-horizontal tbody .col--btn a {
    font-size: 1.15rem;
    gap: 3px;
  }

  .ranking-horizontal tbody .col--btn a:after{
    width: 12px;
    height: 12px;
  }
}


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

 Ranking table

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



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

.ranking__inner{
  width: 100%;
}

.ranking .service-columun{
  position: sticky;
  top: var(--height-header);
  z-index: var(--z-module);
}

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

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

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

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

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

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

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

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

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

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

.ranking .service-column__recommend-label{
  width: 104px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-align: center;
  letter-spacing: -0.08em;
  background: #ff7646;
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: floatingY 1s ease-in-out infinite alternate-reverse;
}

.ranking .service-column__recommend-label:after{
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-top-color: #ff7646;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) scale(1, 0.96);
}

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

.ranking .service-columun__catch{
  line-height: 1.4;
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-align: center;
}

.ranking .service-columun__image{
  width: fit-content;
  margin: 6px auto 0;
  padding: 3px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}

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

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

.ranking .service-columun__name a{
  line-height: 1.2;
  font-size: 15px;
  font-weight: var(--fw-bold);
  text-decoration: underline;
}

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

.ranking .review-columun li p{
  line-height: 1;
  font-size: 1.743m;
  font-weight: var(--fw-bold);
  text-align: center;
}

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

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

.ranking__find{
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  background: #f4f4f4;
}

.ranking__find span{
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  display: block;
}

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

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

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

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

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

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

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

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


.ranking .price-columun li{
  min-height: 56px;
  padding: 14px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}

.ranking .button-columun li a{
  width: 100%;
  height: 52px;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-bold);
  background: var(--color-btn-green);
  border: 1px solid var(--color-btn-green-d);
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 2px 3px rgba(0,0,0,0.18);
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.ranking .button-columun li .no1-button{
  background: var(--color-btn-orange);
  border: 1px solid var(--color-btn-orange-d);
}

.ranking .button-columun li a span{
  width: 100%;
  line-height: 1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-shadow: -1px -1px 0 rgba(0,0,0,0.02);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

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


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

  .ranking-title{
    margin: 48px -18px 0;
  }

  .ranking-title h2{
    padding: 12px 0;
    font-size: 22px;
    border-width: 3px;
  }

  .ranking-title h2 span{
    font-size: 19px;
  }

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

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

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

  .ranking{
    margin: 30px -16px 0;
  }

  .ranking__inner{
    width: 100%;

  }

  .ranking .service-columun{
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #eaeaea;
  }
  .ranking .service-columun ul li{
    padding: 0 8px 14px;
  }
  .ranking .service-columun ul li:before{
    width: calc(100% + 12px);
    height: 18px;
    line-height: 18px;
    margin: 0 -6px 10px;
    font-size: 13px;
  }

  .ranking .service-columun__image{
    margin: 6px -3px 0;
  }
  .ranking .service-columun__image img{
    width: 100%;
  }


  .ranking .review-columun li p{
    font-size: 15px;
  }

  .ranking .review-columun__star{
    width: 92px;
    margin: 3px auto 0;
    padding: 0 4px;
    box-sizing: border-box;
  }

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

  .ranking__find{
    height: 22px;
    line-height: 22px;
    padding: 0 8px;
    font-size: 12px;
  }

  .ranking__find span{
    font-size: 12px;
    left: 8px;
  }

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

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

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

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

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

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

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

  .ranking .button-columun li a span{
    font-size: 1.4rem;
  }

  .ranking .button-columun li a span:after{
    width: 15px;
    height: 15px;
    margin: 0 0 0 5px;
    background-size: 15px 15px;
  }

  .ranking .seal img{
    width: 28px;
  }
}

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



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

 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{
  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: var(--fw-bold);
  text-align: center;
  border-bottom: 3px solid var(--color-border);
}

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


@media all and (max-width: 768px) {
  .choice-point{
    margin: 36px -18px 28px;
    padding: 0 8px 16px;
    background: #f0f0f0;
  }
  .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 ul li{
    padding: 0 0 0 14px;
    font-size: 15px;
  }
  .choice-point ul li:before{
    top: 9px;
  }
}



/*------------------------------------------
 
 Ranking Table Header

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

.ranking-table-title{
  margin: 64px 0 28px;
}

.post-body .ranking-table-title h2{
  margin: 0;
  padding: 0;
  font-family: var(--zen-maru);
  text-align: center;
  background: none;
}

.ranking-table-title h2:before{
  content: none;
}

.ranking-table-title span{
  width: fit-content;
  height: 30px;
  margin: 0 auto 8px;
  padding: 0 24px;
  color: #fff;
  font-size: 1.65rem;
  background: var(--color-main-green);
  border: 1px solid var(--color-border-black);
  border-radius: 16px;
  display: flex;
  align-items: center;
}


.ranking-table-tab-button{
  margin: 24px 0 32px;
  border: 1px solid var(--color-border-black);
  border-radius: 6px;
  overflow: hidden;
}

.ranking-table-tab-button ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table-tab-button li{
  height: 48px;
  font-size: 1.6rem;
  font-weight: 600;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ranking-table-tab-button li:not(:first-child){
  border-left: 1px solid var(--color-border-black);
}

.ranking-table-tab-button li.--active{
  color: #fff;
  background: var(--color-main-pink);
  cursor: default;
}

.ranking-table-tab-button li span{
}

.ranking-table-tab-content{
  margin: 0 -12px;
}


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

  .ranking-table-title span{
    height: 28px;
    font-size: 1.4rem;
  }

  .ranking-table-tab-button{
    margin: 20px 0;
  }

  .ranking-table-tab-button li{
    height: 40px;
    font-size: 1.45rem;
  }
}



/*------------------------------------------
 
 Ranking Table Horizontal

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

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

.ranking-table-horizontal{
  margin-top: 32px;
}

.ranking-table-horizontal table{
  width: 100%;
  table-layout: fixed;
  border: 2px solid var(--color-border-black);
  border-collapse: separate;
  border-radius: 10px;
  overflow: hidden;
}

.ranking-table-horizontal thead th{
  height: 36px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: var(--color-box-bg);
  border-bottom: 1px solid var(--color-border-black);
}

.ranking-table-horizontal thead .cell--service{
  width: 160px;
}

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

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

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

.ranking-table-horizontal tbody tr:last-child td{
  border-bottom: none;
}


.ranking-table-horizontal tbody tr:nth-child(-n + 3) .cell--service:before{
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  background: #aaa;
  border-radius: 100%;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 3;
}

.ranking-table-horizontal tbody tr:nth-child(1) .cell--service:before{
  content: "1";
  background: #ffd161;
}

.ranking-table-horizontal tbody tr:nth-child(2) .cell--service:before{
  content: "2";
  background: #c3c8d2;
}

.ranking-table-horizontal tbody tr:nth-child(3) .cell--service:before{
  content: "3";
  background: #715b58;
}

.ranking-table-horizontal tbody .seal{
  width: 30px;
  margin: 0 auto;
}

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


/*------------------------------------------
 Cell
------------------------------------------*/

.ranking-table-horizontal tbody .cell--service{
  position: relative;
}

.ranking-table-horizontal tbody .cell--service img{
  width: 90%;
  position: relative;
  z-index: 1;
}

.ranking-table-horizontal tbody .cell--service p{
  margin: 4px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
}

.ranking-table-horizontal tbody .cell--point img{
  width: 20px;
  margin: 6px 1px 0 0;
  display: inline-block;
}

.ranking-table-horizontal tbody .cell--point{
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.ranking-table-horizontal tbody .cell--official-link a{
  width: 100%;
  height: 56px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  background: var(--color-btn-green);
  border: 1px solid var(--color-border-black);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table-horizontal tbody .cell--official-link .btn-orange{
  background: var(--color-btn-orange);
}


@media all and (max-width: 768px) {
  .ranking-table-horizontal thead th{
    height: 28px;
    font-size: 1.25rem;
  }

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

  .ranking-table-horizontal tbody tr:nth-child(-n + 3) .cell--service:before{
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
  }

  .ranking-table-horizontal thead .cell--service{
    width: 92px;
  }

  .ranking-table-horizontal thead .cell--point{
    width: 52px;
  }

  .ranking-table-horizontal tbody .cell--service p{
    margin: 3px 0 0;
    font-size: 1.15rem;
  }

  .ranking-table-horizontal tbody .cell--service img{
    width: 100%;
  }

  .ranking-table-horizontal tbody .cell--point img{
    width: 18px;
    margin: 0 auto;
    display: block;
  }

  .ranking-table-horizontal tbody .cell--point{
    font-size: 1.5rem;
  }

  .ranking-table-horizontal tbody .seal{
    width: 24px;
  }

  .ranking-table-horizontal tbody .cell--official-link a{
    height: 48px;
    max-width: 120px;
    margin: 0 auto;
    font-size: 1.2rem;
  }
}



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

 Item Section

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

.items {
  margin: 64px calc(var(--padding-post-side) * -1) 0;
  padding: 24px;
  background: var(--color-main-l);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.item-section {
  padding: 12px var(--padding-item-section-side) 48px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  align-self: stretch;
}

.item-section:first-child {
  outline: 2px solid #ffd956;
}

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

  .item-section{
    padding: 8px var(--padding-item-section-side) 28px;
    border-radius: 10px;
  }
}


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

 Item Section / Header

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

.item-section-header {
  margin: 0 calc(var(--padding-item-section-side) * -1);
  padding: 14px var(--padding-item-section-side) 14px;
  background: #fff;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

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

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

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

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

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

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

.item-section-header > div{
  line-height: 1.6;
  flex: 1;
}

.item-section-header__title {
  font-size: 2.4rem;
}

.item-section-header__title a:after{
  width: 22px;
  height: 22px;
  margin: 7px 0 0 6px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: top;
}

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

.item-section-header .item-section-header__sub-catch{
  margin: 0;
  font-size: 1.55rem;
  font-weight: 600;
}


@media all and (max-width: 768px) {
  .item-section-header {
    padding: 10px var(--padding-item-section-side) 13px;
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .item-section-header__title {
    font-size: 2.1rem;
  }

  .item-section-header__title a:after{
    width: 20px;
    height: 20px;
  }

  .item-section-header .item-section-header__sub-catch {
    font-size: 1.35rem;
  }
}



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

 Item Section / Info table

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

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

.item-info dl{
  background: var(--color-main);
  border: 3px solid var(--color-main);
  border-top: none;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3px;
  overflow: hidden;
}

.item-info__block--wide {
  grid-column: 1 / -1;
}

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

.item-info dd {
  height: 72px;
  padding: 12px;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.item-info dd span{
  position: relative;
  z-index: 10;
}

.item-info dd:is(.item-info__block--wide *){
  height: auto;
}

.item-info .--col-rating {
  line-height: 1;
}

.item-info .--col-rating picture {
  margin: 0;
}

.item-info .--col-rating img {
  width: 96px;
  margin: 6px 0 2px;
}

.item-info dd:before {
  width: 44px;
  height: 44px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

.item-info .--col-nijumaru:before {
  background-image: url(../img/icon-nijumaru.svg);
  content: "";
  display: block;
}

.item-info .--col-maru:before {
  background-image: url(../img/icon-maru.svg);
  content: "";
  display: block;
}

.item-info .--col-sankaku:before {
  background-image: url(../img/icon-sankaku.svg);
  content: "";
  display: block;
}

.item-info__list {
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 6px;
}

.item-info__list li {
  height: 24px;
  padding: 0 12px;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  display: flex;
  align-items: center;
}

.item-info__list .--disabled {
  color: #999;
  background: #eee;
  border: none;
}


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

  .item-info dl {
    border-width: 2px;
    column-gap: 2px;
  }

  .item-info dt{
    height: 24px;
    font-size: 1.3rem;
  }

  .item-info dd{
    height: 64px;
    padding: 10px 2px;
    font-size: 1.4rem;
  }

  .item-info dd:before {
    width: 36px;
    height: 36px;
  }

  .item-info .--col-rating {
    flex-direction: row;
    gap: 3px;
  }

  .item-info .--col-rating img {
    width: 15px;
    margin: 3px 0 4px;
    order: 1;
  }

  .item-info .--col-rating span {
    font-size: 108%;
    order: 2;
  }

  .item-info__list {
    padding: 2px 8px;
    column-gap: 3px;
    row-gap: 4px;
  }

  .item-info__list li {
    height: 22px;
    padding: 0 10px;
    font-size: 1.3rem;
  }
}


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

 Item Section / Modules

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

.item-features-list {
  margin: 20px 0 0;
}

.item-features-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.item-features-list li {
  height: 24px;
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: 500;
  background: var(--color-page-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
}

.item-features-list .--highlight {
  background: #fff8da;
  gap: 4px;
}

.item-features-list .--highlight:before {
  width: 16px;
  height: 16px;
  background: url(../img/icon-crown.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}


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

.item-eyecatch img {
  width: 320px;
}

.item-section__text {
  margin-top: 36px;
  font-size: 1.6rem;
}

.item-section__text p:not(:first-child) {
  margin-top: calc(var(--text-margin) - 8px);
}

.item-section__text .img,
.item-section__text .box
{
  margin-top: calc(var(--box-margin) - 8px);
}

.item-section__text .list-check li::before {
  top: 4px;
}


@media all and (max-width: 768px) {
  .item-features-list {
    margin: 16px 0 0;
  }

  .item-features-list ul{
    gap: 4px;
  }

  .item-features-list li {
    height: 23px;
    padding: 0 8px;
    font-size: 1.3rem;
  }

  .item-eyecatch {
    margin: 20px 0 0;
  }

  .item-eyecatch img {
    width: 288px;
  }

  .item-section__text {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}



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

 Job List

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

.job-list {
  margin: 56px calc(var(--padding-post-side) * -1) 0;
  padding: 40px 0;
  background: var(--color-page-bg);
}

.job-list__title {
  width: calc(100% - 80px);
  margin-left: 40px;
  padding: 12px 12px 12px 48px;
  color: #fff;
  font-size: 2rem;
  background: var(--color-main);
  border-radius: 5px;
  display: flex;
  align-items: center;
  position: relative;
}

.job-list__title:before {
  width: 26px;
  height: 26px;
  background: url(../img/icon-medal-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.job-list .job-list__guide{
  margin: 20px 0 0;
  padding: 0 40px 0 0;
  color: #555;
  font-size: 1.4rem;
  text-align: right;
}

.job-list__items {
  margin: 20px 0 0;
  overflow-x: scroll;
}

.job-list__items-inner{
  width: fit-content;
  padding: 0 0 16px 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}


.job-list-item {
  width: 312px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.job-list-item__body {
  padding: 12px 16px 0;
}

.job-list-item__thumb {
  width: 100%;
}

.job-list-item__thumb img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.job-list-item__body dl > div {
  display: flex;
}

.job-list-item__body dl > div:not(:first-child) {
  border-top: 1px dotted var(--color-border);
}

.job-list-item__body dt {
  width: 100px;
  padding: 2px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.job-list-item__body dd {
  padding: 2px 0;
  font-size: 1.5rem;
  flex: 1;
}

.job-list-item__features {
  padding: 3px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.job-list-item__features li{
  height: 20px;
  padding: 0 6px;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: var(--color-main-l);
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.job-list-item__btn {
  margin: 8px 0 0;
  padding: 0 16px;
}

.job-list-item__btn a {
  height: 60px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  background: var(--btn-green);
  border-bottom: 2px solid var(--btn-green-d);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.job-list-item__btn a:hover {
  color: #fff;
  opacity: 0.8;
}

.job-list-item__btn .--small-text{
  font-size: 82%;
}

.job-list-item__logo {
  padding: 0 0 4px;
}

.job-list-item__logo img{
  width: 100px;
}



@media all and (max-width: 768px) {
  .job-list {
    margin-top: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .job-list__title {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 10px 10px 10px 38px;
    font-size: 1.7rem;
  }

  .job-list__title:before {
    width: 24px;
    height: 24px;
    left: 8px;
  }

  .job-list .job-list__guide {
    margin: 16px 0 0;
    padding: 0 16px 0 0;
    font-size: 1.2rem;
  }

  .job-list__items{
    margin: 10px 0 0;
  }

  .job-list__items-inner {
    padding: 0 0 16px 16px;
    gap: 16px;
  }

  .job-list-item {
    width: 280px;
  }

  .job-list-item__body {
    padding: 12px 12px 0;
  }

  .job-list-item__body dt {
    width: 64px;
    font-size: 1.15rem;
  }

  .job-list-item__body dd {
    font-size: 1.3rem;
  }

  .job-list-item__features {
    padding: 4px 0;
  }

  .job-list-item__features li{
    font-size: 1.2rem;
  }

  .job-list-item__btn a{
    font-size: 1.4rem;
  }

  .job-list-item__logo img {
    width: 88px;
  }
}



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

 Comment

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

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

.comment__title {
  padding: 16px;
  color: #fff;
  font-size: var(--item-section-block-title-fs);
  line-height: 1.7;
  background: var(--color-main);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.comment__title span{
  flex: 1;
}

.comment__title:before {
  width: 30px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-comment-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.comment__items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-item {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

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

.comment-item__avatar img{
  width: 100%;
  border: 3px solid #f0f0f0;
  border-radius: 100%;
}

.comment-item__header .comment-item__heading {
  font-size: 1.7rem;
  line-height: 1.6;
}

.comment-item__header .comment-item__info {
  margin: 6px 0 0 -8px;
  color: #777;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.comment-item__body {
  padding: 20px;
}

.comment-item__body p {
  margin-top: 14px;
  font-size: 1.6rem;
}


@media all and (max-width: 768px) {
  .comment {
    margin-top: 28px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .comment__title {
    padding: 10px 12px;
    gap: 8px;
  }

  .comment__title:before {
    width: 28px;
  }

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

  .comment-item__header {
    padding: 14px 10px;
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .comment-item__avatar img {
    border-width: 2px;
  }

  .comment-item__header .comment-item__heading {
    font-size: 1.45rem;
  }

  .comment-item__header .comment-item__info {
    margin-top: 4px;
    font-size: 1.2rem;
  }

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

  .comment-item__body p {
    margin-top: 10px;
    font-size: 1.35rem;
  }
}



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

Area Link

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

.area-link {
  margin: 64px 0 0;
}

.area-link__title {
  padding: 12px 0;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: var(--color-main);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}

.area-link__title::before {
  width: 36px;
  height: 36px;
  background: url(../img/icon-area-search.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.area-link__title br {
  display: none;
}

.area-link .area-link__guide{
  color: #555;
  font-size: 1.4rem;
  text-align: right;
}

.area-link__region-block{
  margin-top: 32px;
}

.area-link__region-block:is(.area-link__guide + *){
  margin-top: 12px;
}

.area-link__region-heading{
  padding: 0;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-main);
  border-radius: 4px 4px 0 0;
}

.area-link .area-link__pref-list{
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.area-link__pref-list a{
  height: 44px;
  font-size: 1.55rem;
  text-decoration: underline;
  border: 1px solid var(--color-border);
  border-bottom-width: 2px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

  .area-link:last-child {
    margin-bottom: -24px;
  }

  .area-link__inner {
    padding: 0 14px 24px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  }

  .area-link__title {
    margin: 0 -14px;
    padding: 10px 0;
    font-size: 1.7;
    line-height: 1.6;
    border-radius: 5px 5px 0 0;
  }

  .area-link__title::before {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
  }

  .area-link__title br{
    display: block;
  }

  .area-link .area-link__guide {
    margin: 20px 0 -4px;
    font-size: 1.2rem;
  }

  .area-link__region-block {
    margin-top: 24px;
  }

  .area-link__region-heading {
    font-size: 1.5rem;
  }

  .area-link .area-link__pref-list {
    margin: 12px 0 0;
    gap: 5px;
  }

  .area-link__pref-list a {
    height: auto;
    padding: 6px 10px;
    font-size: 1.3rem;
  }
}



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

Tips

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

.tips {
  margin: 64px 0 0;
}

.tips__title {
  padding: 14px 12px 14px 20px;
  font-size: 2.1rem;
  line-height: 1.7;
  border: 1px solid var(--color-main);
  border-left-width: 5px;
  border-radius: 6px;
  position: relative;
}

.tips__title span {
  width: 90px;
  height: 90px;
  background-image: url(../img/illust-advisor.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  right: 12px;
  overflow: hidden;
}

.tips__section {
  margin-top: 24px;
  padding: 24px 28px;
  border: 2px solid #f0f0f0;
}

.tips__section-heading {
  width: fit-content;
  background-image: linear-gradient(to bottom, transparent 87%, var(--color-main) 87%, var(--color-main) 100%);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.7;
}


.tips__section-body {
  margin-top: 20px;
  font-size: 1.6rem;
}

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

.tips__section-body p,
.tips__section-body ul {
  margin-top: 20px;
}


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

  .tips__title {
    padding: 12px 0 12px 14px;
    font-size: 1.8rem;
    line-height: 1.6;
  }

  .tips__title span {
    width: 86px;
    height: 86px;
    right: 6px;
  }

  .tips__section {
    margin: 16px 0 0;
    padding: 16px 16px;
  }

  .tips__section-heading {
    font-size: 1.75rem;
  }

  .tips__section-body {
    margin-top: 20px;
    font-size: 1.4rem;
  }

  .tips__section-body p,
  .tips__section-body ul {
    margin-top: 12px;
  }
}



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

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: var(--fw-bold);
}
.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: #0078de;
}
.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;
  }
}



/*------------------------------------------
 
PR 

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

.ranking-pickup tbody tr:first-child .item-img:before{
  border-top-color: var(--color-main);
  border-left-color: var(--color-main);
}

.ranking-pickup tbody tr:first-child .item-img:after{
  width: fit-content;
  padding: 0 8px;
  content: "おすすめ！";
  background: var(--color-main);
}

.ranking-table-wide .ranking-pickup tbody tr:first-child .item-img:before{
  content: none;
}

.ranking-pickup + table{
  border-top: none;
}

.ranking-pickup + table thead th{
  border: none;
}

.ranking-pickup + table thead tr:first-child{
  border-left: 1px solid #fff;
}
.ranking-pickup + table thead tr:last-child{
  border-right: 1px solid #fff;
}

.ranking-pickup + table thead .cell-img:before{
  content: none;
}
.ranking-pickup + table thead .cell-img:after{
  content: none;
}

.ranking-pickup + table tbody .item-img:before{
  content: none;
}
.ranking-pickup + table tbody .item-img:after{
  content: none;
}

.ranking-pickup + table thead th{
  height: 4px;
  padding: 0;
  font-size: 1px;
  visibility: hidden;
}


.banner-columun2{
  margin:  var(--box-margin);
}

.banner-columun2__find{
  line-height: 1.6;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  text-align: center;
  border: 1px solid #fff;
  outline: 3px solid #f3f3f3;
  background: #f3f3f3;
}

.banner-columun2__find br{
  display: none;
}

.banner-columun2 ul{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-columun2 li{
  flex: 1;
  box-sizing: border-box;
}

.banner-columun2 li:not(:first-child){
  margin-left: 24px;
}

.banner-columun2 img{
  width: 100%;
  box-sizing: border-box;
}



@media all and (max-width: 768px) {
  .banner-columun2__find{
    padding: 2px 8px;
    font-size: 16px;
  }
  .banner-columun2__find br{
    display: block;
  }
  .banner-columun2 ul{
    display: block;
  }
  .banner-columun2 li{
    text-align: center;  
  }
  .banner-columun2 img{
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
  }
  .banner-columun2 li:not(:first-child){
    margin: 16px 0 0 0;
  }
}



/*------------------------------------------
 
Service Recommend

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

.recommend-section{
  margin: 0 calc(var(--padding-post-side) * -1) 0;
  padding: 24px 0 0;
  background: var(--color-main-green-l);
}

.recommend-section__inner{
  padding: 40px var(--padding-post-side) 56px;
  background: #fff6e7;
  border-radius: 32px 32px 0 0;
}

.recommend-section .recommend-section__title{
  margin: 0 0 16px;
  padding: 0;
  font-family: var(--zen-maru);
  font-size: 2.2rem;
  line-height: 1.6;
  text-align: center;
  background: none;
}

.recommend-section .recommend-section__title span{
  width: fit-content;
  height: 32px;
  padding: 0 28px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 1.6rem;
  background: var(--color-main-green);
  border: 1px solid var(--color-border-black);
  border-radius: 18px;
  display: flex;
  align-items: center;
}

.recommend-section__image img{
  max-width: 300px;
}

.recommend-section .recommend-section__title:before{
  content: none;
}

.recommend-section__body{
  margin: 24px 0 0;
  padding: 24px 28px;
  background: #fff;
  border-radius: 10px;
}


@media all and (max-width: 768px) {
  .recommend-section{
    padding-top: 12px;
  }

  .recommend-section__inner{
    padding: 32px var(--padding-post-side);
    border-radius: 20px 20px 0 0;
  }

  .recommend-section .recommend-section__title{
    margin: 0 0 12px;
    font-size: 1.9rem;
  }

  .recommend-section .recommend-section__title span{
    height: 28px;
    margin: 0 auto 12px;
    padding: 0 16px;
    font-size: 1.35rem;
  }

  .recommend-section__image img{
    max-width: 80%;
  }

  .recommend-section__body{
    padding: 16px 14px;
  }
}



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

404

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

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

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

.page-404__heading h2 {
  line-height: 1.6;
  color: var(--color-main);
  font-size: 3.2rem;
  text-align: center;
}

.page-404__heading p {
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  text-align: center;
}

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

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

.page-404__body p{
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.page-404__link {
  margin-top: 8px;
  text-align: center;
}

.page-404__link a{
  color: var(--fc-link);
  font-size: 2rem;
  font-weight: var(--fw-bold);
}

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


@media all and (max-width: 768px) {
  .page-404__box {
    padding: 28px 20px 32px;
  }

  .page-404__heading h2 {
    font-size: 2.6rem;
  }

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

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

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

  .page-404__link a {
    font-size: 1.75rem;
  }
}



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

Footer

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

.g-footer {
  width: 100%;
  margin: 48px 0 0;
  padding: 20px 0 26px;
  background: var(--color-page-bg-d);
}

.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: 1.1rem;
  text-align: center;
}

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


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