@charset "UTF-8";

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

:root{
  --header-height: 0;

  --width-content: 1280px;
  --width-tab: 840px;
  --width-mobile: 480px;

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

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


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

:root{
  --opacity-hv: .75;
  --scale-hv: scale(1.1);

  --duration-default: .2s;
}


:root{
  /* --------------------
   Font
  --------------------*/

  --fc-default: #444;
  --post-fs: 1.8rem;
  --post-line-height: 2;


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

  --fc-pink: #FF6581;
  --fc-link: #0078de;
  --fc-blue: #0340a5;
  --fc-orange: #ff6130;

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

  --bg-color: #f3f6f8;
  --border-color: #dfdfdf;

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

  --btn-green: var(--color-green);
  --btn-green-d: #028e47;
  --btn-orange: #ff7538;
  --btn-orange-d: #ef5e1e;
  --btn-blue: #007dd5;
  --btn-blue-d: #006db9;
  
  --main-color: #014ea1;
  --main-color-2: #0260cb;
  --main-color-ll: #f6f8f9;

  --main-color-black: #030e1a;


  --main-color-border: #e6e8ea;


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

  --post-padding: 72px;

  --item-section-padding: 52px;

  --text-mt: 28px;

  --block-mt: 36px;
  --block-mt-s: 24px;
  --block-center: 0 auto;

  --box-padding: 22px 24px;
  --box-r: 6px;

  --btn-r: 6px;

  --mt-wide: 60px;

}

@media all and (max-width: 768px) {
  :root{
    --post-padding: 18px;

    --item-section-padding: 14px;
    
    --post-fs: 1.55rem;
    --post-line-height: 1.76;

    --block-mt: 28px;
    --block-mt-s: 16px;

    --box-padding: 16px;
    --box-r: 5px;

    --btn-r: 5px;

    --mt-wide: 44px;
  }
}



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

Base Setting

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

html{ font-size: 10px; }

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

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

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

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

* > b,
* > span{
  color: inherit;
  line-height: inherit;
  text-align: inherit;
}

a{
  text-align: inherit;
}

a > *{
  cursor: pointer;
  color: currentColor;
}

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%;
  min-width: 1080px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.g-header__wrapper {
  width: 1080px;
  margin: 0 auto;
  padding: 10px 0 14px;
}

.g-header__wrapper a {
  transition: opacity 0.15s;
  -webkit-transition: opacity 0.15s;
  -ms-transition: opacity 0.15s;
}

.g-header__wrapper a:hover {
  opacity: var(--opacity-hv:);
}

.g-header .site-name {
  line-height: 1;
  text-align: center;
  font-size: 13px;
}

.g-header .site-name a {
  line-height: 1;
  display: inline-block;
}

.g-header .site-name img {
  width: 136px;
  line-height: 1;
  height: auto;
}

.g-header .site-description {
  margin: 8px 0 0;
}

.g-header .site-description p {
  line-height: 1.5;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.g-header .site-description br {
  display: none;
}


@media all and (max-width: 768px) {
  .g-header {
    height: 52px;
    min-width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-header);
    display: none;
  }

  .g-header__wrapper {
    width: 100%;
    padding: 9px 12px 0;
    box-sizing: border-box;
  }

  .g-header .site-name {
    line-height: 1;
    text-align: left;
  }

  .g-header .site-name img {
    width: 90px;
    margin: 0;
  }

  .g-header .site-description {
    margin: 1px 0 0;
  }

  .g-header .site-description p {
    font-size: 10px;
    text-align: left;
  }

  .g-header.sp-nav-open {
    position: relative;
  }
}



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

Contents

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

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

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

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


@media all and (max-width: 768px) {
  .contents {
    width: 100%;
    margin: var(--header-height) auto 0;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .main{
    width: 100%;
  }
}



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

 Post Module

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

/* --------------------
 色装飾
-------------------- */

.fc-red { color: #ee1818 !important; }
.fc-blue{ color: var(--fc-blue) !important; }
.fc-pink{ color: var(--fc-pink) !important; }
.fc-orange{ color: var(--fc-orange) !important; }

.line-yellow{ background: linear-gradient(to bottom, transparent 40%, #ffebae 0%); }
.line-blue{ background: linear-gradient(to bottom, transparent 40%, #D7EEF8 0%); }
.line-pink{ background: linear-gradient(to bottom, transparent 40%, #fde6e8 0%); }


/* --------------------
 サイズ関連
-------------------- */

.fs-60 { font-size: 60%; }
.fs-65 { font-size: 65%; }
.fs-70 { font-size: 70%; }
.fs-80 { font-size: 80%; }
.fs-80 { font-size: 85%; }
.fs-90 { font-size: 90%; }

.fs-110 { font-size: 110%; }
.fs-120 { font-size: 120%; }
.fs-130 { font-size: 130%; }
.fs-140 { font-size: 140%; }
.fs-160 { font-size: 160%; }
.fs-180 { font-size: 180%; }

.lh-1{ line-height: 1 !important; }
.lh-16{ line-height: 1.6 !important; }
.lh-17{ line-height: 1.7 !important; }
.lh-18{ line-height: 1.8 !important; }


/* --------------------
 その他
-------------------- */

.ta-center{ text-align: center; }
.ta-right{ text-align: right; }

.f-ul{ text-decoration: underline; }


/* --------------------
 スマホ サイズ設定
-------------------- */

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

  .sp-w70{ width: 70% !important; }
  .sp-w72{ width: 72% !important; }
  .sp-w80{ width: 80% !important; }
  .sp-w85{ width: 85% !important; }
  .sp-w90{ width: 90% !important; }
  
}



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

 Post

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

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


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

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

.post-head__title{
  margin: 20px 0 0;
  line-height: 1.5;
  font-size: 2.2rem;
  font-weight: 600;
}

.post-head__meta{
  margin: 16px 0 0;
  padding: 2px 16px;
  background: #f5f7f9;
  display: flex;
  align-items: center;
}

.post-head__meta span{
  color: #666;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
}

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

.post-head__meta span:before{
  width: 16px;
  height: 16px;
  margin: 0 7px 0 0;
  background-size: 16px 16px;
  content: "";
  display: block;
}

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

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

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


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

  .post-head__image{
    margin: 0 calc(var(--post-padding) * -1);
  }

  .post-head__title{
    margin: 14px -6px 0;
    font-size: 1.9rem;
  }

  .post-head__meta{
    margin: 12px -6px 0;
    padding: 2px 10px;
    justify-content: end;
  }

  .post-head .post-head__meta span{
    font-size: 1.25rem;
  }

  .post-head__meta span:not(:first-child){
    margin-left: 10px;
  }

  .post-head__meta span:before{
    width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
    background-size: 15px 15px;
  }
}


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

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

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

.post-body > h4{
  margin: 38px 0 0;
  padding: 0 0 0 28px;
  font-size: 19px;
  font-weight: 600;
  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 p {
  line-height: var(--post-line-height);
  margin-top: var(--text-mt);
  font-size: var(--post-fs);
}

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


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


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

.post-body .img + .img {
  margin-top: var(--block-mt-s);
}

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

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

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

.post-body .embed{
  margin-top: var(--block-mt);
  overflow: hidden;
}

.post-body .embed + .embed{
  margin-top: var(--block-mt-s);
}

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

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

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

.post-body .margin-wide {
  margin-top: var(--mt-wide) !important;
}


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

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

  .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:before{
    width: 24px;
    height: 24px;
    background-size: 24px;
    top: 2px;
  }

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

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

  .post-body .margin-wide {
    margin-top: 44px !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__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;
  }
}


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

 List

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

.post-body ul {
  margin-top: var(--text-mt);
}
.post-body ul:first-child {
  margin-top: 0 !important;
}
.post-body ul li:first-child {
  margin-top: 0;
}

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

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

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

.list-check-small li:before{
  width: 17px;
  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);
}


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



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

 Box

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

/*------------------------------------------
 Box / Default
------------------------------------------*/

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

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

.box--bg-pink{ background: #FFEFF1; }
.box--bg-yellow{ background: #fffae7; }

.box--r{ border-radius: var(--box-r); }


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

.box-point{
  margin-top: var(--block-mt);
  text-align: center;
}

.box-point .box-point__find{
  height: 36px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: var(--main-color);
  border-radius: 5px 5px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.box-point ul li{
  margin: 4px 0 0;
  padding: 9px 12px 9px 46px;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  background: #fffaee;
}

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



@media all and (max-width: 768px) {
  .box-point .box-point__find{
    height: 32px;
    padding: 0 32px;
    font-size: 15px;
  }

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

  .box-point ul li{
    line-height: 1.7;
    margin: 2px 0 0;
    padding: 7px 14px 7px 46px;
    font-size: 1.45rem;
  }

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


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

 Box tell

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

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

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

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

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

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



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

 Pick Up

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

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

.pickup-section .pickup-section__find{
  margin: 0;
  padding: 4px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  background: var(--main-color-2);
  border-radius: 6px 6px 0 0;
}

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

.pickup-section__inner{
  padding: 24px 28px;
  border: 1px solid var(--main-color-2);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: flex-start;
}

.pickup-section__image{
  width: 140px;
  aspect-ratio: 1 / 1;
  margin: 0 28px 0 0;
  padding: 2px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pickup-section__image a{
  width: 96%;
  display: block;
}

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

.pickup-section__meta{
  flex: 1;
}

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

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

.pickup-section__item-name a span{
  margin: 0 -10px 0 -6px;
  font-size: 90%;
  font-weight: 600;
}

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

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

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

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

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

.pickup-section__button a:hover{
  opacity: var(--opacity-hv);
}

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

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

.pickup-section__button a span{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.pickup-section__notes{
  margin: 14px 0 0;
}

.pickup-section__notes p{
  color: #888;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: right;
}

.pickup-section__notes p br{
  display: none;
}


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

  .pickup-section .pickup-section__find{
    padding: 6px 0;
    font-size: 1.55rem;
  }

  .pickup-section__inner{
    padding: 16px 12px 24px;
  }

  .pickup-section__image{
    width: 80px;
    margin: 0 14px 0 0;
    padding: 1px;
  }

  .pickup-section__meta{
    margin: 0;
  }

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

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

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

  .pickup-section__body p{
    font-size: 1.3rem;
    line-height: 1.65;
  }

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

  .pickup-section__button a{
    height: 44px;
    border-radius: 22px;
  }

  .pickup-section__button a:before{
    height: 20px;
    line-height: 20px;
    font-size: 1.25rem;
  }
  .pickup-section__button a:after{
    right: 12px;
  }

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

  .pickup-section__notes{
    margin: 10px -8px 0;
  }

  .pickup-section__notes p{
    font-size: 1rem;
  }

  .pickup-section__notes p span{
    margin: 0 -6px 0 -3px;
  }

  .pickup-section__notes p br{
    display: block;
  }
}



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

 Choice Point

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

.choice-point{
  margin: 56px -64px 0;
  padding: 56px 0;
  background: var(--bg-color);
}

.choice-point__inner{
  padding: 0 64px 56px;
  background: #fff;
}

.choice-point .choice-point__find{
  margin: 3px -61px 40px;
  text-align: center;
}



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

 Point Section

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

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

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

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

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

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

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

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

.point-section .campaign-news__find{
  margin: 24px 0 12px;
  padding: 6px 12px;
  color: var(--main-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  background: #ffe2e4;
}

.campaign-news__find + ul{
  margin-top: 10px;
  margin-bottom: 4px;
}

.campaign-news li{
  padding: 8px 0 0 78px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

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

.campaign-news li:before{
  width: 67px;
  height: 20px;
  background: url(../img/icon-pickup.gif);
  background-size: 67px 20px;
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

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

  .choice-point__inner{
    padding: 0 10px 28px;
  }

  .choice-point .choice-point__find{
    margin: 3px -9px 20px;
    font-size: 19px;
  }

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

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

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

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

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

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

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

  .campaign-news .campaign-news__find{
    margin: 20px -8px 8px;
    padding: 6px 0;
    font-size: 15px;
    letter-spacing: -0.04em;
  }

  .campaign-news__find + ul{
    margin: 6px -4px 0;
  }

  .campaign-news li{
    line-height: 1.7;
    padding: 7px 0 0 62px;
    font-size: 14.5px;
  }

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

  .campaign-news li:before{
    transform: scale(0.78, 0.86);
    top: 9px;
    left: -8px;
  }


}



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

 Table

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

.table-default{
  margin-top: var(--block-mt);
}

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

.table-default caption{
  margin: 0 0 8px;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
   animation: tableCaptionAttention 2.5s ease infinite;
}

@keyframes tableCaptionAttention {
  0%, 20%, 40%{
    transform: translateY(0);
  }
  10%, 30% {
    transform: translateY(4px);
  }
}

.table-default thead th{
  padding: 4px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: var(--main-color);
  border-left: 1px solid #fff;
}

.table-default .cell-service-name{
  width: 220px;
}

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

.table-default tbody{
  counter-reset: priceTableRank;
}

.table-default .cell-num{
  width: 36px;
  padding: 6px;
  text-align: center;
}

.table-default tbody .cell-num:before{
  padding: 4px 6px;
  color: #999;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.08em;
  counter-increment: priceTableRank;
  content: counter(priceTableRank);
  display: innline-block;
}

.table-default tbody tr:nth-child(-n + 3) td{
  background: #fffae6;
} 

.table-default tbody tr:nth-child(1) .cell-num:before{
  color: #fff;
  background: #f8c02b;
}

.table-default tbody tr:nth-child(2) .cell-num:before{
  color: #fff;
  background: #a5a8ad;
}

.table-default tbody tr:nth-child(3) .cell-num:before{
  color: #fff;
  background: #5a4036;
}

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

.table-default td a{
  font-weight: 600;
}

.table-default .tr-hidden{
  display: none;
  opacity: 0;
}

.table-default .tr-hidden.open{
  display: table-row;
  animation-name: tableFadeIn;
  animation-delay: .1s;
  animation-fill-mode: forwards;
  animation-duration: .2s;
}

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

  }
}

.table-open-button{
  width: 400px;
  height: 36px;
  margin: 24px auto 0;
  color: #888;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  cursor: pointer;
}

.table-open-button:hover{
  opacity: 0.7;
}


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

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

  .table-default caption{
    font-size: 15px;
  }

  .table-default thead th{
    padding: 4px 0;
    font-size: 13px;
  }

  .table-default .cell-num{
    width: 18px;
    padding: 6px 4px;
  }

  .table-default .cell-service-name{
    width: 156px;
  }

  .table-default tbody .cell-num:before{
    font-size: 12px;
  }

  .table-default tbody td{
    padding: 8px 4px;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 1.6;
    vertical-align: middle;
  }

  .table-open-button{
    margin: 16px auto 0;
    width: 90%;
    height: 32px;
    font-size: 14px;
    border-width: 1px;
  }

}


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

 Check find

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

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

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

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

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

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



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



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

 Number find

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

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

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


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



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

 Link Btn

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

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

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

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

.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(to bottom, #00b442, #00aa3a);
  border: 1px solid var(--btn-green-d);
  box-shadow: 0 3px 3px rgba(0,0,0,0.16);
  border-radius: var(--btn-r);
  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: 10px;
  transform: translateY(-50%);
}

.btn-orange a{
  padding-top: 2px;
  background: linear-gradient(to bottom, #ff7c3b, #fe6725);
  border-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:  18px;
  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 a{
  height: 76px;
  font-size: 18px;
}

.btn-inpage-link a:after{
  transform: translateY(-50%) rotate(90deg);
}


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

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

  .btn:is(.micro-copy-top + *){
    margin-top: 8px;
  }

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

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

  .btn span{
    margin: -1px 0 9px;
    font-size: 17px;
  }

  .btn a{
    height: 80px;
    font-size: 1.75rem;
  }

  .btn a:after{
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    right: 8px;
  }

  .btn-inpage-link a{
    height: 60px;
    font-size: 17px;
  }
}

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


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

 Link Icon

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

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

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


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







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

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



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

 Trend Box

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

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

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

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

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


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

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

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


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

 Label List

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

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

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

.label-list__find span{
  width: fit-content;
  height: 28px;
  line-height: 28px;
  margin: 0 auto;
  padding: 0 16px;
  color: var(--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: var(--opacity-hv);
}

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

}



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

 Ranking table

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

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

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

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

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

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

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

.ranking{
  margin: 48px -48px 0;
  overflow-x: scroll;
}

.ranking__inner{
  width: 115%;
}

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

.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 8px 16px;
  flex: 1;
  background: #fff;
}

.ranking .service-columun ul li:before{
  width: calc(100% + 24px);
  height: 24px;
  line-height: 24px;
  margin: 0 -12px 12px;
  color: #fff;
  font-size: 13px;
  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 ul li:nth-child(6):before{
  content: 'No.6';
  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: 2px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

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

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

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

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

.ranking .review-columun li p{
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.04em;
}

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

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

.ranking__find{
  height: 24px;
  line-height: 24px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  background: #f5f5f5;
}

.ranking__find span{
  font-size: 14px;
  font-weight: 600;
  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 8px;
  font-size: 14px;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

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

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

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

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

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

.ranking .price-columun li{
  min-height: 56px;
  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: 3px;
  box-sizing: border-box;
  display: flex;
  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: 100%;
  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 span span{
  display: inline;
}

.ranking .button-columun li a span:first-child{
  margin: 0 0 4px;
  font-size: 12px;
}

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

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

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

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

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


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

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

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

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

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

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

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

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

  .ranking__inner{
    width: 192%;
  }

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

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

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


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

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

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

  .ranking__find{
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    font-size: 13px;
  }

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

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

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

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

  .ranking .button-columun li a span{
    font-size: 13px;
  }
  .ranking .button-columun li a span span{
    display: none;
  }
  .ranking .button-columun li a span:first-child{
    font-size: 12px;
  }
  .ranking .seal img{
    width: 28px;
  }
}

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



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

 Ranking table wide

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

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


.ranking-table-wide{
  margin: 40px -48px 0;
}

.ranking-table-wide__inner{
  overflow-y: scroll;
}

.ranking-table-wide .ranking-table-wide__guide{
  margin: 0 0 10px !important;
  color: #777;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: right;
  animation: guideAnimation 2.5s ease-in-out infinite;
}

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

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


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

.ranking-table-wide thead th{
  height: 32px;
  width: 100px;
  padding: 0 2px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: var(--main-color);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.ranking-table-wide thead th:last-child{
  border-right: none;
}

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

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

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

.ranking-table-wide thead .w140{ width: 140px; }
.ranking-table-wide thead .w150{ width: 150px; }
.ranking-table-wide thead .w160{ width: 160px; }
.ranking-table-wide thead .w170{ width: 170px; }


.ranking-table-wide thead .cell-review{ width: 80px; }
.ranking-table-wide thead .cell-comment{ width: 200px; }
.ranking-table-wide thead .cell-area{ width: 180px; }


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

.ranking-table-wide td{
  height: 96px;
  padding: 12px 4px;
  font-size: 1.35rem;
  letter-spacing: -0.008em;
  line-height: 1.6;
  text-align:  center;
  background: #fff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

.ranking-table-wide .ranking-table__icon{
  width: 26px;
  margin: 0 auto 4px;
}


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

.ranking-table-wide .item-image{
  display: block;
}

.ranking-table-wide .item-image img{
  max-width: 96%;
  max-height: 100%;
}

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

.ranking-table-wide .item-image:after{
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.ranking-table-wide .item-name-link{
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  text-align: center;
  text-decoration: underline;
}

.ranking-table-wide .item-name-link span{
  margin: 0 -4px;
  font-size: 90%;
  font-weight: 600;
}


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

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

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


.ranking-table-wide__review-point{
  font-size: 1.55rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table-wide__review-point img{
  width: 15px;
  aspect-ratio: 1 / 1;
  margin: -2px 3px 0 0;
}

.ranking-table-wide__comment{
  padding: 0 6px;
  font-size: 1.25rem;
}


.ranking-table__area-list ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ranking-table__area-list li{
  width: fit-content;
  font-size: 1.3rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.ranking-table__area-list li:after{
  margin: 0 4px;
  color: #aaa;
  font-size: 90%;
  content: "/";
  display: block;
}


.ranking-table-wide__contact li{
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table-wide__contact .label-free{
  width: fit-content;
  height: 17px;
  line-height: 17px;
  margin: 0 0 0 3px;
  padding: 0 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  background: #f86361;
  border-radius: 10px;
  display: block;
}


@media all and (max-width: 768px) {
  .ranking-table-wide{
    margin: 24px calc(var(--post-padding) * -1) 0;
  }

  .ranking-table-wide .ranking-table-wide__guide{
    margin: 0 12px 8px 0 !important;
    font-size: 12px;
  }

  .ranking-table-wide thead th{
    width: 100px;
    font-size: 1.2rem;
  }

  .ranking-table-wide thead .cell-img{ width: 126px; }
  .ranking-table-wide thead .cell-review{ width: 64px; }
  .ranking-table-wide thead .cell-comment{ width: 180px; }
  .ranking-table-wide thead .cell-area{ width: 144px; }

  .rankin-table-wide thead .w140{ width: 112px; }

  .ranking-table-wide tbody td {
    height: 80px;
    min-height: 80px;
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 4px 6px;
  }

  .ranking-table-wide tbody td:first-child{
    padding: 4px 2px;
  }

  .ranking-table-wide .item-image{
    padding: 0 8px;
  }

  .ranking-table-wide .item-name-link{
    margin: -2px 0 4px;
    font-size: 1.1rem;
  }

  .ranking-table-wide__review-point{
    font-size: 1.45rem;
  }

  .ranking-table-wide__review-point img{
    width: 14px;
  }

  .ranking-table-wide__comment{
    padding: 0 4px;
    font-size: 1.15rem;
    line-height: 1.6;
  }

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

  .ranking-table__area-list li{
    font-size: 1.2rem;
  }

  .ranking-table__area-list li:after{
    margin: 0 3px;
  }
}



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

 Ranking table Tab menu

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

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

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

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

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

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

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

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

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

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

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

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

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

.ranking-table__area-list li:last-child:after{
  content: none;
}


@media all and (max-width: 768px) {
  .ranking-table__tab-menu{
    padding: 0 2px;
  }

  .ranking-table__tab-menu label{
    height: 36px;
    font-size: 14px;
  }
}



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

.normal-table{
  margin-top: var(--block-mt);
}

.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 calc(var(--post-padding) * -1) 0;
  padding: 20px;
  position: relative;
  border-style: solid;
}

.item-section:is(.item-section + *){
  padding: 0 20px 20px;
  margin-top: 0;
}

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

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

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

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

.item-section__site-image{
  padding: 10px 0;
  text-align: center;
  background: #f6f6f6;
}

.item-section .item-section__site-image img{
  width: 320px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.post-body .item-section__text p{
  font-size: 1.65rem;
}

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

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

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

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

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

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

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


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

  .item-section:is(.item-section + *){
    padding: 0 4px 20px;
  }

  .item-section__inner{
    padding: 4px var(--item-section-padding) 28px;
  }

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

  .item-section__site-image{
    margin: 0 calc(var(--item-section-padding) * -1);
  }
  
  .item-section .item-section__site-image img{
    width: 70%;
    max-width: 360px;
  }

  .item-section__text{
    margin: 32px 0 0;
    padding: 0 2px;
  }
  
  .post-body .item-section__text p{
    font-size: 1.55rem;
  }
  
  .post-body .item-section__text p:not(:first-child){
    margin: 20px 0 0;
  }
  
  .post-body .item-section__text .img{
    margin: 20px 0 0;
  }

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

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

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

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


/*------------------------------------------
 Item section / Ranking Title
------------------------------------------*/

.ranking-ttl{
  margin: 0 calc(var(--item-section-padding) * -1);
  padding: 20px var(--item-section-padding);
  min-height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.ranking-ttl:before{
  width: 60px;
  height: 60px;
  margin: 0 16px 0 0;
  background-size: 60px 60px;
  background-repeat: no-repeat;
  content: "";
}

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

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

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

.rank4 .ranking-ttl:before{
  background-image: url(../img/icon-rank4.svg);
}

.rank5 .ranking-ttl:before{
  background-image: url(../img/icon-rank5.svg);
}

.rank6 .ranking-ttl:before{
  background-image: url(../img/icon-rank6.png);
}

.rank7 .ranking-ttl:before{
  background-image: url(../img/icon-rank7.png);
}

.ranking-ttl > div{

}

.ranking-ttl h3{
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  background: none;
}

.ranking-ttl a{
  font-weight: 600;
}

.ranking-ttl a:after{
  width: 20px;
  height: 20px;
  margin: 7px 0 0 7px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 20px 20px;
  content: "";
  display: inline-block;
  vertical-align: top;
}

.ranking-ttl a span{
  margin: 0 -0.5em 0 -0.2em;
  font-size: 85%;
  display: inline-block;
}

.ranking-ttl span{
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.ranking-ttl__star{
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.ranking-ttl__star span{
  margin: 1px 4px 0 0;
  font-family: Arial;
  font-size: 21px;
  font-weight: 600;
}

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

.ranking-ttl__star img{
  width: 104px;
  display: block;
}


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

  .ranking-ttl:before{
    width: 52px;
    height: 52px;
    margin: 0 12px 0 0;
    background-size: 52px 52px;
  }

  .ranking-ttl h3{
    font-size: 2.1rem;
  }

  .ranking-ttl a:after{
    width: 19px;
    height: 21px;
    margin: 6px 0 0 6px;
    background-size: 19px 19px;
  }

  .ranking-ttl span{
    font-size: 13px;
  }

  .post-body .ranking-ttl + .img{
    margin-top: 20px;
  }

   .ranking-ttl__star{
    margin-top: 0;
  }

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

  .ranking-ttl__star span{
    margin: 1px 3px 0 0;
    font-size: 19px;
  }

  .ranking-ttl__star img{
    width: 90px;
  }
}


/*------------------------------------------
 Item section / Item information table
------------------------------------------*/

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

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

.item-info-table caption{
  margin: 0 0 20px;
  padding: 5px 12px;
  color: var(--main-color-black);
  font-size: 19px;
  font-weight: 600;
  background: var(--bg-color);
  border-top: 3px solid var(--main-color);
  align-items: center;
}

.item-info-table caption:before{
  margin: -1px 6px 0 0;
  font-size: 95%;
  content: "📊";
  display: inline-block;
  transform: scaleY(0.96);
}

.item-info-table tr:first-child th,
.item-info-table tr:first-child td
{
  border-top: 1px solid #ddd;
}

.item-info-table tbody th{
  width: 120px;
  padding: 10px 16px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  background: #f6f6f6;
  border-bottom: 1px solid #ddd;
}

.item-info-table tbody td{
  padding: 10px 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: 1px solid #ddd;
}

.item-info-table tbody td a{
  font-weight: 600;
  font-size: 96%;
  text-decoration: underline;
}

.item-info-table__area-list ul{
  display: flex;
  flex-wrap: wrap;
}

.item-info-table__area-list li{
  width: fit-content;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.item-info-table__area-list li:after{
  width: fit-content;
  margin: 0 5px;
  color: #bbb;
  font-size: 1.4rem;
  content: "/";
  display: block;
}

.item-info-table__area-list li:last-child:after{
  content: none;
}

.item-info-table__area-list li span{
  font-size: 1.5rem;
}


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

  .item-info-table caption{
    margin: 0 0 18px;
    padding: 4px 12px;
    font-size: 1.6rem;
  }

  .item-info-table tbody th{
    width: 68px;
    padding: 10px 4px;
    font-size: 1.15rem;
  }

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

  .item-info-table tbody td a{
    font-size: 94%;
  }

  .item-info-table__area-list li span{
    font-size: 1.35rem;
  }

  .item-info-table__area-list li:after{
    margin: -2px 5px 0;
    font-size: 1.2rem;
  }

  .item-info-table .item-info-table__notes{
    margin: 12px 0 -2px;
    font-size: 11px;
  }
}


/*------------------------------------------
 Item section / Item privilege
------------------------------------------*/

.item-privilege{
  margin: 40px 0 0;
  border: 2px solid #ff7935;
  padding: 0 32px 28px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.item-privilege .item-privilege__title{
  width: calc(100% + 64px);
  line-height: 1.5;
  margin: -2px -32px 28px;
  padding: 12px 12px 16px;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  background: #ff7935;
  box-sizing: border-box;
}

.item-privilege__title span{
  margin: 5px 0 0;
  color: #fff;
  font-size: 75%;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  display: block;
}

.item-privilege .item-privilege__title:before{
  content: none;
}

.item-privilege__title + .item-privilege__section{
  margin: 0 !important;
}

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

.item-privilege__img{
  text-align: center;
}

.item-privilege__img a{
  transition: .2s;
}

.item-privilege__img a:hover{
  opacity: .8;
}

.item-privilege__img img{
  width: 84%;
  margin: var(--block-center);
}

.item-privilege__link{
  margin: 12px 0 0;
}

.item-privilege .item-privilege__link p{
  margin: 0;
  text-align: center;
   animation: textUpDown 1.2s steps(2) infinite;
}

.item-privilege .item-privilege__link p a{
  font-size: 1.8rem;
  font-weight: 600;
}

@keyframes textUpDown {
  0%{

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

.item-privilege__section p{
  line-height: 1.7;
  margin: 16px 0 0;
  font-size: 1.7rem;
}

.post-body .item-privilege .item-privilege__notes {
  margin: 12px 0 0;
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}


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

  .item-privilege .item-privilege__title{
    width: calc(100% + 36px);
    margin: 0 -18px 24px;
    padding: 7px 8px 16px;
    font-size: 1.85rem;
  }

  .item-privilege .item-privilege__title span{
    margin: 3px 0 0;
    font-weight: 600;
  }

  .item-privilege__find{
    padding: 4px 12px;
    font-size: 17px;
  }

  .item-privilege__section:not(:first-child){
    margin: 24px 0 0;
  }

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

  .item-privilege .item-privilege__link{
    margin: 9px 0 0;
  }

  .item-privilege .item-privilege__link p a{
    font-size: 1.7rem;
  }

  .item-pfivilege .item-privilege__img + p{
    margin: 18px 0 0;
  }

  .item-privilege__section p{
    margin: 10px 0 0;
    font-size: 1.4rem;
  }

  .post-body .item-privilege .item-privilege__notes {
    margin: 8px 0 0;
    font-size: 11px;
  }
}


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

 Tips

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

.tips{
  
}

.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(--item-section-padding) * -1) 0;
  padding: 28px 48px 44px; 
  background: var(--main-color-ll);
}

.comment__find{
  margin: 0 0 28px;
  padding: 16px 0;
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  background: #fff;
  border-top: 4px solid var(--main-color);
}

.comment-list__item{
  padding: 20px 28px 26px;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0,0,0,0.04);
}

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

.comment-list__hidden-area{
  margin: 24px 0 0;
  opacity: 0;
  display: none;
  animation: commentFadeIn forwards ease-in .1s alternate;
}

.comment-list__hidden-area--visible{
  display: block;
}

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

.comment-list__head{
  display: flex;
}

.comment-list__icon{
  width: 48px;
  height: 48px;
  margin: 0 16px 0 0;
  border: 3px solid #d7dce1;
  border-radius: 100%;
  overflow: hidden;
}

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

.comment-list__catch{
  padding: 2px 0 0;
  flex: 1;
}

.comment-list__catch p{
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
}

.comment-list__star{
  margin: 2px 0 0;
  display: flex;
  align-items: center;
}

.comment-list__star img{
  width: 92px;
}

.comment-list__star span{
  margin: 1px 0 0 8px;
  color: #777;
  font-size: 1.5rem;
  line-height: 1.6;
}

.comment-list__body{
  margin: 14px 0 0;
}

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

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

.comment-list__more-button{
  margin: 24px 0 0;
}

.comment-list__more-button button{
  width: fit-content;
  height: 40px;
  margin: 0 auto;
  padding: 0 48px;
  color: #777;
  font-size: 1.5rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--main-color-border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration-default);
}

.comment-list__more-button button:hover{
  opacity: var(--opacity-hv);
}

.comment-list__more-button button:after{
  margin: 0 0 0 6px;
  color: #aaa;
  font-size: 1.6rem;
  content: "＋";
  display: block;
}

.comment__notes{
  margin: 20px 0 0;
}

.comment__notes p{
  color: #777;
  font-size: 1.3rem;
  text-align: right;
}


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

  .comment__find{
    margin: 0 0 20px;
    padding: 12px 0;
    font-size: 1.85rem;
  }

  .comment-list__hidden-area{
    margin: 16px 0 0;
  }

  .comment-list__item{
    padding: 18px 16px 20px;
  }

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

  .comment-list__icon{
    width: 44px;
    height: 44px;
    margin: 0 10px 0 -1px;
  }

  .comment-list__catch{
    padding: 0;
  }

  .comment-list__catch p{
    font-size: 1.65rem;
  }

  .comment-list__star{
    margin: 2px 0 0;
  }

  .comment-list__star span{
    margin: 2px 0 0 5px;
    font-size: 1.3rem;
  }

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

  .comment-list__body{
    margin: 12px 0 0;
  }

  .comment-list__body p{
    font-size: 1.35rem;
    line-height: 1.7;
  }

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

  .comment-list__more-button{
    margin: 16px 0 0;
  }

  .comment-list__more-button button{
    height: 32px;
    border-radius: 16px;
    font-size: 1.3rem;
  }

  .comment-list__more-button button:after{
    font-size: 1.4rem;
  }

  .comment__notes{
    margin: 16px 0 0;
  }

  .comment__notes p{
    color: #777;
    font-size: 1.1rem;
    text-align: right;
  }
}



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

 Review

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

.review-list{
  margin: 40px -40px 0;
  padding: 36px 40px 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;
  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(--block-mt);
  display: flex;
  align-items: start;
}

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

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

.talk__img img {
  width: inherit;
}

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

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

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

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

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

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

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

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

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

  .talk{
    margin-left: -4px;
    margin-right: -4px;
  }

  .talk__img {
    width: 58px;
  }

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

  .talk__text:before{
    width: 15px 23px;
    background-size: 15px 23px;
    top: 3px;
  }

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

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

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

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

  .talk__text p{
    line-height: 1.55;
    font-size: 14px !important;
  }

  .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(--fc-link);
  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-top: var(--box-mt);
  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;
  }
}



.main__section {
  padding: 48px 56px;
}


@media all and (max-width: 768px) {
  .main__section {
    padding: 24px 16px;
  }
  .main .password-form__form {
    padding: 6px;
  }
  .main .password-form__input {
    width: calc(100% - 94px);
  }
  .main .password-form input[type="submit"] {
    margin: 0 0 0 6px;
  }
  .main .password-form p {
    line-height: 1.9;
    margin: 24px 0 0;
    font-size: 15px;
  }
}


@media all and (max-width: 640px) {
  .main__section {
    padding: 20px 12px;
  }
}

.password-form {
  margin: 20px 0 0;
}
.password-form p {
  line-height: 2.1;
  margin: 28px 0 0;
  font-size: 16px;
}
.password-form p:first-child {
  margin: 0;
}
.password-form p a {
  color: #0065cc;
}
.password-form p a:hover {
  color: #f60;
}
.password-form__form {
  margin: 16px 0 0;
  padding: 12px;
  font-size: 0;
  background: #f2f2f0;
}
.password-form__input {
  width: calc(100% - 100px);
  font-size: 0;
  display: inline-block;
}
.password-form input[type="password"] {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 4px;
  font-size: 16px;
  border: 1px solid #e5e8ec;
  box-sizing: border-box;
}
.password-form input[type="submit"] {
  width: 88px;
  height: 48px;
  margin: 0 0 0 12px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #00365b;
  display: inline-block;
  vertical-align: top;
  transition: 0.15s;
  -webkit-transition: 0.15s;
  -ms-transition: 0.15s;
}
.password-form input[type="submit"]:hover {
  opacity: 0.8;
}
@media all and (max-width: 768px) {
  .password-form__form {
    padding: 6px;
  }
  .password-form__input {
    width: calc(100% - 94px);
  }
  .password-form input[type="submit"] {
    margin: 0 0 0 6px;
  }
  .password-form p {
    line-height: 1.9;
    margin: 24px 0 0;
    font-size: 15px;
  }
}

.post-list__list {
  min-height: 166px;
  margin: 8px 0 0;
  padding: 16px 0;
  background: #fff;
  position: relative;
}
.post-list__list:first-child {
  margin: 0;
}
.post-list__thumb {
  width: 240px;
  height: 166px;
  overflow: hidden;
  position: absolute;
  top: 16px;
  left: 16px;
  overflow: hidden;
  background: #111;
}
.post-list__thumb a {
  width: inherit;
  height: inherit;
  display: block;
  transition: 0.15s;
  -webkit-transition: 0.15s;
  -ms-transition: 0.15s;
}
.post-list__thumb a:hover {
  opacity: 0.7;
}
.post-list__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -ms-transition: 0.25s;
}
.post-list__meta {
  height: 146px;
  margin: 0 24px 0 278px;
  padding: 11px 0;
  font-size: 0;
  box-sizing: border-box;
}
.post-list__date {
  height: 14px;
  line-height: 14px;
  color: #777;
  font-size: 13px;
  display: inline-block;
  vertical-align: top;
}
.post-list__category {
  height: 14px;
  line-height: 13px;
  margin: 0 0 0 10px;
  color: #777;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
}
.post-list__category a {
  line-height: 13px;
  color: #ac873d;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.post-list__category a:hover {
  text-decoration: underline;
}
.post-list__ttl {
  margin: 8px 0 0;
}
.post-list__ttl a {
  max-height: 54px;
  line-height: 1.6;
  font-size: 18px;
  display: block;
  overflow: hidden;
}
.post-list__ttl a:hover {
  color: #0065cc;
}
.post-list__ttl a span {
  line-height: 1.6;
}
.post-list__text {
  height: 64px;
  margin: 8px 0 0;
  overflow: hidden;
}
.post-list__text p {
  line-height: 1.6;
  color: #777;
  font-size: 14px;
}
.post-list__find {
  margin: 0 0 16px;
  padding: 14px 20px;
  color: #fff;
  font-size: 24px;
  background: #00365b;
}
.post-list__find span {
  display: none;
}
.post-list__description {
  margin: 24px 0;
  padding: 0 0 20px;
  border-bottom: 1px dotted #dadee2;
}
.post-list__description p {
  margin: 16px 0 0;
  line-height: 2;
  font-size: 16px;
}
.post-list__description .fc-red {
  color: #ba0000;
}
.post-list__img {
  margin: 0 0 24px;
}
.post-list__img img {
  width: 100% !important;
  height: auto !important;
}
.post-list__img + p {
  font-size: 16px;
}
@media all and (max-width: 768px) {
  .post-list__find {
    margin: -8px 0 20px;
    font-size: 20px;
  }
  .post-list__img {
    margin: 0 0 20px;
  }
  .post-list__img + p {
    font-size: 15px;
  }
  .post-list__description {
    margin: 0 0 24px 0;
    padding: 0 0 16px 0;
  }
  .post-list__description p {
    margin: 14px 0 0;
    font-size: 15px;
  }
  .post-list__description p br {
    display: none;
  }
  .post-list__list {
    min-height: 78px;
    margin: 2px 0 0;
    padding: 10px 0;
  }
  .post-list__thumb {
    width: 112px;
    height: 78px;
    top: 10px;
    left: 10px;
  }
  .post-list__meta {
    height: auto;
    margin: 0 12px 0 134px;
    padding: 2px 0 0;
  }
  .post-list__date {
    height: 12px;
    line-height: 12px;
    padding: 0 6px 0 0;
    font-size: 11px;
    vertical-align: top;
  }
  .post-list__category {
    height: 12px;
    line-height: 12px;
    margin: 0 0 0 6px;
  }
  .post-list__category a {
    margin: 1px 0 0;
    line-height: 11px;
    font-size: 11px;
    display: inline-block;
    vertical-align: top;
  }
  .post-list__ttl {
    height: auto;
    margin: 5px 0 0;
  }
  .post-list__ttl a {
    height: auto;
    line-height: 1.4;
    font-size: 14px;
  }
  .post-list__ttl a span {
    width: 32px;
    height: 16px;
    line-height: 16px;
    margin: 1px 4px 0 0;
    font-size: 10px;
    font-weight: normal;
  }
  .post-list__text {
    height: auto;
    display: none;
  }
}

.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: #0078de;
}
.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: bold !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;
  }
}



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

Job Sample

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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








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

Contact

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

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



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

Sub

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

/*----- … -----*/



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

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: #0078de;
}
.other-page__table a:hover {
  text-decoration: underline;
}
.other-page__text h2 {
  line-height: 1.5;
  margin: 24px 0 0;
  padding: 6px 0;
  font-size: 24px;
  border-bottom: 2px solid #e0e0e0;
}
.other-page__text h2:first-child {
  margin: 0;
}
.other-page__text p {
  margin: 12px 0 0;
  font-size: 16px;
}
@media all and (max-width: 880px) {
  .other-page {
    padding: 12px;
  }
  .other-page__wrapper {
    width: 100%;
    padding: 32px 16px;
  }
  .other-page__ttl {
    font-size: 24px;
    margin: 0 0 24px 0;
  }
  .other-page__table table {
    display: block;
  }
  .other-page__table tbody {
    display: block;
  }
  .other-page__table tr {
    display: block;
  }
  .other-page__table th {
    width: 100%;
    padding: 6px 16px;
    display: block;
    box-sizing: border-box;
  }
  .other-page__table td {
    display: block;
  }
  .other-page__text h2 {
    margin: 20px 0 0;
    font-size: 22px;
  }
  .other-page__text p {
    margin: 10px 0 0;
    font-size: 15px;
  }
}


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

Footer

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

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

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

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

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

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

.g-footer .copyright {
  margin: 4px 0 0;
  text-align: center;
}
.g-footer .copyright small {
  font-size: 12px;
}
.g-footer.sp-nav-open {
  position: fixed;
}
@media all and (max-width: 768px) {
  .g-footer {
    margin: 32px 0 0;
    padding: 20px 0;
    width: 100%;
    min-width: 100%;
  }
}


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

Popup

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


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

Voice

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

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

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

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


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

404

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

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

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

.page-404__find{
  line-height: 1.2;
  color: var(--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 a{
  color: var(--fc-link);
}

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

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

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

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

  .page-404 p{
    font-size: 14px;
  }

}


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

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