@charset "UTF-8";

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

Base Setting

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


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

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

  --width-main: 600px;

  --post-padding-x: 24px;
  --item-section-padding-x: 24px;
}

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

:root {
  --fc-default: #202020;
  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-default: 1.6rem;
  --fw-default: 400;
  --lh-default: 1.9;
  --ls-default: 0;
  --fw-bold: 600;

  --fs-h2: 1.75rem;
  --fs-h3: 1.6rem;
  --fs-h4: 1.5rem;
}


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

:root {
  /* theme */
  --main-color-l: #dcf6ff;
  --main-color-ll: #fffbf3;
  --main-color-d: #ed556b;

  --color-primary: #fd9493;
  --color-primary-d: #fa7383;
  --color-primary-ll: #ffe4e4;

  --color-accent: #FF5A7E;

  --color-page-bg: #f7f5f3;
  --color-page-bg-d: #eff4f7;

  --border-color: #dfdfdf;
  --color-border: #dfdfdf;
  --bg-color-gray: #f6f7f8;

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

  --color-beige: #faf1ed;


  /* button */

  --btn-green: #00af5f;
  --btn-green-d: #009651;

  --btn-default: #ff8244;
  --btn-default-d: #e7692b;
  
  --btn-orange: #fc7320;
  --btn-orange-d: #f05e11;

  --color-orange: #f7690a;

  --btn-no1: var(--btn-green);
  --btn-no1-d: var(--btn-green-d);
}


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

:root{
  --text-margin: 28px;
  --block-margin: 36px;

  --box-padding: 20px 20px;
  --box-lh: 1.9;
  --box-r: 6px;

  --cta-btn-height: 72px;
  --btn-r: 6px;
  --btn-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}


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

    --width-main: 100%;

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

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

    --text-margin: 20px;
    --block-margin: 26px;
    --box-padding: 12px 14px;
  }
}



@media ( min-width: 768px ) {
:root {
  --fs-h2: 1.95rem;
  --fs-h3: 1.85rem;

  --cta-btn-height: 88px;
}
}


/** body **/

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

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

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

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

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

a {
  cursor: pointer;
}

b, strong, h1, h2, h3, h4, h5 {
  font-weight: var(--fw-bold);
}

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

figure {
  margin: 0;
}

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



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

Header

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

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

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

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

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

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

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

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

  .g-header__inner {
   
  }

  .g-header__site-name img{
    width: 136px;
    margin: -1px 0 0;
  }

  .g-header__month{
    height: 30px;
    margin: 0 0 0 10px;
    padding: 0 7px 0 6px;
    border-radius: 6px;
  }

  .g-header__month p{
    font-size: 1.2rem;
  }
}



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

 layout

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

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

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

.post {
  padding: 48px var(--post-padding-x);
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);
}


@media all and (max-width: 768px) {
  .post {
    margin: 0;
    padding: 0 var(--post-padding-x) 32px;
  }
}





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

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

.ttl-catch{
  line-height: 1.4;
  font-size: 24px;
  font-weight: bold;
}

.page-title {
  line-height: 1.4;
  font-size: 28px;
}

.page-title br {
  line-height: inherit;
}

.page-title a {
  line-height: inherit;
}

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

  .sp-w95{
    width: 95% !important;
  }

  .sp-w90{
    width: 90% !important;
  }

  .sp-w85{
    width: 85% !important;
  }

  .sp-w80{
    width: 80% !important;
  }

  .sp-w75{
    width: 75% !important;
  }

  .sp-w70{
    width: 70% !important;
  }
}

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



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

 Post FV

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

.post-fv {
  margin: 0 calc(var(--post-padding-x) * -1) 0;
  width: calc(100% + (var(--post-padding-x) * 2));
  height: 224px;
  overflow: hidden;
  position: relative;

  --fc-default: #444;
  --color-primary: #FF5A7E;
}

.post-fv__pr {
  width: fit-content;
  height: 20px;
  padding: 0 4px 0 5px;
  color: #666;
  font-size: 1.25rem;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  right: 1px;
  z-index: 100;
  opacity: 0.9;
}

.post-fv__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.post-fv__img::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, transparent 35%,  #fff 56%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.post-fv__img img {
  width: 70%;
  min-height: 100%;
  object-fit: cover;
  object-position: right center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}

