@charset "UTF-8";

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

  --width-main: 748px;

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

  --fs-default: 1.8rem;
  --lh-default: 2;

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


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

  /* テーマカラー */
  --main-color: #2f77bf;
  --main-color-l: #eaedfc;
  --main-color-d: #0a5cbc;

  --main-color2: #38ADEE;

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

  --fc-gray: #666;

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

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

  --bg-color: #f0f4f6;

  --color-page-bg: #ecf1f4;
  --color-box-bg: #f5f8f9;

  --border-color: #dfdfdf;

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

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


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

  --text-margin: 24px;
  --box-margin: 28px;
  --box-padding: 18px 20px;
  --box-padding-i: 20px 24px 20px 60px;
  --box-lh: 1.9;

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

}


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

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

    --fs-default: 1.7rem;
    --lh-default: 1.85;

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

    --text-margin: 24px;
    --box-margin: 30px;
    --box-padding: 18px 16px;
    --box-padding-i: 16px 18px 16px 50px;

    --box-fs: 0.9rem;

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


html { font-size: 10px; }

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

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: inherit;
  vertical-align: baseline;
  color: inherit;
  font-size: inherit;
  font-family: "Inter", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: inherit;
  text-align: inherit;
  letter-spacing: 0.01em;
  box-sizing: border-box;
}

b{
  font-weight: 600 !important;
}

h2,h3,h4,
h2 > *, h3 > *, h4 > *{
  font-weight: 600;
}

a {
  cursor: pointer;
}

b > *{
  font-weight: 600;
}

br {
  line-height: inherit;
}

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%;
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

  .g-nav{
    margin: 0;
  }

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

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

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

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

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



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

Page Layout

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

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

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

