@charset "UTF-8";
/* ************************************** _
タイトル：common.css
概要：サイト共通のスタイルシート
更新：2025.07.20
_ ************************************** */
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* 共通ベース用
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 120px;
}
html.is-lock {
  padding-right: var(--sbw, 0px);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: 500;
  color: #000000;
  font-feature-settings: "palt";
  font-weight: 500;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

a,
button {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover,
button:hover {
  cursor: pointer;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

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

.l-wrapper {
  width: 100%;
  margin: 0 auto;
}

.l-inner {
  width: 87.778%;
  max-width: 1200px;
  margin: 0 auto;
}
.l-inner--wide {
  max-width: 1400px;
  width: 87.778%;
  margin: 0 auto;
}

.c-bg {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .c-bg {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .c-bg {
    padding: 40px 0;
  }
}
.c-bg--gry {
  background-color: #35363b;
}
.c-bg--mid-gry {
  background-color: #c3c3c3;
}
.c-bg--light-gry {
  background-color: #f5f5f5 !important;
}
.c-bg--wht {
  background-color: #fff !important;
}
.c-bg--red {
  background-color: #cd0811;
}
.c-bg--dots {
  background-image: url(../images/home/pat_common_dots.svg);
  background-repeat: repeat;
}

#loading-overlay {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
}
#loading-overlay.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading-overlay img {
  width: 350px;
  height: auto;
}
@media (max-width: 480px) {
  #loading-overlay img {
    width: 250px;
  }
}

#loading-overlay img {
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* タイトルポップアップ */
@keyframes popUpLight {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* タイトル */
.animate-title {
  opacity: 0;
}

.animate-title.in-view {
  animation: popUpLight 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}

/* サブタイトル */
.animate-subtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* 画像 */
.animate-img {
  opacity: 0;
  transform: scale(1);
  /* 1.05 → 1 に変更 */
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: inline-block;
  /* imgタグに transform を付ける場合は推奨 */
}

.animate-img.in-view {
  opacity: 1;
  transform: scale(1.05);
  /* 発火時に拡大 */
}

/* fade-in/fade-up 共通 */
.fade-in,
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s linear, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 100ms;
}

.fade-in.in-view,
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pop-up {
  opacity: 0;
}

.pop-up.in-view {
  animation: popUpLight 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 共通パーツ　ユーティリティ用
---------------------------------------------------------------------------- */
.u-underline {
  border-bottom: 1px solid;
  color: #0693e3;
}
.u-underline:hover {
  opacity: 0.7;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-color--red {
  color: #cd0811;
}

.u-color--grn {
  color: #038a16;
}

.u-color--wht {
  color: #fff;
}

.u-color--chio {
  color: #0068b7;
}

.u-color--mamoru {
  color: #8dc21f;
}

.u-bold {
  font-weight: 700;
}

/* 片側だけ画面端まで伸ばす */
.u-bleed-left {
  width: 50vw;
  margin-left: calc(50% - 50vw);
}

.u-bleed-right {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}

.u-sp-only {
  display: none;
}
@media (max-width: 480px) {
  .u-sp-only {
    display: block;
  }
}

.u-tb-only {
  display: none;
}
@media (max-width: 768px) {
  .u-tb-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media (max-width: 480px) {
  .u-pc-only {
    display: none;
  }
}

.u-img {
  margin-top: 5px;
}

.u-center-btn {
  margin: auto;
}

.u-border {
  border: 1px solid #c3c3c3;
}

.u-noborder {
  border: none !important;
}

.u-mb {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .u-mb {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .u-mb {
    margin-bottom: 10px;
  }
}

/* 共通パーツ　ボタン用
---------------------------------------------------------------------------- */
.c-btn {
  max-width: 380px;
  width: 100%;
  background-color: #cd0811;
  color: #fff;
  padding: 15px;
  border-radius: 10rem;
  text-align: center;
  position: relative;
  display: block;
  border: 2px solid #cd0811;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1366px) {
  .c-btn {
    max-width: 330px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-btn {
    max-width: 320px;
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .c-btn {
    max-width: 300px;
    font-size: 13px;
    padding: 10px;
  }
}
.c-btn:hover {
  background-color: #fff;
  border: 2px solid #cd0811;
  color: #000000;
}
.c-btn::after {
  content: "";
  background-image: url(../images/common/arrow_common--wht.svg);
  position: absolute;
  width: 27px;
  height: 27px;
  background-size: cover;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
  transform: rotate(-45deg) translate(0, 0);
  transition: all 0.2s ease-in-out;
  will-change: transform;
}
@media (max-width: 1366px) {
  .c-btn::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 480px) {
  .c-btn::after {
    width: 23px;
    height: 23px;
    right: 15px;
  }
}
.c-btn:hover::after {
  background-image: url(../images/common/arrow_common--red.svg);
}
.c-btn--wht {
  background-color: #fff;
  color: #000000;
  font-weight: 700;
}
.c-btn--wht::after {
  background-image: url(../images/common/arrow_common--red.svg);
}
.c-btn--wht:hover {
  background-color: #cd0811;
  border: 2px solid #fff;
  color: #fff;
}
.c-btn--wht:hover::after {
  background-image: url(../images/common/arrow_common--wht.svg);
}
.c-btn--blk {
  background-color: #fff;
  border: 2px solid #35363b;
  color: #35363b;
  font-weight: 700;
}
.c-btn--blk::after {
  display: none;
}
.c-btn__shop {
  border-radius: 10rem;
  border: 2px solid #cd0811;
  position: relative;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media (max-width: 1366px) {
  .c-btn__shop {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .c-btn__shop {
    padding: 10px 12px;
    gap: 8px;
  }
}
.c-btn__shop-label {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1366px) {
  .c-btn__shop-label {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-btn__shop-label {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-btn__shop-label {
    font-size: 13px;
  }
}
.c-btn__shop-icon {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 480px) {
  .c-btn__shop-icon {
    display: none;
  }
}
.c-btn__shop-icon--syodan {
  background-image: url(../images/common/icon_common_syodan.svg);
  width: 30px;
  aspect-ratio: 724/683;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--syodan {
    width: 21px;
  }
}
.c-btn__shop-icon--tenken {
  background-image: url(../images/common/icon_common_tenken.svg);
  width: 31px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--tenken {
    width: 22px;
  }
}
.c-btn__shop-icon--campaign {
  background-image: url(../images/common/icon_common_campaign.svg);
  width: 22px;
  aspect-ratio: 16/19;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--campaign {
    width: 18px;
  }
}
.c-btn__shop-icon--ucar {
  background-image: url(../images/common/icon_common_ucar.svg);
  width: 37px;
  aspect-ratio: 109/48;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--ucar {
    width: 30px;
  }
}
.c-btn__shop-icon--democar {
  background-image: url(../images/common/icon_common_democar.svg);
  width: 29px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--democar {
    width: 22px;
  }
}
.c-btn__shop-icon--blog {
  background-image: url(../images/common/icon_common_blog.svg);
  width: 28px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--blog {
    width: 22px;
  }
}
.c-btn__shop-icon--staff {
  background-image: url(../images/common/icon_common_staff.svg);
  width: 20px;
  aspect-ratio: 281/372;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--staff {
    width: 15px;
  }
}
.c-btn__shop-icon--delivery {
  background-image: url(../images/common/icon_common_delivery.svg);
  width: 22px;
  aspect-ratio: 177/224;
}
@media (max-width: 768px) {
  .c-btn__shop-icon--delivery {
    width: 18px;
  }
}
.c-btn__shop-fukidashi {
  position: absolute;
  width: fit-content;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #cd0811;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.025em;
  padding: 6px 20px;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  border: 1px solid #cd0811;
}
@media (max-width: 1366px) {
  .c-btn__shop-fukidashi {
    font-size: 12px;
    padding: 5px 15px;
  }
}
@media (max-width: 768px) {
  .c-btn__shop-fukidashi {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .c-btn__shop-fukidashi {
    width: 90%;
    font-size: 10px;
    padding: 3px 10px;
    text-align: center;
    top: -36px;
  }
}
.c-btn__shop-fukidashi::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 10px solid #cd0811;
  transition: all 0.2s ease-in-out;
}
.c-btn__shop--harf {
  width: calc((100% - 20px) / 2);
}
@media (max-width: 1366px) {
  .c-btn__shop--harf {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 768px) {
  .c-btn__shop--harf {
    width: calc((100% - 10px) / 2);
  }
}
.c-btn__shop--quarter {
  width: calc((100% - 45px) / 4);
}
@media (max-width: 768px) {
  .c-btn__shop--quarter {
    width: calc((100% - 10px) / 3);
  }
}
@media (max-width: 480px) {
  .c-btn__shop--quarter {
    width: calc((100% - 10px) / 2);
  }
}
.c-btn__shop:hover {
  background-color: #cd0811;
  color: #fff;
  border: 2px solid #fff;
}
.c-btn__shop:hover .c-btn__shop-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(51deg) brightness(103%) contrast(102%);
}

/* 共通パーツ　スライダー用
---------------------------------------------------------------------------- */
.swiper-button-prev,
.swiper-button-next {
  all: unset;
  /* 既存のプロパティをリセット */
  cursor: pointer;
  display: block;
}

.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "" !important;
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "" !important;
}

.swiper-pagination-bullet {
  background: none !important;
  width: auto;
  height: auto;
}

.c-slider {
  /* スライダー周り（例） */
}
.c-slider__wrapper--delivery, .c-slider__wrapper--sdgs, .c-slider__wrapper--motorsports, .c-slider__wrapper--csr {
  display: flex;
  transition-timing-function: linear !important;
}
.c-slider--sdgs {
  width: 100%;
}
.c-slider--sdgs img {
  border-radius: 1.5rem;
}
.c-slider--special {
  min-width: 0;
}
.c-slider--special .swiper-slide {
  width: 100% !important;
}
.c-slider__prev svg, .c-slider__next svg {
  display: none;
}
.c-slider__prev::before, .c-slider__next::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("../images/common/arrow_pager--gry.svg");
  background-size: cover;
  position: absolute;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .c-slider__prev::before, .c-slider__next::before {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .c-slider__prev::before, .c-slider__next::before {
    display: none;
  }
}
.c-slider__prev:hover::before, .c-slider__prev:focus-visible::before, .c-slider__next:hover::before, .c-slider__next:focus-visible::before {
  background-image: url("../images/common/arrow_pager--red.svg");
}
.c-slider__prev::before {
  left: -32px;
  transform: rotate(180deg);
}
.c-slider__next::before {
  right: -32px;
}
.c-slider__pagination {
  position: absolute !important;
  bottom: -25px !important;
  display: flex;
  justify-content: center;
  gap: 25px;
  z-index: 10;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 87.778% !important;
  margin: auto;
}
@media (max-width: 480px) {
  .c-slider__pagination {
    bottom: -15px !important;
    gap: 15px;
  }
}
.c-slider__pager {
  width: 80px;
  height: 5px;
  background: #c3c3c3;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-slider__pager {
    width: 65px;
  }
}
@media (max-width: 480px) {
  .c-slider__pager {
    width: 45px;
    height: 3px;
  }
}
.c-slider__pager:hover {
  opacity: 1;
}
.c-slider__pager.is-active {
  background: #cd0811;
  opacity: 1;
  transform: scaleX(1.05);
}
.c-slider__slide img {
  border-radius: 1rem;
  width: 100%;
}
.c-slider__slide--newcar {
  width: 100%;
  height: 300px;
}
.c-slider__slide--newcar img {
  border-radius: 1rem;
  aspect-ratio: 900/390;
  object-fit: cover;
}
.c-slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .c-slider__controls {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-slider__controls {
    margin-top: 12px;
  }
}
.c-slider__controls-prev svg, .c-slider__controls-next svg {
  display: none;
}
.c-slider__controls-prev::before, .c-slider__controls-next::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../images/common/arrow_pager--wht.svg");
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .c-slider__controls-prev::before, .c-slider__controls-next::before {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .c-slider__controls-prev::before, .c-slider__controls-next::before {
    width: 25px;
    height: 25px;
  }
}
.c-slider__controls-prev:hover::before, .c-slider__controls-prev:focus-visible::before, .c-slider__controls-next:hover::before, .c-slider__controls-next:focus-visible::before {
  background-image: url("../images/common/arrow_pager--invert.svg");
}
.c-slider__controls-prev::before {
  transform: rotate(180deg);
}
.c-slider__controls-pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
  width: fit-content !important;
  margin: 0 15px;
}
@media (max-width: 768px) {
  .c-slider__controls-pagination {
    margin: 0 10px;
  }
}
@media (max-width: 480px) {
  .c-slider__controls-pagination {
    gap: 10px;
    margin: 0;
  }
}
.c-slider__controls-pager {
  width: 50px;
  height: 3px;
  background: #c3c3c3;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-slider__controls-pager {
    width: 40px;
    height: 2px;
  }
}
@media (max-width: 480px) {
  .c-slider__controls-pager {
    width: 25px;
    height: 2px;
  }
}
.c-slider__controls-pager:hover {
  opacity: 1;
}
.c-slider__controls-pager.is-active {
  background: #cd0811;
  opacity: 1;
  transform: scaleX(1.05);
}

/* 共通パーツ　見出し用
---------------------------------------------------------------------------- */
.c-heading__page {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .c-heading__page {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .c-heading__page {
    margin-bottom: 30px;
  }
}
.c-heading__page-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #cd0811;
}
@media (max-width: 1366px) {
  .c-heading__page-en {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .c-heading__page-en {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .c-heading__page-en {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.c-heading__page-jp {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.075em;
}
@media (max-width: 1366px) {
  .c-heading__page-jp {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .c-heading__page-jp {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .c-heading__page-jp {
    font-size: 24px;
    line-height: 1.5;
    word-break: auto-phrase;
  }
}
.c-heading__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .c-heading__section {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .c-heading__section {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .c-heading__section {
    margin-bottom: 25px;
  }
}
.c-heading__section-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 54px;
  letter-spacing: 0.075em;
}
@media (max-width: 1366px) {
  .c-heading__section-en {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .c-heading__section-en {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .c-heading__section-en {
    font-size: 32px;
  }
}
.c-heading__section-jp {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.075em;
  color: #cd0811;
  font-weight: 700;
}
@media (max-width: 1366px) {
  .c-heading__section-jp {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .c-heading__section-jp {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .c-heading__section-jp {
    font-size: 13px;
  }
}
.c-heading__top {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1366px) {
  .c-heading__top {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .c-heading__top {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .c-heading__top {
    margin-bottom: 25px;
  }
}
.c-heading__top-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 64px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.075em;
}
@media (max-width: 1366px) {
  .c-heading__top-en {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .c-heading__top-en {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .c-heading__top-en {
    font-size: 32px;
  }
}
.c-heading__top-jp {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #cd0811;
}
@media (max-width: 1366px) {
  .c-heading__top-jp {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .c-heading__top-jp {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .c-heading__top-jp {
    font-size: 15px;
  }
}
.c-heading__top-wr img {
  width: 470px;
  aspect-ratio: 150/59;
  position: relative;
  top: 40px;
  z-index: 0;
}
@media (max-width: 1366px) {
  .c-heading__top-wr img {
    width: 370px;
  }
}
@media (max-width: 768px) {
  .c-heading__top-wr img {
    width: 270px;
  }
}
@media (max-width: 480px) {
  .c-heading__top-wr img {
    width: 240px;
    margin-bottom: 12px;
  }
}
.c-heading__top--row {
  flex-direction: row !important;
  justify-content: start;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1366px) {
  .c-heading__top--row {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .c-heading__top--row {
    margin-bottom: 12px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .c-heading__top--row {
    flex-direction: column !important;
    align-items: baseline;
    gap: 0;
    margin-bottom: 20px;
  }
}
.c-heading__lead {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.85;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
  word-break: auto-phrase;
}
@media (max-width: 1366px) {
  .c-heading__lead {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .c-heading__lead {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .c-heading__lead {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.c-heading__label {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 1366px) {
  .c-heading__label {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .c-heading__label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .c-heading__label {
    font-size: 15px;
  }
}
.c-heading__sub {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
@media (max-width: 1366px) {
  .c-heading__sub {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .c-heading__sub {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .c-heading__sub {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
    margin-bottom: 20px;
  }
}
.c-heading__sub-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  color: #cd0811;
  font-size: 48px;
  letter-spacing: 0.05em;
}
@media (max-width: 1366px) {
  .c-heading__sub-en {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .c-heading__sub-en {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .c-heading__sub-en {
    font-size: 30px;
  }
}
.c-heading__sub-jp {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 1366px) {
  .c-heading__sub-jp {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .c-heading__sub-jp {
    font-size: 14px;
  }
}
.c-heading__big {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-heading__big::after {
  content: "";
  width: 30px;
  height: 4px;
  background-color: #cd0811;
}
@media (max-width: 768px) {
  .c-heading__big::after {
    width: 25px;
    height: 3px;
  }
}
@media (max-width: 768px) {
  .c-heading__big::after {
    width: 20px;
  }
}
@media (max-width: 1366px) {
  .c-heading__big {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .c-heading__big {
    font-size: 24px;
    margin-bottom: 30px;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .c-heading__big {
    font-size: 20px;
    margin-bottom: 20px;
    gap: 12px;
    text-align: center;
    word-break: auto-phrase;
  }
}
.c-heading__circle {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .c-heading__circle {
    font-size: 20px;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .c-heading__circle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .c-heading__circle {
    font-size: 16px;
    flex-wrap: wrap;
    gap: 5px 8px;
    margin-bottom: 10px;
  }
}
.c-heading__circle::before {
  content: "";
  background-color: #cd0811;
  width: 15px;
  height: 15px;
  border-radius: 10rem;
}
@media (max-width: 1366px) {
  .c-heading__circle::before {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .c-heading__circle::before {
    width: 10px;
    height: 10px;
  }
}
.c-heading__circle span {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1366px) {
  .c-heading__circle span {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-heading__circle span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-heading__circle span {
    font-size: 13px;
    display: block;
  }
}
.c-heading__line {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .c-heading__line {
    font-size: 20px;
    gap: 8px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .c-heading__line {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .c-heading__line {
    font-size: 16px;
  }
}
.c-heading__line::before {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #cd0811;
}
@media (max-width: 1366px) {
  .c-heading__line::before {
    width: 20px;
    height: 3px;
  }
}
@media (max-width: 480px) {
  .c-heading__line::before {
    width: 17px;
  }
}
.c-heading__bgline {
  font-size: 18px;
  background-color: #f5f5f5;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  padding: 5px 30px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .c-heading__bgline {
    font-size: 16px;
    padding: 5px 25px;
  }
}
@media (max-width: 480px) {
  .c-heading__bgline {
    font-size: 15px;
    padding: 5px 20px;
    margin-bottom: 10px;
  }
}
.c-heading__bgline::before {
  content: "";
  position: absolute;
  background-color: #cd0811;
  height: 100%;
  width: 10px;
  left: 0;
  top: 0;
}
.c-heading__bold {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .c-heading__bold {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .c-heading__bold {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .c-heading__bold {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.c-heading__medium {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .c-heading__medium {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-heading__medium {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-heading__medium {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.c-heading__service {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (max-width: 1366px) {
  .c-heading__service {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .c-heading__service {
    gap: 3px;
  }
}
.c-heading__service-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #cd0811;
}
@media (max-width: 1366px) {
  .c-heading__service-en {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .c-heading__service-en {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .c-heading__service-en {
    font-size: 11px;
  }
}
.c-heading__service-jp {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
@media (max-width: 1366px) {
  .c-heading__service-jp {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .c-heading__service-jp {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .c-heading__service-jp {
    font-size: 24px;
  }
}
.c-heading__normal {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .c-heading__normal {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .c-heading__normal {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .c-heading__normal {
    font-size: 15px;
    margin-bottom: 8px;
  }
}

/* 共通パーツ　テーブル用
---------------------------------------------------------------------------- */
.c-tbl {
  width: 100%;
}
@media (max-width: 768px) {
  .c-tbl__scroll {
    min-width: 1000px;
  }
}
@media (max-width: 480px) {
  .c-tbl__scroll {
    min-width: 850px;
  }
}
.c-tbl__scroll-row {
  width: 100%;
  border-bottom: 1px solid #c3c3c3;
  display: flex;
}
.c-tbl__scroll-row:first-child {
  border-top: 1px solid #c3c3c3;
}
.c-tbl__scroll-header {
  width: 25%;
  font-weight: 700;
  text-align: left;
  background-color: #f5f5f5;
  padding: 20px;
  vertical-align: middle;
  line-height: 2.6rem;
  border-right: 1px solid #c3c3c3;
}
@media (max-width: 768px) {
  .c-tbl__scroll-header {
    padding: 10px 20px;
    line-height: 1.8rem;
  }
}
@media (max-width: 480px) {
  .c-tbl__scroll-header {
    padding: 8px 15px;
    line-height: 1.6rem;
  }
}
.c-tbl__scroll-data {
  width: calc((100% - 1rem) / 7);
  text-align: center;
  border-right: 1px solid #c3c3c3;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .c-tbl__scroll-data {
    padding: 5px;
    line-height: 1rem;
  }
}
.c-tbl__scroll-data:last-child {
  border-left: 1px solid #c3c3c3;
}
.c-tbl__wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.c-tbl__body {
  font-size: 16px;
  line-height: 1.875;
}
@media (max-width: 1366px) {
  .c-tbl__body {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-tbl__body {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-tbl__body {
    font-size: 13px;
  }
}
.c-tbl__row {
  width: 100%;
  border-bottom: 1px solid #c3c3c3;
  display: flex;
}
@media (max-width: 480px) {
  .c-tbl__row {
    flex-direction: column;
  }
}
.c-tbl__row:first-child {
  border-top: 1px solid #c3c3c3;
}
.c-tbl__header {
  width: 25%;
  font-weight: 700;
  text-align: left;
  background-color: #f5f5f5;
  padding: 20px;
  vertical-align: middle;
  line-height: 2.6rem;
  border-right: 1px solid #c3c3c3;
}
@media (max-width: 1366px) {
  .c-tbl__header {
    padding: 15px 30px;
  }
}
@media (max-width: 768px) {
  .c-tbl__header {
    width: 30%;
    padding: 15px 25px;
    word-break: auto-phrase;
  }
}
@media (max-width: 480px) {
  .c-tbl__header {
    width: 100%;
    padding: 5px 15px;
    border-bottom: 1px solid #c3c3c3;
    border-right: none;
  }
}
.c-tbl__header--syaken {
  width: 60%;
  background-color: #fff;
  padding: 15px 30px;
}
.c-tbl__data {
  width: 75%;
  padding: 20px 30px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.c-tbl__data--syaken {
  width: 40%;
  display: block;
  text-align: center;
  padding: 15px 30px;
}
@media (max-width: 1366px) {
  .c-tbl__data {
    padding: 15px 30px;
  }
}
@media (max-width: 768px) {
  .c-tbl__data {
    width: 70%;
    padding: 15px 25px;
  }
}
@media (max-width: 480px) {
  .c-tbl__data {
    width: 100%;
    padding: 15px 15px;
  }
}
.c-tbl__data-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 1366px) {
  .c-tbl__data-row {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .c-tbl__data-row {
    gap: 10px;
  }
}
.c-tbl__data-month {
  width: 5%;
  display: block;
}
@media (max-width: 1366px) {
  .c-tbl__data-month {
    width: 8%;
  }
}
@media (max-width: 480px) {
  .c-tbl__data-month {
    width: 12%;
  }
}
.c-tbl__data-event {
  width: 95%;
  display: block;
}
@media (max-width: 1366px) {
  .c-tbl__data-event {
    width: 92%;
  }
}
@media (max-width: 480px) {
  .c-tbl__data-event {
    width: 88%;
  }
}
.c-tbl__caption {
  font-size: 13px;
  line-height: 1.95rem;
  display: block;
  font-weight: 500;
  color: #35363b;
  margin-top: 5px;
}
@media (max-width: 480px) {
  .c-tbl__caption {
    font-size: 11px;
    line-height: 1.6rem;
  }
}
.c-tbl__none {
  background-color: #fff;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  min-width: 1em;
  width: 1em;
}

/* 共通パーツ　下層セクション用
---------------------------------------------------------------------------- */
.c-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-section__contents {
  margin-bottom: 100px;
}
@media (max-width: 1366px) {
  .c-section__contents {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .c-section__contents {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .c-section__contents {
    margin-bottom: 40px;
  }
}
.c-section__parag {
  font-size: 16px;
  line-height: 2.2;
}
@media (max-width: 1366px) {
  .c-section__parag {
    font-size: 15px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .c-section__parag {
    font-size: 14px;
    line-height: 1.8;
  }
}
.c-section__parag-intro {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-section__parag-intro {
    margin-bottom: 15px;
  }
}
.c-section__parag--lg {
  font-size: 18px;
  font-weight: 600;
  line-height: 2.4;
}
@media (max-width: 1366px) {
  .c-section__parag--lg {
    font-size: 16px;
    line-height: 2.3;
  }
}
@media (max-width: 768px) {
  .c-section__parag--lg {
    font-size: 15px;
    line-height: 2;
  }
}
@media (max-width: 480px) {
  .c-section__parag--lg {
    font-size: 14px;
  }
}
.c-section__caption {
  font-size: 14px;
  margin-top: 10px;
  display: block;
  line-height: 2.4rem;
}
@media (max-width: 1366px) {
  .c-section__caption {
    font-size: 13px;
    line-height: 2.1;
  }
}
@media (max-width: 768px) {
  .c-section__caption {
    font-size: 12px;
    line-height: 1.9;
  }
}
@media (max-width: 480px) {
  .c-section__caption {
    margin-top: 10px;
  }
}
.c-section__sign {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-section__sign {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .c-section__sign {
    margin-top: 20px;
  }
}
.c-section__head {
  background-color: #f5f5f5;
  padding-top: 110px;
  padding-bottom: 80px;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1366px) {
  .c-section__head {
    padding-bottom: 70px;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .c-section__head {
    padding-top: 85px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .c-section__head {
    padding-top: 75px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
}
.c-section__head::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1366px) {
  .c-section__head::after {
    background-size: cover;
    background-position: left;
    width: 45%;
  }
}
@media (max-width: 480px) {
  .c-section__head::after {
    display: none;
  }
}
.c-section__head-wrapper {
  position: relative;
  z-index: 1;
}
.c-section__group {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .c-section__group {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .c-section__group {
    margin-bottom: 30px;
  }
}
.c-section__group:last-child {
  margin-bottom: 0;
}
.c-section__group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 480px) {
  .c-section__group-list {
    gap: 10px 0;
  }
}
.c-section__group-item {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 768px) {
  .c-section__group-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .c-section__group-item {
    width: 100%;
  }
}
.c-section__group-inner {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .c-section__group-inner {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-section__group-inner {
    margin-top: 15px;
  }
}
.c-section__group-block {
  padding-left: 30px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .c-section__group-block {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-section__group-block {
    margin-top: 15px;
    padding-left: 10px;
  }
}
.c-section__group-box {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .c-section__group-box {
    margin-top: 15px;
  }
}
.c-section__guide {
  margin-top: 80px;
  border-radius: 1.5rem;
  padding: 50px;
  text-align: center;
}
@media (max-width: 1366px) {
  .c-section__guide {
    margin-top: 60px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .c-section__guide {
    margin-top: 40px;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .c-section__guide {
    margin-top: 30px;
    padding: 25px;
  }
}
.c-section__guide-heading {
  justify-content: center;
}
.c-section__guide-parag {
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .c-section__guide-parag {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .c-section__guide-parag {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .c-section__guide-parag {
    margin-bottom: 15px;
  }
}
.c-section__guide-btn {
  margin: auto;
}
.c-section__guide-tel {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 1366px) {
  .c-section__guide-tel {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .c-section__guide-tel {
    font-size: 15px;
    gap: 10px;
  }
}
.c-section__guide-tel span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  color: #cd0811;
  font-size: 32px;
  letter-spacing: 0.075em;
}
@media (max-width: 1366px) {
  .c-section__guide-tel span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .c-section__guide-tel span {
    font-size: 26px;
  }
}
.c-section__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .c-section__list {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .c-section__list {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.c-section__list-item {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .c-section__list-item {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .c-section__list-item {
    gap: 8px;
  }
}
.c-section__list-number span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  color: #cd0811;
  font-size: 20px;
  position: relative;
  top: -4px;
}
@media (max-width: 1366px) {
  .c-section__list-number span {
    font-size: 18px;
    top: -2px;
  }
}
@media (max-width: 768px) {
  .c-section__list-number span {
    font-size: 16px;
    top: -1px;
  }
}
@media (max-width: 480px) {
  .c-section__list-number span {
    font-size: 14px;
  }
}
.c-section__sublist {
  padding-left: 30px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .c-section__sublist {
    padding-left: 5px;
  }
}
@media (max-width: 480px) {
  .c-section__sublist {
    padding-left: 0;
    margin-top: 10px;
    gap: 3px;
  }
}
.c-section__sublist--order {
  list-style: auto;
  list-style-position: inside;
}
.c-section__sublist--unorder {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .c-section__sublist--unorder {
    margin-bottom: 10px;
  }
}
.c-section__sublist--roman {
  list-style: lower-roman;
  list-style-position: inside;
}
.c-section__brock {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .c-section__brock {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .c-section__brock {
    margin-bottom: 25px;
  }
}

/* 共通パーツ　パンくず用
---------------------------------------------------------------------------- */
.c-breadcrumbs {
  margin-bottom: 60px;
}
@media (max-width: 1366px) {
  .c-breadcrumbs {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .c-breadcrumbs {
    margin-bottom: 40px;
  }
}
.c-breadcrumbs__list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  /* Firefox対応 */
  -webkit-overflow-scrolling: touch;
  /* スマホでスムーズスクロール */
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #35363b;
  margin: 0;
  padding-bottom: 10px;
  /* スクロールバーの余白確保 */
}
@media (max-width: 480px) {
  .c-breadcrumbs__list {
    gap: 8px;
    font-size: 11px;
  }
}
.c-breadcrumbs__list::-webkit-scrollbar {
  height: 6px;
}
.c-breadcrumbs__list::-webkit-scrollbar-thumb {
  background: #35363b;
  border-radius: 10rem;
}
.c-breadcrumbs__item {
  white-space: nowrap;
  /* 折り返し防止 */
  flex: 0 0 auto;
  /* 伸縮を抑える */
}
.c-breadcrumbs__item::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #35363b;
  border-bottom: 1px solid #35363b;
  transform: rotate(-45deg);
  margin-left: 5px;
}
@media (max-width: 480px) {
  .c-breadcrumbs__item::after {
    width: 7px;
    height: 7px;
    margin-left: 5px;
  }
}
.c-breadcrumbs__item:last-child::after {
  display: none;
}
.c-breadcrumbs__item a {
  border-bottom: 1px solid #35363b;
}
.c-breadcrumbs__item a:hover {
  color: #cd0811;
  border-bottom: 1px solid #cd0811;
}
.c-breadcrumbs__item br {
  display: none;
}

/* 共通パーツ　記事リスト
---------------------------------------------------------------------------- */
.c-post__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .c-post__list {
    gap: 40px 20px;
  }
}
@media (max-width: 768px) {
  .c-post__list {
    gap: 20px 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .c-post__list {
    flex-direction: column;
    gap: 20px;
  }
}
.c-post__item {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 1366px) {
  .c-post__item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .c-post__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .c-post__item {
    width: 100%;
  }
}
.c-post__link {
  display: block;
}
.c-post__link:hover .c-post__img img, .c-post__link:focus-visible .c-post__img img {
  transform: scale(1.06);
}
.c-post__link:hover .c-post__heading, .c-post__link:focus-visible .c-post__heading {
  color: #cd0811;
}
@media (max-width: 480px) {
  .c-post__link {
    display: flex;
    gap: 15px;
    align-items: center;
  }
}
.c-post__img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #c3c3c3;
}
@media (max-width: 1366px) {
  .c-post__img {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .c-post__img {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .c-post__img {
    width: calc(45% - 15px);
    margin-bottom: 0;
  }
}
.c-post__img img {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
  transform: scale(1);
  will-change: transform;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (max-width: 480px) {
  .c-post__txt {
    width: 55%;
  }
}
.c-post__date {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 5px;
}
@media (max-width: 1366px) {
  .c-post__date {
    margin-bottom: 3px;
  }
}
@media (max-width: 768px) {
  .c-post__date {
    gap: 1px;
    margin-bottom: 5px;
  }
}
.c-post__time {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  color: #cd0811;
  font-size: 12px;
}
@media (max-width: 768px) {
  .c-post__time {
    font-size: 11px;
  }
}
.c-post__cat {
  font-size: 12px;
  color: #35363b;
}
@media (max-width: 768px) {
  .c-post__cat {
    font-size: 11px;
  }
}
.c-post__heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}
@media (max-width: 1366px) {
  .c-post__heading {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-post__heading {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .c-post__heading {
    font-size: 13px;
  }
}
.c-post__btn {
  margin: auto;
}

/* 共通パーツ　ヘッダー用
---------------------------------------------------------------------------- */
.p-header {
  position: fixed;
  top: 15px;
  border-radius: 10rem;
  background-color: #fff;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  right: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1366px) {
  .p-header {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .p-header {
    top: 12px;
  }
}
@media (max-width: 480px) {
  .p-header {
    top: 10px;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
}
@media (max-width: 1400px) {
  .p-header__inner {
    padding: 12px 30px;
  }
}
@media (max-width: 1366px) {
  .p-header__inner {
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .p-header__inner {
    padding: 7px 20px;
  }
}
@media (max-width: 480px) {
  .p-header__inner {
    padding: 7px 15px;
  }
}
.p-header__logo img {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 1400px) {
  .p-header__logo img {
    max-width: 230px;
  }
}
@media (max-width: 1366px) {
  .p-header__logo img {
    max-width: 190px;
  }
}
@media (max-width: 480px) {
  .p-header__logo img {
    max-width: 170px;
  }
}
.p-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-header__list {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-right: 35px;
  font-size: 15px;
}
@media (max-width: 1400px) {
  .p-header__list {
    gap: 20px;
    margin-right: 35px;
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  .p-header__list {
    gap: 15px;
    margin-right: 15px;
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  .p-header__list {
    display: none;
  }
}
.p-header__link {
  font-weight: 700;
}
.p-header__link:hover {
  color: #cd0811;
}
.p-header__hamburger {
  width: 50px;
  height: 50px;
  background-color: #cd0811;
  border-radius: 10rem;
  position: relative;
  /* 開いたときのX化（.is-activeをボタンに付与） */
}
@media (max-width: 768px) {
  .p-header__hamburger {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger {
    width: 38px;
    height: 38px;
  }
}
.p-header__hamburger span {
  display: block;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 13px;
  margin: auto;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  .p-header__hamburger span {
    left: 10px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger span {
    left: 9px;
  }
}
.p-header__hamburger span:nth-of-type(1) {
  width: 25px;
  top: 16px;
}
@media (max-width: 768px) {
  .p-header__hamburger span:nth-of-type(1) {
    width: 22px;
    top: 14px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger span:nth-of-type(1) {
    width: 20px;
    top: 12px;
  }
}
.p-header__hamburger span:nth-of-type(2) {
  width: 18px;
  top: 24px;
}
@media (max-width: 768px) {
  .p-header__hamburger span:nth-of-type(2) {
    width: 16px;
    top: 21px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger span:nth-of-type(2) {
    width: 14px;
    top: 19px;
  }
}
.p-header__hamburger span:nth-of-type(3) {
  width: 12px;
  top: 32px;
}
@media (max-width: 768px) {
  .p-header__hamburger span:nth-of-type(3) {
    width: 10px;
    top: 28px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger span:nth-of-type(3) {
    width: 10px;
    top: 26px;
  }
}
.p-header__hamburger:hover {
  opacity: 0.7;
}
.p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(1) {
  top: 24px;
  transform: rotate(30deg);
  width: 30px;
  left: 10px;
}
@media (max-width: 768px) {
  .p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(1) {
    width: 25px;
    top: 20px;
    left: 9px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(1) {
    width: 24px;
    top: 18px;
    left: 7px;
  }
}
.p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(3) {
  transform: rotate(-30deg);
  width: 30px;
  top: 24px;
  left: 10px;
}
@media (max-width: 768px) {
  .p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(3) {
    width: 25px;
    top: 20px;
    left: 9px;
  }
}
@media (max-width: 480px) {
  .p-header__hamburger.is-active .p-header__hamburger-inner span:nth-child(3) {
    width: 24px;
    top: 18px;
    left: 7px;
  }
}

/* 共通パーツ　フッター用
---------------------------------------------------------------------------- */
.p-footer {
  background: #cd0811;
  padding: 100px 20px 20px;
}
@media (max-width: 1366px) {
  .p-footer {
    padding: 80px 20px 20px;
  }
}
@media (max-width: 768px) {
  .p-footer {
    padding: 60px 20px 20px;
  }
}
@media (max-width: 480px) {
  .p-footer {
    padding: 40px 15px 20px;
  }
}
.p-footer__contact {
  color: #fff;
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 1366px) {
  .p-footer__contact {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .p-footer__contact {
    padding-bottom: 70px;
  }
}
@media (max-width: 480px) {
  .p-footer__contact {
    padding-bottom: 50px;
  }
}
.p-footer__contact::after {
  content: "";
  background-image: url(../images/common/deco_common_text.svg);
  width: 90%;
  max-width: 1800px;
  aspect-ratio: 1457/183;
  position: absolute;
  background-size: cover;
  bottom: -3%;
  right: 0;
  left: 0;
  margin: auto;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media (max-width: 1366px) {
  .p-footer__contact::after {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .p-footer__contact::after {
    width: 95%;
    bottom: 0%;
  }
}
.p-footer__contact .c-heading__section-jp {
  color: #fff;
}
.p-footer__contact-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-footer__contact-row {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .p-footer__contact-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.p-footer__wrapper {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1366px) {
  .p-footer__wrapper {
    padding: 60px 80px;
  }
}
@media (max-width: 768px) {
  .p-footer__wrapper {
    padding: 60px 40px 100px;
  }
}
@media (max-width: 480px) {
  .p-footer__wrapper {
    padding: 40px 25px 60px;
  }
}
.p-footer__inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  position: relative;
}
.p-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-footer__row-left {
  width: calc(35% - 100px);
}
@media (max-width: 1366px) {
  .p-footer__row-left {
    width: 100%;
  }
}
.p-footer__row-right {
  width: 65%;
}
@media (max-width: 1366px) {
  .p-footer__row-right {
    width: 100%;
  }
}
.p-footer__top {
  margin-bottom: 100px;
}
@media (max-width: 1366px) {
  .p-footer__top {
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-footer__top {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .p-footer__top {
    margin-bottom: 40px;
    gap: 30px;
  }
}
@media (max-width: 1366px) {
  .p-footer__bottom {
    flex-direction: column-reverse;
  }
}
.p-footer__info-logo {
  max-width: 350px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .p-footer__info-logo {
    margin: 0 auto 30px;
  }
}
@media (max-width: 768px) {
  .p-footer__info-logo {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .p-footer__info-logo {
    margin: 0 auto 20px;
    max-width: 250px;
  }
}
.p-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 480px) {
  .p-footer__sns {
    gap: 25px;
  }
}
.p-footer__sns-facebook {
  width: 36px;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .p-footer__sns-facebook {
    width: 30px;
  }
}
.p-footer__sns-youtube {
  width: 38px;
  aspect-ratio: 121/85;
}
@media (max-width: 480px) {
  .p-footer__sns-youtube {
    width: 32px;
  }
}
.p-footer__sns-insta {
  width: 35px;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .p-footer__sns-insta {
    width: 30px;
  }
}
.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 480px) {
  .p-footer__nav {
    gap: 25px;
  }
}
.p-footer__col {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 480px) {
  .p-footer__col {
    width: 100%;
    gap: 25px;
  }
}
.p-footer__group-ttl {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #cd0811;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .p-footer__group-ttl {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.p-footer__group-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .p-footer__group-list {
    gap: 8px;
    font-size: 13px;
  }
}
.p-footer__group-link:hover {
  color: #cd0811;
}
.p-footer__group-sub {
  margin-bottom: 15px;
}
.p-footer__group-subttl {
  color: #c3c3c3;
}
.p-footer__copyright {
  line-height: 1.8;
  font-size: 13px;
}
@media (max-width: 1366px) {
  .p-footer__copyright {
    line-height: 1.5;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .p-footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 1366px) {
  .p-footer__banner {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .p-footer__banner {
    margin-bottom: 40px;
  }
}
.p-footer__banner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 480px) {
  .p-footer__banner-list {
    gap: 5px;
  }
}
.p-footer__banner-item {
  width: calc((100% - 20px) / 3);
}
@media (max-width: 480px) {
  .p-footer__banner-item {
    width: calc((100% - 5px) / 2);
  }
}
.p-footer__banner-link {
  display: block;
}
.p-footer__banner-link:hover .p-footer__banner-img {
  border: 1px solid #cd0811;
}
.p-footer__banner-img {
  width: 100%;
  border: 1px solid #c3c3c3;
  transition: all 0.2s ease-in-out;
}
.p-footer__pagetop {
  position: absolute;
  top: 0;
  right: -60px;
}
@media (max-width: 768px) {
  .p-footer__pagetop {
    right: -25px;
  }
}
@media (max-width: 480px) {
  .p-footer__pagetop {
    display: none;
  }
}
.p-footer__pagetop-link {
  display: block;
}
.p-footer__pagetop-link:hover .p-footer__pagetop-label, .p-footer__pagetop-link:focus-visible .p-footer__pagetop-label {
  color: #cd0811;
}
.p-footer__pagetop-link:hover .p-footer__pagetop-label::before, .p-footer__pagetop-link:focus-visible .p-footer__pagetop-label::before {
  transform: rotate(-90deg) translateX(4px);
}
.p-footer__pagetop-label {
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #35363b;
  transition: color 0.2s ease;
}
.p-footer__pagetop-label::before {
  content: "";
  display: block;
  background-image: url(../images/common/arrow_common--red.svg);
  background-size: cover;
  width: 25px;
  aspect-ratio: 1/1;
  transform: rotate(-90deg) translateY(0);
  transition: transform 0.2s ease;
}

/* モーション控えめ */
@media (prefers-reduced-motion: reduce) {
  .p-footer__pagetop-label,
  .p-footer__pagetop-label::before {
    transition: none;
  }
}
/* 共通パーツ　サイドフロートメニュー用
---------------------------------------------------------------------------- */
.p-float {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  .p-float {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.p-float__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-float__nav {
    flex-direction: row;
    gap: 0;
  }
}
.p-float__item {
  text-align: center;
  width: 75px;
}
@media (max-width: 768px) {
  .p-float__item {
    width: 25%;
  }
}
.p-float__link {
  display: block;
  border: 2px solid #cd0811;
  border-right: none;
  border-radius: 1rem 0 0 1rem;
  background-color: #fff;
  padding: 10px 5px;
  display: block;
}
.p-float__link:hover {
  background-color: #cd0811;
  color: #fff;
}
.p-float__link:hover .p-float__img img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(51deg) brightness(103%) contrast(102%);
}
@media (max-width: 768px) {
  .p-float__link {
    border-radius: 0;
    border-right: unset;
    padding: 8px 5px;
    background-color: #cd0811;
    border: 1px solid #fff;
    color: #fff;
  }
}
@media (max-width: 480px) {
  .p-float__link {
    padding: 7px 5px 4px;
  }
}
.p-float__img {
  margin: 0 auto 5px;
  display: flex;
  justify-content: center;
  height: 30px;
}
@media (max-width: 768px) {
  .p-float__img {
    height: 25px;
  }
}
@media (max-width: 480px) {
  .p-float__img {
    height: 18px;
    margin: 0 auto 3px;
  }
}
.p-float__img img {
  object-fit: contain;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .p-float__img img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(326deg) brightness(101%) contrast(100%);
  }
}
.p-float__img--tenken img {
  width: 48px;
}
.p-float__img--shop img {
  width: 38px;
}
.p-float__img--ucar img {
  width: 45px;
}
@media (max-width: 768px) {
  .p-float__img--ucar img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .p-float__img--ucar img {
    width: 28px;
  }
}
.p-float__img--inquiry img {
  width: 33px;
}
.p-float__label {
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .p-float__label {
    font-size: 9px;
  }
}

/* 共通パーツ　スマホメニュー用
---------------------------------------------------------------------------- */
.p-sp {
  display: block;
  /* 開いた状態（JSで .is-open を .p-sp に付与） */
}
.p-sp__wrapper {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #cd0811;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  will-change: opacity;
  /* 先読みでカクつき減 */
}
@media (max-width: 480px) {
  .p-sp__wrapper {
    padding: 15px;
  }
}
.p-sp__inner {
  background: #fff;
  border-radius: 1.5rem;
  width: 100%;
  padding: 120px 100px;
  position: relative;
}
@media (max-width: 1366px) {
  .p-sp__inner {
    padding: 120px 60px;
  }
}
@media (max-width: 768px) {
  .p-sp__inner {
    padding: 80px 40px;
  }
}
@media (max-width: 480px) {
  .p-sp__inner {
    padding: 80px 25px 40px;
  }
}
.p-sp.is-open .p-sp__wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-sp__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1800px;
}
@media (max-width: 768px) {
  .p-sp__nav {
    gap: 30px;
  }
}
.p-sp__col {
  width: calc((100% - 150px) / 4);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .p-sp__col {
    width: calc((100% - 90px) / 4);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .p-sp__col {
    width: 100%;
  }
}
.p-sp__group-ttl {
  font-size: 17px;
  font-weight: 700;
  border-bottom: 2px solid #cd0811;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-sp__group-ttl {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.p-sp__group-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .p-sp__group-list {
    gap: 10px;
    font-size: 13px;
  }
}
.p-sp__group-link:hover {
  color: #cd0811;
}
.p-sp__group-sub {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .p-sp__group-sub {
    margin-bottom: 12px;
  }
}
.p-sp__group-subttl {
  color: #c3c3c3;
}

/* ====== フォーカス & モーション配慮 ====== */
.p-header__hamburger:focus-visible,
.p-sp__group-link:focus-visible {
  outline: 2px solid #cc0000;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .p-sp__inner,
  .p-sp__nav,
  .p-header__hamburger-inner span {
    transition: none !important;
  }
}/*# sourceMappingURL=common.css.map */