.post-fv__box {
  width: calc(56%);
  min-width: 224px;
  height: calc(100% - 40px);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.post-fv__date {
  width: 152px;
  height: 18px;
  font-size: 1.15rem;
  font-weight: 500;
  background: var(--color-primary-ll);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.post-fv__date::after {
  width: 14px;
  height: 6px;
  border-top: 3px solid var(--color-primary-ll);
  border-right: 7px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 7px solid var(--color-primary-ll);
  content: "";
  display: block;
  left: 50%;
  bottom: -6px;
  position: absolute;
  transform: translateX(-50%);
}

.post-fv__keyword {
  width: calc(100% - 32px);
  height: 38px;
  margin-top: 12px;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.post-fv__ttl {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

.post-fv__ttl span {
  padding: 0 1px;
  color: var(--color-primary);
  font-size: 108%;
  background: linear-gradient(to top, var(--color-primary-ll) 0%, var(--color-primary-ll) 40%, transparent 40%, transparent 100%);  
}

.post-fv__label-list {
  margin-top: 14px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3px;
  row-gap: 5px;
}

.post-fv__label-list li {
  height: 18px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
}


@media ( min-width: 480px ) {
  .post-fv {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .post-fv__box {
    height: auto;
    padding: 40px 0;
  }

  .post-fv__keyword {
    height: 44px;
  }

  .post-fv__ttl {
    font-size: 1.7rem;
  }

  .post-fv__label-list {
    padding: 0 32px;
  }

  .post-fv__label-list li {
    font-size: 1.2rem;
  }
}


@media ( min-width: 768px ) {
  .post-fv {
    margin-top: -48px;
  }

  .post-fv__pr {
    height: 24px;
    font-size: 1.5rem;
  }

  .post-fv__box {
    height: calc(100% - 96px);
    padding: 0;
  }

  .post-fv__keyword {
    font-size: 2.3rem;
  }

  .post-fv__ttl {
    font-size: 1.9rem;
  }

  .post-fv__label-list li {
    height: 22px;
    font-size: 1.35rem;
    border-radius: 11px;
  }
}


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

 Post Header

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

.post-header {
  margin-bottom: 24px;
}

.post-mainvisual {
  /* margin: -48px calc(var(--post-padding-x) * -1) 0; 
  padding: 32px 48px;
  background: var(--color-primary);*/
  position: relative;
}

.post-mainvisual::before {
  height: 24px;
  padding: 0 4px;
  color: #777;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #eee;
  content:  none;
  display: flex;
  align-items: center;
  opacity: 0.8;
  position: absolute;
  top: 2px;
  right: 2px;
}

.post-mainvisual img{
  width: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.post-ttl {
  margin: 20px 0 0;
  line-height: 1.65;
  font-size: 1.8rem;
}

.post-ttl::first-letter {
  color: var(--color-primary-d);
  font-size: 110%;
}


.post-meta {
  margin-top: 10px;
  padding: 2px 0;
  border-top: 1px dotted var(--color-border);
  border-bottom: 1px dotted var(--color-border);
}

.post-meta dl {
  color: #666;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-meta dl > div {
  display: flex;
  align-items: center;
}

.post-meta dt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-meta__update-date dt::before {
  width: 18px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-update.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.post-meta__update-date dd {
  display: flex;
  align-items: center;
  gap: 7px;
}

.post-meta__update-date dd::after {
  height: 18px;
  padding: 0 6px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--btn-default);
  border-radius: 3px;
  /*content: "UPDATE!"; */
  display: flex;
  align-items: center;
}

.post-meta__cat::before {
  width: 18px;
  margin-right: 6px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-cat.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

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

  .post-mainvisual::before {
    height: 16px;
    padding: 0 2px;
    font-size: 1.15rem;
    top: 1px;
    right: 1px;
  }

  .post-mainvisual img {

  }

  .post-ttl {
    margin: 10px 0 0;
    font-size: 1.7rem;
  }

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

  .post-meta__update-date dt::before,
  .post-meta__cat::before
  {
    width: 15px;
  }
}


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

 Post Body

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

.post-body > h2 {
  line-height: 1.55;
  margin: 64px 0px 28px;
  padding: 20px 16px 20px 20px;
  font-size: 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);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

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

.post-body > h3{
  line-height:  1.5;
  margin: 40px 0 0;
  padding: 12px 0 12px 32px;
  font-size: var(--fs-h3);
  font-weight: 600;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

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

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

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

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

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

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

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

.post-body .margin-wide {
  margin-top: calc(var(--text-margin) * 1.8);
}

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

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

.post-body .img-style--r {
  border-radius: 5px;
}

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

.post-body .img a {
  display: block;
  text-align: center;
  line-height: 1.7;
  font-size: 110%;
  font-weight: bold;
}



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



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

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

  .post-body .post-ttl h1 {
    font-size: 20px;
  }

  .post-body > h2 {
    margin: 56px 0 24px;
    font-size: var(--fs-h2);
    padding: 12px 12px 12px 18px;
  }

  .post-body > h2:is(.items + *) {
    margin-top: 24px;
  }

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

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



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

 List

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

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

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

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

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

.list-default li:is(.box--bg-blue *)::before {
  background: #9fa8be;
}

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

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

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


.list--arrow {
  padding: 4px 0;
}

.list--arrow li {
  padding: 0 0 0 40px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}

.list--arrow li:not(:first-child) {
  margin-top: 6px;
}

.list--arrow li::before {
  width: 28px;
  height: 28px;
  background-image: url(../img/arrow-list.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid var(--color-border);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}


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

  .list-default li {
    padding-left: 14px;
  }
  
  .list-default li::before {
    top: 9px;
  }
  
  .list-check-small li::before{
    top: 4px;
  }

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



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

 Box

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

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

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

.post-body .box--border-main {
  border: 2px solid var(--color-primary);
}

.post-body .box--bg-primary {
  background: #fff3f3;
}

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

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

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



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

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

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

.box-point .box-point__heading{
  padding: 8px 16px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
  background: var(--color-primary);
  border-radius: 6px 6px 0 0px;
}

.box-point ul li {
  padding: 12px 12px 12px 48px;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
}

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

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


@media all and (max-width: 768px) {
  .box-point .box-point__heading{
    padding: 7px 8px;
    font-size: 1.6rem;
  }

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

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

  .box-point ul li{
    line-height: 1.55;
    padding: 10px 12px 10px 40px;
    font-size: 1.4rem;
  }

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


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

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

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


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

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

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

.season-trend__head {
  position: relative;
}

.season-trend__head div{
  width: 96px;
  height: 68px;
  background: url(../img/illust-advisor.png) no-repeat;
  background-size: 96px 122px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
}

.season-trend__title{
  padding: 12px 96px 12px 0;
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.6;
  text-align: center; 
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

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

.season-trend__body p{
  line-height: 1.7;
}

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

.season-trend .season-trend__catch{
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.7;
}



@media( min-width: 480px ) {
  .season-trend__title {
    padding: 12px 0;
  } 
}



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

 Table

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

/*------------------------------------------
 Table / Default
------------------------------------------*/

.table-default{
  margin-top: var(--block-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;
  }
}


/*------------------------------------------
 Table / Matrix
------------------------------------------*/

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

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

.table-matrix thead th {
  padding: 4px 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.table-matrix tbody th {
  padding: 8px 4px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
  background: var(--color-page-bg);
  border: 1px solid var(--color-border);
}

.table-matrix tbody td {
  padding: 8px 4px;
  font-size: 1.35rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border);
}



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

 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-primary);
  border-radius: 15px;
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
}


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



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

 Link Btn

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


.btn:hover{
  opacity:  0.85;
}

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

.btn a{
  height: var(--cta-btn-height);
  line-height: 1;
  color: #fff;
  font-size: 1.7rem;
  background: var(--btn-default);
  border-radius: calc(var(--cta-btn-height) / 2);
  box-shadow: 0 4px 0 var(--btn-default-d);
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}

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

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

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

.btn--no1 a{
  background: var(--btn-no1);
  background-image: linear-gradient(to bottom, #00c073, var(--btn-no1));
  border-color: var(--btn-no1-d);
}


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

  .btn a{
    font-size: 1.7rem;
  }

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

}

@media ( min-width: 768px ) {
  .btn a {
    font-size: 2rem;
  }
}


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

.btn-animation--puru {
  animation: btnPuru 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}

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


.btn-animation--shiny {
  overflow: hidden;
  position: relative;
}

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

.btn-animation--shiny:is(.btn--no1 *)::before {
  background: #15c474;
}

.btn-animation--shiny:is(.modal-cta *)::before {
  background: #ffc2cf;
}

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



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

 Btn / Micro copy

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

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

.btn-microcopy.--top {
  margin-top: 36px;
  font-size: 108%;
}

.btn:is(.btn-microcopy + *) {
  margin-top: 20px;
}


@media all and (max-width: 768px) {
  .btn-microcopy.--top {
    margin-top: 28px;
    font-size: 1.55rem;
  }
  .btn:is(.btn-microcopy + *) {
    margin-top: 10px;
  }
}



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

 Official Link

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

.official-link {
  margin: 32px 0 0;
}

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

.official-link p::before {
  height: 22px;
  padding: 0 8px;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  background: var(--color-page-bg);
  border-radius: 4px;
  content: "公式";
  display: flex;
  justify-content: center;
  align-items: center;
}

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


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

  .official-link p {
    font-size: 1.5rem;
    justify-content: center;
  }

  .official-link p::before {
    height: 20px;
    font-size: 1.25rem;
  }
}



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

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


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

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

.button-footer-box h4{
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.button-footer-box h4::before{
  width: 40px;
  height: 40px;
  margin: 0 8px 0 0;
  background: url(../img/icon-safety.png) no-repeat;
  background-size: 40px 40px;
  border-radius: 100%;
  overflow: hiddne;
  content: "";
  display: block;
}

.button-footer-box p{
  font-size: 15px;
  line-height: 1.7;
}

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

.button-footer-box dl{
  margin: 8px 0 0 4px;
}

.button-footer-box li{
  padding: 0 0 0 32px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 500;
  position: relative;
}

.button-footer-box dl > div:not(:first-child){
  margin-top: 8px;
}

.button-footer-box dt{
  padding: 0 0 0 32px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.button-footer-box dt::before{
  width: 24px;
  height: 24px;
  background: url(../img/icon-check-safety.svg) no-repeat;
  background-size: 24px 24px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.button-footer-box dd{
  margin: 3px 0 0;
  font-size: 16px;
  line-height: 1.7;
}


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

  .button-footer-box h4{
    font-size: 17px;
    justify-content: center;
  }

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

  .button-footer-box p{
    font-size: 13px;
    line-height: 1.6;
  }

  .button-footer-box p:not(:first-child){
    margin-top: 10px;
  }

  .button-footer-box dl{
    margin: 10px 0 0;
  }

  .button-footer-box dl > div:not(:first-child){
    margin-top: 5px;
  }

  .button-footer-box dt::before{
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

  .button-footer-box dt{
    padding: 0 0 0 30px;
    font-size: 16px;
  }

  .button-footer-box dd{
    margin: 0;
    padding: 0 0 0 30px;
    font-size: 14px;
  }

  .button-footer-box li:not(:first-child){
    margin-top: 2px;
  }
}




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

 Ranking Section

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

.ranking-section {
  margin: 32px calc(var(--post-padding-x) * -1) 0;
  padding: 28px 4px;
  background: var(--color-primary);
  border-radius: 16px 16px 0 0;
}

.ranking-section-ttl {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.ranking-section-ttl__label {
  width: fit-content;
  height: 22px;
  padding: 0 20px;
  color: var(--color-primary-d);
  font-size: 1.4rem;
  font-weight: 600;
  background: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
}



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

 Ranking Table

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


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


/*------------------------------------------
 Ranking Table - Head
------------------------------------------*/

.ranking-table thead th {
  padding: 3px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  background: var(--color-page-bg);
  border-left: 1px solid var(--color-border);
}

.ranking-table thead .column--item {
  width: 116px;
}

.ranking-table thead .column--link {
  width: 56px;
}


/*------------------------------------------
 Ranking Table - Body
------------------------------------------*/

.ranking-table tbody th {
  padding: 0 4px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.ranking-table tbody th:is(tr:first-child *) {
  background: #fffbed;
}


.ranking-table tbody .column--item a {
  height: 80px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ranking-table tbody .column--item span {
  margin: -4px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: underline;
  display: inline-block;
}

.ranking-table__floating-label {
  width: 82%;
  height: 15px;
  line-height: 15px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.08em;
  background: var(--color-primary-d);
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatingLabel 1.8s ease-in-out infinite;
}

.ranking-table__floating-label::after {
  width: 8px;
  height: 8px;
  background: var(--color-primary-d);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

@keyframes floatingLabel {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -3px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}


.ranking-table tbody td {
  height: 88px;
  padding: 0 6px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.ranking-table tbody td:is(tr:first-child *) {
  background: #fffbed;
}

.ranking-table tbody .column--link a {
  width: 100%;
  height: 52px;
  color: #fff;
  font-weight: 600;
  background: var(--btn-default);
  border-bottom: 3px solid var(--btn-default-d);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  overflow: hidden;
  position: relative;
  animation: rankingBtn 3s infinite;
}

.ranking-table tbody .column--link a span {
  position: relative;
  z-index: 20;
}

.ranking-table tbody .column--link a::before{
  width: 30px;
  height: 100%;
  background: #ffbcb7;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  animation: shiny 3s ease-in-out infinite;
  z-index: 1;
}

.ranking-table tbody .seal {
  width: 26px;
  margin: 0 auto 4px;
}


@keyframes rankingBtn {
  0% {
    border-width: 3px;
    transform: translateY(0);
  }
  10% {
    border-width: 3px;
    transform: translateY(0);
  }
  15% {
    border-width: 0;
    transform: translateY(3px);
  }
  20% {
    border-width: 3px;
    transform: translateY(0);
  }
  25% {
    border-width: 0;
    transform: translateY(3px);
  }
  30% {
    border-width: 3px;
    transform: translateY(0);
  }
  100% {
    border-width: 3px;
    transform: translateY(0);
  }
 
}




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

 Compare Table

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

/*------------------------------------------
 Compare Table / Base
------------------------------------------*/

.compare-table {
  margin: 64px -20px 0;
}

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


/*------------------------------------------
 Compare Table / thead
------------------------------------------*/

.compare-table thead th {
  padding: 0 0 16px;
  background: #fff;
  border-left: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.compare-table thead th::before {
  width: 100%;
  margin: 0 0 16px;
  padding: 1px 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  background: #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compare-table thead th a {
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.compare-table thead th p {
  margin-top: 0;
  text-decoration: underline;
}


.compare-table thead th:first-child::before {
  content: "No.1";
  background: #ffc64a;
}

.compare-table thead th:nth-child(2)::before {
  content: "No.2";
  background: #b0b6bf;
}

.compare-table thead th:nth-child(3)::before {
  content: "No.3";
  background: #8e6146;
}


/*------------------------------------------
 Compare Table / tbody
------------------------------------------*/

.compare-table__item-heading {
  padding: 1px 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: #f4f4f4;
  border-left: 1px solid var(--color-border);
}

.compare-table tbody td {
  padding: 10px 8px;
  font-size: 1.55rem;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid var(--color-border);
}

.compare-table tbody td p {
  margin-top: 0;
}


/*------------------------------------------
 Compare Table / Modules
------------------------------------------*/

.compare-table tbody td .seal {
  width: 32px;
  margin: 0 auto 4px;
}

.compare-table .column--rating {
  font-weight: var(--fw-bold);
}

.compare-table .column--rating p {
  font-size: 1.7rem;
}

.compare-table .column--rating img {
  width: 104px;
  margin: 2px auto 4px;
}

.compare-table .column--btn {
  padding: 16px;
}

.compare-table .column--btn a {
  height: 56px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  background: var(--btn-default);
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.compare-table .column--btn a:is(td:first-child *) {
  background: var(--btn-no1);
}

.compare-table .column--btn a::after {
  width: 16px;
  height: 16px;
  background: url(../img/icon-link-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}


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

  .compare-table thead th {
    padding: 0 0 12px;
  }

  .compare-table thead th::before {
    font-size: 1.2rem;
  }

  .compare-table thead th a {
    padding: 0 8px;
    font-size: 1.2rem;
  }


  .compare-table__item-heading {
    padding: 1px 0;
    font-size: 1.2rem;
  }

  .compare-table tbody td {
    font-size: 1.25rem;
  }


  .compare-table tbody td .seal {
    width: 26px;
  }

  .compare-table .column--rating p {
    font-size: 1.35rem;
  }

  .compare-table .column--rating img {
    width: 88px;
  }

  .compare-table .column--btn {
    padding: 12px 6px;
  }

  .compare-table .column--btn a {
    font-size: 1.35rem;
  }

  .compare-table .column--btn a::after {
    width: 14px;
    height: 14px;
  }
}



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

 Pick Up

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

.pickup-box {
  margin-top: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.14);
}

.pickup-box__heading {
  padding: 4px 0;
  color: #fff;
  font-size: var(--fs-h3);
  text-align: center;
  background: var(--color-primary);
  border-radius: 6px 6px 0 0;
}

.pickup-box__inner {
  padding: 18px 10px;
}

.pickup-box__img {
  width: 220px;
  margin: 0 auto;
}

.pickup-box__item-name {
  margin: 8px 0 0;
}

.pickup-box__item-name a {
  font-size: var(--fs-h3);
  font-weight: 600;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

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

.pickup-box__item-name a:hover::after {
  background-image: url(../img/icon-link-hv.svg);
}

.pickup-box__body {
  margin: 12px 0 0;
  padding: 12px 12px 16px;
  border: 1px dotted var(--color-primary-d);
}

.pickup-box__body::before {
  width: fit-content;
  height: 22px;
  margin: -13px 0 12px -13px;
  padding: 0 16px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--color-primary-d);
  content: "POINT!";
  display: flex;
  align-items: center;
}

.pickup-box__body p {
  margin-top: 0;
  font-size: 1.3rem;
  line-height: 1.7;
}

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

.pickup-box__btn {
  max-width: 320px;
  margin: 12px auto 0;
}


.pickup-box__btn a{
  height: 44px;
  color: #fff;
  font-weight: var(--fw-bold);
  line-height: 1;
  background: var(--btn-default);
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  position: relative;
}

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

.pickup-box__btn a::before{
  width: fit-content;
  height: 22px;
  line-height: 22px;
  margin: 0 8px 0 0;
  padding: 0 5px 0 6px;
  color: var(--btn-default-d);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  border-radius: 3px;
  content: "無料";
  display: block;
  background: #fff;
  border-radius: 4px;
}

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


@media ( min-width: 768px ) {
  .pickup-box__body {
    padding: 16px 16px 20px;
  }

  .pickup-box__body::before {
    font-size: 1.7rem;
    margin: -17px 0 20px -17px;
  }

  .pickup-box__body p {
    font-size: 1.5rem;
  }
}


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

 Choice Point

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

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

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

.choice-point__ttl br{
  display: none;
}

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

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

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

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

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

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


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

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

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

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

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

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

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


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

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

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

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

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

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

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



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

 Label List

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

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

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

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

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

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

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

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

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

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





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

 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: bold;
  background: var(--color-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  left: 0;
}

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

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


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

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

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

}



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

 Other Recommend

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

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

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

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

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

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


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

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

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

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



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

 Infomation table

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

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

.item-info-table + p{
  margin: 16px 0 0;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: right;
}

.item-info-table dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
}

.item-info-table__item {
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 120px 1fr;
}

.item-info-table dt {
  padding: 1px 8px;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-align: center;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-info-table dd {
  padding: 10px 8px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}


.item-info-table__list{
  margin-bottom: -5px;
  padding: 6px;
}

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

.item-info-table__list li{
  width: fit-content;
  height: 32px;
  line-height: 32px;
  margin: 0 6px 6px 0 !important;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 500;
  background: var(--bg-color-gray);
  border-radius: 4px;
}

.item-info-table__list .other{
  padding: 0 3px;
  background: none;
  font-size: 15px;
}

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

.item-info-table__icon{
  width: 26px;
  margin: 2px auto 0;
  display: block;
}

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

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

.item-info-table__contact ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-info-table__contact li{
  width: 32px;
}

.item-info-table__contact li:not(:first-child){
  margin-left: 6px;
}

.item-info-table__contact img{
  width: 100%;
  height: auto;
}



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

  .item-info-table + p{
    margin: 10px 0 0;
    font-size: 1.1rem;
  }

  .item-info-table__item {
    grid-template-columns: 58px 1fr;
  }

  .item-info-table dt {
    font-size: 1.2rem;
  }

  .item-info-table dd {
    padding: 10px 4px;
    font-size: 1.25rem;
  }

  .item-info-table__icon{
    width: 24px;
  }

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

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

  .item-info-table__list li{
    height: 26px;
    line-height: 26px;
    margin: 0 5px 5px 0 !important;
    padding: 0 10px;
    font-size: 14px;
  }

  .item-info-table__list .other{
    padding: 0 4px;
    font-size: 13px;
  }

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

  .item-info-table__contact ul{
    max-width: 132px;
    margin: 0 auto;
    padding: 0 12px;
  }

  .item-info-table__contact li{
    width: auto;
    flex: 1;
  }

  .item-info-table__contact li:not(:first-child){
    margin-left: 5px;
  }
}



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

 Item Info

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

.item-info {
  margin-top: 28px;
  --color-dd-bg: var(--color-beige);
}

.item-info dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3px;
  row-gap: 3px;
}

.item-info dt {
  height: 22px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-info dd {
  height: 80px;
  padding: 0 0 2px;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.5;
  background: var(--color-dd-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-info__seal {
  width: 28px;
  margin: 0 auto 3px;
}

.item-info__notes {
  margin-top: 8px;
}

.item-info__notes p {
  font-size: 1.2rem;
}



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

 Normal table

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

.normal-table{
  margin-top: var(--block-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-primary);
  font-size: 14px;
  background: #f2fdf1;
  border: 1px solid #dbf5d5;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
}

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

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

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

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

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

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

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





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

 Item Section

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

.items {
  margin: 40px calc(var(--post-padding-x) * -1) 0;
  padding: 24px;
  background: var(--color-primary-ll);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item-section {
  height: auto;
  padding: 20px var(--item-section-padding-x) 56px;
  position: relative;
  background: #fff;
  transition: opacity .2s;
  opacity: 1;
  visibility: visible;
  z-index: 0;
}

.item-section.--hidden {
  height: 0;
  padding: 0;
  opacity: 0;
  z-index: -10px;
  visibility: hidden;
  overflow: hidden;
}

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


.item-section__site-image{
  margin-top: 32px;
}

.item-section__site-image img{
  width: 340px;
  max-width: 100%;
}

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

.item-more-btn {
  height: 44px;
  margin-bottom: -20px;
  color: var(--fc-gray);
  font-size: 1.3rem;
  font-weight: 500;
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}


@media all and (max-width: 768px) {
  .items {
    padding: 20px 5px;
    gap: 20px;
  }

  .item-section{
    padding: 8px var(--item-section-padding-x) 32px;
  }


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

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

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

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

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



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

 Item Header

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

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

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

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

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

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

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

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

.item-header .item-header__ttl {
  line-height: 1.6;
}

.item-header__ttl a{
  margin: 0;
  font-size: 2.5rem;
  text-decoration: underline;
}

.ranking-ttl a::after{
  width: 22px;
  height: 22px;
  margin: 0 0 0 8px;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 24px 24px;
  content: "";
  display: block;
}

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


/*------------------------------------------
 Item secction / Rating
------------------------------------------*/

.item-header__rating {
  margin-top: 1px;
  display: flex;
  align-items: center;
}

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

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

.item-header__rating img{
  width: 104px;
  margin: 0 0 0 3px;
  display: block;
}



@media all and (max-width: 768px) {
  .item-header {
    margin: 0 calc(var(--item-section-padding-x) * -1);
    padding: 8px var(--item-section-padding-x);
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .item-header:is(.item-section:first-child *) {
    /* top: var(--header-height); */
  }

  .ranking-ttl::after{
    width: calc(100% - (var(--item-section-padding-x) * 2));
    left: var(--item-section-padding-x);
  }

  .item-header__ttl a{
    font-size: 2.1rem;
  }

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

  .item-header__rating {
    margin-top: -4px;
  }

  .item-header__rating::before {
    height: 20px;
    line-height: 20px;
    margin: 1px 6px 0 0;
    padding: 0 8px;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
  }

  .item-header__rating span {
    font-size: 1.9rem;
  }

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



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

 Item Point

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

.item-point {
  margin-top: 24px;
  counter-reset: itemPoint;
}

.item-point__section {
  padding: 18px 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  position: relative;
}

.item-point__section::after {
  width: 48px;
  height: 48px;
  border: 24px solid var(--color-primary);
  border-right-color: transparent;
  border-bottom-color: transparent;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: -1px;
}

.item-point__section::before {
  width: calc(100% + 2px);
  height: 5px;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
}

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

.item-point__heading {
  padding-left: 24px;
  font-size: var(--fs-h3);
}

.item-point__heading::before {
  width: 28px;
  height: 28px;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  counter-increment: itemPoint;
  content: counter(itemPoint);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 4px;
  left: -1px;
}

.item-point__body {
  margin-top: 14px;
}

.item-point__body *:first-child {
  margin-top: 0 !important;
}

.item-point__body p,
.item-point__body li {
  font-size: 1.35rem;
  line-height: 1.75;
}

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

.item-point__body .box,
.item-point__body .img {
  margin: 18px 0;
}





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

 Job List

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

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

}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

 Comment

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


.comment{
  margin: 36px calc(var(--item-section-padding-x) * -1) 0;
  padding: 28px 10px;
  background: var(--color-page-bg);

  --padding-side: 14px;
}

.comment__ttl {
  padding: 10px 10px 10px 48px;
  color: #fff;
  font-size: 1.7rem;
  background: var(--color-primary);
  border-radius: 4px;
  position: relative;
}

.comment__ttl::before {
  width: 28px;
  height: 28px;
  background: url(../img/icon-comment-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.comment__items {
  margin: 20px 0 0;
}


.comment-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.04);
  box-sizing: border-box;
}

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

.comment-item__header {
  padding: 12px var(--padding-side);
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #ddd;
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr;
  gap: 10px;
}

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

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

.comment-item__header h4 {
  line-height: 1.6;
}

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

.comment-item__meta p {
  margin: 8px 0 0;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
}

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

.comment-item__text {
  padding: 20px var(--padding-side);
}

.comment-item__text p{
  margin: 14px 0 0;
  font-size: 1.35rem;
  line-height: 1.7;
}


.comment__more-button{
  margin: 12px 0 0;
}

.comment__more-button span{
  height: 44px;
  background: #fff;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .2s;
}

.comment__more-button span::after{
  margin: 0 0 0 3px;
  color: #aaa;
  font-size: 15px;
  content: "＋";
}

.comment__more-button span:hover{
  color: var(--fc-link);
  opacity: 0.8;
  box-shadow: none;
}

.comment-list--open{
  opacity: 0;
  animation-name: commentFade;
  animation-duration: .15s;
  animation-fill-mode: forwards;
  animation-delay: 0.05s;
}

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



/*------------------------------------------
 
 Company list

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

.company-list {
  margin-top: var(--block-margin);
  padding: var(--box-padding);
  border: 3px solid var(--color-primary);
  border-radius: 6px;
}

.company-list__heading {
  color: var(--color-primary);
  font-size: 1.9rem;
}

.company-list__heading::after {
  margin-top: 8px;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  content: "";
  display: block;
}

.company-list ul {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  row-gap: 0px;
}

.company-list li {
  margin: 0;
  padding: 0 0 0 10px;
  font-weight: 500;
  position: relative;
}

.company-list li::before {
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
}

.company-list li:last-child {
  padding: 0;
}

.company-list li:last-child::before {
  content: none;
}

.company-list p {
  margin-top: 12px;
  line-height: 1.6;
}


@media all and (max-width: 768px){
  .company-list__heading {
    font-size: 1.75rem;
  }

  .company-list__heading::after {
    margin-top: 4px;
  }

  .company-list ul {
    margin-top: 12px;
  }

  .company-list li {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .company-list li::before {
    top: 9px;
  }

  .company-list p {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}



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

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

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

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

.talk + p{
  margin-top: var(--block-margin) !important;
}

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

.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 + .talk {
    margin: 20px 0 0;
  }
}



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

 Area Link

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

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

.area-link__ttl {
  padding: 12px 0;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.6;
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.area-link__region-heading {
  padding: 2px 0;
  color: #fff;
  font-size: var(--fs-h4);
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

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

.area-link__pref-list a{
  padding: 4px 0;
  font-size: 1.3rem;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}


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

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

  .area-link__ttl {
    margin: 0 -12px;
    padding: 8px 0;
    font-size: 1.7rem;
  }

  .area-link .area-link__guide-text {
    font-size: 1.2rem;
  }

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

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

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



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

FAQ

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

.faq {
  margin-top: 56px;
}

.faq__ttl {
  margin: 0 calc(var(--post-padding-x) * -1);
  padding: 8px 16px;
  color: #fff;
  font-size: var(--fs-h2);
  text-align: center;
  line-height: 1.6;
  background: var(--color-primary);
  position: relative;
}

.faq__items {
  margin-top: 24px;
}

.faq-item {
  border-radius: 6px;
  overflow: hidden;
  transition: .2s;
  cursor: pointer;
}

.faq-item + .faq-item {
  margin-top: 24px;
}

.faq-item__heading {
  padding: 10px 12px 10px 42px;
  font-size: 1.5rem;
  line-height: 1.5;
  background: var(--color-page-bg);
  border-radius: 5px;
  position: relative;
}

.faq-item__heading::before {
  width: 24px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-faq-q.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.faq-item__heading:is(.--open *)::after {
  transform: translateY(-50%) rotate(-90deg);
}

.faq-item__body {
  margin-top: 16px;
}

.faq-item__body p {
  font-size: 1.4rem;
}



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

Index

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

.post-index {
  margin-top: 48px;
  border-radius: 6px;
}

.post-index__heading {
  padding: 5px 16px;
  font-size: var(--fs-h4);
  font-weight: 600;
  background: #f2f2f2;
  border-radius: 6px 6px 0 0;
}

.post-index ul {
  margin-top: 0;
  padding: 16px 20px;
  border: 2px solid #f2f2f2;
  border-radius: 0 0 6px 6px;
}

.post-index ul li {
  padding: 0 0 0 18px;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
}

.post-index ul li::before {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

.post-index ul li:not(:first-child) {
  margin-top: 6px;
}

.post-index a {
  text-decoration: underline;
}


@media all and (max-width: 768px) {
  .post-index {
    margin-top: 32px;
  }

  .post-index ul {
    padding: 14px;
  }

  .post-index ul li {
    font-size: 1.45rem;
  }

  .post-index ul li::before {
    top: 8px;
  }
}



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

Modules / Search Figure

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

.search-figure {
  margin: 24px 0;
}

.search-figure__inner {
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--color-page-bg);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-figure__txt-area {
  height: 48px;
  color: #555;
  font-size: 1.65rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 4px;
  position: relative;
}

.search-figure__txt-area::after {
  width: 64px;
  height: 64px;
  background-image: url(../img/icon-batsu.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  animation: batsuBlink 1.6s steps(1, end) infinite;
}

@keyframes batsuBlink {
  0%   { opacity: 0.6; }
  50%  { opacity: 0; }
  100% { opacity: 0.6; }
}

.search-figure__btn {
  width: 60px;
  height: 48px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #333;
  border-radius: 0 4px 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media ( min-width: 480px ) {
  .search-figure__inner {
    width: 360px;
  }
}


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

Modules / Private Job Guide

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

.private-job-guide {
  margin: 24px 0 0;
}

.private-job-guide:is(.tips *) {
  margin: 16px 0;
}

.private-job-guide .private-job-guide__heading {
  padding: 4px 0;
  color: #fff;
  font-size: var(--fs-h3);
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.private-job-guide .private-job-guide__heading:is(.tips *) {
  padding: 3px 0;
  font-size: var(--fs-h4);
}

.private-job-guide__heading span {
  height: 18px;
  padding: 0 4px;
  color: var(--color-primary-d);
  font-size: 1.2rem;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.private-job-guide__items {
  margin-top: 12px !important;
  counter-reset: privateJob;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.private-job-guide__items li {
  min-height: 104px;
  padding: 9px 0 12px;
  border: 2px dotted var(--color-primary);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.private-job-guide__items li span {
  height: 18px;
  padding: 0 5px 0 6px;
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  background: var(--color-accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
  transform: scale(0.95);
}

.private-job-guide__items li span::after {
  font-size: 120%;
  counter-increment: privateJob;
  content: counter(privateJob);
  display: block;
}

.private-job-guide__items li p {
  margin-top: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.private-job-guide__items li p:is(.tips *) {
  margin-top: 6px;
  font-size: 1.3rem;
}



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

Modules / Job Openings

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

.job-openings {
  max-width: 400px;
  margin: 16px auto;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.job-openings:is(.pickup-box *) {
  margin: 14px auto;
}

.job-openings__open {
  width: 50%;
  padding: 8px 0;
  border: 2px solid #e8e8e8;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-openings__open dt {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.job-openings__open dd {
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

.job-openings__closed {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.job-openings__closed p {
  line-height: 1.5;
}

.job-openings__closed p span {
  margin-bottom: 2px;
  display: inline-block;
}

.job-openings__closed::before {
  width: 24px;
  color: #888;
  font-size: 1.75rem;
  font-weight: 600;
  content: "＋";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
}

.job-openings__closed::after {
  width: 100%;
  height: calc(100% - 12px);
  background: #ffecec;
  border-radius: 5px;
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 6px;
  left: 0;
}



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

Modules / Item List Slide

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

.item-list-slide {
  margin: 0 calc(var(--post-padding-x) * -1);
  padding: 8px 0;
  background: var(--color-primary-ll);
  overflow: hidden;
}

.item-list-slide__inner {
  width: 100vw;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

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

.item-list-slide li {
  width: calc(100vw / 4);
  background: #fff;
}

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

@media ( min-width: 768px ) {
  .item-list-slide li {
    width: 160px;
  }
}



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

Modules / Salary table

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

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

.salary-table dl {
  border: 1px solid var(--color-border);
}

.salary-table__item {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.salary-table dt {
  padding: 14px 12px;
  font-size: 1.55rem;
  font-weight: var(--fw-bold);
  text-align: center;
  background: var(--color-page-bg);
}

.salary-table dd {
  padding: 14px 12px;
}


@media all and (max-width: 768px) {
  .salary-table__item {
    grid-template-columns: 96px 1fr;
  }

  .salary-table dt {
    padding: 12px 8px;
    font-size: 1.3rem;
  }

  .salary-table dd {
    padding: 12px;
    font-size: 1.4rem;
  }
}



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

Modules / Recommend for

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

.job-cta {
  margin: 28px 0;
  padding: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  position: relative;

  --color-primary: #FF5A7E;
}

.job-cta:is(.post-fv + *) {
  margin: 20px 0 0;
} 

.job-cta::before {
  width: fit-content;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--color-primary);
  content: "新着";
  display: flex;
  align-items: center;
  position: absolute;
  top: 4px;
  left: 0;
}

.job-cta__content {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
}

.job-cta__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.job-cta__label li {
  height: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.job-cta__label .--private {
  padding: 0 6px;
  color: #66615C;
  font-size: 1.15rem;
  font-weight: 500;
  background: #FFF9E7;
  border-radius: 3px;
  gap: 3px;
}

.job-cta__label .--private::before {
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-private.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.job-cta__salary {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-cta__salary dt {
  font-size: 1.2rem;
  font-weight: 600;
}

.job-cta__salary dd {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 1px;
}

.job-cta__salary dd span {
  font-size: 80%;
  margin: 1px 0 0;
}

.job-cta .job-cta__features-list {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.job-cta__features-list li {
  height: 22px;
  padding: 0 4px;
  color: var(--color-primary-d);
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-primary-d);
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.job-cta__cta {
  margin: 12px -4px -4px;
  padding: 6px 12px 12px;
  background: #ffefef;
  border-radius: 0 0 3px 3px;
}

.job-cta__micro-copy {
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
  display: block;
}

.job-cta__cta a {
  height: 60px;
  margin-top: 3px;
  color: #fff;
  font-weight: 1.5rem;
  font-weight: 600;
  line-height: 1;
  background: var(--btn-default);
  border-bottom: 3px solid var(--btn-default-d);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}

.job-cta__cta a::after {
  width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-link-white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 10;
  transform: translateY(-50%);
}

.job-cta__cta a:hover {
  color: #fff;
}

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

.job-cta__cta a span:last-child {
  font-size: 95%;
}



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

 Modules / Modal CTA

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

.modal-cta {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}

.modal-cta.is-visible {
  z-index: 11111;
  opacity: 1;
  visibility: visible;
}


.modal-cta__filter {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
  z-index: 10;
}

.modal-cta__box {
  width: calc(100vw - 40px);
  max-width: 480px;
  max-height: calc(100svh - 40px);
  padding: 28px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  transition: opacity .3s, transform .4s;
  transition-delay: .1s;
  transform: translateY(10px);
  opacity: 0;
}

.modal-cta__box:is(.is-visible *) {
  transform: translateY(0);
  opacity: 1;
}

.modal-cta__close-icon {
  width: 28px;
  aspect-ratio: 1 / 1;
  background-color: #333;
  background-image: url(../img/icon-close.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center center;
  border-radius: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
}

.modal-cta__img {
  width: 180px;
}

.modal-cta__img img {
  transform: rotate(5deg);
  animation: modalImg 1.2s steps(1, end) infinite;
}

@keyframes modalImg {
  0%   { transform: rotate(5deg); }
  50%  { transform: rotate(0); }
  100% { transform: rotate(5deg); }
}

.modal-cta .modal-cta__ttl {
  margin-top: 18px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.modal-cta .modal-cta__ttl b {
  font-weight: 700;
}

.modal-cta .modal-cta__sub-txt {
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.7;
}

.modal-cta__btn {
  width: 100%;
  margin: 12px 0 0;
  padding: 0 12px;
  position: relative;
}

.modal-cta__btn::before {
  width: fit-content;
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  background: #ff902d;
  border-radius: 10px;
  content: "NEW";
  display: block;
  position: absolute;
  top: -4px;
  left: 8px;
  z-index: 100;
}

.modal-cta__btn a {
  width: 100%;
  height: 64px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--color-accent);
  outline: 3px solid #fff;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  position: relative;
}

.modal-cta__btn a::after {
  width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-link-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.modal-cta__btn a:hover {
  color: #fff;
  opacity: .8;
}

.modal-cta__micro-copy--bottom {
  margin-top: 12px;
}

.modal-cta__micro-copy--bottom p {
  font-size: 1.25rem;
  text-align: center;
}

.modal-cta__close-txt {
  margin-top: 12px;
}

.modal-cta__close-txt button {
  color: var(--fc-gray);
  font-weight: 500;
  text-decoration: underline;
  background: none;
}



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

Modules / Recommend for

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

.recommend-for {
  margin-top: 48px;
  background: #fff;
  position: relative;
}

.recommend-for::after {
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 6px;
  left: 6px;
}



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

 Tips

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

.tips {
  margin: 32px -4px 0;
  padding: 16px 14px 20px;
  background-image: repeating-linear-gradient(to bottom, #f5f5f5, #f5f5f5 1px, transparent 0, transparent 22px), repeating-linear-gradient(to right,#f5f5f5, #f5f5f5 1px, transparent 0, transparent 22px);
  background-position: -1px -1px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  counter-reset: tipsSection;
  position: relative;
}

.tips::before {
  width: fit-content;
  height: 20px;
  padding: 0 6px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--color-primary-d);
  content: "CHECK!";
  position: absolute;
  top: -8px;
  left: -8px;
  transform: rotate(-10deg);
  display: flex;
  align-items: center;
}

.tips__ttl {
  margin: -24px 0 -14px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tips__ttl b {
  color: var(--color-primary-d);
  font-weight: 700;
}

.tips__ttl::after {
  width: 72px;
  height: 106px;
  background-image: url(../img/tips-ttl.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: relative;
  right: 0;
}


.tips-section {
  
}

.tips-section + .tips-section {
  margin-top: 16px;
}


.tips-section__ttl {
  height: 44px;
  padding: 0 0 0 44px;
  font-size: var(--fs-h4);
  background: var(--color-primary-ll);
  border-radius: 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
}

.tips-section__ttl::before {
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.8rem;
  background: var(--color-primary);
  border-radius: 100%;
  counter-increment: tipsSection;
  content: counter(tipsSection);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.tips-section__body {
  margin-top: -22px;
  padding: 34px 14px 16px;
  background: #fff;
  border: 3px solid var(--color-page-bg);
  border-radius: 0 0 5px 5px;
  position: relative;
}

.tips-section__body p {
  font-size: 1.35rem;
  line-height: 1.7;
}

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



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

Job Sample

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

.job-sample {
  margin: 28px calc(var(--post-padding-x) * -1) 0;
  padding: 28px 0 28px 16px;
  background: var(--color-page-bg);
}

.job-sample__inner {
  width: calc(100vw - 16px);
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.job-sample__items {
  width: fit-content;
  padding: 0 16px 0 0;
  display: flex;
  gap: 16px;
}

.job-sample-item {
  width: 248px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.job-sample-item__info {
  margin-top: 12px;
  padding: 0 12px;
}

.job-sample-item__info > div {
  padding: 6px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px;
}

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

.job-sample-item__info dt {
  color: var(--fc-gray);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.job-sample-item__info dd {
  font-size: 1.3rem;
  font-weight: 500;
}

.job-sample-item .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.job-sample-item .features-list li {
  height: 16px;
  padding: 0 4px;
  color: var(--color-primary-d);
  font-size: 1.15rem;
  background: var(--color-primary-ll);
  display: flex;
  align-items: center;
}

.job-sample-item__btn {
  margin-top: 8px;
  padding: 0 12px;
}

.job-sample-item__btn a {
  width: 100%;
  height: 64px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  background: var(--btn-default);
  border-bottom: 3px solid var(--btn-default-d);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: relative;
}

.job-sample-item__btn a span:last-child {
  font-size: 90%;
}


.job-sample-item__btn a::after {
  width: 16px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-link-white.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.job-sample-item__logo {
  width: 40%;
  margin: 4px auto 8px;
}


@media ( min-width: 768px ) {
  .job-sample__inner {
    width: calc(100% - 16px);
  }
}



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

 Modules / Notes Box

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

.notes-box--private-job {
  margin: calc(var(--block-margin) + 10px) 0 var(--block-margin);
  padding: 0 12px 12px;
  background-image: url(../img/notes-img.jpg);
  background-size: 147px 125px;
  background-repeat: no-repeat;
  background-position: right bottom;
  border: 2px solid #fff;
  outline: 1px dashed #bbb;
  border-radius: 5px;
}

.notes-box--private-job__ttl {
  width: fit-content;
  height: 20px;
  margin: -18px auto 0 !important;
  padding: 0 5px;
  font-size: 1.6rem;
  font-weight: 600;
  background: #fff;
  position: relative;
  z-index: 1;
}

.notes-box--private-job__body {
  margin-top: 14px;
  padding-right: 88px;
}

.notes-box--private-job__body p {
  font-size: 1.4rem;
  line-height: 1.75;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}



@media ( min-width: 480px ) {
  .notes-box--private-job {
    background-size: auto 98%;
  }
}



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

 Modules / Compare

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

.service-compare {
  margin-top: var(--block-margin);
  display: grid;
  grid-template-columns: 43% 1fr;
  align-items: center;
}

.service-compare__bad {
  margin: 12px 0;
  background: var(--color-page-bg);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 5px 0 0 5px;
}

.service-compare__bad li {
  padding: 8px 12px;
  color: #555;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

.service-compare__bad li::after {
  width: 36px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-compare-bad.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.25;
}

.service-compare__bad li:not(:first-child) {
  border-top: 1px dotted #ccc;
}

.service-compare__good {
  height: 100%;
  font-size: 1.45;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid var(--color-primary-d);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-compare__good b {
  color: var(--color-accent);
}



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

 Modules / Info Box

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

.info-box {
  --color-accent: #fb8c3a;
  margin-top: 48px;
  border: 2px solid var(--color-accent);
  border-radius: 0 var(--box-r) var(--box-r) var(--box-r);
  position: relative;
}

.info-box__heading {
  height: 26px;
  padding: 0 12px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--color-accent);
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: -28px;
  left: -2px;
}

.info-box__heading::before {
  width: 17px;
  height: 17px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.info-box p {
  margin: 0;
  padding: 16px;
  line-height: 1.75;
}

.info-box ul {
  margin: 0;
  padding: 16px;
}

.info-box li {
  padding: 0 0 0 16px;
  font-size: 1.55rem;
  font-weight: 500;
  position: relative;
}

.info-box li::before {
  width: 6px;
  aspect-ratio: 1 / 1;
  background: var(--color-accent);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 2px;
}



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

Post / Footer banner

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


.post-f-cta {
  margin-top: 24px;
}

.post-f-cta .post-f-cta__catch{
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.post-f-cta__catch b{
  color: var(--fc-pink);
}

.post-f-cta__image {
  margin: 20px auto 0;
  text-align: center;
}

.post-f-cta__image img{
  width: 300px;
  border: 2px solid var(--color-primary-ll);
}


.post-footer-banner .post-footer-banner__official-link a{
  font-weight: 600;
  text-decoration: underline;
}


@media all and (max-width: 768px) {
  .post-f-cta .post-f-cta__catch{
    font-size: 1.6rem;
  }

  .post-f-cta__image{
    margin: 16px 0 0;
  }

  .post-f-cta__image img{
    width: 80%;
  }
}




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

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: bold;
}
.other-page__table table {
  width: 100%;
  border: 2px solid #e0e0e0;
}
.other-page__table th {
  width: 260px;
  padding: 12px 16px;
  font-size: 17px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}
.other-page__table td {
  padding: 12px 16px;
  font-size: 17px;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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


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



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

 Footer Fixed Button

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

.f-fixed-cta {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.98);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;

  --color-primary: #FF5A7E;
}

.f-fixed-cta.is-visible {
  z-index: 5000;
  opacity: 1;
  transform: translateY(0);
}

.f-fixed-cta__inner {
  width: 100%;
  max-width: var(--width-main);
  height: 100%;
  margin: 0 auto;
  padding: 0 12px 0 0;
  position: relative;
}

.f-fixed-cta__close {
  width: 30px;
  height: 30px;
  background-color: #999;
  background-image: url(../img/icon-close.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  position: absolute;
  top: -34px;
  right: 4px;
}

.f-fixed-cta__inner::before {
  width: 66px;
  height: 105px;
  background-image: url(../img/f-fixed-cta-img.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 12px;
  z-index: 10;
}

.f-fixed-cta__body {
  padding: 6px 0 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.f-fixed-cta__micro-copy {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.f-fixed-cta__micro-copy::before {
  width: 2px;
  height: 15px;
  background: var(--color-primary);
  content: "";
  display: block;
  transform: rotate(-15deg);
}

.f-fixed-cta__micro-copy::after {
  width: 2px;
  height: 15px;
  background: var(--color-primary);
  content: "";
  display: block;
  transform: rotate(15deg);
}

.f-fixed-cta__btn {
  width: 100%;
}

.f-fixed-cta__btn a {
  width: 100%;
  height: 64px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(to bottom, #ff809c, var(--color-primary));
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: .2s;
}

.f-fixed-cta__btn a:hover {
  color: #fff;
  opacity: .8;
}

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

.f-fixed-cta__btn-txt {
  display: flex;
  align-items: center;
}

.f-fixed-cta__btn-txt .free-label {
  height: 18px;
  margin: 0 6px 0 0;
  padding: 0 4px;
  color: var(--color-primary);
  font-size: 1.2rem;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.f-fixed-cta__btn-txt .keyword {
  font-size: 1.6rem;
}

.f-fixed-cta__btn-guide {
  font-size: 88%;
}



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

Footer

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

.g-footer {
  width: var(--width-main);
  margin: 0 auto;
  padding: 20px 0 26px;
}

.g-footer:is(.f-fixed-cta + *) {
  padding-bottom: 112px;
}

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

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


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

404

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

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

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

.page-404__find{
  line-height: 1.2;
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 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);
}

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

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

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

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

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

}



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

 Post Display

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

.post-ttl-d {
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 2.05rem;
  line-height: 1.6;
  text-align: center;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

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

.post--display .post-body > h2 {
  padding: 18px 12px 18px 14px;
  font-size: 1.95rem;
}

.post--display .notes-point-item h4 {
  margin-top: 40px;
  padding: 12px 0 12px 26px;
  font-size: 1.7rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px dotted #ccc;
  position: relative;
}

.post--display .notes-point-item h4::before {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.post--display .post-body p {
  font-size: 1.6rem;
}

.post--display .post-body li {
  font-size: 1.6rem;
}



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

 Box

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

.post--display .post-body .box-caption {
  margin: 4px 0;
  font-size: 107%;
  font-weight: 700;
  display: flex;
}

.post--display .box-caption::before {
  width: 92px;
  height: 35px;
  background-image: url(../img/check-label.png);
  background-size: 92px 35px;
  content: "";
  display: block;
  transform: translate(-8px, 1px);
}

.post--display .box-caption + p {
  margin-top: 4px;
  font-size: 1.55rem;
  line-height: 1.7;
}

.post--display .list-num {
  counter-reset: listNum;
}

.post--display .list-num li {
  font-size: 1.75rem;
  font-weight: 600;
  padding-left: 32px;
  position: relative;
}

.post--display .list-num li::before {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 100%;
  counter-increment: listNum;
  content: counter(listNum);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}



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

 Service Point

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

.post--display .service-point-item:not(:first-child) {
  margin-top: 44px;
}

.post--display .service-point-item h3 {
  margin: 0 0 24px;
  padding: 0 0 10px;
  font-size: 1.9rem;
  border-bottom: 1px dashed #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post--display .service-point-item h3 + * {
  margin-top: 0;
}

.post--display .service-point-item h3 span:first-child {
  width: 30px;
  height: 30px;
  padding: 0 0 1px;
  color: #fff;
  font-size: 1.55rem;
  background: var(--color-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

 Item Point

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

.item-point--d {
  counter-reset: itemPoint;
}

.item-point-section--d {
  margin-top: 48px;
}

.item-point-section--d h4 {
  padding: 14px 14px 14px 22px;
  font-size: 1.75rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.item-point-section--d h4::before {
  margin: 0 0 3px;
  color: var(--color-accent);
  font-size: 1.55rem;
  counter-increment: itemPoint;
  content: "✅️ 評価ポイント" counter(itemPoint);
  display: block;
}

.item-point-section--d h4::after {
  height: calc(100% - 16px);
  width: 5px;
  background: var(--color-primary);
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
}


.post--display .item-info {
  margin-top: 28px;
}

.post--display .item-info dl {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--box-r);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
}

.post--display .item-info dt {
  color: #fff;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  text-align: center;
  background: transparent;
}

.post--display .item-info dd {
  height: 72px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.post--display .item-info dd::before {
  width: 30px;
  height: 30px;
  margin: 0 auto 3px;
  background-size: 100%;
  display: block;
}


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

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

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


.comment-item.is-disabled {
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -10;
  overflow: hidden;
}

.post--display .comment-item__body {
  padding: 16px;
}

.post--display .comment-item__body p {
  font-size: 1.4rem;
}

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

.post--display .comment__more-btn {
  margin: 16px 0 0;
}

.post--display .comment__more-btn button {
  width: 100%;
  height: 26px;
  margin: 0 auto;
  color: #707070;
  font-size: 1.3rem;
  font-weight: 600;
  background: #fff;
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post--display .comment .comment__quote-txt {
  color: #777;
  font-size: 1.15rem;
  text-align: right;
}


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

 Item / Heading

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

.item-inner-section-heading {
  padding: 10px 16px 10px 20px;
  font-size: 1.6rem;
  background: linear-gradient(to bottom, #fff, #f4f4f4);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.item-inner-section-heading::before {
  width: 4px;
  height: calc(100% - 12px);
  background: var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
}


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

 Item / Info Base

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

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

.item-info-base table {
  width: calc(100% + 16px);
  margin: 20px -8px 0;
  table-layout: fixed;
  border: 1px solid var(--color-border);
}

.item-info-base th {
  width: 84px;
  padding: 4px 8px;
  font-size: 1.2rem;
  font-weight: 600;
  background: #f3f3f3;
  border-bottom: 1px solid var(--color-border);
}

.item-info-base td {
  padding: 4px 8px;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--color-border);
}

.item-info-base td a{
  font-weight: 600;
  text-decoration: underline;
}

.item-info-base-list {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 2px;
}

.post--display .item-info-base-list li {
  font-size: 1.2rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-info-base-list li:not(:first-child)::before {
  content: "/";
  display: block;
}

.item-info-base-list li:has(.item-info-base-list__more)::before {
  content: none;
}

.post--display .item-info-base-list .is-disabled {
  display: none;
}

.item-info-base-list__more {
  color: var(--fc-link);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: underline;
}



.post--display .item {
  margin: 32px -12px 0;
  padding: 20px var(--item-section-padding-x) 20px;
  border: 2px solid var(--color-page-bg);
  border-radius: 10px;
}

.post--display .item-header {
  padding: 8px var(--item-section-padding-x);
  display: block;
}

.post--display .item-ttl {
  font-size: 2.1rem;
}

.post--display .item-ttl a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

:root {
  --rating5: #f9522e;
}

.post--display .item-rating {
  width: fit-content;
  height: 26px;
  margin: 2px 0 0;
  padding: 0 8px 0 0;
  display: flex;
  gap: 3px;
  align-items: center;
}

.post--display .item-rating::before {
  height: 100%;
  margin-right: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  content: "おすすめ度";
  display: flex;
  align-items: center;
}

.post--display .item-rating span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.post--display .item-rating img {
  width: 88px;
}

.item-eyecatch {
  margin-top: 24px;
}

.item-eyecatch a {
  width: fit-content;
  margin: 0 auto;
  display: block;
  transition: .2s;
}

.item-eyecatch a:hover {
  opacity: .75;
}

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

.sub-item-cta {
  margin-top: 14px;
}

.sub-item-cta__btn {
  height: 48px;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--btn-default);
  border-radius: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}