@media all and (max-width: 768px) {
  .contents {
    margin: 20px 0 0;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .main {
    width: 100%;
    float: none;
  }
}



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

 Article

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

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

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

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

.post-header__title{
  margin: 18px 0 0;
  line-height: 1.6;
  font-size: 21px;
  font-weight: 600;
}

.post-header__meta{
  margin: 16px 0 0;
  padding: 2px 16px;
  background: var(--color-box-bg);
  display: flex;
  align-items: center;
}

.post-header__meta div{
  color: var(--fc-gray);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

 Text

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

.post-body h2 {
  line-height: 1.5;
  margin: 64px 0px 0;
  padding: 16px;
  font-size: 22px;
  font-weight: 700;
  background: var(--color-box-bg);
  background-size: 4px 4px;
  border-radius: 5px;
  position: relative;
}

.post-body > h2:first-letter{
  color: var(--main-color);
  font-size: 105%;
}

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

.post-body h3{
  line-height: 1.6;
  margin: 52px 0 0;
  padding: 12px 14px;
  color: #fff;
  font-size: 21px;
  background: var(--main-color);
}

.post-body h4{
  margin: 38px 0 0;
  padding: 0 0 0 28px;
  font-size: 19px;
  position: relative;
}

.post-body h4:before{
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: var(--main-color);
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
}

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

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

.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-wide {
  margin-top: 48px !important;
}

.post-body .margin-l{
  margin-top: 56px;
}

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

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

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

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

.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 .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 .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 hr{
  margin: 36px 0;
  border-top: 1px solid #e5e8ec;
}


@media all and (max-width: 768px) {
  .post-body h2 {
    margin: 56px -10px 0;
    font-size: 2rem;
    padding: 12px 12px 12px 30px;
  }

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

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

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

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

  .post-body .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 + p{
    margin-top: 32px;
  }

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

  .post-body .margin-l{
    margin-top: 40px;
  }

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


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



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

 Box

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

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

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



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

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


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

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

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

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

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

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


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

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

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

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

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

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

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

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

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


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

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

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

}



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

 Policy box

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

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

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

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

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

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

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

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

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

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

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

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

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


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

 Intro box

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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



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

 Recommended for

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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



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

 List

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

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

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

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

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

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

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

.post-body .list-defaul li,
.post-body .list-check-small li{
  margin-top: 6px;
}

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

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

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

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

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

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

.choice-num-list{
  padding: 4px;
  counter-reset: choiceNum;
}

.choice-num-list li{
  padding: 0 0 0 34px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

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

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


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

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

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

  .choice-num-list{
    padding: 0;
  }

  .choice-num-list li{
    padding: 0 0 0 32px;
    font-size: 17px;
  }

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

  .choice-num-list li:before{
    width: 25px;
    height: 25px;
    font-size: 13px;
    top: 2px;
  }
}



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

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

.box-point .box-point__find{
  height: 42px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--main-color);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  box-sizing: border-box;
}

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

.box-point ul li{
  margin: 5px 0 0;
  padding: 10px 20px 10px 54px;
  position: relative;
  background: #f0f7fe;
}

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

.box-point ul li:last-child{
  border-radius: 0 0 5px 5px;
}


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

.box-point--simple ul{
  padding: 14px 32px;
  border: 3px solid var(--color-border-bold);
  border-radius: var(--box-r);
}

.box-point--simple ul li{
  padding: 8px 0 8px 44px;
  border-bottom: 1px dashed var(--color-border-dashed);
  position: relative;
}

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

.box-point--simple ul li:last-child{
  border: none;
}

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

.cta-box{
  margin: 28px 0;
  padding: 20px 24px;
  background: #fffdf0;
  border: 2px dotted #fad890;
  border-radius: 6px;
}

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

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


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

  .box-point .box-point__find{
    height: 34px;
    font-size: 1.65rem;
    border-radius: 5px 5px 0 0;
  }

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

  .box-point ul li{
    line-height: 1.5;
    margin: 4px 0 0;
    padding: 9px 16px 9px 50px;
    font-size: 1.55rem;
  }

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


  .box-point--simple:where(.img + *){
    margin-top: 20px;
  }

  .box-point--simple ul{
    padding: 0;
    border: none;
  }

  .box-point--simple ul li{
    padding: 6px 0 6px 38px;
    font-size: 1.75rem;
  }

  .box-point--simple ul li:before{
    width: 28px;
  }


  .cta-box{
    margin: 24px 0;
    padding: 16px 14px;
  }

  .cta-box li{
    margin-top: 1px;
    padding: 0 0 0 27px;
    font-size: 1.7rem;
  }

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

/*------------------------------------------
 
 Campaign Box

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

.box-campaign{
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

.box-campaign__find{
  color: #fff;
  background: #ff8700;
}

.box-campaign__find:before{
  content: none;
}


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

 Table

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

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

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

.table-default th{
  width: 112px;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

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


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

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

}



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

 Check find

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

.post-body .check-find{
  margin: 72px 0 28px;
  color: var(--fc-default);
  background: #f5f5f5;
  border-top: 4px solid var(--main-color);
  position: relative; 
}

.post-body .check-find span{
  width: fit-content;
  height: 28px;
  padding: 3px 20px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  background: var(--main-color);
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -32px;
  left: 0;
}

.post-body .check-find span:before{
  color: #fff;
  font-weight: 600;
  content: "選び方ポイント.";
  display: block;
}


@media all and (max-width: 768px) {
  .post-body .check-find{
    margin: 64px -8px 0;
    padding: 10px 12px;
    font-size: 1.95rem;
    border-top-width: 3px;
  }
  .post-body .check-find span{
    height: 22px;
    padding: 2px 20px 0;
    font-size: 1.4rem;
    top: -25px;
  }
}


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

 Number find

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

.post-body .num-find{
  padding: 10px 0 10px 48px !important;
  color: var(--fc-default);
  background: #f6f6f6;
  border-radius: 3px;
  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(--main-color);
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}


@media all and (max-width: 768px) {
  .post-body .num-find{
    margin: 48px 0 0;
    padding: 12px 0 12px 32px !important;
    font-size: 20px;
  }
  
  .post-body .num-find span{
    width: 32px;
    height: 32px;
    line-height: 31px;
    font-size: 16px;
    left: -10px;
  }
}



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

 Link Btn

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

.btn-micro-copy{
  font-size: 16px !important;
  font-weight: 600;
  margin-bottom: 6px !important;
  text-align: center;
}

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

.btn-image{
  text-align: center;
}

.btn-image img{
  max-width: 100%;
  width: 520px;
}

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

.btn:hover{
  opacity:  0.85;
}

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

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

.btn a{
  height: 88px;
  line-height: 1;
  color: #fff;
  font-size: 20px;
  display: block;
  background: linear-gradient(#54c370, #269643);
  border: 1px solid #fff;
  outline: 2px solid var(--btn-green-d);
  border-radius: var(--btn-r);
  box-shadow: 0 3px 6px rgba(0,0,0, 0.4);
  box-sizing: border-box;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: column;
  position: relative;
}

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

.btn-orange{
  margin: 28px auto 0;
}

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

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

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

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

.btn span{
  line-height: 1;
  margin-bottom: 8px;
  text-align:  center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.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--inpage-link{
  margin-top: 32px;
}

.btn--inpage-link a{
  width: 560px;
  height: 76px;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(#54c370, #269643);
  border: 2px solid var(--btn-green-d);
  border-radius: var(--btn-r);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: var(--animation-duration);
}

.btn--inpage-link a:after{
  width: 20px;
  aspect-ratio: 1 / 1;
  background: url(../img/arrow-circle-down.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 16px;
  animation: pyokopyokoDown 2.4s ease infinite;
}

.btn--inpage-link a:hover{
  opacity: var(--opacity-hover);
}


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


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


@keyframes btnArrowAnimation {
  0%, 20%, 40%{
    top: 50%;
  }
  10%, 30% {
    top: calc(50% + 3px);
  }
}


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

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

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

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

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

  .btn span{
    margin: -1px 0 10px;
    font-size: 1.9rem;
  }

  .btn a{
    height: 86px;
    font-size: 1.8rem;
    border-radius: 6px;
  }

  .btn a:after{
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
    right: 10px;
  }

  .btn--inpage-link{
    margin-top: 24px;
  }

  .btn--inpage-link a{
    width: 100%;
    height: 60px;
    font-size: 1.7rem;
  }

  .btn--inpage-link a:after{
    width: 16px;
    right: 10px;
  }
}



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

 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: 18px;
    height: 25px;
    margin: 1px 0 0 5px;
  }
}



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

 Ranking table

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

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

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

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

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


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

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

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

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

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


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

.ranking__inner{
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

  .ranking__inner{
    width: 100%;
  }

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

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

  .ranking .service-columun{
    top: var(--header-height);
  }

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

 Tool Tip

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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



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

 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(--main-color);
  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(--main-color);
  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(--main-color);
  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 0;
    padding: 0 0 8px 36px;
  }

  .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 Horizontal

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


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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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


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

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

  .author-info__text{
    padding: 0;
  }

  .author-info__name{
    display: block;
  }

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

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

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

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


/*------------------------------------------
 Infomation table
------------------------------------------*/

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

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

.item-info-table table + table{
  border-top: none;
}

.item-info-table thead th{
  padding: 8px 16px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background: var(--color-box-bg);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  vertical-align: middle;
}

.item-info-table th span{
  color: #5a5a5a;
  font-weight: 600;
  text-align: center;
  display: block;
  transform: scaleX(0.96);
}

.item-info-table td{
  height: 76px;
  padding: 0 16px;
  font-size: 1.75rem;
  line-height: 1.3;
  border: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
}

.item-info-table__star{
  line-height: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.item-info-table__star img{
  width: 108px;
  max-width: 100%;
  margin: 4px 0;
}

.item-info-table .low-price{
  display: flex;
  align-items: center;
}

.item-info-table .low-price:after{
  width: fit-content;
  height: 20px;
  line-height: 20px;
  margin: 0 0 0 6px;
  padding: 0 7px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  background: #FE4A40;
  border-radius: 3px;
  content: "最安";
  display: block;
}

.item-info-table + .ta-right{
  margin-top: 20px;
}



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

  .item-info-table thead th{
    height: 28px;
    padding: 0;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.1;
  }

  .item-info-table td{
    height: 68px;
    padding: 0 10px;
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .item-info-table .low-price:after{
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
}


/*------------------------------------------
 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(--main-color);
  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

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

.item-section{
  margin: 56px -64px 0;
  padding: 24px;
  position: relative;
  border-style: solid;
}

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

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

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


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

.item-section--main{
  background: #ddf0fe;
}

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

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

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

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

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

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

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

@media all and (max-width: 768px) {
  .item-section{
    margin: 20px calc(var(--padding-post-side) * -1) 0;
    padding: 20px 4px;
  }

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

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

  .item-section__inner{
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .item-section__site-image{
    margin: 20px 0 0;
  }
  
  .item-section .item-section__site-image img{
    width: 220px;
  }

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

  .button-item-section-more span{
    height: 44px;
    font-size: 14px;
  }

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


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

 Item Box

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

.item-box{
  margin: 48px -32px 0;
  padding: 28px 32px 32px;
  border: 3px solid #d0d0d0;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06);
}

.item-box + .item-box{
  margin-top: 28px;
}

.item-box.rank1{
  border-color: var(--main-color);
}

.item-box.rank2{
  /*border-color: #c0c5cb;*/
}

.item-box.rank3{
  /*border-color: #95563f;*/
}

.item-box .item-section__site-image{
  margin: 16px 0 0;
  padding: 8px 0;
}

.item-box .item-section__site-image img{
  width: 300px;
}

.item-section__site-image + .box-point{
  margin: 28px 0 0;
}


@media all and (max-width: 768px) {
  .item-box{
    margin: 36px -13px 0;
    padding: 10px 14px 28px;
    border-radius: 12px;
  }

  .item-box + .item-box{
    margin-top: 28px;
  }

  .item-box .item-section__site-image{
    margin: 12px 0 0;
  }

  .item-box .item-section__site-image img{
    max-width: 62%;
  }

  .item-section__site-image + .box-point{
    margin: 20px 0 0;
  }
}


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

 Item Header

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

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

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

.item-section__header:before{
  width: 60px;
  aspect-ratio: 1 / 1;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  transform: translate(-4px, -6px);
}

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

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

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

.item-section__header h3{
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 25px;
  font-weight: 600;
  position: relative;
}

.item-section__header h3 a{
  text-decoration: underline;
}


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

.item-section__star span{
  margin: 1px 4px 0 0;
  font-family: Arial;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

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

.item-section__star img{
  width: 104px;
  display: block;
}


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

  .item-section__header:before{
    width: 50px;
    margin: 0 10px 0 -2px;
    transform: translate(0, -5px);
  }

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

  .item-section__star{
    margin-top: 1px;
  }

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

  .item-section__star span{
    margin: 1px 2px 0 0;
    font-size: 20px;
  }

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



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

Item Additional Parts

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

.item-label{
  margin: 24px 0 0;
}

.item-label ul{
  margin-bottom: -8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.item-label li{
  width: fit-content;
  height: 34px;
  margin-bottom: 8px;
  padding: 0 10px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-label li span{
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.item-label li:not(:last-child){
  margin-right: 8px;
}


.item-image-footer-link{
  margin: 12px 0 -14px;
  display: flex;
  justify-content: end;
}

.item-image-footer-link a{
  width: fit-content;
  height: 28px;
  padding: 0 24px;
  color: #555;
  font-size: 16px;
  letter-spacing: 0;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  transition: var(--animation-duration);
}

.item-image-footer-link a:hover{
  color: currentColor;
  opacity: var(--opacity-hover);
}

.item-image-footer-link a:after{
  width: 15px;
  height: 15px;
  margin: -2px 0 0 5px;
  background: url(../img/icon-blank-gray.svg) no-repeat;
  background-size: 15px 15px;
  content: "";
  display: block;
}


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

  .item-label ul{
    margin-bottom: -5px;
  }

  .item-label li{
    margin-bottom: 5px;
    padding: 0 2px;
    border-radius: 3px;
  }

  .item-label li:not(:last-child){
    margin-right: 4px;
  }

  .item-label li span{
    font-size: 13px;
    letter-spacing: 0;
    transform: scaleX(0.94);
  }

  .item-image-footer-link{
    margin: 10px 0 -6px;
  }

  .item-image-footer-link a{
    height: 26px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 13px;
  }

  .item-image-footer-link a:after{
    width: 13px;
    height: 13px;
    margin: -2px 0 0 4px;
    background-size: 13px 13px;
  }
}



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

 Item Score

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

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

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

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

.item-score__point-label{
  width: fit-content;
  height: 24px;
  line-height: 22px;
  margin: -3px auto 0 !important;
  padding: 0 10px;
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 3px;
}

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

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

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

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


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

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

  .item-score .item-score__point-label{
    height: 22px;
    padding: 0 6px;
    line-height: 20px;
    font-size: 1.2rem;
  }

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

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

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

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



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

 Certificate Section

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


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

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

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

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

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

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

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

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

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


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

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

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

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


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

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

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

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

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

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

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

}



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

 Tips

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

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

.tips__list{
  border: 2px solid var(--main-color);
  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(--main-color);
  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(--main-color);
  border-radius: 24px;
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.tips__inner{
  padding: 20px 28px;
}

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

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


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

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

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

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

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

  .tips__inner{
    padding: 16px 14px;
  }

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

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

}







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

 Comment

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

.comment{
  margin: 48px calc(var(--padding-item-section-side) * -1) 0;
  padding: 0 24px 32px;
  background: var(--color-page-bg);
}

.comment .comment__find{
  margin: 0 -24px 32px;
  padding: 20px;
  color: #fff;
  font-size: 19px;
  line-height: 1.5;
  text-align: center;
  background: var(--main-color);
  position: relative;
}

.comment .comment__find br{
  display: none;
}

.comment .comment__find:before{
  content: none;
}

.comment .comment__find:after{
  width: 48px;
  height: 48px;
  border: 24px solid transparent;
  border-top-color: var(--main-color);
  box-sizing: border-box;
  content: none;
  display: block;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%) scaleY(0.6);
}

.comment__list{
  padding: 28px 36px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.03);
}

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

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

.comment__header{
  display: flex;
  align-items: center;
}

.comment__header p{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.comment__star{
  margin: 1px 0 0;
  display: flex;
  align-items: center;
}

.comment__star span{
  margin: 2px 6px 0 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03rem;
}

.comment__star > div{
  display: flex;
  align-items: center;
}

.comment__star img{
  width: 98px;
}

.comment__body{
  margin: 10px 0 0;
}

.comment__body p{
  font-size: 17px;
  line-height: 1.75;
}

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

.comment__body p b{
   font-size: 110%;
}

.comment .comment__notes{
  margin: 20px 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.comment__more-button{
  height: 48px;
  margin: 24px 0 0;
  color: #777;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.02);
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-open{
  opacity: 0;
  animation-name: commentFadeIn;
  animation-duration: .3s;
  animation-delay: .05s;
  animation-fill-mode: forwards;
}

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


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

  .comment .comment__find{
    margin: 0 -12px 24px;
    padding: 13px 0;
    font-size: 19px;
    line-height: 1.45;
    border-radius: 0;
  }

  .comment .comment__find br{
    display: block;
  }

  .comment .comment__find:after{
    bottom: -34px;
    transform: translateX(-50%) scale(0.96, 0.6);
  }

  .comment__list{
    padding: 20px 18px 22px;
  }

  .comment__list:not(:first-child){
    margin-top: 18px;
  }

  .comment__header p{
    font-size: 17px;
  }

  .comment__star{
    margin: 0;
  }

  .comment__star span{
    margin: 1px 5px 0 0;
  }

  .comment__star img{
    width: 88px;
  }

  .comment__body{
    margin: 10px 0 0;
  }

  .comment__body p{
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .comment .comment__notes{
    margin: 16px 0 0;
    font-size: 10px;
  }

  .comment__more-button{
    height: 40px;
    margin: 20px 0 0;
    font-size: 15px;
  }
}


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

 Review

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

.review-list{
  margin: 40px -32px 0;
  padding: 32px 28px 20px;
  background: #f8f8f8;
}

.review-list .swiper{
  padding: 0 4px 4px;
}

.review-list .swiper-slide{
  height:  initial;
}

.review-list .swiper-pagination{
  margin: 2px auto 0;
  position: static;
}

.review-list .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  background: #777;
}

.review-list .swiper-pagination-bullet-active{
  background: var(--main-color);
}

.review-list__list{
  padding: 20px 28px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.review-list__header{
  display: flex;
  align-items: center;
}

.review-list__icon{
  width: 64px;
  aspect-ratio: 1 / 1;
  margin-right: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-list__icon img{
  width: 92%;
  aspect-ratio: 1 / 1;
}

.review-list__caption{
  flex: 1;
}

.review-list__caption p{
  line-height: 1.6;
  font-size: 17px;
  font-weight: 600;
}

.review-list__star{
  margin: 6px 0 0;
  display: flex;
  align-items: center;
}

.review-list__star span{
  margin: 0 6px 0 0;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.review-list__star img{
  width: 92px;
  display: block;
}

.review-list__content{
  margin: 16px 0 0;
}

.review-list__content p{
  font-size: 15.5px;
  line-height: 1.5;
}


@media all and (max-width: 768px) {
  .review-list{
    margin: 26px -14px 0;
    padding: 22px 8px 12px;
  }

  .review-list .swiper-pagination{
    margin: -4px auto 0;
  }

  .review-list .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
  }

  .review-list__list{
    padding: 14px 16px 18px;
  }

  .review-list__icon{
    width: 52px;
    margin: 0 10px 0 -2px;
  }

  .review-list__caption p{
    font-size: 16px;
  }

  .review-list__star{
    margin: 4px 0 0;
  }

  .review-list__star span{
    font-size: 14px;
  }

  .review-list__star img{
    width: 84px;
  }

  .review-list__content{
    margin: 10px 0 0;
  }

  .review-list__content p{
    font-size: 13.5px;
    line-height: 1.5;
  }
}



/*------------------------------------------
 Q & A
------------------------------------------*/

.qa{
  margin: 24px 0 0;
}

.qa dt{
  line-height: 1.5;
  margin: 14px 0 0;
  padding: 12px 0 8px;
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  display: block;
}

.qa dt:first-child{
  margin: 0;
}

.qa dt:before{
  margin: 0 4px 0 0;
  content: "Q.";
  color: var(--color-blue);
  font-size: 23px;
}

.qa dd p{
  margin: 10px 0 0;
  font-size: 16px;
}

@media all and (max-width: 768px) {
  .qa dt{
    font-size: 17px;
  }
  .qa dt:before{
    font-size: 20px;
  }
  .qa dd p{
    line-height: 1.7;
    font-size: 15px;
  }
}


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

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

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

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

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

.talk__img img {
  width: inherit;
}

.talk__text {
  min-height: 88px;
  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: 16px;
}

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

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

  .talk__img {
    width: 60px;
  }

  .talk__text {
    min-height: 60px;
    padding: 12px 14px;
    border-radius: 6px;
  }

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

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



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

Area Table

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

.area-table__ttl{
  margin: 56px 0 28px !important;
  padding: 12px;
  font-size: 19px !important;
  font-weight: 600;
  text-align: center;
  line-height: 1.5 !important;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--color-green);
  box-sizing: border-box;
  letter-spacing: -0.05em;
}

.area-table__ttl br{
  display: none;
}

.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: 15px;
  display: block;
}


@media all and (max-width: 768px) {
  .area-table__ttl{
    margin: 40px 0 20px !important;
    font-size: 16px !important;
    padding: 10px 4px;
  }
  .area-table__ttl br{
    display: block;
  }
  .area-table__region-find{
    font-size: 13px !important;
  }
  .area-table__region-inner a{
    padding: 6px 10px;
    font-size: 15px;
  }
}



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

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



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

In Page Link

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

.in-page-nav {
  margin: 24px auto 40px;
}

.in-page-nav ul{
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.in-page-nav li{
  width: calc((100% - 20px) / 2);
  box-sizing: border-box;
}

.in-page-nav li:nth-child(even){
  margin-left: 20px;
}

.in-page-nav li:nth-child(n + 3){
  margin-top: 20px;
}

.in-page-nav a{
  height: 84px;
  padding: 0 0 18px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  border: 2px solid var(--main-color);
  box-sizing: border-box;
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  transition: .2s;
}

.in-page-nav a:hover{
  color: var(--main-color);
  background: var(--main-color-l);
}

.in-page-nav a:hover:after{
  transform: translate(-50%, 3px);
}

.in-page-nav a span{
  line-height: 1.5;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
}

.in-page-nav a:after{
  width: 28px;
  height: 10px;
  background: url(../img/arrow-in-page-nav.svg) no-repeat;
  background-size: 28px 10px;
  content: "";
  display: block;
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  transition: .15s;
}


@media all and (max-width: 768px) {
  .in-page-nav{
    margin: 28px -8px 0;
  }

  .in-page-nav ul{
    max-width: 100%;
  }

  .in-page-nav li{
    width: calc((100% - 12px) / 2);
  }

  .in-page-nav li:nth-child(even){
    margin-left: 12px;
  }

  .in-page-nav li:nth-child(n + 3){
    margin-top: 12px;
  }

  .in-page-nav a{
    height: 68px;
    padding: 0 0 14px;
    font-size: 14px;
    line-height: 1.4;
  }

  .in-page-nav a span{
    font-size: 15px;
  }

  .in-page-nav a:after{
    width: 25px;
    height: 7px;
    background-size: 25px 7px;
    bottom: 8px;
  }
}



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

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(--main-color);
  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(--main-color);
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--main-color);
  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;
  }
}





.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: #f60;
}
.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(--main-color);
}

