@charset "UTF-8";
@layer page {
  @media screen and (max-width: 767px) {
    .p-breadcrumb__list {
      row-gap: 1.5vw;
    }
  }
  .blog-body {
    padding-bottom: 5rem;
  }
  @media screen and (max-width: 767px) {
    .blog-body {
      padding-bottom: 15vw;
    }
  }
  .category-list {
    padding: 5rem 0 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .category-list {
      padding: 10vw 0;
    }
  }
  .category-list__ttl {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
  }
  .category-list__list {
    display: flex;
    gap: 0.5rem;
  }
  @media screen and (max-width: 1200px) {
    .category-list__list {
      flex-wrap: wrap;
    }
  }
  .category-list__list li {
    width: 10.25rem;
    height: 2.75rem;
    border-radius: 100rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
  }
  @media screen and (max-width: 767px) {
    .category-list__list li {
      width: 48%;
    }
  }
  .category-list__item {
    transition-duration: 0.25s;
    transition-property: background-color, color;
  }
  .category-list__item--ucar {
    color: #A8711F;
    border: 2px solid #A8711F;
  }
  .category-list__item--insurance {
    color: #6F6F6F;
    border: 2px solid #6F6F6F;
  }
  .category-list__item--lease {
    color: #91BC0D;
    border: 2px solid #91BC0D;
  }
  .category-list__item--scratch {
    color: #4347A5;
    border: 2px solid #4347A5;
  }
  .category-list__item--inspection {
    color: #EB5A3F;
    border: 2px solid #EB5A3F;
  }
  .category-list__item--tire {
    color: #3B87E9;
    border: 2px solid #3B87E9;
  }
  .category-list__item--coating {
    color: #6533CB;
    border: 2px solid #6533CB;
  }
  @media (hover: hover) {
    .category-list__item:hover.category-list__item {
      color: #fff;
    }
    .category-list__item:hover.category-list__item--ucar {
      background-color: #A8711F;
    }
    .category-list__item:hover.category-list__item--insurance {
      background-color: #6F6F6F;
    }
    .category-list__item:hover.category-list__item--lease {
      background-color: #91BC0D;
    }
    .category-list__item:hover.category-list__item--scratch {
      background-color: #4347A5;
    }
    .category-list__item:hover.category-list__item--inspection {
      background-color: #EB5A3F;
    }
    .category-list__item:hover.category-list__item--tire {
      background-color: #3B87E9;
    }
    .category-list__item:hover.category-list__item--coating {
      background-color: #6533CB;
    }
  }
  .p-article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2%;
  }
  @media screen and (max-width: 1200px) {
    .p-article-list {
      gap: 1.25rem 3%;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article-list {
      gap: 3vw 3%;
    }
  }
  .p-article-list__item {
    width: 23.5%;
  }
  @media screen and (max-width: 1200px) {
    .p-article-list__item {
      width: 48.5%;
    }
  }
  .p-article-list__img {
    width: 100%;
    overflow: hidden;
  }
  .p-article-list__img img {
    transition: all 0.25s;
  }
  .p-article-list a {
    display: block;
    border-radius: 0.625rem;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
  }
  @media (hover: hover) {
    .p-article-list a:hover .p-article-list__txt {
      color: var(--accent);
    }
    .p-article-list a:hover .p-article-list__img img {
      transform: scale(1.1);
    }
  }
  .p-article-list__info {
    padding: 1.125rem 1rem 0.625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .p-article-list__info {
      flex-direction: column;
      align-items: flex-start;
      gap: 1vw;
      padding: 3vw 3vw 0;
    }
  }
  .p-article-list__date {
    color: #707070;
    font-size: 1rem;
    font-weight: 400;
  }
  @media screen and (max-width: 767px) {
    .p-article-list__date {
      font-size: 3.25vw;
    }
  }
  .p-article-list__tag {
    padding: 0.125rem 0.5rem;
    border-radius: 100rem;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-article-list__tag {
      padding: 0.5vw 2.5vw;
      font-size: 2.75vw;
    }
  }
  .p-article-list__tag--ucar {
    background-color: #A8711F;
  }
  .p-article-list__tag--insurance {
    background-color: #6F6F6F;
  }
  .p-article-list__tag--lease {
    background-color: #91BC0D;
  }
  .p-article-list__tag--scratch {
    background-color: #4347A5;
  }
  .p-article-list__tag--inspection {
    background-color: #EB5A3F;
  }
  .p-article-list__tag--tire {
    background-color: #3B87E9;
  }
  .p-article-list__tag--coating {
    background-color: #6533CB;
  }
  .p-article-list__txt {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 700;
    padding: 0 1rem 1.875rem;
    transition-duration: 0.25s;
    transition-property: color;
  }
  @media screen and (max-width: 767px) {
    .p-article-list__txt {
      font-size: 3.5vw;
      padding: 0 3vw 5vw;
    }
  }
  .p-article {
    padding-top: 5rem;
  }
  @media screen and (max-width: 767px) {
    .p-article {
      padding-top: 5vw;
    }
  }
  .p-article__inner {
    background-color: #fff;
    border-radius: 0.625rem;
  }
  @media screen and (min-width: 1200px) {
    .p-article__inner {
      padding: 5rem 6.25rem 3.75rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .p-article__inner {
      padding: 2.5rem 2.5rem 3.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article__inner {
      padding: 5vw 5vw 10vw;
    }
  }
  .p-article p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
  }
  .p-article p + p {
    margin-top: 1.25rem;
  }
  .p-article p a {
    text-decoration: underline;
  }
  @media screen and (max-width: 767px) {
    .p-article p {
      font-size: 4vw;
    }
  }
  .p-article-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-article-info__tag {
    display: inline-block;
    line-height: 1 !important;
    color: #fff;
    font-size: 0.9375rem;
    padding: 0.375rem 0.625rem;
    margin-top: 0 !important;
    border-radius: 100rem;
    font-weight: 700 !important;
  }
  @media screen and (max-width: 767px) {
    .p-article-info__tag {
      font-size: 3.5vw !important;
    }
  }
  .p-article-info__tag--ucar {
    background-color: #A8711F;
  }
  .p-article-info__tag--insurance {
    background-color: #6F6F6F;
  }
  .p-article-info__tag--lease {
    background-color: #91BC0D;
  }
  .p-article-info__tag--scratch {
    background-color: #4347A5;
  }
  .p-article-info__tag--inspection {
    background-color: #EB5A3F;
  }
  .p-article-info__tag--tire {
    background-color: #3B87E9;
  }
  .p-article-info__tag--coating {
    background-color: #6533CB;
  }
  .p-article-info__date {
    margin-top: 0 !important;
    font-size: 0.8125rem;
    color: #949494;
    margin-left: 0.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-article-info__date {
      font-size: 3.5vw !important;
    }
  }
  .p-article__main-ttl {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0.9375rem 0 0;
    line-height: 1.3;
  }
  @media screen and (max-width: 767px) {
    .p-article__main-ttl {
      font-size: 6vw;
      text-align: left;
      margin: 2.5vw 0 0;
    }
  }
  .p-article__img {
    overflow: hidden;
    border-radius: 0.625rem;
    margin: 2.5rem 0 0;
    line-height: 0;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .p-article__img {
      margin: 5vw 0 0;
    }
  }
  .p-article__img--border {
    border: 1px solid var(--line);
  }
  .p-article__img img {
    width: auto;
    max-width: 100%;
  }
  @media screen and (max-width: 767px) {
    .p-article__img img {
      width: 100%;
    }
  }
  .p-article-sect {
    padding-top: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-article-sect {
      padding-top: 7.5vw;
    }
  }
  .p-article-sect + .p-article-sect {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-article-sect + .p-article-sect {
      margin-top: 5vw;
    }
  }
  .p-article__ttl-01 {
    margin-bottom: 1.25rem;
    padding: 0 0 0 2.5rem;
    font-size: 1.75rem;
    position: relative;
    font-weight: 600;
  }
  @media screen and (max-width: 767px) {
    .p-article__ttl-01 {
      font-size: 5vw;
      padding: 0 0 0 7.5vw;
    }
  }
  .p-article__ttl-01::before {
    content: "";
    width: 1.875rem;
    height: 0.25rem;
    background-color: #00ad92;
    position: absolute;
    top: 1.25rem;
    left: 0;
  }
  @media screen and (max-width: 767px) {
    .p-article__ttl-01::before {
      width: 5vw;
      top: 3.5vw;
    }
  }
  .p-article__ttl-01:not(:first-child) {
    margin-top: 1.875rem;
  }
  .p-article__ttl-02 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem !important;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {
    .p-article__ttl-02 {
      font-size: 5vw;
    }
  }
  .p-article__ttl-02::before {
    content: "■";
    color: var(--accent);
    margin-right: 0.625rem;
  }
  .p-article__ttl-03 {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--accent);
    padding-bottom: 0.3125rem;
    border-bottom: 2px dotted var(--accent);
  }
  .p-article__ttl-04 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    padding-top: 1.25rem;
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {
    .p-article__ttl-04 {
      font-size: 4.5vw;
    }
  }
  .p-article-index {
    margin: 2.5rem auto;
    border: 2px solid #00ad92;
    border-radius: 0.625rem;
    overflow: hidden;
  }
  @media screen and (max-width: 767px) {
    .p-article-index {
      margin: 7.5vw auto 5vw;
    }
  }
  .p-article-index dt {
    line-height: 1;
    font-size: 1.375rem;
    text-align: center;
    padding: 0.625rem 0;
    background-color: #00ad92;
    font-weight: 700;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-article-index dt {
      font-size: 5vw;
    }
  }
  .p-article-index dd {
    padding: 1.875rem 0 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-article-index dd {
      padding: 2.5vw 0 5vw;
    }
  }
  .p-article-index dd ul {
    max-width: 47.5rem;
    margin: 0 auto;
  }
  @media screen and (max-width: 1200px) {
    .p-article-index dd ul {
      max-width: 90%;
    }
  }
  .p-article-index dd li {
    border-bottom: 2px dotted #dfdfdf;
  }
  .p-article-index dd a {
    padding: 0.4375rem 0 0.4375rem 1.5rem;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-article-index dd a {
      font-size: 4.5vw;
      padding: 1.5vw 0 1.5vw 5vw;
    }
  }
  .p-article-index dd a::before {
    content: "";
    width: 0.875rem;
    height: 0.125rem;
    background-color: #00ad92;
    position: absolute;
    top: 1.5rem;
    left: 0;
  }
  @media screen and (max-width: 767px) {
    .p-article-index dd a::before {
      top: 5.5vw;
    }
  }
  @media (hover: hover) {
    .p-article-index dd a:hover {
      text-decoration: underline;
    }
  }
  .p-article-box {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5625rem;
  }
  .p-article-box .p-article__ttl-02 {
    margin-top: 0 !important;
  }
  .p-article-box02 + .p-article-box02 {
    margin-top: 1.25rem;
  }
  .p-article-box--around-rt {
    display: block;
    overflow: hidden;
  }
  .p-article-box--around-rt .p-article-box__item {
    width: 26.875rem;
    float: right;
    margin: 0 0 2.5rem 2.5rem;
  }
  @media screen and (max-width: 1200px) {
    .p-article-box--around-rt .p-article-box__item {
      float: initial;
      margin: 0 auto 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article-box--around-rt .p-article-box__item {
      width: 100%;
      margin-bottom: 5vw;
    }
  }
  .p-article-box--around-rt .p-article-box__item + p {
    margin-top: 0;
  }
  .p-article-box--around-lt {
    display: block;
    overflow: hidden;
  }
  .p-article-box--around-lt .p-article-box__item {
    width: 26.875rem;
    float: left;
    margin: 0 2.5rem 2.5rem 0;
  }
  @media screen and (max-width: 1200px) {
    .p-article-box--around-lt .p-article-box__item {
      float: initial;
      margin: 0 auto 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article-box--around-lt .p-article-box__item {
      width: 100%;
      margin-bottom: 5vw;
    }
  }
  .p-article-box--around-lt .p-article-box__item + p {
    margin-top: 0;
  }
  .p-article__list {
    font-size: 1.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-article__list {
      font-size: 4vw;
    }
  }
  .p-article__list li::before {
    content: "・";
  }
  .p-article .p-article-box__item p:first-child, .p-article .p-article-box__item .p-article__img:first-child {
    margin-top: 0 !important;
  }
  .p-article__link {
    color: var(--accent);
  }
  .p-article__link .c-ico--blank01 {
    position: relative;
    margin-left: 0.1875rem;
  }
  .p-article__link .c-ico--blank01::after {
    content: "";
    display: inline-block;
    aspect-ratio: 1/1;
    width: 0.875rem;
    background: url("../../../img/icon/blank.svg") 50% 100%/cover no-repeat;
    position: absolute;
    top: 0.375rem;
    left: 0;
  }
  @media screen and (max-width: 767px) {
    .p-article__link .c-ico--blank01::after {
      top: 1vw;
    }
  }
  .p-article__link .c-ico--blank01 svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.1875rem;
    position: relative;
    top: -0.125rem;
    width: 0.875rem;
    height: 0.8125rem;
    fill: var(--accent);
  }
  @media (hover: hover) {
    .p-article__link:hover {
      text-decoration: none;
    }
  }
  .p-article-btn-wrp {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .p-article-btn-wrp {
      flex-direction: column;
      margin-top: 10vw;
    }
  }
  .p-article-btn-wrp__item .c-btn--03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100rem;
    outline: 1px solid var(--line);
    width: 24.375rem;
    height: 4.5625rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto;
    text-decoration: none;
    transition-duration: 0.1s;
    transition-property: outline, background-color;
  }
  @media (hover: hover) {
    .p-article-btn-wrp__item .c-btn--03:hover {
      outline: 2px solid var(--accent);
      background-color: var(--bg-green);
    }
  }
  @media screen and (max-width: 1200px) {
    .p-article-btn-wrp__item .c-btn--03 {
      width: 21.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article-btn-wrp__item .c-btn--03 {
      width: 85vw;
    }
  }
  .p-article-btn-wrp__item .c-btn--03 .c-icon {
    position: absolute;
    left: 1.5625rem;
    transform: scale(-1, 1);
    width: 0.5rem;
    height: 0.875rem;
    fill: var(--accent);
  }
  @media screen and (max-width: 767px) {
    .p-article-btn-wrp__item .c-btn--03 .c-icon {
      left: 6.25vw;
    }
  }
  .p-article-btn-wrp__item .c-btn--04 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100rem;
    outline: 1px solid var(--line);
    width: 24.375rem;
    height: 4.5625rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto;
    text-decoration: none;
    transition-duration: 0.1s;
    transition-property: outline, background-color;
  }
  @media (hover: hover) {
    .p-article-btn-wrp__item .c-btn--04:hover {
      outline: 2px solid var(--accent);
      background-color: var(--bg-green);
    }
  }
  @media screen and (max-width: 1200px) {
    .p-article-btn-wrp__item .c-btn--04 {
      width: 21.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article-btn-wrp__item .c-btn--04 {
      width: 85vw;
    }
  }
  .p-article-btn-wrp__item .c-btn--04 .c-btn__txt {
    text-align: center;
    line-height: 1.3;
  }
  .p-article-btn-wrp__item .c-btn--04 .c-icon {
    position: absolute;
    right: 1.5625rem;
    transform: scale(1, -1);
    width: 0.5rem;
    height: 0.875rem;
    fill: var(--accent);
  }
  @media screen and (max-width: 767px) {
    .p-article-btn-wrp__item .c-btn--04 .c-icon {
      right: 6.25vw;
    }
  }
  .related-news {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 0 5rem;
  }
  @media screen and (min-width: 1200px) {
    .related-news {
      padding: 0 0 5rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .related-news {
      max-width: 94%;
    }
  }
  @media screen and (max-width: 767px) {
    .related-news {
      max-width: 90%;
    }
  }
  .related-news__hdr {
    text-align: center;
    padding: 5rem 0 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .related-news__hdr {
      padding: 12.5vw 0 7.5vw;
    }
  }
  .related-news__ttl {
    font-size: 2rem;
    font-weight: 700;
  }
  .related-news__en {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--en-sans);
    color: var(--accent);
  }
  .related-news .p-article-list__item a {
    border: 1px solid var(--line);
  }
}
/* Blade互換: blog/index.blade.php L51 で is-active を動的付与 */
.category-list__item.is-active.category-list__item {
  color: #fff;
}

.category-list__item.is-active.category-list__item--ucar {
  background-color: #A8711F;
}

.category-list__item.is-active.category-list__item--insurance {
  background-color: #6F6F6F;
}

.category-list__item.is-active.category-list__item--lease {
  background-color: #91BC0D;
}

.category-list__item.is-active.category-list__item--scratch {
  background-color: #4347A5;
}

.category-list__item.is-active.category-list__item--inspection {
  background-color: #EB5A3F;
}

.category-list__item.is-active.category-list__item--tire {
  background-color: #3B87E9;
}

.category-list__item.is-active.category-list__item--coating {
  background-color: #6533CB;
}

/* Blade互換: SP用ページネーションサイズ */
@media screen and (max-width: 767px) {
  .blog-body .p-pagination {
    gap: 1vw;
  }
  .blog-body .p-pagination > * {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
  }
}