@charset "UTF-8";

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

:root{
  --color-black: #292929;

  --color-main-blue: #12ace8;
  --color-main-red: #f95d5e;

  --color-main: #e9393b;

  --color-cat-self: var(--color-main-blue);
  --color-cat-delivery: var(--color-main-red);
  --color-main-black: #171726;

  --fc-default: var(--color-black);
  --fc-gray: #707070;

  --color-border: #dbdddf;
  --color-border-table: #dbdddf;
  --color-border-deshed: #cdcfd3;

  --color-page-bg: #f4f4f4;
  --color-box-bg: #f4f4f4;
}


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

:root{
  --header-height: 120px;

  --contents-width: 1180px;
  --contents-layout-gap: 56px;
  --sub-width: 320px;

  --main-width: calc(var(--contents-width) - var(--contents-layout-gap) - var(--sub-width));

  --post-padding-side: 64px;
  --service-section-padding-side: 48px;

  --fc-default: #222;

  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic", sans-serif;
  --fs-default: 1.6rem;
  --lh-default: 1.8;

  --post-fs-default: 1.6rem;
  --post-lh-default: 2;

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


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

:root{
  --btn-r: 8px;
  --box-r: 8px;

  --text-margin: 28px;
  --box-margin: 36px;
  --box-padding: 16px 20px;

  --color-l-blue: #4ebcf0;
  --color-green: #20b16b;

  --btn-green: #00ab4c;
  --btn-orange: #009542;
  --btn-green-d: #009542;

  --z-sticky: 100;

  --animation-duration: .2s;

  --cta-button-height: 80px;
}


@media all and (max-width: 768px) {
  :root{
    --header-height: 64px;
    --contents-layout-gap: 24px;

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

    --fs-default: 1.5rem;

    --post-fs-default: 1.5rem;
    --post-lh-default: 1.85;

    --text-margin: 26px;
    --box-margin: 28px;
    --box-padding: 12px 14px;

    --cta-button-height: 68px;
  }
}


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

Base Setting

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

html {
  font-size: 10px;
}

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

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

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

a {
  cursor: pointer;
}

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

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

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



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

Header

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

.g-header {
  width: 100%;
  background: #fff;
}

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

.g-header__site-name{
  font-size: 2.5rem;
  font-weight: 700;
}

.g-header__site-name:first-letter{
  color: var(--color-main);
}

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


.g-nav{
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.g-nav ul{
  width: var(--contents-width);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-nav li{
  border-right: 1px solid var(--color-border);
}

.g-nav li:first-child{
  border-left: 1px solid var(--color-border);
}

.g-nav a{
  width: 280px;
  height: 56px;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.g-nav a:before{
  width: 100%;
  height: 4px;
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.g-nav .item--cat-self a:before{
  background: var(--color-cat-self);
}

.g-nav .item--cat-self a:hover{
  color: var(--color-cat-self);
}

.g-nav .item--cat-delivery a:before{
  background: var(--color-cat-delivery);
}

.g-nav .item--cat-delivery a:hover{
  color: var(--color-cat-delivery);
}


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

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

  .g-header__site-name{
    font-size: 2.3rem;
    transform: scale(0.85, 1);
  }


  .g-nav li{
    flex: 1;
  }

  .g-nav a{
    width: 100%;
    font-size: 1.35rem;
  }
}



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

Gloval Navigation

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




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

Layout

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


.contents {
  width: var(--contents-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr var(--sub-width);
  gap: var(--contents-layout-gap);
}

.contents:is(.g-header + *){
  margin-top: 64px;
}

.main__wrapper{
  padding: 48px;
  background: #fff;
  border-radius: 8px;
}

.main__section {
  padding: 48px 56px;
}


@media all and (max-width: 768px) {
  .contents {
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
    grid-template-columns: 1fr;
  }

  .contents:is(.g-header + *){
    margin-top: 24px;
  }

  .main__wrapper{
    padding: 16px 14px;
  }
}



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

Breadly

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

.breadly{
  width: var(--contents-width);
  margin: 20px auto 0;
}

.breadly__inner{
  overflow-x: scroll;
}

.breadly ul{
  width: fit-content;
  height: 72px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadly li{
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

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

.breadly li:not(:first-child):before{
  width: 1px;
  height: 16px;
  margin: 0 10px 0 0;
  background: var(--color-black);
  content: "";
  display: block;
  transform: rotate(15deg);
}

.breadly a{
  color: #888;
}

.breadly a:hover{
  text-decoration: underline;
}

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

  .breadly ul{
    height: 56px;
  }

  .breadly li{
    font-size: 1.2rem;
  }

  .breadly li:not(:first-child){
    margin-left: 8px;
  }

  .breadly li:not(:first-child):before{
    height: 14px;
    margin: 0 8px 0 0;
  }
}



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

Archive

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

.post-list__heading{
  margin: 0 0 24px;
  padding: 20px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  background: var(--color-main);
  border-radius: 5px 5px 0 0;
}

.post-list__item:not(:first-child){
  border-top: 1px dashed #ddd;
}

.post-list__item-inner{
  padding: 20px 10px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  transition: .2s;
  position: relative;
}

.post-list__post-meta{
  padding: 8px 0 0;
}

.post-list__cat-label{
  width: fit-content;
  margin: 0 0 8px;
  height: 18px;
  padding: 0 14px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-list__cat-label.--self{
  background: var(--color-cat-self);
}

.post-list__cat-label.--delivery{
  background: var(--color-cat-delivery);
}

.post-list__thumbnail{
  aspect-ratio: 3 / 2;
  background: #f0f0f0;
  overflow: hidden;
}

.post-list__thumbnail img{
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  transition: var(--animation-duration);
  object-fit: cover;
  object-position: center center;
}

.post-list__thumbnail img:is(.post-list__item-inner:hover *){
  transform: scale(1.08);
}

.post-list__title{
  margin: 0 0 4px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.6;
  transition: var(--animation-duration);
}

.post-list__title:is(.post-list__item-inner:hover *){
  color: var(--link-text-color);
}

.post-list__description p{
  color: #777;
  font-size: 1.3rem;
  line-height: 1.7;
}



@media all and (max-width: 768px) {
  .post-list__heading{
    margin: -13px -11px 8px;
    padding: 12px 14px;
    font-size: 1.6rem;
  }

  .post-list__cat-label{
    height: 16px;
    padding: 0 8px;
    font-size: 1rem;
    border-radius: 8px;
    top: 10px;
    left: 0;
  }

  .post-list__item > a{
    padding: 16px 0;
    grid-template-columns: 112px 1fr;
    gap: 12px;
  }

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

  .post-list__title{
    margin: 6px 0;
    font-size: 1.4rem;
    line-height: 1.55;
  }

  .post-list__description p{
    font-size: 1.15rem;
  }
}



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

Main

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

.thumb {
  margin: 28px 0 36px;
  width: 100%;
}
.thumb img {
  width: 100% !important;
  height: auto !important;
}
@media all and (max-width: 768px) {
  .thumb {
    width: calc(100% + 36px);
    margin: 0 -18px 24px;
  }
}


.page-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.6;
}

.page-title span {
  color: #ee1818;
  line-height: inherit;
}

@media all and (max-width: 768px) {
  .ttl-catch{
    font-size: 24px;
  }
  .page-title {
    font-size: 26px;
  }
  .page-title br {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .ttl-catch{
    font-size: 17px;
  }
  .page-title {
    font-size: 20px;
  }
}


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

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

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

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

.post-title{
  font-size: 2.1rem;
  line-height: 1.6;
}

.post-header .post-header__meta{
  margin: 8px 0 0;
  display: flex;
  justify-content: space-between;
}

.post-header .post-header__meta span{
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.post-header .post-header__meta span:first-child:before{
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  background: url(../img/icon-update.svg) no-repeat;
  background-size: 16px 16px;
  content: "";
  display: block;
}

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

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

@media all and (max-width: 768px) {
  .post-header__image{
    margin: -20px -18px 0;
  }

  .post-title{
    font-size: 1.8rem;
  }

   .post-header .post-header__meta span{
    font-size: 13px;
  }

  .post-header .post-header__meta span:first-child:before{
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
  }

  .post{
    padding: 24px var(--post-padding-side);
  }
}

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

.post-body{
  font-size: var(--post-fs-default);
  line-height: var(--post-lh-default);
}

.post-body p a,
.post-body li a,
.post-body td a,
.post-body dd a{
  color: var(--link-text-color);
}

.post-body p a:hover,
.post-body li a:hover,
.post-body td a:hover,
.post-body dd a:hover {
  color: var(--link-text-color-hv);
}

.post-body > h2 {
  line-height: 1.55;
  margin: 60px 0px 0;
  padding: 18px 18px 18px 24px;
  font-size: 2.2rem;
  background: linear-gradient(135deg, transparent 25%, rgba(38, 53, 138, 0.05 ) 25%, rgba(38, 53, 138, 0.05 ) 50%, transparent 50%, transparent 75%, rgba(38, 53, 138, 0.05 ) 75%, rgba(38, 53, 138, 0.05 ));
  background-size: 4px 4px;
  border: 2px solid #fff;
  outline: 1px solid var(--color-border);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

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

.post-body > h3{
  line-height: 1.6;
  margin: 36px 0 0;
  padding: 10px 0 10px 34px;
  font-size: 1.9rem;
  font-weight: 700;
  border-bottom: 1px dashed var(--color-border-deshed);
  position: relative;
}

.post-body > h3:before{
  width: 24px;
  height: 24px;
  border: 6px solid var(--color-main);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 2px;
}

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

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

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

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


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

.post-body hr{
  margin: 36px 0;
  border-top: 1px dashed var(--color-border-dadhed);
}


@media all and (max-width: 768px) {
  .post-body > h2 {
    margin: 48px -8px 0;
    font-size: 1.7rem;
    padding: 12px 12px 12px 18px;
    border-radius: 4px;
  }

  .post-body > h2:before{
    width: 4px;
    left: 4px;
  }

  .post-body > h3{
    margin: 28px 0 0;
    padding: 7px 0 7px 30px;
    font-size: 1.6rem;
  }

  .post-body > h3:before{
    width: 20px;
    height: 20px;
    border-width: 5.5px;
    top: 9px;
  }

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

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

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



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

 List

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

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

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

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

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

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

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

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


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

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

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



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

 Box

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

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

.box--border-gray{
  border: 3px solid #eee;
  border-radius: 5px;
}



/*------------------------------------------
 Trend Box
------------------------------------------*/

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

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

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

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

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


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

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

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

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

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

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

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


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

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

.box-point .box-point__find{
  height: 36px;
  line-height: 36px;
  margin: 0 0 16px;
  padding: 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: var(--color-main);
  border-radius: 4px 4px 0 0px;
}

.box-point ul li{
  font-size: 0.92rem;
  margin: 4px 0 0;
  padding: 6px 0 6px 36px;
  position: relative;
  background: #fffaee;
}

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


@media all and (max-width: 768px) {
  .box-point{
    margin-left: -4px;
    margin-right: -4px;
  }
  .box-point .box-point__find{
    padding: 0 32px;
    font-size: 16px;
  }
  .box-point ul{
    margin: -16px 0 0;
    padding: 20px 4px 4px;
  }
  .box-point ul li{
    line-height: 1.6;
    margin: 3px 0 0;
    padding: 6px 0 6px 30px;
    font-size: 15px;
  }
  .box-point ul li:before{
    width: 19px;
    height: 19px;
    background-size: 19px 19px;
  }
}



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

 Table

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

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

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

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

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


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

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

}



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

 Number find

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

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

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


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



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

 CTA

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

.cta{
  margin: 48px 0 0;
  padding: 40px;
  background: var(--color-box-bg);
}

.cta__button a{
  width: 100%;
  max-width: 560px;
  height: var(--cta-button-height);
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  background: var(--btn-green);
  border-radius: 5px;
  box-shadow: 0 4px 0 var(--btn-green-d);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
  transition: .2s;
}

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

.cta__button a:hover{
  color: #fff;
  box-shadow: none;
  transform: translateY(4px);
}

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

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

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

.cta .cta__official-link{
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cta .cta__official-link:before{
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  background: var(--color-main);
  border-radius: 3px;
  content: "公式";
  display: flex;
  align-items: center;
}

.cta .cta__official-link a{
  text-decoration: underline;
}



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

  .cta__button a{
    font-size: 1.6rem;
  }

  .cta__button a:after{
    width: 16px;
    right: 12px;
  }

  .cta .cta__official-link{
    margin: 20px 0 0;
    font-size: 1.4rem;
  }

  .cta .cta__official-link:before{
    height: 18px;
    font-size: 1.15rem;
  }
}



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

 Link Btn

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

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

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

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

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

.btn:hover{
  opacity:  0.85;
}

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

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

.btn a{
  height: 88px;
  line-height: 1;
  color: #fff;
  font-size: 20px;
  display: block;
  background: linear-gradient(120deg, rgb(0, 190, 148) 0%, rgb(44, 181, 115) 100%);
  border-bottom: 4px solid #25aa6a;
  border-radius: var(--btn-r);
  box-sizing: border-box;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  font-weight: bold;
  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 a:hover{
  color: #fff;
}

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

.btn-small{
  height:  72px;
}

.btn-small a{
  font-size:  16px;
}

.btn-small span{
  margin-bottom:  5px;
  font-size:  15px;
}


@media all and (max-width: 768px) {
  .btn-micro-copy{
    font-size: 14px !important;
    line-height: 1.5;
  }
  .btn{
    width: calc(100% - 12px);
    margin: 24px auto 0;
  }
  .btn-micro-copy + .btn{
    margin-top: 0;
  }
  .btn + .ta-right{
    margin: 16px 0 0;
  }
  .btn span{
    margin-bottom: 10px;
    font-size: 18px;
  }
  .btn a{
    height: 84px;
    font-size: 19px;
  }
  .btn-small a{
    font-size: 20px;
  }
}

.btn-green a{
  background: #38c1ac;
  box-shadow: 0 4px 0 #2ba996;
}

.btn-orange a{
  background: #fc613d;
  box-shadow: 0 4px 0 #dd5333;
}

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




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

 Ranking table

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

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

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

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

.ranking-title h2 *{
  color: #fff;
  font-weight: bold;
  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 -36px 0;
  overflow-x: scroll;
}

.ranking__inner{
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ranking .review-columun__star{
  width: 128px;
  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: bold;
  background: #f4f4f4;
}

.ranking__find span{
  font-size: 14px;
  font-weight: bold;
  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: bold;
  letter-spacing: -0.05em;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  vertical-align: top;
}

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

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

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

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

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

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

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


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

.ranking .button-columun li a{
  width: 100%;
  height: 52px;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #14a163;
  border: 1px solid #0a9350;
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.ranking .button-columun li .no1-button{
  background: #f97940;
  border: 1px solid #ee7139;
}

.ranking .button-columun li a span{
  width: 100%;
  line-height: 1;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  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: 14px;
}

.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: 100%;

  }

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

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


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

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

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

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

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

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

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

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

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

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

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



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

 Label List

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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


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

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

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

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

.info-table th{
  padding: 1px 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--color-main);
}

.info-table th:not(:first-child){
  border-left: 3px solid #fff;
}

.info-table td{
  padding: 8px;
  line-height: 1.4;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  background: #f0f4f5;
  vertical-align: middle;
}

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

.info-table td:not(:first-child){
  border-left: 3px solid #fff;
}

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

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


@media all and (max-width: 768px) {
  .info-table{
    margin-top: 20px;
  }
  .info-table th{
    height: 22px;
    line-height: 22px;
    padding: 0;
    font-size: 12px;
  }
  .info-table td{
    padding: 8px 4px;
    font-size: 15px;
  }
  .info-table p{
    margin: 4px 0 0;
    font-size: 10px;
  }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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



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

Service Section

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

.service-section-list{
  margin: 56px 0 0;
}

.service-section:not(:first-child){
  margin-top: 48px;
}

.service-section__header{
  margin: 0 calc(var(--service-section-padding-side) * -1);
  padding: 18px var(--service-section-padding-side) 24px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.service-section__header:before{
  width: 5px;
  height: calc(100% - 40px);
  background: var(--color-main);
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 52px;
  transform: translateY(calc(-50% - 3px));
}

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

.service-section .service-section__title{
  margin: 0;
  padding: 0 0 0 28px;
  color: currentColor;
  font-size: 2.2rem;
  line-height: 1.5;
  background: #fff;
}

.service-section .service-section__title a{
  width: fit-content;
  color: var(--link-text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.service-section .service-section__title a:hover{
  text-decoration: underline;
}

.service-section__sub-title{
  font-size: 1.5rem;
  font-weight: 500;
}

.service-section__image{
  margin: 32px 0 0;
}

.service-section__image img{
  border: 1px solid var(--color-border);
}


@media all and (max-width: 768px) {
  .service-section-list{
    margin-top: 36px;
  }

  .service-section__header{
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .service-section__header:before{
    width: 4px;
    height: calc(100% - 28px);
    left: 18px;
    transform: translateY(calc(-50% - 2px));
  }

  .service-section .service-section__title{
    padding: 0 0 0 20px;
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .service-section .service-section__title a:after{
    width: 18px;
    height: 18px;
  }

  .service-section__sub-title{
    font-size: 1.2rem;
  }

  .service-section__image{
    margin: 24px 0 0;
  }
}


@media all and (max-width: 560px) {
  .service-section__image{
    margin: 20px 0 0;
  }

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


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

Comment

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

.comment{
  margin: 32px 0 0;
  padding: 16px 20px 24px; 
  background: #f4f4f4;
  border-radius: 8px;
}

.comment__find{
  margin: 0 0 10px;
  color: var(--color-main);
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment__find:before{
  height: 24px;
  width: 2px;
  margin: 0 12px 0 0;
  background: var(--color-main);
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(-13deg);
}

.comment__find:after{
  height: 24px;
  width: 2px;
  margin: 0 0 0 12px;
  background: var(--color-main);
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(13deg);
}

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

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

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

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

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

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

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

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

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

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

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


@media all and (max-width: 768px){
  .comment{
    margin: 32px 0 0;
    padding: 16px 12px;
  }
  .comment__find{
    margin: 0 0 6px;
    font-size: 17px;
  }
  .comment__find:before{
    height: 18px;
  }
  .comment__find:after{
    height: 18px;
  }
  .comment-list__list{
    padding: 16px 12px 18px;
  }
  .comment-list__list:not(:first-child){
    margin: 12px 0 0;
  }
  .comment-list__icon{
    width: 46px;
    height: 46px;
  }
  .comment .comment-list__meta{
    padding: 4px 0 0;
  }
  .comment .comment-list__meta p{
    font-size: 14px;
  }
  .comment .comment-list__meta .name{
    font-size: 12px;
  }
  .comment-list__text{
    margin: 8px 0 0;
  }
  .comment-list__text p{
    margin:  12px 0 0;
    font-size: 14px;
  }
  .comment .comment__notes{
    font-size: 10px;
  }
}



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

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

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

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

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

.talk__img img {
  width: inherit;
}

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

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

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

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

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

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

.talk__text p {
  line-height: 1.8;
}

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

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

  .talk__img {
    width: 62px;
  }

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

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

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

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

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

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

  .talk__text p{
    line-height: 1.6;
  }

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



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

Modules / Standard-price

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

.standard-price{
  margin-top: 28px;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.standard-price.--column5 .standard-price__inner{
  width: 115%;
}

.standard-price dl{
  border: 1px solid var(--color-border);
}

.standard-price__header{
  display: flex;
}

.standard-price__header a{
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  display: block;
  transition: var(--animation-duration);
}

.standard-price__header a:hover{
  opacity: .75;
}

.standard-price__header .standard-price__item{
  height: 118px;
}

.standard-price__header img{
  width: 100%;
  height: 56px;
  aspect-ratio: 16 / 9;
  max-width: 112px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 4px;
}

.standard-price dt{
  height: 0;
  position: relative;
}

.standard-price dt span{
  width: fit-content;
  height: 20px;
  padding: 0 10px;
  font-size: 1.35rem;
  font-weight: 600;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 50%;
  left: 0;
  z-index: 5;
  transform: translateY(-50%);
}

.standard-price dt:after{
  width: 100%;
  height: 1px;
  background: var(--color-border);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}

.standard-price dt:first-child{
  display: none;
}

.standard-price__items{
  display: flex;
}

.standard-price__item{
  height: 72px;
  font-size: 1.45rem;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.standard-price__item:not(:first-child){
  border-left: 1px solid var(--color-border);
}

.standard-price__item.--button{
  padding: 0 12px;
}

.standard-price__item.--button a{
  width: 100%;
  height: 40px;
  color: var(--fc-default);
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--color-box-bg);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.standard-price__item.--button a:after{
  width: 14px;
  aspect-ratio: 1 / 1;
  background: url(../img/arrow-s-down-gray.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: .2s;
}

.standard-price__item.--button a:hover{
  color: var(--link-text-color);
  text-decoration: underline;
}

.standard-price__item.--button a:hover:after{
  transform: translateY(calc(-50% + 2px));
}


@media all and (max-width: 768px) {
  .standard-price{
    margin-left: -12px;
    margin-right: -12px;
  }

  .standard-price__inner{
    width: 120%;
  }

  .standard-price__header .standard-price__item{
    padding-top: 10px;
    align-items: flex-start; 
  }

  .standard-price__header a{
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .standard-price dt span{
    height: 18px;
    padding: 0 10px 0 8px;
    font-size: 1.25rem;
  }

  .standard-price__item{
    font-size: 1.35rem;
    line-height: 1.6;
  }

  .standard-price__item.--size{
    font-size: 1.3rem;
  }

  .standard-price__item.--button{
    padding: 0 8px;
  }

  .standard-price__item.--button a{
    font-size: 1.25rem;
  }

  .standard-price__item.--button a:after{
    content: none;
  }
}



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

Modules / Card

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

.post-card{
  margin-top: 28px;
  position: relative;
}

.post-card__heading{
  width: fit-content;
  height: 22px;
  padding: 0 12px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  background: var(--color-main);
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.post-card__inner{
  padding: 14px;
  border: 1px solid var(--color-main);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .2s;
}

.post-card__inner:hover{
  background: #eef7ff;
}

.post-card__thumb{
  width: 200px;
}

.post-card__content{
  flex: 1;
}

.post-card__title{
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.6;
  transition: .2s;
}

.post-card__title:is(a:hover *){
  color: var(--link-text-color);
}

.post-card .post-card__excerpt{
  margin: 8px 0 0;
  color: var(--fc-gray);
  font-size: 1.3rem;
  line-height: 1.7;
}


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

  .post-card:has(.post-card__heading){
    margin: 40px 0 0;
  }

  .post-card__heading{
    height: 20px;
    padding: 0 10px;
    font-size: 1.2rem;
    top: -19px;
  }

  .post-card__inner{
    padding: 10px;
    align-items: flex-start;
    gap: 12px;
  }

  .post-card__thumb{
    width: 104px;
  }

  .post-card__title{
    font-size: 1.35rem;
  }

  .post-card  .post-card__excerpt{
    margin: 4px 0 0;
    font-size: 1.15rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}



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

Modules / Text Link

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

.post-body .text-link{
  font-size: 108%;
  font-weight: 600;
  text-decoration: underline;
}

.post-body .text-link:after{
  width: 18px;
  height: 18px;
  margin: 8px 0 0 6px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: top;
}

.post-body .text-link:hoverafter{
  background-image: url(../img/icon-link-hover.svg);
}


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

Modules / Page Navi

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

.wp-pagenavi {
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.wp-pagenavi .current {
  color: #fff;
  font-weight: 600;
  background: var(--color-main);
}

.wp-pagenavi .current,
.wp-pagenavi a{
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi .extend {
  line-height: 36px;
  padding: 0 10px;
  font-size: 13px;
  vertical-align: top;
}

.wp-pagenavi a {
  background: #fff;
  border: 1px solid var(--color-border);
}

.wp-pagenavi a:hover {
  color: var(--color-main);
  font-weight: 600;
  border-color: var(--color-main);
}

@media all and (max-width: 768px) {
  .wp-pagenavi {
    margin: 12px 0 20px;
    padding: 0;
    gap: 5px;
  }

  .wp-pagenavi .extend {
    padding: 0 8px;
  }

  .wp-pagenavi .current,
  .wp-pagenavi a{
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
  }
}



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

Module / Index

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


.post-body #ez-toc-container {
  width: 100%;
  margin: 40px 0 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.post-body #ez-toc-container:before {
  width: calc(100% + 2px);
  height: 4px;
  background: var(--color-main);
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
}

.post-body #ez-toc-container .ez-toc-title {
  color: var(--fc-default) !important;
  font-size: 1.8rem !important;
  font-weight: 700;
}

.post-body .ez-toc-title-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-body #ez-toc-container .ez-toc-list{
  padding: 16px 0 0;
}

.post-body #ez-toc-container .ez-toc-list > li {
  margin: 4px 0 0;
  padding: 0;
}

.post-body #ez-toc-container .ez-toc-list > li:before {
  content: none;
}
.post-body #ez-toc-container .ez-toc-list > li > a {
  padding: 6px 0;
  font-size: 1.5rem;
  display: block;
  border-bottom: 1px dotted var(--color-border-deshed);
}

.post-body #ez-toc-container .ez-toc-list > li:first-child {
  margin: 0;
}

.post-body #ez-toc-container .ez-toc-list-level-3{
  margin: 14px 0 0;
}


.post-body #ez-toc-container .ez-toc-list-level-3 li {
  padding: 2px 0 2px 16px;
  position: relative;
}

.post-body #ez-toc-container .ez-toc-list-level-3 li:not(:first-child){
  margin-top: 4px;
}

.post-body #ez-toc-container .ez-toc-list-level-3 li:before{
  width: 8px;
  height: 1px;
  background: #aaa;
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}

.post-body #ez-toc-container .ez-toc-list-level-3 li a{
  font-size: 1.4rem;
}

.post-body #ez-toc-container .ez-toc-list > li li:before {
  top: 13px;
}




@media all and (max-width: 768px) {
  .post-body #ez-toc-container {
    padding: 20px 14px;
  }

  .post-body #ez-toc-container .ez-toc-title {
    margin: 0 0 0 -4px;
    font-size: 1.65rem !important;
  }

  .post-body #ez-toc-container .ez-toc-list{
    padding: 12px 0 0;
  }

  .post-body #ez-toc-container .ez-toc-list li {
    line-height: 1.6;
  }

  .post-body #ez-toc-container .ez-toc-list li a {
    line-height: 1.6;
    font-size: 1.35rem;
  }

  .post-body #ez-toc-container .ez-toc-list-level-3 li a{
    font-size: 1.25rem;
  }
}



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

Module / Series-list

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

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

.series-list li{
  margin: 0 6px 6px 0;
}

.series-list li a{
  height: 36px;
  padding: 0 12px;
  font-size: 1.6rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-border);
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  transition: var(--animation-duration);
}

.series-list li a:hover{
  color: var(--color-main);
  border-color: var(--color-main);
}


.post-series{
  margin: 64px 0 0;
  padding: 28px 40px;
  background: #f7f7f7;
  border-radius: 6px;
}

.post-series__title{
  margin: 0 0 16px;
  font-size: 1.9rem;
  font-weight: 700;
}

.post-series__title:first-letter{
  color: var(--color-main);
}


@media all and (max-width: 768px) {
  .series-list li a{
    height: 32px;
    font-size: 1.4rem;
  }

  .post-series{
    margin: 44px -8px 0;
    padding: 20px 14px;
  }

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



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

Module / Table

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

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

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

.table--service-info table{
  border: 1px solid var(--color-border-table);
}

.table--service-info th{
  width: 148px;
  padding: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  background: var(--color-box-bg);
  border: 1px solid var(--color-border-table);
}

.table--service-info td{
  padding: 12px;
  font-size: 1.6rem;
  line-height: 1.6;
  border: 1px solid var(--color-border-table);
}

.table--service-info a{
  text-decoration: underline;
  word-break: break-all;
}

.table__official-link:after{
  width: 17px;
  height: 17px;
  margin: 5px 0 0 6px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: top;
}


@media all and (max-width: 768px) {
  .table--service-info th{
    width: 120px;
    padding: 8px 10px;
    font-size: 1.25rem;
  }

  .table--service-info td{
    padding: 8px 10px;
    font-size: 1.45rem;
  }
}



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

Module - Author Info

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

.author-info{
  margin-top: var(--box-margin);
  padding: 24px;
  border: 1px solid #aaa;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}

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

.author-info__header{
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-info .author-info__sub-title{
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 500;
}


.author-info .author-info__title{
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

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

.author-info__body p{
  font-size: 1.35rem;
  line-height: 1.8;
}

.author-info__body p a{
  color: var(--fc-gray);
  text-decoration: underline;
}

.author-info__body p a:hover{
  color: var(--link-text-color);
}


@media all and (max-width: 768px) {
  .author-info{
    padding: 16px;
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .author-info__avatar-image{
    height: 100%;
    display: flex;
    align-items: center;
  }

  .author-info .author-info__sub-title{
    font-size: 1.3rem;
  }

  .author-info .author-info__title{
    font-size: 1.7rem;
  }

  .author-info__body p{
    font-size: 1.2rem;
  }
}



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

Module - Service List

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

.service-list ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-list__item-inner{
  padding: 12px 24px 12px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  transition: var(--animation-duration);
  position: relative;
  overflow: hidden;
}

a.service-list__item-inner:after{
  width: 12px;
  aspect-ratio: 1 / 1;
  background: url(../img/arrow-s-blue.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: var(--animation-duration);
}

a.service-list__item-inner:hover{
  border: 1px solid var(--color-cat-self);
}

a.service-list__item-inner:hover:after{
  transform: translate(3px, -50%);
}

.service-list .service-list__name{
  height: 100%;
  margin: 0;
  color: var(--fc-default);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  transition: var(--animation-duration);
  display: flex;
  align-items: center;
}

.service-list__name:is(a:hover *){
  color: var(--color-cat-self);
}


@media all and (max-width: 768px) {
  .service-list ul{
    gap: 14px;
  }

  .service-list__item-inner{
    padding: 10px 30px 10px 10px;
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .service-list .service-list__name{
    font-size: 1.3rem;
  }
}


@media all and (max-width: 480px) {
  .service-list__item-inner{
    height: 100%;
    padding: 8px;
    grid-template-columns: 1fr;
  }

  a.service-list__item-inner:after{
    width: 10px;
    height: 10px;
    background-image: none;
    border: 5px solid var(--color-cat-self);
    border-top-color: transparent;
    border-left-color: transparent;
    top: initial;
    bottom: 0;
    right: 0;
    transform: translateY(0);
  }

  a.service-list__item-inner:hover:after{
    transform: translate(0);
  }

  .service-list__image img{
    width: 90%;
  }

  .service-list .service-list__name{
    font-size: 1.2rem;
    text-align: center;
    justify-content: center;
  }
}


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

Page - Sitemap

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

.sitemap-page .sitemap-section__heading{
  margin: 0 0 28px;
}

.sitemap-page .sitemap-section:not(:first-child){
  margin-top: 64px;
}

.sitemap-link ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  row-gap: 16px;
}

.sitemap-link li a{
  width: 100%;
  height: 48px;
  padding: 0 0 0 20px;
  color: currentColor;
  font-size: 1.5rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #bbb;
  position: relative;
}

.sitemap-link li a:before{
  width: 6px;
  aspect-ratio: 1 / 1 ;
  background: var(--color-main);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 4px;
}

.sitemap-link li a:hover{
  color: var(--link-text-color);
}


@media all and (max-width: 768px) {
  .sitemap-page .sitemap-section__heading{
    margin: 0 0 16px;
    font-size: 1.8rem;
  }

  .sitemap-link ul{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 10px;
  }

  .sitemap-link li a{
    font-size: 1.4rem;
  }
}



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

Sub

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

.sub-section {
  overflow: hidden;
}

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

.sub-section__title {
  height: 50px;
  padding: 0 16px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--color-main);
  border: 1px solid var(--color-border);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  position: relative;
}

.sub-section__title:is(.--self){
  padding-left: 12px;
  background: var(--color-cat-self);
}

.sub-section__title.--self:before{
  width: 34px;
  height: 34px;
  margin: 0 10px 0 0;
  background-image: url(../img/icon-self.svg);
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  border-radius: 100%;
  content: "";
  display: block;
}

.sub-section__title.--delivery{
  padding-left: 12px;
  background: var(--color-cat-delivery);
}

.sub-section__title.--delivery:before{
  width: 34px;
  height: 34px;
  margin: 0 10px 0 0;
  background-image: url(../img/icon-delivery.svg);
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  border-radius: 100%;
  content: "";
  display: block;
}


.sub-section__title span{
  margin: 0 0 0 4px;
  font-size: 1.5rem;
  font-weight: 500;
}

.sub-box{
  padding: 12px 14px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.sub-section__body{
  padding: 12px 14px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.sub-more-button{
  margin-top: 12px;
}

.sub-more-button > *{
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-more-button > *:hover{
  color: var(--link-text-color);
}



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

 Sub / Category List

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

.sub-cat-list li{
  position: relative;
}

.sub-cat-list li:before{
  width: 6px;
  height: 6px;
  background: var(--color-main);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 5px;
}

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

.sub-cat-list li a{
  padding: 13px 0 13px 20px;
  font-size: 1.5rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.sub-cat-list li a:hover{
  color: var(--link-text-color);
  text-decoration: underline;
}

.sub-cat-list.--self li:before{
  background: var(--color-cat-self);
}

.sub-cat-list.--delivery li:before{
  background: var(--color-cat-delivery);
}



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

 Sub / Post List

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

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

.sub-post-list li a {
  padding: 10px 6px 12px;
  color: currentColor;
  font-size: 1.45rem;
  line-height: 1.7;
  display: block;
}

.sub-post-list li a:hover p{
  color: var(--link-text-color);
  text-decoration: underline;
}

.sub-post-list__time {
  line-height: 1.5;
  color: #777;
  font-size: 1.3rem;
  display: block;
}

.sub-post-list__more-button{
  margin-top: 8px;
}

.sub-post-list__more-button a{
  height: 40px;
  color: #666;
  font-size: 1.45rem;
  background: var(--color-box-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 0 var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
}

.sub-post-list__more-button a:hover{
  box-shadow: none;
  transform: translateY(2px);
}



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

 Sub / Serive List

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

.sub-service-list{
  margin:8px 0 0;
}

.sub-service-list ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.sub-service-list li a{
  padding: 0 0 8px;
  color: currentColor;
  font-size: 1.3rem;
  line-height: 1.5;
  background: #fff;
  border: 0.15rem solid #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: var(--animation-duration);
  overflow: hidden;
}

.sub-service-list li a:hover{
  color: var(--color-main);
  border-color: var(--color-main);
}

.sub-service-list li a:hover img{
  transform: scale(1.08);
}

.sub-service-list li img{
  width: 80%;
  transition: var(--animation-duration);
  position: relative;
  z-index: 1;
}

.sub-service-list p{
  margin-top: -8px;
  position: relative;
  z-index: 5;
}



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

 Sub / Area List

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

.sub-area-list ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sub-area-list li a{
  height: 44px;
  font-size: 1.45rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  border-bottom-width: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

 Sub ---- Mobile

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

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

  .sub-section__title{
    height: 52px;
    font-size: 1.75rem;
  }

  .sub-category li a{
    font-size: 1.45rem;
  }

  .sub-service-list ul{
    grid-template-columns: repeat(3, 1fr);
  }

  .sub-service-list li img{
    width: 70%;
  }

  .sub-service-list li a{
    font-size: 1.2rem;
  }

  .sub-area-list li a{
    font-size: 1.25rem;
  }
}


@media all and (max-width: 480px) {
  .sub-service-list ul{
    grid-template-columns: repeat(2, 1fr);
  }
}



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

 Modules / Prefecture

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

.pref-list__block{
  transition: var(--animation-duration);
}

.pref-list__block.--hidden{
  opacity: 0;
  visibility: hidden;
  display: none;
}

.pref-list__block.--open{
  display: block;
  visibility: visible;
  animation: .3s prefFadeIn .1s forwards;
}

@keyframes prefFadeIn {
  0%{ opacity: 0; }
  100%{
    opacity: 1;
    visibility: visible;
  }
}

.pref-list__block:not(:first-child){
  margin-top: 16px;
}

.pref-list__block-title{
  height: 26px;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-box-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pref-list ul{
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.pref-list a{
  height: 36px;
  color: #555;
  font-size: 1.45rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pref-list__more-button{
  margin-top: 16px;
}

.pref-list__more-button button{
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pref-list__more-button button:hover{
  color: var(--link-text-color);
}

.pref-list__more-button button:after{
  margin: 0 0 0 5px;
  color: #777;
  content: "＋";
}


@media all and (max-width: 768px) {
  .pref-list__block-title{
    font-size: 1.4rem;
  }

  .pref-list a{
    height: 32px;
    font-size: 1.35rem;
  }
}



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

Policy Page

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

.policy-page .post-body{
  font-size: 1.55rem;
  line-height: 1.75;
}

.policy-page .post-body h2{
  margin: 40px 0 0;
  font-size: 1.75rem;
  background: var(--color-page-bg);
  border: none;
}

.policy-page .post-body h2:before{
  content: none;
}

.policy-page .post-body h2 + *{
  margin-top: 20px;
}

.policy-page .post-body ul li{
  padding: 0 0 0 16px;
  position: relative;
}

.policy-page .post-body ul li:before{
  width: 5px;
  aspect-ratio: 1 / 1;
  background: #777;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 2px;
}

.policy-page .post-body ul li:not(:first-child){
  margin-top: 2px;
}

.policy-page .post-body ol{
  counter-reset: olNum;
}

.policy-page .post-body ol li:before{
  counter-increment: olNum;
  content: counter(olNum) '. ';
}

.policy-page .post-body ol li:not(:first-child){
  margin-top: 8px;
}

.policy-page .table-about table{
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.policy-page .table-about th{
  width: 160px;
  padding: 16px 0;
  background: #fafafa;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

.policy-page .table-about td{
  padding: 16px;
  font-size: 1.55rem;
  border-bottom: 1px solid var(--color-border);
}


@media all and (max-width: 768px) {
  .policy-page .post-body{
    font-size: 1.35rem;
  }

  .policy-page .post-body h2{
    padding: 12px;
    font-size: 1.6rem;
  }

  .policy-page .post-body p,
  .policy-page .post-body ul,
  .policy-page .post-body ol{
    margin-top: 20px;
  }

  .policy-page .post-body ul li{
    padding: 0 0 0 14px;
  }

  .policy-page .post-body ul li:before{
    width: 4px;
    top: 9px;
  }

  .policy-page .post-body ol{
    padding: 0;
  }
}



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

Contact Form

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

.contact-form{
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.contact-form__layout-column{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .contact-form__field-group{
  margin-top: 20px;
}

.contact-form__label{
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.contact-form .label-required{
  height: 18px;
  line-height: 18px;
  margin: 0 0 0 8px;
  padding: 0 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  background: #f44849;
  border-radius: 3px;
  display: block;
}

.contact-form .contact-form__field{
  width: 100%;
  height: 56px;
  margin: 4px 0 0;
  padding: 0 6px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.04);
}

.contact-form textarea{
  width: 100%;
  height: 240px;
  margin: 4px 0 0;
  padding: 0 6px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.04);
  display: block;
  resize: vertical;
}

.contact-form__submit-button{
  margin: 28px 0 0;
  display: flex;
  justify-content: center;
}

.contact-form__submit-button input{
  width: 100%;
  max-width: 400px;
  height: 72px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-main);
  border-radius: 36px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}


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

  .contact-form__layout-column{
    display: block;
  }

  .contact-form .contact-form__field-group{
    margin-top: 12px;
  }

  .contact-form__label{
    font-size: 1.45rem;
  }

  .contact-form .contact-form__field{
    height: 48px;
  }

  .contact-form__submit-button{
    margin: 20px 0 0;
  }

  .contact-form__submit-button input{
    height: 64px;
    font-size: 1.55rem;
  }
}


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

Footer

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

.g-footer {
  width: 100%;
  margin: 48px 0 0;
  background: var(--color-black);
}

.g-footer__inner{
  width: var(--content-width);
  margin: 0 auto;
}

.g-footer .copyright {
  padding: 24px 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
} 

.g-footer .copyright small{
  font-size: 100%;
}

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


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

Footer Navigation

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

.f-nav{
  padding: 48px 0;
  border-bottom: 1px solid #666;
}

.f-nav ul{
  width: var(--contents-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.f-nav li a{
  color: #fff;
  font-size: 1.35rem;
}

.f-nav li a:hover{
  text-decoration: underline;
}


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

  .g-footer__inner{
    width: 100%;
  }

  .g-footer .copyright{
    padding: 20px 0;
    font-size: 1.2rem;
  }

  .f-nav{
    padding: 36px 16px;
  }

  .f-nav ul{
    width: 100%;
    gap: 24px;
    column-gap: 24px;
    row-gap: 8px;
  }

  .f-nav li a{
    font-size: 1.25rem;
  }
}


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

Popup

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

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

404

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}