.area-header p{
  width: fit-content;
  height: 30px;
  line-height: 30px;
  margin: 0 auto !important;
  padding: 0 24px;
  color: var(--main-color);
  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;
  }
}



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

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: 80px 0 0;
  background: #fff;
  border-top: 1px solid var(--color-border-bold);
}

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

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

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

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

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

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

.g-footer .copyright small {
  color: var(--fc-gray);
  font-size: 1.2rem;
}

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

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

  .g-footer__inner{
    width: 100%;
    padding: 32px var(--padding-post-side);
  }
}


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

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


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

Count Down

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

.tel-timer{
  margin: 40px 0 0;
  padding: 0 20px 16px;
  border: 3px solid var(--main-color);
  border-radius: 8px;
}

.tel-timer .tel-timer__label{
  width: fit-content;
  margin: -16px auto 0 !important;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
}

.tel-timer__count{
  margin: 2px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-timer__count div{
  color: var(--main-color);
  font-size: 22px;
  font-weight: 600;
}

.tel-timer__unit{
  margin: 0 1px;
  font-size: 21px !important;
}

.tel-timer__reception-hours{
  font-size: 14px;
  text-align: center;
}

.tel-timer__text p{
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}


@media all and (max-width: 768px) {
  .tel-timer{
    margin: 30px 0 0;
    padding: 0 0 12px;
    border-radius: 6px;
  }

  .tel-timer .tel-timer__label{
    font-size: 14.5px;
    margin: -14px auto 0 !important;
  }

  .tel-timer__count div{
    font-size: 21px;
  }

  .tel-timer__unit{
    font-size: 20px !important;
  }

  .tel-timer .tel-timer__count{
    margin: 2px 0 0;
  }
  .tel-timer__reception-hours{
    margin: -3px 0 0;
    font-size: 13px;
  }

  .tel-timer__text{
    margin: 3px 0 0;
  }

  .tel-timer__text p{
    font-size: 12px;
  }
}



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

404

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

}


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

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