@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

@font-face {
  font-family: "keifont";
  src: url("../font/keifont.ttf") format("truetype");
}
body {
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 1.4;
}
body.js-no-scroll {
  overflow-y: hidden;
}

/* 「電話をかけるボタン」があるためコメントアウト */
.bangers {
  font-family: "Bangers", system-ui;
  font-style: normal;
}

.mplus2 {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* layout > 2カラムレイアウト(columns)
--------------------------------------------- */
.l-columns {
  display: grid;
  grid-template-rows: auto auto auto;
}
@media screen and (min-width:900px) {
  .l-columns {
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto auto;
    column-gap: 80px;
  }
}

.l-columns__main {
  margin-top: 40px;
  grid-row: 2/3;
}
@media screen and (min-width:900px) {
  .l-columns__main {
    margin-top: 0;
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

.l-columns__side {
  display: contents;
}
@media screen and (min-width:900px) {
  .l-columns__side {
    display: block;
  }
}

/* object > component > button
--------------------------------------------- */
/* CTAボタン：電話番号 */
.c-tel-button {
  display: inline-block;
  text-align: center;
  width: 100%;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-tel-button:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:900px) {
  .c-tel-button {
    min-height: 107px;
    text-align: right;
  }
}
.c-tel-button span {
  display: inline-block;
}
.c-tel-button span.text {
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .c-tel-button span.text {
    font-size: 20px;
  }
}
.c-tel-button span.num {
  margin-top: 2px;
  font-family: "Arial", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 400px) {
  .c-tel-button span.num {
    font-size: 22px;
  }
}
@media screen and (min-width:900px) {
  .c-tel-button span.num {
    margin-top: 4px;
    font-size: 48px;
  }
}
.c-tel-button span.emergency {
  position: absolute;
  left: 33px;
  top: -45px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width:900px) {
  .c-tel-button span.emergency {
    left: 117px;
    gap: 5px;
  }
}
.c-tel-button span.emergency img {
  flex: 0 0 33px;
  width: 33px;
  object-fit: cover;
}
@media screen and (min-width:900px) {
  .c-tel-button span.emergency img {
    width: 36px;
  }
}
.c-tel-button span.emergency span.emergency-text {
  margin-top: 8px;
  flex: 1 1 auto;
  font-size: 20px;
  color: #fff533;
  font-weight: 600;
}
.c-tel-button.c-tel-button--red span.num {
  color: #d81513;
}
.c-tel-button.c-tel-button--red span.emergency span.emergency-text {
  color: #d81513;
}

/* CTA：LINEボタン */
.c-line-button {
  display: inline-block;
  width: 100%;
  transition: opacity 0.3s;
  text-align: center;
}
@media (hover: hover) {
  .c-line-button:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:900px) {
  .c-line-button {
    min-height: 107px;
    text-align: left;
  }
}

/* ヘッダー：電話ボタン */
.c-header-tel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 179px;
  height: 34px;
  border: 1px solid #000;
  background: #d81513;
  box-shadow: 4px 4px 0px 0px #fff533;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-header-tel-button:hover {
    opacity: 0.8;
  }
}
.c-header-tel-button img {
  width: 100%;
  object-fit: cover;
}
.c-header-tel-button span {
  display: inline-block;
}
.c-header-tel-button span.icon {
  flex: 0 0 11px;
  width: 11px;
  position: relative;
  transform: translateY(-4px);
}
.c-header-tel-button span.text {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

/* ヘッダー：LINEボタン */
.c-header-line-button {
  display: inline-flex;
  width: 119px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background-color: #07c655;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  box-shadow: 4px 4px 0px 0px #fff533;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-header-line-button:hover {
    opacity: 0.8;
  }
}

/* スライダー：下層リンクボタン */
.c-slide-button {
  display: inline-block;
  width: 100%;
  background-color: #d81513;
  text-align: left;
  padding: 14px 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.3s;
  position: relative;
}
.c-slide-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  mask-image: url("../img/common/icon-chevron-right-w.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: #fff;
  display: inline-block;
  width: 8px;
  height: 12px;
}
@media screen and (min-width:768px) {
  .c-slide-button::after {
    right: 15px;
    width: 10px;
    height: 16px;
  }
}
@media (hover: hover) {
  .c-slide-button:hover {
    opacity: 0.8;
  }
}

/* 電話番号ボタン：小サイズ/赤背景 */
.c-tel-button-sm {
  display: inline-block;
  color: #fff;
  background-color: #d81513;
  border-radius: 6px;
  padding: 14px 4px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

/* SP追従CTA：電話ボタン */
.c-sticky-tel-button {
  display: inline-block;
  width: 162px;
  height: 31px;
  display: grid;
  place-items: center;
  background-color: #fff;
  box-shadow: 4px 4px 0px 0px #940f0d;
  border-radius: 6px;
  color: #d81513;
  font-size: 14px;
  font-weight: 600;
}

/* SP追従CTA：LINEボタン */
.c-sticky-line-button {
  display: inline-block;
  width: 131px;
  height: 31px;
  display: grid;
  place-items: center;
  background-color: #07c655;
  box-shadow: 4px 4px 0px 0px #038538;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}

/* お問い合わせ：送信ボタン */
.c-submit-button {
  background-color: #d81513;
  color: #fff;
  width: 100%;
  max-width: 384px;
  padding: 16px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 125.4%;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-submit-button:hover {
    opacity: 0.8;
  }
}

/* CTA02: 応募フォームはこちら */
.c-cta02-button {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding: 21.5px 10px;
  text-align: center;
  width: 100%;
  max-width: 261px;
  border: 1px solid #000;
  background-color: #fff;
  box-shadow: 8px 8px 0px 0px #fff533;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-cta02-button:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:1240px) {
  .c-cta02-button {
    padding: 31px 10px;
    font-size: 32px;
    max-width: 375px;
  }
}

/* LINEボタン(小) */
.c-sm-line-button {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 10px;
  border-radius: 6px;
  max-width: 229px;
  width: 100%;
  background-color: #07c655;
  color: #fff;
  text-align: center;
  line-height: 1;
  box-shadow: 4px 4px 0px 0px #038538;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-sm-line-button:hover {
    opacity: 0.8;
  }
}

/* ガラス交換リンクボタン */
.card-contact-button,
.card-line-button {
  max-width: 158px;
  width: 100%;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 5px;
  width: calc((100% - 10px) / 2);
  text-align: center;
  line-height: 1.4;
  border-radius: 6px;
}
@media screen and (min-width:900px) {
  .card-contact-button,
  .card-line-button {
    width: calc((100% - 20px) / 2);
  }
}

.card-contact-button {
  background-color: #e80505;
  box-shadow: 4px 4px 0px 0px #940f0d;
}

.card-line-button {
  background-color: #07c655;
  box-shadow: 4px 4px 0px 0px #038538;
}

/* 料金：ボタン */
.c-price-tel-button,
.c-price-line-button {
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  width: 224px;
  height: 42px;
  display: grid;
  place-items: center;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-price-tel-button:hover,
  .c-price-line-button:hover {
    opacity: 0.8;
  }
}

.c-price-tel-button {
  background-color: #d81513;
  font-size: 22px;
  font-weight: 700;
}
.c-price-tel-button span.inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-price-tel-button span.inner img {
  flex: 0 0 15px;
  width: 15px;
  object-fit: cover;
}
.c-price-tel-button span span.text {
  flex: 1 1 auto;
}

.c-price-line-button {
  background-color: #07c655;
  font-size: 20px;
  font-weight: 600;
}

/* レッカーの知恵袋：ボタン */
.c-single-tel-button,
.c-single-line-button {
  display: inline-grid;
  place-items: center;
  width: 218px;
  height: 42px;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #000;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-single-tel-button:hover,
  .c-single-line-button:hover {
    opacity: 0.8;
  }
}

.c-single-tel-button {
  background-color: #d81513;
}
.c-single-tel-button span.inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-single-tel-button span.inner img {
  flex: 0 0 15px;
  width: 15px;
  object-fit: contain;
}
.c-single-tel-button span.inner span.text {
  flex: 1 1 auto;
  font-size: 22px;
  font-weight: 700;
}

.c-single-line-button {
  background-color: #07c655;
  font-size: 20px;
  font-weight: 600;
}

/* 店舗詳細リンクボタン(もっと見る) */
.c-link-button02 {
  display: inline-block;
  max-width: 222px;
  width: 100%;
  background-color: #d81513;
  color: #fff;
  padding: 13px 21px 15px 16px;
  border-radius: 10px;
  font-weight: 600px;
  line-height: 1.4;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (min-width:768px) {
  .c-link-button02 {
    max-width: 284px;
    padding: 13.5px 21px 14.5px 18.5px;
    font-size: 24px;
  }
}
.c-link-button02::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  background-image: url(../img/store/chevron-right-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 7.41px;
  height: 12px;
}
@media (hover: hover) {
  .c-link-button02:hover {
    opacity: 0.8;
  }
}

/* 店舗詳細FV */
.c-store-tel-button,
.c-store-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 228px;
  height: 45px;
}
@media screen and (min-width:768px) {
  .c-store-tel-button,
  .c-store-line-button {
    width: 380px;
    height: 67px;
  }
}

.c-store-tel-button {
  background-color: #fff;
  color: #d81513;
  display: flex;
  align-content: inherit;
  gap: 4px;
}
.c-store-tel-button .phone {
  flex: 0 0 13px;
  width: 13px;
  object-fit: contain;
}
@media screen and (min-width:768px) {
  .c-store-tel-button .phone {
    flex: 0 0 20px;
    width: 20px;
  }
}
.c-store-tel-button span.text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .c-store-tel-button span.text {
    font-size: 38px;
  }
}

.c-store-tel-text {
  position: absolute;
  top: -18px;
  left: -21px;
  display: flex;
  width: 89px;
  height: 25px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 18.5px;
  border: 1px solid #222;
  background: #d81513;
}
@media screen and (min-width:768px) {
  .c-store-tel-text {
    width: 118px;
    height: 37px;
    top: -28px;
    left: -26px;
    font-size: 36px;
  }
}
.c-store-tel-text .emergency {
  flex: 0 0 16px;
  width: 16px;
  object-fit: contain;
}
@media screen and (min-width:768px) {
  .c-store-tel-text .emergency {
    flex: 0 0 25px;
    width: 25px;
  }
}
.c-store-tel-text span.text {
  color: #fff533;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .c-store-tel-text span.text {
    font-size: 16px;
  }
}

.c-store-line-button {
  background-color: #07c655;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .c-store-line-button {
    font-size: 36px;
  }
}

/* トップ：サービス内容リンクボタン */
.c-work-button {
  display: inline-block;
  max-width: 167px;
  width: 100%;
  background-color: #fff;
  color: #d81513;
  padding: 10px 10px;
  border-radius: 50px;
  border: 1px solid #d81513;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media screen and (min-width:768px) {
  .c-work-button {
    max-width: 390px;
    padding: 14px 20px;
    font-size: 20px;
  }
}
.c-work-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url(../img/common/chevron-right-red.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 8px;
  height: 12px;
}
@media screen and (min-width:768px) {
  .c-work-button::after {
    width: 10px;
    height: 16px;
  }
}
.c-work-button span.sm {
  font-size: 9px;
}
@media screen and (min-width:768px) {
  .c-work-button span.sm {
    font-size: 20px;
  }
}

/* object > component > heading
--------------------------------------------- */
.c-section-heading {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  paint-order: stroke;
  text-align: center;
  -webkit-text-stroke: 10px #fff;
  text-stroke: 10px #fff;
}
@media screen and (min-width:768px) {
  .c-section-heading {
    font-size: 48px;
  }
}
.c-section-heading.c-section-heading--red {
  color: #d81513;
}
.c-section-heading.c-section-heading--white {
  color: #fff;
  -webkit-text-stroke: 10px #000;
  text-stroke: 10px #000;
}
.c-section-heading.border-none {
  paint-order: unset;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
}
.c-section-heading span.colored {
  color: #d81513;
}
.c-section-heading span.yellow {
  color: #fdd116;
}
.c-section-heading span.red {
  color: #d81513;
}
.c-section-heading span.min {
  font-size: 28px;
}
@media screen and (min-width:768px) {
  .c-section-heading span.min {
    font-size: 42px;
  }
}
.c-section-heading span.big {
  font-size: 35px;
}
@media screen and (min-width:768px) {
  .c-section-heading span.big {
    font-size: 55px;
  }
}
.c-section-heading span.dot {
  position: relative;
  display: inline-block;
}
@media screen and (min-width:768px) {
  .c-section-heading span.dot {
    padding-top: 10px;
  }
}
.c-section-heading span.dot:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background: #000;
}
@media screen and (min-width:768px) {
  .c-section-heading span.dot:before {
    width: 10px;
    height: 10px;
  }
}

.c-solution__title {
  font-size: 30px;
  -webkit-text-stroke: 10px #000;
  text-stroke: 10px #000;
  paint-order: stroke;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.4em;
  margin-bottom: 50px;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width:768px) {
  .c-solution__title {
    font-size: 56px;
    margin-bottom: 80px;
  }
}
.c-solution__title span {
  font-size: 30px;
  -webkit-text-stroke: 10px #000;
  text-stroke: 10px #000;
  paint-order: stroke;
  letter-spacing: 0.05em;
  color: #fdd116;
}
@media screen and (min-width:768px) {
  .c-solution__title span {
    font-size: 70px;
  }
}

/* object > component > タグ(tag)
--------------------------------------------- */
.c-tag {
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  background-color: #fff7d0;
  padding: 8px 10px;
  text-align: center;
}

/* object > component > 日付文字(date)
--------------------------------------------- */
.c-date {
  font-size: 12px;
  font-weight: 300;
}

/* object > project > トップページ(top)
--------------------------------------------- */
/* lead */
.p-top__lead {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-top__lead {
    padding: 100px 0;
  }
}

.p-top__lead-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-top__lead-heading {
    font-size: 40px;
  }
}
.p-top__lead-heading span.colored {
  color: #d81513;
}

.p-top__lead-content {
  width: min(1089px, 100%);
  margin: 40px auto 0;
  padding: 0 26.5px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:900px) {
  .p-top__lead-content {
    margin: 60px auto 0;
    padding: 0;
    flex-direction: row;
    gap: 60px;
  }
}

@media screen and (min-width:900px) {
  .p-top__lead-flow {
    flex: 1 1 auto;
  }
}

.p-top__lead-flow-contents {
  width: min(1124px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-contents {
    padding: 0;
  }
}

.p-top__lead-flow-content {
  display: flex;
  gap: 20px;
  padding: 0 22.5px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-content {
    padding: 0;
  }
}

.p-top__lead-flow-numbers .list {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .list {
    gap: 30px;
  }
}
.p-top__lead-flow-numbers .list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #eea25d 0%, #d81513 100%);
  width: 4px;
  height: 100%;
}
.p-top__lead-flow-numbers .item {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(90deg, #d81513 0%, #eea25d 100%);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item {
    width: 30px;
    height: 30px;
  }
}
.p-top__lead-flow-numbers .item.second {
  margin-top: 19px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item.second {
    margin-top: 0;
  }
}
.p-top__lead-flow-numbers .item.third {
  margin-top: 38px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item.third {
    margin-top: 0;
  }
}
.p-top__lead-flow-numbers .item.fourth {
  margin-top: 38px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item.fourth {
    margin-top: 0;
  }
}
.p-top__lead-flow-numbers .item.fifth {
  margin-top: 36px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item.fifth {
    margin-top: 0;
  }
}
.p-top__lead-flow-numbers .item.sixth {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item.sixth {
    margin-top: 0;
  }
}
.p-top__lead-flow-numbers .item span.inner {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Arial", sans-serif;
  background-color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-numbers .item span.inner {
    font-size: 20px;
    width: 26px;
    height: 26px;
  }
}

.p-top__lead-flow-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-items {
    gap: 32px;
  }
}

.p-top__lead-flow-item .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-top__lead-flow-item .text {
    font-size: 20px;
  }
}

@media screen and (min-width:900px) {
  .p-top__lead-photo {
    flex: 0 0 380px;
  }
}
.p-top__lead-photo img {
  width: 100%;
  object-fit: cover;
}

.p-top__lead-message {
  width: min(1280px, 100%);
  padding: 0 12px;
  margin: 40px auto 0;
}
@media screen and (min-width:768px) {
  .p-top__lead-message {
    margin: 100px auto 0;
  }
}

.p-top__lead-message-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-top__lead-message-text {
    font-size: 24px;
  }
}
.p-top__lead-message-text:not(:first-child) {
  margin-top: 1em;
}
.p-top__lead-message-text span.colored {
  color: #d81513;
}

/* こんな悩み */
.p-top__worry img {
  width: 100%;
  object-fit: cover;
}

.p-top__worry02 {
  padding: 57px 0 0;
  background-image: url(../img/top/top-worry-bg-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .p-top__worry02 {
    padding: 72px 0 0;
    background-image: url(../img/top/top-worry-bg-pc.webp);
  }
}

.p-top__worry02-heading {
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 12px;
}
.p-top__worry02-heading span.sm {
  font-size: 24px;
}
@media screen and (min-width:768px) {
  .p-top__worry02-heading span.sm {
    font-size: 36px;
  }
}
.p-top__worry02-heading span.lg {
  font-size: 30px;
}
@media screen and (min-width:768px) {
  .p-top__worry02-heading span.lg {
    font-size: 40px;
  }
}
@media screen and (min-width:900px) {
  .p-top__worry02-heading span.lg {
    font-size: 46px;
  }
}
@media screen and (min-width:1024px) {
  .p-top__worry02-heading span.lg {
    font-size: 52px;
  }
}
@media screen and (min-width:1240px) {
  .p-top__worry02-heading span.lg {
    font-size: 64px;
  }
}

.p-top__worry02-inner {
  width: min(1277px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__worry02-body {
  margin-top: 40px;
}
@media screen and (min-width:900px) {
  .p-top__worry02-body {
    margin-top: 66px;
    display: flex;
    gap: 22px;
  }
}

@media screen and (min-width:900px) {
  .p-top__worry02-textarea {
    flex: 1 1 auto;
  }
}

.p-top__worry02-text {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  left: 1.8;
}
.p-top__worry02-text span.is-colored {
  color: #fff200;
  font-weight: 600;
}
.p-top__worry02-text:not(:first-child) {
  margin-top: 2em;
}

.p-top__worry02-photo {
  margin-top: 40px;
}
@media screen and (min-width:900px) {
  .p-top__worry02-photo {
    margin-top: 0;
    flex: 0 0 460px;
  }
}
@media screen and (min-width:1024px) {
  .p-top__worry02-photo {
    margin-top: 0;
    flex: 0 0 611px;
  }
}
.p-top__worry02-photo img {
  width: 100%;
  object-fit: cover;
}

.p-top__worry02-box {
  margin-top: 20px;
  padding: 33px 8px 25px;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .p-top__worry02-box {
    margin-top: 51px;
    padding: 21px 8px 26px;
    border: 2px solid #000;
    box-shadow: 8px 12px 0px 0px #222;
  }
}

/* サービス一覧 */
.p-top__service {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-top__service {
    padding: 83px 0;
  }
}

.p-top__service-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-top__service-heading {
    gap: 12px;
  }
}
.p-top__service-heading span.lg {
  font-size: 28px;
  font-weight: 800;
}
@media screen and (min-width:768px) {
  .p-top__service-heading span.lg {
    font-size: 48px;
  }
}
.p-top__service-heading span.sm {
  font-weight: 800;
}
@media screen and (min-width:768px) {
  .p-top__service-heading span.sm {
    font-size: 36px;
  }
}

.p-top__service-inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__service-content {
  margin-top: 65px;
}
@media screen and (min-width:768px) {
  .p-top__service-content {
    margin-top: 74px;
  }
}

.p-top__service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 63px;
}
@media screen and (min-width:768px) {
  .p-top__service-items {
    column-gap: 40px;
    row-gap: 74px;
  }
}

.p-top__service-item.ninth {
  grid-row: 5/6;
  grid-column: 1/3;
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .p-top__service-item.ninth {
    grid-row: initial;
    grid-column: initial;
    width: initial;
    margin: initial;
  }
}

.p-top__service-photo {
  position: relative;
}

.p-top__service-number {
  position: absolute;
  top: -25px;
  left: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .p-top__service-number {
    top: -37px;
  }
}
.p-top__service-number span.text {
  color: #d81513;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  transform: translateY(2px);
}
@media screen and (min-width:768px) {
  .p-top__service-number span.text {
    font-size: 16px;
  }
}
.p-top__service-number .number {
  flex: 0 0 38px;
  width: 38px;
  height: 34px;
  object-fit: contain;
}
@media screen and (min-width:768px) {
  .p-top__service-number .number {
    flex: 0 0 75px;
    width: 75px;
    height: 67px;
  }
}

.p-top__service-pic {
  width: 100%;
  object-fit: cover;
}

.p-top__service-body {
  max-width: 415px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-top__service-body {
    margin-top: 42px;
    margin-left: 40px;
    gap: 12px;
  }
}

.p-top__service-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.26px;
}
@media screen and (min-width:768px) {
  .p-top__service-text {
    font-size: 15px;
  }
}

.p-top__service-price {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .p-top__service-price {
    font-size: 15px;
  }
}

.p-top__service-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
@media screen and (min-width:768px) {
  .p-top__service-link {
    bottom: -24px;
  }
}

/* ロードサービスなんて... */
.p-top__ask {
  padding: 60px 0;
  background-color: #6e6764;
}
@media screen and (min-width:768px) {
  .p-top__ask {
    padding: 94px 0;
  }
}

.p-top__ask-heading {
  width: fit-content;
  margin-inline: auto;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  padding: 0 12px 12.5px;
  border-bottom: 4px solid #f9dc56;
}
@media screen and (min-width:768px) {
  .p-top__ask-heading {
    font-size: 36px;
    padding: 0 12px 8.5px;
  }
}

.p-top__ask-inner {
  width: min(356px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}
@media (min-width: 1100px) {
  .p-top__ask-inner {
    width: min(1180px, 100%);
  }
}

.p-top__ask-body {
  margin-top: 24px;
  position: relative;
}
.p-top__ask-body img {
  width: 100%;
}

.p-top__ask-textarea {
  position: absolute;
  top: 27px;
  right: 15px;
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .p-top__ask-textarea {
    top: 30px;
    right: 305px;
    max-width: 657px;
  }
}

.p-top__ask-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}
@media (min-width: 1100px) {
  .p-top__ask-text {
    font-size: 20px;
  }
}
.p-top__ask-text span.bold {
  font-weight: 800;
}
.p-top__ask-text span.colored {
  font-weight: 800;
  color: #d81513;
}
.p-top__ask-text:not(:first-child) {
  margin-top: 1.5em;
}

/* 理由 */
.p-top__reason {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-top__reason {
    padding: 100px 0;
  }
}

.p-top__reason-heading {
  text-align: center;
}

.p-top__reason-inner {
  width: min(1028px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__reason-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-top__reason-content {
    margin-top: 76px;
  }
}

.p-top__reason-slide-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.p-top__reason-slide-wrap .swiper {
  overflow: visible;
}
.p-top__reason-slide-wrap .swiper-horizontal > .swiper-pagination-bullets,
.p-top__reason-slide-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-top__reason-slide-wrap .swiper-pagination-custom,
.p-top__reason-slide-wrap .swiper-pagination-fraction {
  bottom: -50px;
}
.p-top__reason-slide-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-top__reason-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-top__reason-slide-wrap .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}

/* safety */
.p-top__safety {
  padding: 60px 0;
}

.p-top__safety-heading {
  text-align: center;
}

.p-top__safety-inner {
  width: min(924px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__safety-content {
  margin-top: 23px;
}

.p-top__safety-link {
  display: block;
  height: 370px;
  background-image: url(../img/top/top-safety-photo.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.72px;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (min-width:500px) {
  .p-top__safety-link {
    font-size: 24px;
  }
}
@media screen and (min-width:900px) {
  .p-top__safety-link {
    font-size: 36px;
  }
}
@media (hover: hover) {
  .p-top__safety-link:hover {
    opacity: 0.8;
  }
}

/* 料金：レイアウト */
.p-top__price {
  margin-top: 72px;
}

/* レッカーの知恵袋 */
.p-top__wrecker {
  padding: 80px 0;
}

.p-top__wrecker-inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__wrecker-heading {
  text-align: center;
}

.p-top__wrecker-content {
  margin-top: 80px;
}
.p-top__wrecker-content .p-top__wrecker-slide-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .p-top__wrecker-content .p-top__wrecker-slide-wrap {
    padding-bottom: 0;
  }
}
.p-top__wrecker-content .swiper {
  position: static;
  overflow: visible;
}
@media screen and (min-width:768px) {
  .p-top__wrecker-content .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}
.p-top__wrecker-content .swiper-horizontal > .swiper-pagination-bullets,
.p-top__wrecker-content .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-top__wrecker-content .swiper-pagination-custom,
.p-top__wrecker-content .swiper-pagination-fraction {
  bottom: 0;
}
.p-top__wrecker-content .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-top__wrecker-content .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-top__wrecker-content .swiper-pagination-bullet-active {
  background: #222;
  opacity: 1;
}

.p-top__wrecker-link {
  display: block;
  padding: 40px 20px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-top__wrecker-link:hover {
    opacity: 0.8;
  }
}

.p-top__wrecker-thumbnail {
  position: relative;
}
.p-top__wrecker-thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-top__wrecker-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-top__wrecker-title {
    font-size: 32px;
  }
}

.p-top__wrecker-textarea {
  margin-top: 24px;
  padding: 0 27px;
}

.p-top__wrecker-text {
  font-size: 20px;
  font-weight: 600;
}

/* お客様の声 */
.p-top__voice {
  padding: 80px 0;
}

.p-top__voice-heading {
  text-align: center;
}

.p-top__voice-inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__voice-contents {
  margin-top: 40px;
}

.p-top__voice-content:not(:first-child) {
  margin-top: 40px;
}
.p-top__voice-content:nth-child(even) .p-top__voice-list-item {
  background-color: #ffefa4;
}

.p-top__voice-item {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-top__voice-item::-webkit-scrollbar {
  display: none;
}

.p-top__voice-list {
  width: 895px;
  padding-top: 101px;
}
@media screen and (min-width:768px) {
  .p-top__voice-list {
    width: 1300px;
    padding-top: 91px;
  }
}

.p-top__voice-title {
  font-size: 24px;
  font-weight: 600;
}

.p-top__voice-list {
  display: flex;
  gap: 20px;
}

.p-top__voice-list-item {
  display: block;
  width: calc((100% - 40px) / 3);
  padding: 94px 42px 50px;
  background-color: #f9dc56;
  border-radius: 20px;
  position: relative;
}

.p-top__voice-photo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -61px;
  width: 122px;
  height: 122px;
  overflow: hidden;
}
.p-top__voice-photo img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__voice-message {
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-top__voice-message {
    font-size: 20px;
  }
}

/* 店舗一覧 */
.p-top__shop {
  padding: 80px 0;
  background-color: #fffbe9;
}

.p-top__shop-heading {
  text-align: center;
}

.p-top__shop-inner {
  width: min(1114px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__shop-content {
  margin-top: 40px;
}

.p-top__shop-item {
  padding: 20px;
  border-bottom: 1px solid #000;
}
.p-top__shop-item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-top__shop-item:not(:first-child) {
    margin-top: 40px;
  }
}

.p-top__shop-title {
  color: #d81513;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-top__shop-title {
    font-size: 24px;
  }
}

.p-top__shop-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
@media screen and (min-width:900px) {
  .p-top__shop-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px;
    column-gap: 40px;
    row-gap: 20px;
  }
}

.p-top__shop-list-item {
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-top__shop-list-item {
    font-size: 20px;
  }
}

.p-top__shop-store-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.p-top__shop-store-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-top__shop-store-address,
.p-top__shop-store-tel {
  font-weight: 300px;
  line-height: 1.4;
}

/* flow */
.p-top__flow-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-top__flow-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 218px;
  width: 100%;
  padding: 11px 0;
  text-align: center;
  background-color: #d81513;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #000;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-top__flow-tel:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:768px) {
  .p-top__flow-tel {
    max-width: 218px;
  }
}
.p-top__flow-tel img {
  flex: 0 0 15px;
  width: 15px;
  object-fit: contain;
}
.p-top__flow-tel span.text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.p-top__flow-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #07c655;
  color: #fff;
  max-width: 218px;
  padding: 13px 10px;
  border-radius: 40px;
  border: 1px solid #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-top__flow-line:hover {
    opacity: 0.8;
  }
}

/* よくあるご質問 */
.p-top__faq {
  padding: 80px 0;
}

.p-top__faq-heading {
  text-align: center;
}

.p-top__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__faq-content {
  margin-top: 40px;
}

/* お知らせ */
.p-top__news {
  padding: 80px 0;
}

.p-top__news-heading {
  text-align: center;
}

.p-top__news-inner {
  width: min(873px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__news-content {
  margin-top: 40px;
}

/* メディア掲載情報 */
.p-top__media {
  padding: 80px 0;
}

.p-top__media-heading {
  text-align: center;
}

.p-top__media-inner {
  width: min(1332px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__media-content {
  margin-top: 40px;
}

/* カード */
.p-top__media-card {
  display: block;
  padding: 40px 20px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-top__media-card {
    opacity: 0.8;
  }
}
@media screen and (min-width:768px) {
  .p-top__media-card {
    width: calc((100% - 48px) / 3) !important;
  }
}

.p-top__media-slide-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .p-top__media-slide-container {
    padding-bottom: 0;
  }
}
.p-top__media-slide-container .swiper {
  overflow: visible;
  position: static;
}
.p-top__media-slide-container .swiper-horizontal > .swiper-pagination-bullets,
.p-top__media-slide-container .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-top__media-slide-container .swiper-pagination-custom,
.p-top__media-slide-container .swiper-pagination-fraction {
  bottom: 0;
}
.p-top__media-slide-container .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-top__media-slide-container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-top__media-slide-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}

.p-top__media-card-thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-top__media-card-body {
  margin-top: 24px;
}

.p-top__media-date {
  font-weight: 300;
}

.p-top__media-card-text {
  margin-top: 24px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-top__media-card-text {
    font-size: 20px;
  }
}

/* FC加盟店 + 採用情報 */
.p-top__bottom-cta {
  padding: 60px 0;
}

.p-top__bottom-cta-inner {
  width: min(1264px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__bottom-cta-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width:768px) {
  .p-top__bottom-cta-items {
    flex-direction: row;
  }
}

.p-top__bottom-cta-item {
  width: 100%;
}
@media screen and (min-width:768px) {
  .p-top__bottom-cta-item {
    width: 50%;
  }
}

.p-top__bottom-cta-link {
  margin-top: 26px;
  display: block;
  width: 100%;
  height: 370px;
  background-color: #d9d9d9;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.72px;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width:768px) {
  .p-top__bottom-cta-link {
    font-size: 36px;
  }
}
@media (hover: hover) {
  .p-top__bottom-cta-link:hover {
    opacity: 0.8;
  }
}
.p-top__bottom-cta-link.recruit {
  background-image: url(../img/top/top-recruit-photo.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.p-top__bottom-cta-link.franchise {
  background-image: url(../img/top/top-franchise-photo.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-top__bottom-cta-heading {
  text-align: center;
}

/* スタッフ紹介 */
.p-top__staff {
  padding: 80px 0;
}

.p-top__staff-heading {
  text-align: center;
}

.p-top__staff-inner {
  width: min(1342px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-top__staff-content {
  margin-top: 40px;
}

.p-top__staff-slide-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .p-top__staff-slide-wrap {
    padding-bottom: 0;
  }
}
.p-top__staff-slide-wrap .swiper {
  position: static;
}
@media screen and (min-width:768px) {
  .p-top__staff-slide-wrap .swiper-pagination {
    display: none;
  }
}
.p-top__staff-slide-wrap .swiper-horizontal > .swiper-pagination-bullets,
.p-top__staff-slide-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-top__staff-slide-wrap .swiper-pagination-custom,
.p-top__staff-slide-wrap .swiper-pagination-fraction {
  bottom: 0;
}
.p-top__staff-slide-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-top__staff-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-top__staff-slide-wrap .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}
.p-top__staff-slide-wrap .swiper-button-prev {
  display: none;
}
@media screen and (min-width:768px) {
  .p-top__staff-slide-wrap .swiper-button-prev {
    display: block;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
.p-top__staff-slide-wrap .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/slider-chevron-left.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 20px;
  height: 32px;
}
.p-top__staff-slide-wrap .swiper-button-prev::after {
  content: none;
}
.p-top__staff-slide-wrap .swiper-button-next {
  display: none;
}
@media screen and (min-width:768px) {
  .p-top__staff-slide-wrap .swiper-button-next {
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}
.p-top__staff-slide-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/slider-chevron-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 20px;
  height: 32px;
}
.p-top__staff-slide-wrap .swiper-button-next::after {
  content: none;
}

.p-top__staff-slide {
  max-width: 1103px;
  margin-inline: auto;
}
.p-top__staff-item {
  background-color: #d81513;
  border-radius: 20px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width:768px) {
  .p-top__staff-item {
    padding: 40px 40px;
    flex-direction: row;
  }
}

@media screen and (min-width:768px) {
  .p-top__staff-photo {
    flex: 0 0 322px;
  }
}
.p-top__staff-photo img {
  width: 100%;
  object-fit: cover;
}

.p-top__staff-body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .p-top__staff-body {
    flex: 1 1 auto;
  }
}

.p-top__staff-name {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.p-top__staff-info {
  color: #fff;
  margin-top: 13px;
  font-size: 20px;
  font-weight: 600;
}

.p-top__staff-textarea {
  margin-top: 80px;
  flex: 1 1 auto;
}

.p-top__staff-text {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

/* object > project > レッカーの知恵袋一覧(home)
--------------------------------------------- */
.p-home {
  padding: 60px 12px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-home {
    padding: 100px 12px;
  }
}

/* 
.p-home__main {
  margin-top: 40px;
  @include mq("md") {
    margin-top: 40px;
  }
}
 */
.p-home__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (min-width:768px) {
  .p-home__list {
    gap: 30px;
  }
}

.p-home__pagination {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-home__pagination {
    margin-top: 60px;
  }
}

/* object > project > 詳細ページ共通(single)
--------------------------------------------- */
.p-single {
  padding: 40px 12px 120px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-single {
    padding: 80px 12px 80px;
  }
}

.p-single-case .c-date {
  font-size: 18px;
  color: #C9C9C9;
  font-weight: 600;
}

.p-single-case .c-tag {
  font-size: 12px;
  color: #fff;
  background-color: #FDD116;
}

.p-single__heading {
  font-size: 28px;
  font-weight: 600;
}

.p-single__meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (min-width:768px) {
  .p-single__meta {
    justify-content: flex-start;
  }
}

.p-single__thumbnail {
  margin-top: 24px;
  position: relative;
}
.p-single__thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-single__lead {
  margin-top: 24px;
}

.p-single__lead-text {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-single__lead-text {
    font-size: 16px;
  }
}

.p-single__title {
  padding: 12px 28px 12px 20px;
  background-color: #ffe255;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #000;
  position: relative;
}
.p-single__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  mask-image: url(../img/blogs/icon-arrow-up-b.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  display: inline-block;
  width: 12px;
  height: 8px;
  background: #222;
}
.p-single__title.no-icon::after {
  content: none;
}

.p-single__items {
  margin-top: 24px;
}

.p-single__item:not(:first-child) {
  margin-top: 24px;
}

.p-singe__item-content {
  margin-top: 24px;
}
@media screen and (min-width:768px) {
  .p-singe__item-content.column {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
}

@media screen and (min-width:768px) {
  .p-single__item-photo {
    flex: 0 0 250px;
  }
}
.p-single__item-photo img {
  width: 100%;
  object-fit: cover;
}

.p-single__thumbnail-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 10px;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .p-single__thumbnail-title {
    font-size: 32px;
  }
}

@media screen and (min-width:768px) {
  .p-single__item-body {
    flex: 1 1 auto;
  }
}

.p-single__item-text {
  font-size: 16px;
  font-weight: 300;
}

.p-single__content {
  margin-top: 84px;
}
.p-single__content h2 {
  font-size: 24px;
  font-weight: 600;
  padding: 10px 0 8px;
  border-bottom: 3px solid #d81513;
  background-color: #ffedec;
}
.p-single__content h2 + p {
  margin-top: 16px;
}
.p-single__content h3 {
  font-size: 20px;
  font-weight: 600;
  padding-left: 10px;
  border-left: 3px solid #d81513;
}
.p-single__content h3 + p {
  margin-top: 16px;
}
.p-single__content h4 {
  font-weight: 600;
}
.p-single__content h4 + p {
  margin-top: 16px;
}
.p-single__content li {
  font-size: 16px;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
}
.p-single__content li::after {
  content: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d81513;
}
.p-single__content li:not(:first-of-type) {
  margin-top: 10px;
}
.p-single__content .wp-block-table {
  display: block;
  margin-top: 40px;
}
.p-single__content .wp-block-table table tr td:first-of-type {
  background-color: #f0f0f0;
}
.p-single__content .wp-block-table table th {
  padding: 10px 20px;
  font-weight: 600;
}
.p-single__content .wp-block-table table td {
  padding: 10px 10px;
  font-weight: 600;
}
.p-single__content p {
  font-weight: 600;
}
.p-single__content * + h2,
.p-single__content * + h3,
.p-single__content * + h4,
.p-single__content * + ul {
  margin-top: 40px;
}

/* カード */
* + .p-single__card {
  margin-top: 84px;
}

.p-single__card {
  padding: 20px 20px;
  border-radius: 20px;
  border: 1px solid #c6c6c6;
  background-color: #fff;
}

.p-single__card-title {
  font-size: 20px;
  font-weight: 600;
}

.p-single__card-content {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width:768px) {
  .p-single__card-content {
    flex-direction: row;
  }
}

@media screen and (min-width:768px) {
  .p-single__card-img {
    flex: 0 0 250px;
  }
}
.p-single__card-img img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:768px) {
  .p-single__card-body {
    flex: 1 1 auto;
  }
}

.p-single__card-text {
  font-weight: 300;
}

/* CTA */
* + .p-single__cta {
  margin-top: 24px;
}

.p-single__cta {
  padding: 60px 12px;
  background-color: #fff7d0;
  margin-left: -12px;
  margin-right: -12px;
}
@media screen and (min-width:768px) {
  .p-single__cta {
    margin-left: initial;
    margin-right: initial;
  }
}

.p-single__cta-text {
  font-weight: 600;
  text-align: center;
}
.p-single__cta-text:not(:first-child) {
  margin-top: 1em;
}
.p-single__cta-text span.colored {
  color: #d81513;
}

.p-single__btn-area {
  margin-top: 24px;
}

.p-single__btn-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-single__btn-notice span.lg {
  font-size: 20px;
  font-weight: 600;
}
.p-single__btn-notice span.md {
  font-weight: 300;
}

.p-single__cta-btns {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-single__cta-btns {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

/* お客様の声 / スタッフから一言 */
.p-single__converse {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.p-single__converse-photo {
  flex: 0 0 69px;
}
@media screen and (min-width:768px) {
  .p-single__converse-photo {
    flex: 0 0 111px;
  }
}
.p-single__converse-body {
  flex: 1 1 auto;
  padding: 25px 19px 25px 27px;
  border-radius: 20px;
  border: 1.5px solid #222;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .p-single__converse-body {
    padding: 37px 30px 36px 31px;
  }
}
.p-single__converse-body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 10px 24px 10px 0;
  border-color: transparent #222222 transparent transparent;
  translate: -100% -50%;
}
.p-single__converse-body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  border-style: solid;
  border-width: 8.9px 21.4px 8.9px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
}

.p-single__converse__triangle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -34px;
  display: inline-block;
  width: 34px;
  object-fit: contain;
  z-index: -1;
}

.p-single__converse-text {
  font-weight: 300;
}

/* 目次 */
.p-single__index {
  padding: 20px 20px;
  background-color: #f0f0f0;
}
.p-single__index ol ol {
  padding-left: 1em;
}
.p-single__index ol ol ol {
  padding-left: 2em;
}
.p-single__index li {
  font-weight: 300;
}

/* object > project > お客様の声一覧(archive voice)
--------------------------------------------- */
.p-archive-voice {
  padding: 60px 12px 120px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:900px) {
  .p-archive-voice {
    padding: 80px 12px 80px;
  }
}

.p-archive-voice__tag.voice {
  margin-top: 64px;
}

.p-archive-voice__tag-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width:900px) {
  .p-archive-voice__tag-title {
    font-size: 32px;
  }
}

.p-archive-voice_tag-inner {
  /*   margin-left: -12px;
  margin-right: -12px;
  @include mq("md") {
    margin-left: initial;
    margin-right: initial;
  } */
}

.p-archive-voice__tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width:900px) {
  .p-archive-voice__tag-list {
    gap: 20px;
  }
}
.p-archive-voice__tag-list.pricing {
  max-width: 840px;
  width: fit-content;
  margin-inline: auto;
}

.p-archive-voice__tag-item {
  width: calc(50% - 10px);
}
@media screen and (min-width:900px) {
  .p-archive-voice__tag-item {
    width: calc(25% - 15px);
  }
}

.p-archive-voice__tag-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  font-weight: 700;
  padding-right: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  /*   &::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    mask-image: url(../img/voice/icon-arrow-down-w.svg);
    mask-position: center center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background: $color-white;
    display: inline-block;
    width: 12px;
    height: 8px;
    @include mq() {
      right: 0;
    }
  } */
}
@media screen and (min-width:900px) {
  .p-archive-voice__tag-link {
    font-size: 18px;
  }
}
@media (hover: hover) {
  .p-archive-voice__tag-link:hover {
    opacity: 0.8;
  }
}

.p-archive-voice__contents {
  margin-top: 40px;
}

.p-archive-voice__title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:768px) {
  .p-archive-voice__title {
    font-size: 32px;
  }
}

.p-archive-voice__list {
  display: grid;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-archive-voice__list {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* object > project > お知らせ一覧(archive news)
--------------------------------------------- */
/* object > project > 事例一覧(archive case)
--------------------------------------------- */
.p-archive-case {
  padding: 60px 12px 120px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:900px) {
  .p-archive-case {
    padding: 80px 12px 80px;
  }
}

.p-archive-case__contents {
  margin-top: 0;
}

/* object > project > お客様の声詳細(single voice)
--------------------------------------------- */
.p-single-voice {
  padding: 40px 12px 120px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-single-voice {
    padding: 80px 12px 80px;
  }
}

.p-single-voice__section {
  padding: 20px 5px;
}
@media screen and (min-width:900px) {
  .p-single-voice__section {
    border: 1px solid #000;
    padding: 20px 20px;
  }
}
.p-single-voice__section:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-single-voice__section:not(:first-child) {
    margin-top: 40px;
  }
}

.p-single-voice__title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:768px) {
  .p-single-voice__title {
    font-size: 32px;
  }
}

.p-single-voice__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-single-voice__btn-wrap {
  text-align: center;
  margin-top: 20px;
}

.p-single-voice__btn {
  background-color: #d81513;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 80px 12px 13px;
  border-radius: 10px;
  border: 1px solid #d81513;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-single-voice__btn:hover {
    opacity: 0.8;
  }
}
.p-single-voice__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  mask-image: url(../img/voice/icon-arrow-right-w.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  display: inline-block;
  width: 8px;
  height: 12px;
  background: #fff;
}

/* object > project > 事例詳細(single case)
--------------------------------------------- */
.p-single-case {
  padding: 40px 12px 40px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-single-case {
    padding: 120px 12px 180px;
  }
}

.p-single-case__content {
  margin-top: 84px;
}
.p-single-case__content h2 {
  font-size: 23px;
  font-weight: 600;
  padding-bottom: 8px;
  background-color: #ffedec;
}
.p-single-case__content h2.customer {
  background-color: #fff7d0;
}
.p-single-case__content h2 + p {
  margin-top: 16px;
}
.p-single-case__content p {
  font-size: 16px;
  font-weight: 300;
}
.p-single-case__content * + h2 {
  margin-top: 40px;
  background-color: #fdd116;
  font-size: 23px;
  padding: 12px 20px;
}

.p-single-case #ez-toc-container .ez-toc-list-level-1 {
  background-color: #F4F5E1;
}

.p-single-case .ez-toc-title-container {
  border: none;
}

/* object > project > 対応エリア(page area)
--------------------------------------------- */
.p-page-area {
  background-color: #f4f5e1;
}

.p-page-area .p-area {
  padding: 60px 0 80px;
}

.p-page-area__content {
  background-color: #fffbe9;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-page-area__content {
    padding: 100px 0;
  }
}

.p-page-area__inner {
  width: min(988px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-page-area__item {
  padding: 20px;
  border-bottom: 1px solid #000;
}
.p-page-area__item:not(:first-child) {
  margin-top: 40px;
}

.p-page-area__title {
  color: #d81513;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-page-area__title {
    text-align: center;
    font-size: 36px;
  }
}

.p-page-area__text {
  margin-top: 10px;
}

.p-page-area__list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
}

.p-page-area__list-item {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-page-area__list-item {
    font-size: 20px;
  }
}

.p-page-area__notice {
  width: fit-content;
  padding: 0 12px;
  margin: 40px auto 0;
}

.p-page-area__notice-text {
  padding-top: 75px;
  font-size: 20px;
  font-weight: 600;
  color: #d81513;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-page-area__notice-text {
    font-size: 30px;
  }
}

.p-page-area__qacontent {
  background-color: #f4f5e1;
  padding: 0px 0 80px;
}

.p-page-area__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-page-area .p-qa__desc.js-is-open {
  padding: 40px 60px 40px 60px;
  line-height: 1.8em;
}

.p-page-area .p-qa__term {
  padding: 25px 50px 25px 50px;
}

/* object > project > 運営会社情報(company)
--------------------------------------------- */
/* info */
.p-company__info {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-company__info {
    padding: 100px 0;
  }
}

.p-company__info-heading {
  text-align: center;
  font-size: 35px;
  color: #e00200;
}

.p-company__info-inner {
  width: min(1024px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-company__info-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-company__info-content {
    margin-top: 60px;
  }
}

/* area */
.p-franchise__area {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__area {
    padding: 100px 0;
  }
}

.p-franchise__area-heading {
  text-align: center;
}

.p-franchise__area-inner {
  width: min(502px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__area-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__area-content {
    margin-top: 92px;
  }
}
.p-franchise__area-content img {
  width: 100%;
  object-fit: cover;
}

/* works */
.p-franchise__works {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__works {
    padding: 100px 0;
  }
}

.p-franchise__works-heading {
  text-align: center;
}

.p-franchise__works-inner {
  width: min(1360px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__works-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__works-content {
    margin-top: 60px;
  }
}
.p-franchise__works-content .swiper-container {
  position: relative;
  overflow: hidden;
}

.p-franchise__works-items.single-store {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 20px;
}
@media screen and (min-width:900px) {
  .p-franchise__works-items.single-store {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 25px;
  }
}
.p-franchise__works-items.single-store .p-franchise__works-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 10px;
}
@media screen and (min-width:900px) {
  .p-franchise__works-items.single-store .p-franchise__works-item {
    gap: 30px;
    padding: 30px 30px;
  }
}
.p-franchise__works-items.single-store .p-franchise__works-price {
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-franchise__works-items.single-store .p-franchise__works-price {
    font-size: 20px;
  }
}
.p-franchise__works-items.single-store .p-franchise__works-title {
  font-size: 20px;
}
@media screen and (min-width:768px) {
  .p-franchise__works-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media screen and (min-width:900px) {
  .p-franchise__works-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-franchise__works-item {
  display: flex;
  flex-direction: column;
}
.p-franchise__works-item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (min-width:900px) {
  .p-franchise__works-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-franchise__works-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-top: 10px;
}
@media screen and (min-width:900px) {
  .p-franchise__works-title {
    font-size: 30px;
  }
}

.p-franchise__works-photo {
  position: relative;
}
.p-franchise__works-photo img {
  width: 100%;
  object-fit: cover;
}

.p-franchise__works-price {
  font-size: 18px;
  font-weight: 800;
  color: #e00200;
  text-align: center;
}

/* greeting */
.p-company__greeting {
  background-color: #fff7d0;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-company__greeting {
    padding: 100px 0;
  }
}

.p-company__greeting-heading {
  text-align: center;
}

.p-company__greeting-inner {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-company__greeting-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-company__greeting-content {
    margin-top: 60px;
  }
}

.p-franchise__tag {
  position: absolute;
  top: -25px;
  left: -10px;
  background: #e00200;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  padding-top: 15px;
  font-size: 10px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  z-index: 9;
}
@media screen and (min-width:900px) {
  .p-franchise__tag {
    left: -25px;
  }
}

.p-franchise__tag div {
  font-size: 21px;
  text-align: center;
  color: #fff;
  font-weight: 800;
}

/* object > project > 取材・協業・お問い合わせ(contact)
--------------------------------------------- */
.p-contact {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-contact {
    padding: 100px 0;
  }
}

.p-contact__inner {
  width: min(814px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-contact__lead {
  text-align: center;
}

.p-contact__lead-text {
  font-size: 20px;
  font-weight: 800;
}

.p-contact__content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-contact__content {
    margin-top: 54px;
  }
}

/* object > project > スタッフ紹介(staff)
--------------------------------------------- */
/* object > project > よくある質問(faq)
--------------------------------------------- */
.p-faq {
  padding: 30px 12px;
  width: min(1312px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-faq {
    padding: 100px 12px 100px;
  }
}

.p-faq__items {
  margin-top: 44px;
}
@media screen and (min-width:768px) {
  .p-faq__items {
    margin-top: 60px;
  }
}

.p-faq__item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width:768px) {
  .p-faq__item:not(:first-child) {
    margin-top: 100px;
  }
}

.p-faq__item-title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #e00200;
}
@media screen and (min-width:768px) {
  .p-faq__item-title {
    font-size: 35px;
  }
}

.p-faq__item-wrap {
  padding: 20px !important;
}

.p-faq .p-qabox {
  padding-top: 45px;
}

/* object > project > サービス一覧(service)
--------------------------------------------- */
/* ページ内リンク */
.p-service__links {
  padding: 60px 0;
}

.p-service__links-inner {
  width: min(1150px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-service__links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.p-service__links-item {
  background-color: #f2f2f2;
  padding: 5px 20px;
  width: fit-content;
  min-width: 240px;
}
.p-service__links-item:nth-child(4n) {
  min-width: 320px;
}

.p-service__links-anchor {
  display: block;
  font-size: 20px;
  text-align: center;
  color: #222;
  padding-right: 20px;
  cursor: pointer;
  font-weight: 800;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-service__links-anchor {
    font-size: 20px;
  }
}
.p-service__links-anchor::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../img/common/chevron-down.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 12px;
  height: 20px;
}

/* 上部 */
.p-service__top {
  padding: 80px 0 40px;
}

/* 下部 */
.p-service__bottom {
  padding: 40px 0 80px;
}
@media screen and (min-width:768px) {
  .p-service__bottom {
    padding: 40px 0;
  }
}

/* 共通  */
.p-service__inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-service__item {
  border-radius: 20px;
  border: 2px solid #222;
  background: #f9dc56;
  padding: 30px 15px;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 30px;
}
@media screen and (min-width:900px) {
  .p-service__item {
    padding: 30px 30px;
    column-gap: 40px;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width:1240px) {
  .p-service__item {
    column-gap: 70px;
  }
}
.p-service__item:not(:first-child) {
  margin-top: 40px;
}
.p-service__item.is-beige {
  background-color: #ffefa4;
}
@media screen and (min-width:900px) {
  .p-service__item.is-reverse {
    flex-direction: row;
  }
}
.p-service__item.link {
  transition: background-color 0.3s;
  border: 5px solid #000;
}

@media screen and (min-width:900px) {
  .p-service__img {
    flex: 0 0 470px;
  }
}
@media screen and (min-width:1240px) {
  .p-service__img {
    flex: 0 0 470px;
  }
}
.p-service__img img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:900px) {
  .p-service__body {
    flex: 1 1 auto;
  }
}

.p-service__title {
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:900px) {
  .p-service__title {
    font-size: 28px;
  }
}

.p-service__textarea {
  margin-top: 20px;
  min-height: 110px;
}
@media screen and (min-width:900px) {
  .p-service__textarea {
    min-height: 140px;
  }
}

.p-service__desc {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-service__desc {
    font-size: 20px;
  }
}
.p-service__desc:not(:first-child) {
  margin-top: 1em;
}

.p-service__price {
  font-size: 20px;
  font-weight: 800;
  margin-top: 30px;
}

.p-service__btn {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
  background: #d81513;
  color: #fff;
}
@media screen and (min-width:900px) {
  .p-service__btn {
    width: 480px;
    margin-top: 30px;
  }
}
.p-service__btn a {
  position: relative;
  padding: 20px 20px;
  display: block;
}
.p-service__btn a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  content: "";
  transition: 0.4s all;
}

/* object > project > 採用(recruit)
--------------------------------------------- */
/* fv */
.p-recruit-fv img {
  width: 100%;
  object-fit: cover;
}

/* about */
.p-recruit__about {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-recruit__about {
    padding: 100px 0;
  }
}

.p-recruit__about-heading {
  text-align: center;
}

.p-recruit__about-inner {
  width: min(1024px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__about-content {
  margin-top: 40px;
}

.p-recruit__about-text {
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-recruit__about-text {
    font-size: 20px;
  }
}
.p-recruit__about-text span.colored {
  color: #d81513;
}

/* education */
.p-recruit__education {
  padding: 80px 0;
  background-color: #fcf7f7;
}

.p-recruit__education-heading {
  text-align: center;
  font-size: 24px;
}
@media screen and (min-width:768px) {
  .p-recruit__education-heading {
    font-size: 48px;
  }
}

.p-recruit__education-inner {
  width: min(1228px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__education-content {
  margin: 40px auto 0;
}
@media screen and (min-width:500px) {
  .p-recruit__education-content {
    width: 75%;
  }
}
@media screen and (min-width:900px) {
  .p-recruit__education-content {
    width: initial;
  }
}

.p-recruit__education-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width:900px) {
  .p-recruit__education-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-recruit__education-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-recruit__education-item {
    gap: 14px;
  }
}

.p-recruit__education-title {
  font-size: 20px;
  font-weight: 800;
}
@media screen and (min-width:900px) {
  .p-recruit__education-title {
    font-size: 36px;
  }
}
@media screen and (min-width:768px) {
  .p-recruit__education-title {
    font-size: 28px;
  }
}

.p-recruit__education-photo img {
  width: 100%;
  object-fit: cover;
}

.p-recruit__education-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-recruit__education-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-recruit__education-list-item img {
  flex: 0 0 14px;
  width: 14px;
  object-fit: cover;
}

.p-recruit__education-list-text {
  flex: 1 1 auto;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-recruit__education-list-text {
    font-size: 20px;
  }
}

/* appeal */
.p-recruit__appeal {
  padding: 80px 0;
  background-color: #d81513;
}

.p-recruit__appeal-heading {
  text-align: center;
}

.p-recruit__appeal-inner {
  width: min(1264px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__appeal-content {
  margin-top: 40px;
}

.p-recruit__appeal-items {
  background-color: #fff;
  padding: 40px 5px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
}
@media screen and (min-width:768px) {
  .p-recruit__appeal-items {
    padding: 40px 40px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 28px;
  }
}

.p-recruit__appeal-title {
  display: flex;
  gap: 7px;
  align-items: center;
  padding-bottom: 30px;
  position: relative;
}
.p-recruit__appeal-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  display: inline-block;
  width: 309px;
  height: 36px;
  background-image: url(../img/recruit/appeal-deco-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .p-recruit__appeal-title::after {
    background-image: url(../img/recruit/appeal-deco.webp);
  }
}
.p-recruit__appeal-title span.number {
  font-family: "Arial", sans-serif;
  font-size: 36px;
  font-weight: 900;
}
.p-recruit__appeal-title span.text {
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.48px;
}
.p-recruit__appeal-title span.colored {
  color: #d81513;
}

.p-recruit__appeal-photo {
  margin-top: 10px;
}
.p-recruit__appeal-photo img {
  width: 100%;
  object-fit: cover;
}

.p-recruit__appeal-text {
  margin-top: 20px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-recruit__appeal-text {
    font-size: 20px;
  }
}

/* apply */
.p-recruit__apply {
  padding: 60px 0;
  background-color: #fcf7f7;
}
@media screen and (min-width:768px) {
  .p-recruit__apply {
    padding: 80px 0;
  }
}

.p-recruit__apply-heading {
  text-align: center;
}

.p-recruit__apply-content {
  margin-top: 40px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-recruit__apply-content::-webkit-scrollbar {
  display: none;
}

.p-recruit__apply-wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px 10px;
}

.p-recruit__apply-tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.p-recruit__apply-tab {
  border-radius: 10px 10px 0 0;
  background-color: #dadada;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  border-left: 2px solid #222;
  padding: 10px 20px 10px;
  height: 37px;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .p-recruit__apply-tab {
    font-size: 16px;
    padding: 14px 20px 10px;
    height: 50px;
  }
}
.p-recruit__apply-tab.js-is-active {
  background-color: #d81513;
  font-size: 15px;
  height: 41px;
}
@media screen and (min-width:768px) {
  .p-recruit__apply-tab.js-is-active {
    font-size: 20px;
    height: 56px;
  }
}

.p-recruit__apply-panel {
  display: none;
}
.p-recruit__apply-panel.js-is-active {
  display: block;
  padding: 40px 20px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 10px 10px 0px #222;
}
@media screen and (min-width:768px) {
  .p-recruit__apply-panel.js-is-active {
    padding: 40px 40px;
  }
}
.p-recruit__apply-panel .item {
  display: flex;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.p-recruit__apply-panel .item:not(:first-child) {
  margin-top: 20px;
}
.p-recruit__apply-panel .term {
  flex: 0 0 126px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-recruit__apply-panel .term {
    font-size: 20px;
  }
}
.p-recruit__apply-panel .desc {
  flex: 1 1 auto;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-recruit__apply-panel .desc {
    font-size: 20px;
  }
}

/* flow */
.p-recruit__flow {
  padding: 60px 0 50px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-recruit__flow {
    padding: 105px 0 113px;
  }
}
.p-recruit__flow::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  display: block;
  width: 331px;
  height: 1069px;
  background-color: #fff7d0;
  z-index: -1;
}

.p-recruit__flow-heading {
  text-align: center;
}

.p-recruit__flow-inner {
  width: min(1308px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__flow-content {
  margin-top: 28px;
}
@media screen and (min-width:768px) {
  .p-recruit__flow-content {
    margin-top: 64px;
  }
}

/* position */
.p-recruit__position {
  padding: 60px 0;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-recruit__position {
    padding: 80px 0;
  }
}
.p-recruit__position::before {
  content: "";
  position: absolute;
  top: 54px;
  right: 0;
  display: block;
  width: 158px;
  height: 466px;
  background-color: #fcf7f7;
  z-index: -1;
}
@media screen and (min-width:1024px) {
  .p-recruit__position::before {
    top: 51px;
    width: 900px;
    height: 466px;
  }
}
@media screen and (min-width:1440px) {
  .p-recruit__position::before {
    width: 1223px;
  }
}

.p-recruit__position-heading {
  text-align: center;
}

.p-recruit__position-inner {
  width: min(1394px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__position-content {
  margin-top: 40px;
}

.p-recruit__position-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width:1024px) {
  .p-recruit__position-container {
    padding-bottom: 0;
  }
}
.p-recruit__position-container .swiper {
  position: static;
}
@media screen and (min-width:1024px) {
  .p-recruit__position-container .swiper {
    overflow: visible;
  }
}
@media screen and (min-width:768px) {
  .p-recruit__position-container .swiper-pagination {
    display: block !important;
  }
}
@media screen and (min-width:1024px) {
  .p-recruit__position-container .swiper-pagination {
    display: none;
  }
}
@media screen and (min-width:1024px) {
  .p-recruit__position-container .swiper-wrapper {
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (min-width:1024px) {
  .p-recruit__position-container .p-service-slide__card {
    width: calc((100% - 20px) / 2);
  }
}

/* person */
.p-recruit__person {
  overflow-x: hidden;
  background-color: #fff6f6;
}

.p-recruit__person-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 344px;
  object-fit: cover;
}
@media screen and (min-width:900px) {
  .p-recruit__person-img {
    left: initial;
    right: -175px;
    transform: translateX(0);
    width: 450px;
  }
}
@media screen and (min-width:1240px) {
  .p-recruit__person-img {
    right: -315px;
  }
}

.p-recruit__person-heading {
  text-align: center;
}

.p-recruit__person-inner {
  padding: 60px 12px 378px;
  width: min(694px, 100%);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-recruit__person-inner {
    padding: 80px 12px;
  }
}

.p-recruit__person-content {
  margin-top: 20px;
}
@media screen and (min-width:900px) {
  .p-recruit__person-content {
    margin-top: 47px;
  }
}

.p-recruit__person-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-recruit__person-list-item img {
  flex: 0 0 22px;
  width: 22px;
  object-fit: cover;
}
.p-recruit__person-list-item span.text {
  flex: 1 1 auto;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-recruit__person-list-item span.text {
    font-size: 20px;
  }
}
.p-recruit__person-list-item:not(:first-child) {
  margin-top: 14px;
}

/* staff */
.p-recruit__staff {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-recruit__staff {
    padding: 100px 0;
  }
}

.p-recruit__staff-heading {
  text-align: center;
}

.p-recruit__staff-content {
  margin-top: 40px;
}

/* faq */
.p-recruit__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-recruit__faq {
    padding: 100px 0;
  }
}

.p-recruit__faq-heading {
  text-align: center;
}

.p-recruit__faq-inner {
  width: min(884px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__faq-content {
  margin-top: 40px;
}

/* お問い合わせ */
.p-recruit__contact {
  padding: 60px 0;
  scroll-margin-top: 60px;
}
@media screen and (min-width:768px) {
  .p-recruit__contact {
    padding: 80px 0;
    scroll-margin-top: 80px;
  }
}

.p-recruit__contact-heading {
  text-align: center;
}

.p-recruit__contact-inner {
  width: min(814px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-recruit__contact-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-recruit__contact-content {
    margin-top: 54px;
  }
}

/* object > project > 選ばれる理由(reason)
--------------------------------------------- */
/*service  */
.p-reason__service {
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .p-reason__service {
    padding: 83px 0 110px;
  }
}

.p-reason__service-heading {
  text-align: center;
}

.p-reason__service-inner {
  width: min(1318px, 100%);
  margin-inline: auto;
}

.p-reason__service-content {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .p-reason__service-content {
    margin-top: 73px;
  }
}

.p-service-slide__container {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.p-service-slide__container .swiper {
  overflow: visible;
  position: static;
}
@media screen and (min-width:768px) {
  .p-service-slide__container .swiper {
    overflow: hidden;
  }
}
@media screen and (min-width:768px) {
  .p-service-slide__container .swiper-pagination {
    display: none;
  }
}
.p-service-slide__container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}
.p-service-slide__container .swiper-horizontal > .swiper-pagination-bullets,
.p-service-slide__container .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-service-slide__container .swiper-pagination-custom,
.p-service-slide__container .swiper-pagination-fraction {
  bottom: 0;
}
.p-service-slide__container .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-service-slide__container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* reason */
.p-reason__reason {
  padding: 80px 0;
}

.p-reason__reason-heading {
  text-align: center;
}

.p-reason__reason-inner {
  width: min(1019px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-reason__reason-content {
  margin-top: 107px;
}

.p-reason__reason-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 27px;
}
@media screen and (min-width:768px) {
  .p-reason__reason-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 47px;
  }
}

.p-reason__reason-list-item {
  background-color: #ffefa4;
  width: 303px;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #000;
}

.p-reason__reason-list-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
}
.p-reason__reason-list-title span.colored {
  color: #d81513;
}
.p-reason__reason-list-title span.sm {
  font-size: 20px;
}

.p-reason__reason-tag {
  position: absolute;
  top: -17px;
  left: -22px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: grid;
  place-items: center;
  width: 128px;
  height: 35px;
  background-image: url(../img/reason/reason-tag.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* service */
.p-reason__service {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-reason__service {
    padding: 83px 0 109px;
  }
}

.p-reason__service-heading {
  text-align: center;
}

.p-reason__service-inner {
  width: min(1342px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-reason__service-content {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .p-reason__service-content {
    margin-top: 73px;
  }
}

/* reason02 */
.p-reason__reason02 {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-reason__reason02 {
    padding: 100px 0;
  }
}

.p-reason__reason02-message-block {
  background-color: #ffe255;
  padding: 10px;
}

.p-reason__reason02-message {
  font-family: "keifont";
  text-align: center;
  font-size: 32px;
}
@media screen and (min-width:768px) {
  .p-reason__reason02-message {
    font-size: 48px;
  }
}
.p-reason__reason02-message span.colored {
  color: #d81513;
}

.p-reason__reason02-heading {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-reason__reason02-heading {
    margin-top: 76px;
  }
}

.p-reason__reason02-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-reason__reason02-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-reason__reason02-content {
    margin-top: 76px;
  }
}

.p-reason__reason02-slide-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.p-reason__reason02-slide-wrap .swiper {
  position: static;
}
@media screen and (min-width:768px) {
  .p-reason__reason02-slide-wrap .swiper-pagination {
    display: none;
  }
}
.p-reason__reason02-slide-wrap .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}
.p-reason__reason02-slide-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-reason__reason02-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-reason__reason02-slide-wrap .swiper-horizontal > .swiper-pagination-bullets,
.p-reason__reason02-slide-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-reason__reason02-slide-wrap .swiper-pagination-custom,
.p-reason__reason02-slide-wrap .swiper-pagination-fraction {
  bottom: 0;
}

/* object > project > FC加盟のご案内(franchise)
--------------------------------------------- */
/* about */
.p-franchise__about {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__about {
    padding: 100px 0;
  }
}

.p-franchise__about-heading {
  text-align: center;
}

.p-franchise__about-inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__about-content {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (min-width:500px) {
  .p-franchise__about-content {
    width: 75%;
  }
}
@media screen and (min-width:900px) {
  .p-franchise__about-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
    width: initial;
  }
}
@media screen and (min-width:1024px) {
  .p-franchise__about-content {
    gap: 70px;
  }
}

@media screen and (min-width:900px) {
  .p-franchise__about-body {
    flex: 1 1 auto;
  }
}

.p-franchise__about-text {
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width:900px) {
  .p-franchise__about-text {
    font-size: 20px;
  }
}
.p-franchise__about-text span.colored {
  color: #d81513;
}

@media screen and (min-width:900px) {
  .p-franchise__about-photo {
    flex: 0 0 470px;
  }
}
@media screen and (min-width:1024px) {
  .p-franchise__about-photo {
    flex: 0 0 570px;
  }
}
.p-franchise__about-photo img {
  width: 100%;
  object-fit: cover;
}

/* worry */
.p-franchise__worry {
  padding: 60px 0;
  background-color: #f5f5f5;
}
@media screen and (min-width:768px) {
  .p-franchise__worry {
    padding: 80px 0;
  }
}

.p-franchise__worry-heading {
  text-align: center;
}

.p-franchise__worry-inner {
  width: min(975px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__worry-content {
  margin-top: 40px;
}

.p-franchise__worry-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-franchise__worry-item:not(:first-child) {
  margin-top: 20px;
}
.p-franchise__worry-item img {
  flex: 0 0 30px;
  width: 30px;
  object-fit: cover;
}

.p-franchise__worry-text {
  flex: 1 1 auto;
  font-size: 20px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-franchise__worry-text {
    font-size: 24px;
  }
}

/* banner */
.p-franchise__banner {
  padding: 40px 0;
  background-color: #ffd000;
  text-align: center;
}
.p-franchise__banner img {
  width: 100%;
}
@media screen and (min-width:768px) {
  .p-franchise__banner img {
    width: 92.2222%;
  }
}

/* voice */
.p-franchise__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__voice {
    padding: 100px 0;
  }
}

.p-franchise__voice-heading {
  text-align: center;
}

.p-franchise__voice-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__voice-content {
    margin-top: 60px;
  }
}

/* franchise */
.p-franchise__philosophy {
  padding: 80px 0;
  background-color: #fffbe9;
}

.p-franchise__philosophy-heading {
  text-align: center;
}

.p-franchise__philosophy-inner {
  margin-inline: auto;
  padding: 0 12px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-franchise__philosophy-inner::-webkit-scrollbar {
  display: none;
}

.p-franchise__philosophy-content {
  margin: 60px auto 0;
  width: 1169px;
}

.p-franchise__philosophy-items {
  position: relative;
}

.p-franchise__philosophy-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 246px;
  object-fit: cover;
}

.p-franchise__philosophy-item {
  display: flex;
}
.p-franchise__philosophy-item.top {
  justify-content: center;
}
.p-franchise__philosophy-item.middle {
  margin-top: -84px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-item.middle {
    margin-top: -40px;
  }
}
.p-franchise__philosophy-item.bottom {
  margin-top: 8px;
  justify-content: center;
  gap: 185px;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-item.bottom {
    margin-top: 42px;
  }
}

.p-franchise__philosophy-box {
  width: 326px;
  height: 326px;
  border-radius: 50%;
  border: 2px solid #d81513;
  display: grid;
  place-items: center;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-box {
    width: 385px;
    height: 385px;
  }
}
.p-franchise__philosophy-box .inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-box .inner {
    gap: 16px;
  }
}
.p-franchise__philosophy-box .inner .title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-box .inner .title {
    font-size: 24px;
  }
}
.p-franchise__philosophy-box .inner .icon {
  flex: 0 0 80px;
  width: 80px;
}
@media screen and (min-width:768px) {
  .p-franchise__philosophy-box .inner .icon {
    flex: 0 0 112px;
    width: 112px;
  }
}
.p-franchise__philosophy-box .inner .icon img {
  width: 100%;
  object-fit: cover;
}
.p-franchise__philosophy-box .inner .text {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

/* result */
.p-franchise__result {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__result {
    padding: 100px 0;
  }
}

.p-franchise__result-heading {
  text-align: center;
}

.p-franchise__result-inner {
  width: min(1376px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__result-content {
  margin: 40px auto 0;
}
@media screen and (min-width:500px) {
  .p-franchise__result-content {
    width: 75%;
  }
}
@media screen and (min-width:900px) {
  .p-franchise__result-content {
    width: initial;
    margin-top: 60px;
  }
}

.p-franchise__result-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width:900px) {
  .p-franchise__result-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-franchise__result-card {
  background-color: #ffefa4;
  border-radius: 20px;
  border: 2px solid #222;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 30px;
}
.p-franchise__result-card:first-child {
  background-color: #f9dc56;
}

.p-franchise__result-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
}

.p-franchise__result-number {
  color: #d81513;
  font-size: 48px;
  text-align: center;
  font-weight: 900;
}

.p-franchise__result-photo {
  max-width: 224px;
  width: 100%;
  margin-inline: auto;
}
.p-franchise__result-photo img {
  width: 100%;
}

/* person */
.p-franchise__person {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__person {
    padding: 100px 0;
  }
}

.p-franchise__person-heading {
  text-align: center;
}

.p-franchise__person-inner {
  width: min(716px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__person-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__person-content {
    margin-top: 60px;
  }
}

.p-franchise__person-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-franchise__person-list-item img {
  flex: 0 0 27px;
  width: 27px;
  object-fit: cover;
}
.p-franchise__person-list-item:not(:first-child) {
  margin-top: 20px;
}

.p-franchise__person-list-text {
  flex: 1 1 auto;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-franchise__person-list-text {
    font-size: 24px;
  }
}

/* strong */
.p-franchise__strong {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__strong {
    padding: 100px 0;
  }
}

.p-franchise__strong-heading {
  text-align: center;
}

.p-franchise__strong-inner {
  width: min(1028px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__strong-content {
  margin: 40px auto 0;
}
@media screen and (min-width:768px) {
  .p-franchise__strong-content {
    margin: 76px auto 0;
    width: 75%;
  }
}
@media screen and (min-width:1024px) {
  .p-franchise__strong-content {
    width: initial;
  }
}

.p-franchise__strong-slide-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .p-franchise__strong-slide-wrap {
    padding-bottom: 0;
  }
}
.p-franchise__strong-slide-wrap .swiper {
  position: static;
  overflow: visible;
}
.p-franchise__strong-slide-wrap .swiper-horizontal > .swiper-pagination-bullets,
.p-franchise__strong-slide-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-franchise__strong-slide-wrap .swiper-pagination-custom,
.p-franchise__strong-slide-wrap .swiper-pagination-fraction {
  bottom: 0;
}
.p-franchise__strong-slide-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-franchise__strong-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-franchise__strong-slide-wrap .swiper-pagination-bullet-active {
  background: #222;
}

/* owner */
.p-franchise__owner {
  padding: 60px 0;
  background-color: #fff7d0;
}
@media screen and (min-width:768px) {
  .p-franchise__owner {
    padding: 80px 0;
  }
}

.p-franchise__owner-heading {
  text-align: center;
}

.p-franchise__owner-inner {
  width: min(1240px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__owner-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__owner-content {
    margin-top: 60px;
  }
}

/* company */
.p-franchise__company {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__company {
    padding: 100px 0;
  }
}

.p-franchise__company-heading {
  text-align: center;
}

.p-franchise__company-inner {
  width: min(874px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__company-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__company-content {
    margin-top: 60px;
  }
}

/* flow */
.p-franchise__flow {
  padding: 60px 0;
  background-color: #fcf7f7;
}
@media screen and (min-width:768px) {
  .p-franchise__flow {
    padding: 80px 0;
  }
}

.p-franchise__flow-heading {
  text-align: center;
}

.p-franchise__flow-inner {
  width: min(1308px, 100%);
  margin-inline: auto;
  padding: 0 20px 0 20px;
}
@media screen and (min-width:768px) {
  .p-franchise__flow-inner {
    padding: 0 12px;
  }
}

.p-franchise__flow-content {
  max-width: 375px;
  margin: 40px auto 0;
  display: flex;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-franchise__flow-content {
    max-width: initial;
    margin: 60px auto 0;
    gap: 38px;
  }
}

.p-franchise__flow-numbers {
  flex: 0 0 49px;
}
@media (max-width: 650px) {
  .p-franchise__flow-numbers.recruit .list {
    gap: 427px;
  }
  .p-franchise__flow-numbers.recruit .item:not(:first-of-type)::before {
    top: -427px;
    height: 427px;
  }
}
.p-franchise__flow-numbers .list {
  display: flex;
  flex-direction: column;
  gap: 297px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-franchise__flow-numbers .list {
    gap: 123px;
  }
}
.p-franchise__flow-numbers .list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #eea25d 0%, #d81513 100%);
}
.p-franchise__flow-numbers .item {
  width: 49px;
  height: 49px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #d81513;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  background: linear-gradient(90deg, #d81513 0%, #eea25d 100%);
  position: relative;
  z-index: 1;
}
.p-franchise__flow-numbers .item span.inner {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 2;
  background: #fff;
}

.p-franchise__flow-items {
  flex: 1 1 auto;
}

.p-franchise__flow-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-franchise__flow-item {
    flex-direction: row;
    gap: 30px;
  }
}
.p-franchise__flow-item:not(:first-child) {
  margin-top: 22px;
}

@media screen and (min-width:768px) {
  .p-franchise__flow-photo {
    flex: 0 0 245px;
  }
}
.p-franchise__flow-photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:768px) {
  .p-franchise__flow-body {
    flex: 1 1 auto;
  }
}
.p-franchise__flow-body .title {
  font-size: 24px;
  font-weight: 600;
}
.p-franchise__flow-body .text {
  margin-top: 20px;
  font-weight: 300;
}

/* faq */
.p-franchise__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__faq {
    padding: 100px 0;
  }
}

.p-franchise__faq-heading {
  text-align: center;
}

.p-franchise__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__content {
  margin-top: 40px;
}

/* お問い合わせ */
.p-franchise__contact {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-franchise__contact {
    padding: 100px 0;
  }
}

.p-franchise__contact-inner {
  width: min(814px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-franchise__contact-heading {
  text-align: center;
}

.p-franchise__contact-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-franchise__contact-content {
    margin-top: 54px;
  }
}

/* object > project > 料金一覧(pricing)
--------------------------------------------- */
/* service */
.p-pricing__service {
  padding: 40px 0;
}
@media screen and (min-width:900px) {
  .p-pricing__service {
    padding: 80px 0;
  }
}

.p-pricing__service-heading {
  text-align: center;
  font-size: 70px;
  color: #fdd116;
  text-shadow: 5px 5px 0 #000, -5px 5px 0 #000, 5px -5px 0 #000, -5px -5px 0 #000;
  line-height: 1.15em;
}

.p-pricing__service-heading span {
  font-size: 57px;
  color: #fff;
  text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
}

.p-pricing__service-content {
  margin-top: 60px;
}

.p-pricing__service-slide-wrap {
  position: relative;
  padding-bottom: 50px;
}
.p-pricing__service-slide-wrap .swiper {
  overflow: visible;
  position: static;
}
.p-pricing__service-slide-wrap .swiper-horizontal > .swiper-pagination-bullets,
.p-pricing__service-slide-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-pricing__service-slide-wrap .swiper-pagination-custom,
.p-pricing__service-slide-wrap .swiper-pagination-fraction {
  bottom: 0;
}
.p-pricing__service-slide-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-pricing__service-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.p-pricing__service-slide-wrap .swiper-pagination-bullet-active {
  background: #222;
}

.p-pricing__service-inner {
  width: min(1320px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* price */
.p-pricing__price {
  padding: 100px 0;
}

.p-pricing__price-heading {
  text-align: center;
}

.p-pricing__anchors {
  background-color: #222;
}

.p-pricing__section-wrap {
  padding: 76px 0 20px;
}
.p-pricing__section-wrap.second {
  padding: 76px 0 100px;
}

.p-pricing__section:not(:first-child) {
  margin-top: 76px;
}

.p-pricing__section-inner {
  width: min(1398px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-pricing__section-title {
  text-align: center;
  color: #d81513;
  font-size: 32px;
  font-weight: 800;
}

.p-pricing__table {
  max-width: 860px;
  margin: 20px auto 0;
}

/* banner */
.p-pricing__banner {
  margin-top: 20px;
  border-radius: 20px;
  border: 2px solid #222;
  background: #f9dc56;
  padding: 50px 15px;
}
@media screen and (min-width:768px) {
  .p-pricing__banner {
    padding: 50px 50px;
  }
}

.p-pricing__banner-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:768px) {
  .p-pricing__banner-title {
    font-size: 28px;
  }
}

.p-pricing__banner-list {
  margin-top: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 89px;
}
@media screen and (min-width:1024px) {
  .p-pricing__banner-list {
    margin-top: 63px;
    flex-direction: row;
    gap: 54px;
  }
}
@media screen and (min-width:1240px) {
  .p-pricing__banner-list {
    gap: 103px;
  }
}

.p-pricing__banner-item {
  max-width: 320px;
  width: 100%;
  height: 132px;
  display: grid;
  place-items: center;
  background-color: #fff;
  border: 2px solid #222;
  position: relative;
}
@media screen and (min-width:1024px) {
  .p-pricing__banner-item {
    max-width: initial;
    width: calc((100% - 108px) / 3);
    height: 132px;
  }
}
@media screen and (min-width:1240px) {
  .p-pricing__banner-item {
    width: calc((100% - 206px) / 3);
  }
}
.p-pricing__banner-item span {
  display: inline-block;
}
.p-pricing__banner-item span.inner span.unit {
  margin-left: 0.25em;
  font-size: 32px;
  font-weight: 800;
}
.p-pricing__banner-item span.inner span.num {
  font-size: 48px;
  font-weight: 800;
  color: #d81513;
}
.p-pricing__banner-item .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -19px;
  font-size: 28px;
  font-weight: 800;
  text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff;
}
@media screen and (min-width:1024px) {
  .p-pricing__banner-item .title {
    top: -23px;
    font-size: 32px;
  }
}
.p-pricing__banner-item .title.red {
  color: #d81513;
}
.p-pricing__banner-item:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -66px;
  background-image: url(../img/pricing/icon-plus.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 23px;
  height: 26px;
}
@media screen and (min-width:1024px) {
  .p-pricing__banner-item:nth-child(2)::before {
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
  }
}
@media screen and (min-width:1240px) {
  .p-pricing__banner-item:nth-child(2)::before {
    left: -63px;
  }
}
.p-pricing__banner-item:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -66px;
  background-image: url(../img/pricing/icon-equal-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 23px;
  height: 26px;
}
@media screen and (min-width:1024px) {
  .p-pricing__banner-item:nth-child(3)::before {
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    background-image: url(../img/pricing/icon-equal.png);
  }
}
@media screen and (min-width:1240px) {
  .p-pricing__banner-item:nth-child(3)::before {
    left: -63px;
  }
}

.p-pricing__banner-btns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-pricing__banner-btns {
    margin-top: 40px;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

/* object > project > メディア掲載情報(media)
--------------------------------------------- */
.p-media__contents {
  padding: 60px 0 60px;
}
@media screen and (min-width:900px) {
  .p-media__contents {
    padding: 100px 0 80px;
  }
}

.p-media__top-inner {
  width: min(960px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-media__heading {
  text-align: center;
  color: #e00200;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width:500px) {
  .p-media__heading {
    margin: 0 auto;
  }
}
@media screen and (min-width:900px) {
  .p-media__heading {
    font-size: 40px;
  }
}
.p-media__heading.top {
  color: #d81513;
}
.p-media__heading.bottom {
  color: #000;
  background-color: #fdd116;
  padding: 12px 20px;
  width: 100%;
}
.p-media__bottom {
  margin-top: 40px;
}

.p-media__bottom-inner {
  width: min(960px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-media__content {
  margin: 40px auto 0;
}
@media screen and (min-width:500px) {
  .p-media__content {
    width: 75%;
  }
}
@media screen and (min-width:900px) {
  .p-media__content {
    width: initial;
    padding-top: 20px;
  }
}

.p-media__top-photo img {
  width: 100%;
  object-fit: cover;
}

.p-media__top-body {
  margin-top: 40px;
}

@media screen and (min-width:900px) {
  .p-media__top-text {
    font-size: 20px;
  }
}

.p-media__bottom-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
@media screen and (min-width:900px) {
  .p-media__bottom-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 70px;
  }
}

.p-media__bottom-thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-media__bottom-body {
  margin-top: 20px;
}

.p-media__bottom-date {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-media__bottom-date {
    font-size: 18px;
  }
}

.p-media__bottom-title {
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-media__bottom-title {
    font-size: 20px;
  }
}

/* object > project > 安心・安全のための取り組み(safety)
--------------------------------------------- */
.p-safety__top {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-safety__top {
    padding: 100px 0 0;
  }
}

.p-safety__main {
  padding: 60px 0px;
}
@media screen and (min-width:768px) {
  .p-safety__main {
    padding: 100px 0;
  }
}

.p-safety__lead-text {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-safety__lead-text {
    font-size: 40px;
  }
}

.p-safety__links {
  width: min(1194px, 100%);
  margin: 60px auto 0;
  padding: 0 12px;
}

.p-safety__main-inner {
  width: min(1194px, 100%);
  margin: 0 auto;
  padding: 0 12px;
}

.p-safety__item {
  width: min(1320px, 100%);
  margin-inline: auto;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 0 #000;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .p-safety__item {
    margin-bottom: 80px;
    border: 7px solid #000;
  }
}
.p-safety__item:not(:first-child) {
  margin-top: 30px;
}
.p-safety__item:last-child {
  margin-bottom: 0;
}

.p-safety__title {
  background-color: #fdd116;
  border-bottom: 3px solid #000;
  font-size: 28px;
  /*   text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
   */
  padding: 20px 20px;
  /*   text-align: center;
  font-weight: 800; */
}
@media screen and (min-width:768px) {
  .p-safety__title {
    font-size: 48px;
    border-bottom: 7px solid #000;
  }
}

.p-safety__cards {
  padding: 20px;
}
@media screen and (min-width:768px) {
  .p-safety__cards {
    padding: 100px;
  }
}

.p-safety__card {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-safety__card {
    flex-direction: row;
    gap: 0;
  }
}
.p-safety__card:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-safety__card.reverse {
    flex-direction: row-reverse;
  }
}

.p-safety__card-photo {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .p-safety__card-photo {
    flex: 0 0 350px;
  }
}
.p-safety__card-photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:768px) {
  .p-safety__card-body {
    width: 63%;
    padding-left: 50px;
  }
}

.p-safety__card-title {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-safety__card-title {
    font-size: 28px;
  }
}

.p-safety__card-text {
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-safety__card-text {
    font-size: 20px;
  }
}

/* object > project > 店舗一覧(store)
--------------------------------------------- */
.p-store__contents {
  padding: 60px 0;
  background-color: #fffcec;
}
@media screen and (min-width:768px) {
  .p-store__contents {
    padding: 100px 0;
  }
}

.p-store__inner {
  width: min(1104px, 100%);
  margin-inline: auto;
  padding: 0 43.5px;
}
@media screen and (min-width:768px) {
  .p-store__inner {
    padding: 0 12px;
  }
}

.p-store__link-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-store__link-anchor {
  color: #d81513;
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-store__link-anchor:hover {
    opacity: 0.8;
  }
}

.p-store__section-title {
  color: #d81513;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-store__section-title {
    font-size: 36px;
  }
}

.p-store__section {
  scroll-margin-top: 85px;
}
.p-store__section:not(:first-child) {
  margin-top: 60px;
}

.p-store__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width:768px) {
  .p-store__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-store__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}

.p-store__name {
  font-size: 20px;
  font-weight: 600;
}

.p-store__info {
  margin-top: 20px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-store__info {
    font-size: 20px;
  }
}

.p-store__btn-wrap {
  margin-top: 20px;
}

/* object > project > 店舗詳細
--------------------------------------------- */
/* fv */
.p-single-store__fv {
  height: 900px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-single-store__fv {
    height: 800px;
  }
}
.p-single-store__fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single-store__fv-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 324px;
}
@media screen and (min-width:768px) {
  .p-single-store__fv-box {
    bottom: 80px;
  }
}

.p-single-store__fv-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-single-store__fv-list {
    gap: 14px;
  }
}

.p-single-store__fv-list-item.phone {
  position: relative;
}

/* works */
.p-single-store__works-btn-wrap {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width:900px) {
  .p-single-store__works-btn-wrap {
    margin-top: 60px;
  }
}
.p-single-store__works-btn-wrap .p-single-store__works-btn {
  line-height: 1;
}

/* store */
.p-single-store__about {
  padding: 60px 0;
  background-color: rgba(255, 249, 223, 0.94);
}
@media screen and (min-width:768px) {
  .p-single-store__about {
    padding: 80px 0;
  }
}

.p-single-store__about-heading {
  text-align: center;
}

.p-single-store__about-inner {
  width: min(1032px, 100%);
  margin-inline: auto;
  padding: 0 14px;
}

.p-single-store__about-content {
  margin-top: 64px;
}
@media screen and (min-width:900px) {
  .p-single-store__about-content {
    margin-top: 84px;
  }
}

.p-single-store__about-items {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media screen and (min-width:900px) {
  .p-single-store__about-items {
    margin-top: 84px;
    gap: 64px;
  }
}

.p-single-store__about-item {
  padding: 50px 20px 30px;
  border-radius: 20px;
  border: 2px solid #222;
  background-color: #f9dc56;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-single-store__about-item {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
.p-single-store__about-item.beige {
  background-color: #ffefa4;
}

.p-single-store__about-tag {
  position: absolute;
  top: -24px;
  left: -14px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  background-color: #222;
  color: #fff;
  padding: 0 28px 0 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.p-single-store__about-tag span.number {
  margin-left: 2px;
  display: inline-block;
  font-family: "Arial", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  transform: translateY(2px);
}

@media screen and (min-width:900px) {
  .p-single-store__about-body {
    flex: 1 1 auto;
  }
}

.p-single-store__about-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-single-store__about-title {
    font-size: 28px;
    padding-bottom: 30px;
  }
}
.p-single-store__about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width:900px) {
  .p-single-store__about-title::after {
    width: 370px;
  }
}

.p-single-store__about-text {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width:900px) {
  .p-single-store__about-text {
    margin-top: 30px;
    font-size: 20px;
  }
}

.p-single-store__about-photo {
  margin-top: 40px;
}
@media screen and (min-width:900px) {
  .p-single-store__about-photo {
    margin-top: 0;
    flex: 0 0 380px;
  }
}
.p-single-store__about-photo img {
  width: 100%;
  object-fit: cover;
}

/* staff */
.p-single-store__staff {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-single-store__staff {
    padding: 100px 0;
  }
}

.p-single-store__staff-heading {
  text-align: center;
}

.p-single-store__staff-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:768px) {
  .p-single-store__staff-items {
    margin-top: 60px;
    gap: 60px;
  }
}

/* access */
.p-single-store__access {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-single-store__access {
    padding: 100px 0;
  }
}

.p-single-store__access-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-single-store__access-content {
    margin-top: 60px;
  }
}

.p-single-store__access-heading {
  text-align: center;
}

.p-single-store__access-list {
  width: min(874px, 100%);
  margin-inline: auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-single-store__access-item {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.p-single-store__access-term {
  flex: 0 0 120px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-single-store__access-term {
    flex: 0 0 144px;
    font-size: 24px;
  }
}

.p-single-store__access-desc {
  flex: 1 1 auto;
  font-weight: 300;
  line-height: 1.4;
}

.p-single-store__access-map {
  margin-top: 60px;
  width: min(1064px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* object > project > プライバシーポリシー(policy)
--------------------------------------------- */
.p-policy__wrap {
  padding: 60px 0;
}
@media screen and (min-width:900px) {
  .p-policy__wrap {
    padding: 100px 0;
  }
}

.p-policy__contents {
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width:768px) {
  .p-policy__contents {
    border-radius: 0;
  }
}

.p-policy__inner {
  width: min(1024px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-policy__content {
  padding-bottom: 30px;
}
.p-policy__content:not(:first-child) {
  margin-top: 60px;
}

.p-policy__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 20px;
}

.p-policy__textarea {
  margin-top: 40px;
}

.p-policy__text {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (min-width:768px) {
  .p-policy__text {
    font-size: 18px;
  }
}
.p-policy__text + .p-policy__text {
  margin-top: 1em;
}

/* object > project > サンクス(thanks)
--------------------------------------------- */
.p-thanks {
  padding-top: 70px;
}
@media screen and (min-width:768px) {
  .p-thanks {
    padding-top: 80px;
  }
}

.p-thanks__content {
  padding: 40px 7.5px 80px;
}
@media screen and (min-width:768px) {
  .p-thanks__content {
    padding: 40px 7.5px 80px;
  }
}

.p-thanks__inner {
  width: min(1022px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-thanks__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-thanks__heading {
    font-size: 25px;
  }
}

.p-thanks__textarea01,
.p-thanks__textarea02 {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px 0px;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}
.p-thanks__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
  padding-bottom: 10px;
}
@media screen and (min-width:768px) {
  .p-thanks__text {
    font-size: 20px;
  }
}
.p-thanks__text:not(:first-child) {
  margin-top: 1em;
}

.p-thanks__tel-wrap {
  margin-top: 40px;
}

.p-thanks__tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.p-thanks__tel-link img {
  width: 13px;
  object-fit: contain;
}
@media screen and (min-width:768px) {
  .p-thanks__tel-link img {
    font-size: 24px;
  }
}
.p-thanks__tel-link span.text {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

/* object > project > クルマの預かり(page flow)
--------------------------------------------- */
.p-page-flow__store-wrap {
  margin-top: 60px;
}
@media screen and (min-width:768px) {
  .p-page-flow__store-wrap {
    margin-top: 80px;
  }
}

.p-page-flow__top {
  padding: 60px 0 40px;
}
@media screen and (min-width:768px) {
  .p-page-flow__top {
    padding: 80px 0 60px;
  }
}

.p-page-flow__top-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-page-flow__bottom,
.p-page-flow__middle {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-page-flow__bottom,
  .p-page-flow__middle {
    padding: 60px 0;
  }
}

.p-page-flow__bottom-inner,
.p-page-flow__middle-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* object > project > サービス：バッテリーあがり(battery)
--------------------------------------------- */
.p-battery__about {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-battery__about {
    padding: 100px 0;
  }
}

.p-battery__about-heading {
  text-align: center;
  font-size: 36px;
  color: #fdd116;
  -webkit-text-stroke: 10px #000000;
  text-stroke: 10px black;
  paint-order: stroke;
}
@media screen and (min-width:900px) {
  .p-battery__about-heading {
    font-size: 52px;
  }
}

.p-battery__about-heading span {
  text-align: center;
  font-size: 29px;
  color: #fff;
  -webkit-text-stroke: 10px #000000;
  text-stroke: 10px black;
  paint-order: stroke;
}
@media screen and (min-width:900px) {
  .p-battery__about-heading span {
    font-size: 42px;
  }
}

.p-battery__inner {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-battery__title {
  font-size: 20px;
  font-weight: 900;
  padding-left: 20px;
  color: #e00200;
  border-left: 3px solid #e00200;
  margin-bottom: 10px;
}
@media screen and (min-width:900px) {
  .p-battery__title {
    font-size: 30px;
  }
}

.p-battery__content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:900px) {
  .p-battery__content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width:1024px) {
  .p-battery__content {
    gap: 70px;
  }
}

@media screen and (min-width:900px) {
  .p-battery__photo {
    flex: 0 0 400px;
  }
}
@media screen and (min-width:1024px) {
  .p-battery__photo {
    flex: 0 0 570px;
  }
}
.p-battery__photo img {
  width: 100%;
}

.p-battery__body {
  flex: 1 1 auto;
}

.p-battery__text {
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width:900px) {
  .p-battery__text {
    font-size: 20px;
    width: fit-content;
    margin-left: auto;
  }
}

/* cause */
.p-battery__cause {
  padding: 0;
}
@media screen and (min-width:768px) {
  .p-battery__cause {
    padding: 80px 0;
  }
}

.p-battery__cause-heading {
  text-align: center;
}

.p-battery__cause-inner {
  width: min(1376px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-battery__content {
  margin-top: 40px;
}

/* confirm */
.p-battery__confirm {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-battery__confirm {
    padding: 100px 0;
  }
}

.p-battery__confirm-heading {
  text-align: center;
}

.p-battery__lead {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-battery__lead {
    font-size: 28px;
  }
}

.p-battery__confirm-inner {
  width: min(1328px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-battery__confirm-content {
  margin-top: 89px;
}
@media screen and (min-width:768px) {
  .p-battery__confirm-content {
    margin-top: 75px;
  }
}

/* steps */
.p-battery__steps {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-battery__steps {
    padding: 100px 0;
  }
}

.p-battery__steps-heading {
  text-align: center;
}

.p-battery__steps-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-battery__steps-content {
  margin-top: 60px;
}

/* voice */
.p-battery__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-battery__voice {
    padding: 100px 0;
  }
}

.p-battery__voice-heading {
  text-align: center;
}

.p-battery__content {
  margin-top: 40px;
}

/* faq */
.p-battery__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-battery__faq {
    padding: 100px 0;
  }
}

.p-battery__faq-heading {
  text-align: center;
}

.p-battery__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* object > project > サービス：パンク(flat tire)
--------------------------------------------- */
/* 原因 */
.p-flat-tire__cause {
  padding: 60px 0;
  background: url(../img/flat-tire/p-flat-tire__steps_bg1_sp.jpg) top center no-repeat;
  background-size: cover;
}
@media screen and (min-width:768px) {
  .p-flat-tire__cause {
    padding: 100px 0;
    background: url(../img/flat-tire/p-flat-tire__steps_bg1.jpg) top center no-repeat;
  }
}

/* .p-flat-tire__cause-heading {
  text-align: center;
  font-size: 35px;
  color:$color-red;
  -webkit-text-stroke: 6px #fff;
  text-stroke: 6px $color-white;
  paint-order: stroke;
  @include mq('md'){
    font-size: 52px;    
  }
}

.p-flat-tire__cause-heading span{
  text-align: center;
  font-size: 29px;
  color:#000;
  -webkit-text-stroke: 6px #fff;
  text-stroke: 6px $color-white;
  paint-order: stroke;
  @include mq('md'){
    font-size: 42px;    
  }  
} */
.p-flat-tire__cause-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-flat-tire__content {
  margin-top: 40px;
}

/* 確認方法 */
.p-flat-tire__confirm {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-flat-tire__confirm {
    padding: 100px 0;
  }
}

.p-flat-tire__confirm-heading {
  text-align: center;
  font-size: 52px;
  color: #fdd116;
  text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
}

.p-flat-tire__confirm-heading span {
  text-align: center;
  font-size: 42px;
  color: #fff;
  text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
}

.p-flat-tire__lead {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-flat-tire__lead {
    font-size: 28px;
  }
}

.p-flat-tire__confirm-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-flat-tire__confirm-content {
  margin-top: 35px;
}
@media screen and (min-width:768px) {
  .p-flat-tire__confirm-content {
    margin-top: 55px;
  }
}

/* prohibited */
.p-flat-tire__prohibited {
  padding: 0px 0 60px;
  background-color: #fff;
  margin: 0 12px;
}
@media screen and (min-width:768px) {
  .p-flat-tire__prohibited {
    padding: 0 0 100px;
    margin: 0;
  }
}

.p-flat-tire__prohibited-heading {
  overflow: hidden;
  text-align: center;
  background-color: #fdd116;
  border-bottom: 3px solid #000;
  /*   text-shadow: 4px 4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff, -4px -4px 0 #fff;
  font-size: 52px; */
  padding: 10px;
  /*   color: $color-red; */
}
@media screen and (min-width:900px) {
  .p-flat-tire__prohibited-heading {
    padding: 20px;
    border-bottom: 7px solid #000;
    /*    border-bottom: 7px solid #000; */
  }
}

.p-flat-tire__prohibited-heading span {
  /*  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, -3px -3px 0 #fff;
  font-size: 42px;
  color: $color-black; */
}

.p-flat-tire__prohibited-inner {
  width: min(1320px, 100%);
  margin-inline: auto;
  border: 3px solid #000;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .p-flat-tire__prohibited-inner {
    border: 7px solid #000;
  }
}

.p-flat-tire__prohibited-content {
  padding: 20px;
}
@media screen and (min-width:768px) {
  .p-flat-tire__prohibited-content {
    padding: 100px;
  }
}

/* steps */
.p-flat-tire__steps {
  padding: 60px 0;
  background-color: #f2f2f2;
}
@media screen and (min-width:768px) {
  .p-flat-tire__steps {
    padding: 100px 0;
  }
}

.p-flat-tire__steps-heading {
  text-align: center;
  font-size: 35px;
  color: #fdd116;
  -webkit-text-stroke: 6px #000000;
  text-stroke: 6px black;
  paint-order: stroke;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-heading {
    font-size: 52px;
  }
}

.p-flat-tire__steps-inner {
  width: min(1130px, 100%);
  margin-inline: auto;
  padding: 0 12px;
  padding-top: 20px;
  margin-bottom: 120px;
}

.p-flat-tire__steps-content {
  margin-top: 0px;
}
@media screen and (min-width:768px) {
  .p-flat-tire__steps-content {
    margin-top: 60px;
  }
}

/* reason */
.p-flat-tire__reason {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-flat-tire__reason {
    padding: 100px 0;
  }
}

.p-flat-tire__reason-heading {
  text-align: center;
}

.p-flat-tire__reason-inner {
  width: min(1019px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* voice */
.p-flat-tire__voice {
  background: url(../img/flat-tire/p-flat-tire__steps_bg_sp.jpg) center center no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-flat-tire__voice {
    padding: 100px 0;
    background: url(../img/flat-tire/p-flat-tire__steps_bg.jpg) center center no-repeat;
  }
}

.p-flat-tire__voice-heading {
  text-align: center;
  font-size: 35px;
  color: #e00200;
  -webkit-text-stroke: 6px #fff;
  text-stroke: 6px #fff;
  paint-order: stroke;
}
@media screen and (min-width:768px) {
  .p-flat-tire__voice-heading {
    font-size: 52px;
  }
}

.p-flat-tire__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-flat-tire__content {
  margin-top: 40px;
}

/* faq */
.p-flat-tire__faq {
  padding: 40px 0 0px;
}
@media screen and (min-width:768px) {
  .p-flat-tire__faq {
    padding: 160px 0 80px;
  }
}

.p-flat-tire__faq-heading {
  /*   text-align: center;
  font-size: 35px;
  color: $color-red;
  @include mq() {
    font-size: 52px;
  } */
}

.p-flat-tire__faq-heading span {
  /*   font-size: 28px;
  color: $color-black;
  text-align: center;
  @include mq() {
    font-size: 40px;
  } */
}

.p-flat-tire__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-flat-tire__content {
  margin-top: 40px;
}

/* object > project > レッカー対応(towing)
--------------------------------------------- */
.p-towing__wrecker {
  padding: 60px 0 0px;
}
@media screen and (min-width:768px) {
  .p-towing__wrecker {
    padding: 80px 0;
  }
}

.p-towing__wrecker-heading {
  text-align: center;
}

.p-towing__inner {
  width: min(1304px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-towing__content {
  margin-top: 40px;
}

.p-towing__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-towing__item {
    flex-direction: row;
    gap: 0;
  }
}
.p-towing__item + .p-towing__item {
  margin-top: 30px;
}
@media screen and (min-width:900px) {
  .p-towing__item + .p-towing__item {
    margin-top: 50px;
  }
}
@media screen and (min-width:768px) {
  .p-towing__item:nth-child(odd) .p-towing__body {
    padding-left: 40px;
  }
}
@media screen and (min-width:768px) {
  .p-towing__item:nth-child(even) .p-towing__body {
    padding-left: 40px;
  }
}

@media screen and (min-width:768px) {
  .p-towing__photo {
    width: 37%;
  }
}
.p-towing__photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.p-towing__body {
  width: 100%;
}
@media screen and (min-width:768px) {
  .p-towing__body {
    width: 63%;
    padding-left: 50px;
  }
}

.p-towing__title {
  color: #d81513;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-towing__title {
    font-size: 32px;
  }
}

.p-towing__textarea {
  margin-top: 0px;
}
@media screen and (min-width:900px) {
  .p-towing__textarea {
    display: block;
  }
}

.p-towing__text {
  font-weight: 600;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (min-width:768px) {
  .p-towing__text {
    font-size: 20px;
  }
}

/* confirm */
.p-towing__confirm {
  background-color: #f0f0f0;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-towing__confirm {
    padding: 100px 0;
  }
}

.p-towing__confirm-heading {
  text-align: center;
}

.p-towing__confirm-inner {
  width: min(1264px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-towing__confirm-content {
  margin-top: 89px;
}

/* caution */
.p-towing__caution {
  padding: 0;
  background: url(../img/flat-tire/p-flat-tire__steps_bg1.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-towing__caution {
    padding: 100px 0;
  }
}
.p-towing__caution::after1 {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 50px;
  background-image: url(../img/service/caution-lines-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .p-towing__caution::after1 {
    background-image: url(../img/service/caution-lines.png);
  }
}

.p-towing__caution-heading {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 21px;
  font-size: 120%;
  font-size: 38px;
}
@media screen and (min-width:768px) {
  .p-towing__caution-heading {
    font-size: 70px;
  }
}
.p-towing__caution-heading span.min {
  font-size: 28px;
}
@media screen and (min-width:768px) {
  .p-towing__caution-heading span.min {
    font-size: 50px;
  }
}

.p-towing__caution-subheading {
  font-size: 20px;
  -webkit-text-stroke: 6px #000 !important;
  text-stroke: 6px #000 !important;
}
@media screen and (min-width:768px) {
  .p-towing__caution-subheading {
    font-size: 30px;
    -webkit-text-stroke: 10px #000 !important;
    text-stroke: 10px #000 !important;
  }
}
.p-towing__caution-subheading span.min {
  font-size: 16px;
}
@media screen and (min-width:768px) {
  .p-towing__caution-subheading span.min {
    font-size: 25px;
  }
}

.p-towing__caution-inner {
  width: min(1204px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-towing__caution-content {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
@media screen and (min-width:900px) {
  .p-towing__caution-content {
    padding-top: 0;
  }
}

.p-towing__caution-photo {
  display: none;
}
@media screen and (min-width:900px) {
  .p-towing__caution-photo {
    flex: 0 0 470px;
    display: inline;
  }
}
@media screen and (min-width:1240px) {
  .p-towing__caution-photo {
    flex: 0 0 521px;
    display: inline;
  }
}
.p-towing__caution-photo img {
  width: 100%;
  object-fit: cover;
}

.p-towing__caution-text {
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width:900px) {
  .p-towing__caution-text {
    font-size: 20px;
  }
}

/* voice */
.p-towing__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-towing__voice {
    padding: 100px 0;
  }
}

.p-towing__voice-heading {
  text-align: center;
}

.p-towing__inner {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-towing__content {
  margin-top: 40px;
}

/* faq */
.p-towing__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-towing__faq {
    padding: 100px 0;
  }
}

.p-towing__faq-heading {
  text-align: center;
}

.p-towing__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-towing__content {
  margin-top: 40px;
}

.p-towing__caution-body {
  max-width: 800px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 30px 20px 20px;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-towing__caution-body {
    border: 10px solid #000;
    margin-left: -60px;
    padding: 30px;
  }
}
@media screen and (min-width:900px) {
  .p-towing__caution-body ::before {
    content: "";
    position: absolute;
    left: -25px;
    transform: translateX(-50%);
    top: 60px;
    background-image: url(../img/towing/towing-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    width: 35px;
    height: 71px;
  }
}

.p-towing__caution-title {
  text-align: center;
  font-size: 30px;
  color: #fff;
  text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
}

.p-towing__caution-title span {
  text-align: center;
  font-size: 30px;
  color: #fdd116;
  text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
}

.p-towing__caution-textarea {
  margin-top: 20px;
}

.p-towing__caution-li {
  padding: 5px 0px 12px 15px;
  font-size: 14px;
  font-weight: 500;
  background: url(../img/flat-tire/p-area_list.svg) 0px 5px no-repeat;
  background-size: 8px 15px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .p-towing__caution-li {
    padding: 5px 0px 12px 25px;
    font-size: 22px;
    background: url(../img/flat-tire/p-area_list.svg) 0px 12px no-repeat;
    background-size: auto;
  }
}

.p-towing__caution-li span {
  color: #e00200;
}

.p-towing__caution-list {
  padding-right: 0px;
}

/* object > project > ガス欠の対応(gas out)
--------------------------------------------- */
.p-gas-out__confirm {
  background-color: #f0f0f0;
}

.p-gas-out .p-flat-tire__prohibited {
  padding-top: 40px;
}

/* object > project > 落輪の対応(wheel drop)
--------------------------------------------- */
.p-wheel-drop .p-flat-tire__prohibited {
  padding-top: 60px;
}
@media screen and (min-width:768px) {
  .p-wheel-drop .p-flat-tire__prohibited {
    padding-top: 100px;
  }
}

/* about */
.p-wheel-drop__about {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__about {
    padding: 100px 0;
  }
}

.p-wheel-drop__about-heading {
  text-align: center;
}

.p-wheel-drop__inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* cause */
.p-wheel-drop__cause {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__cause {
    padding: 80px 0;
  }
}

.p-wheel-drop__cause-heading {
  text-align: center;
}

.p-wheel-drop__cause-inner {
  width: min(1376px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-wheel-drop__content {
  margin-top: 40px;
}

/* confirm */
.p-wheel-drop__confirm {
  background-color: #f0f0f0;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__confirm {
    padding: 100px 0;
  }
}

.p-wheel-drop__confirm-heading {
  text-align: center;
}

.p-wheel-drop__confirm-inner {
  width: min(1396px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-wheel-drop__confirm-content {
  margin-top: 89px;
}

/* steps */
.p-wheel-drop__steps {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__steps {
    padding: 100px 0;
  }
}

.p-wheel-drop__steps-heading {
  text-align: center;
}

.p-wheel-drop__steps-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-wheel-drop__steps-content {
  margin-top: 60px;
}

/* voice */
.p-wheel-drop__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__voice {
    padding: 100px 0;
  }
}

.p-wheel-drop__voice-heading {
  text-align: center;
}

.p-wheel-drop__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* faq */
.p-wheel-drop__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-wheel-drop__faq {
    padding: 100px 0;
  }
}

.p-wheel-drop__faq-heading {
  text-align: center;
}

.p-wheel-drop__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-wheel-drop__content {
  margin-top: 40px;
}

/* object > project > クルマの預かり(car storage)
--------------------------------------------- */
/* confirm */
.p-car-storage__confirm {
  padding: 60px 0;
  background-color: #f0f0f0;
}
@media screen and (min-width:768px) {
  .p-car-storage__confirm {
    padding: 80px 0;
  }
}

.p-car-storage__confirm-heading {
  text-align: center;
}

.p-car-storage__confirm-inner {
  width: min(1382px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__confirm-content {
  margin-top: 89px;
}

/* about */
.p-car-storage__about {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__about {
    padding: 80px 0;
  }
}

.p-car-storage__about-heading {
  text-align: center;
}

.p-car-storage__inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__content {
  margin-top: 40px;
}

/* table 1305 */
.p-car-storage__number {
  padding: 40px 0;
}

.p-car-storage__number-heading {
  text-align: center;
}

.p-car-storage__number-inner {
  width: min(1329px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__number-content {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-car-storage__number-content::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width:768px) {
  .p-car-storage__number-content {
    margin-top: 30px;
  }
}

/* reason */
.p-car-storage__reason {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__reason {
    padding: 100px 0;
  }
}

.p-car-storage__reason-heading {
  text-align: center;
}

.p-car-storage__reason-inner {
  width: min(1028px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__reason-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-car-storage__reason-content {
    margin-top: 76px;
  }
}

/* repair */
.p-car-storage__repair {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__repair {
    padding: 83px 0 110px;
  }
}

.p-car-storage__repair-heading {
  text-align: center;
}

/* price */
.p-car-storage__price,
.p-car-storage__option,
.p-car-storage__service {
  background-color: #d81513;
}

.p-car-storage__price {
  padding: 48px 0 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__price {
    padding: 75px 0 0;
  }
}

.p-car-storage__option {
  margin-top: -1px;
  padding: 31px 0 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__option {
    padding: 44px 0 0;
  }
}

.p-car-storage__service {
  margin-top: -1px;
  padding: 61px 0 46px;
}
@media screen and (min-width:768px) {
  .p-car-storage__service {
    padding: 68px 0 102px;
  }
}

.p-car-storage__price-heading,
.p-car-storage__option-heading,
.p-car-storage__service-heading {
  text-align: center;
}

.p-car-storage__price-inner {
  width: min(1114px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__price-content {
  margin-top: 91px;
}
@media screen and (min-width:768px) {
  .p-car-storage__price-content {
    margin-top: 68px;
  }
}

.p-car-storage__price-card {
  width: 320px;
  height: 132px;
  background-color: #fff;
  display: grid;
  place-items: center;
  border: 2px solid #000;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .p-car-storage__price-card {
    width: 458px;
    height: 132px;
    position: relative;
  }
}

.p-car-storage__price-card-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
  font-size: 32px;
  font-weight: 800;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
}
.p-car-storage__price-card-number {
  font-size: 36px;
  color: #d81513;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .p-car-storage__price-card-number {
    font-size: 48px;
  }
}

/* option */
.p-car-storage__option-content {
  margin-top: 40px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-car-storage__option-content::-webkit-scrollbar {
  display: none;
}

.p-car-storage__option-inner {
  width: min(734px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* service */
.p-car-storage__service-inner {
  width: min(1114px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__service-content {
  margin-top: 40px;
}

.p-car-storage__swiper-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.p-car-storage__swiper-wrapper .swiper {
  position: static;
  overflow: visible;
}
@media screen and (min-width:768px) {
  .p-car-storage__swiper-wrapper .swiper {
    overflow: hidden;
  }
}
@media screen and (min-width:768px) {
  .p-car-storage__swiper-wrapper .swiper-wrapper {
    display: flex;
    gap: 20px;
  }
}
.p-car-storage__swiper-wrapper .swiper-horizontal > .swiper-pagination-bullets,
.p-car-storage__swiper-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-car-storage__swiper-wrapper .swiper-pagination-custom,
.p-car-storage__swiper-wrapper .swiper-pagination-fraction {
  bottom: 0;
}
.p-car-storage__swiper-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
.p-car-storage__swiper-wrapper .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: rgba(255, 255, 255, 0.5) !important;
}
@media screen and (min-width:768px) {
  .p-car-storage__swiper-wrapper .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}
.p-car-storage__swiper-wrapper .swiper-slide img {
  width: 100%;
  object-fit: cover;
}

/* notice */
.p-car-storage__notice {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__notice {
    padding: 80px 0;
  }
}

.p-car-storage__notice-heading {
  text-align: center;
}

.p-car-storage__notice-inner {
  width: min(599px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__notice-content {
  margin-top: 40px;
}

.p-car-storage__notice-item {
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 20px 20px;
}
.p-car-storage__notice-item:not(:first-child) {
  margin-top: 40px;
}

.p-car-storage__notice-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-car-storage__notice-title {
    font-size: 24px;
  }
}

.p-car-storage__notice-text {
  margin-top: 30px;
  font-weight: 300;
}

/* voice */
.p-car-storage__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__voice {
    padding: 100px 0;
  }
}

.p-car-storage__voice-heading {
  text-align: center;
}

.p-car-storage__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-car-storage__content {
  margin-top: 40px;
}

/* faq */
.p-car-storage__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-car-storage__faq {
    padding: 100px 0;
  }
}

.p-car-storage__faq-heading {
  text-align: center;
}

.p-car-storage__faq-inner {
  width: min(944px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* object > project > フロントガラス交換(windshield)
--------------------------------------------- */
/* menu */
.p-windshield__menu {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-windshield__menu {
    padding: 100px 0;
  }
}

.p-windshield__menu-heading {
  /*   text-align: center;
   color: #fdd116;
   text-shadow: 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000;
  */
}

.p-windshield__menu-inner {
  width: min(1134px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__menu-content {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .p-windshield__menu-content {
    margin-top: 80px;
  }
}

/* trouble */
.p-windshield__trouble {
  padding: 60px 12px 60px;
  background-color: #f0f0f0;
  background: url(../img/windshield/windshieldbg.jpg) top center no-repeat;
  background-size: cover;
}
@media screen and (min-width:768px) {
  .p-windshield__trouble {
    padding: 180px 0 120px;
  }
}

.p-windshield__trouble-heading {
  background-color: #fdd116;
  border-bottom: 3px solid #000;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  font-size: 20px;
  padding: 20px 20px;
  text-align: center;
  color: #000;
  position: relative;
  border-radius: 7px 7px 0 0;
}
@media screen and (min-width:768px) {
  .p-windshield__trouble-heading {
    border-bottom: 7px solid #000;
    font-size: 42px;
  }
}

.p-windshield__trouble-heading span {
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  font-size: 26px;
  text-align: center;
  color: #e00200;
}
@media screen and (min-width:768px) {
  .p-windshield__trouble-heading span {
    font-size: 52px;
  }
}

.p-windshield__baloon {
  display: none;
  left: 35px;
  top: -105px;
}
@media screen and (min-width:900px) {
  .p-windshield__baloon {
    display: inline;
    position: absolute;
  }
}

.p-windshield__trouble-inner {
  width: min(1320px, 100%);
  margin-inline: auto;
  border: 3px solid #000;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (min-width:900px) {
  .p-windshield__trouble-inner {
    border: 7px solid #000;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  }
}

.p-windshield__trouble-content {
  margin-top: 0px;
  padding: 30px 20px;
}
@media screen and (min-width:900px) {
  .p-windshield__trouble-content {
    margin-top: 60px;
    padding: 0;
  }
}

/* voice */
.p-windshield__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-windshield__voice {
    padding: 100px 0;
  }
}

.p-windshield__voice-heading {
  text-align: center;
}

.p-windshield__voice-inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__voice-content {
  margin-top: 40px;
}

/* faq */
.p-windshield__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-windshield__faq {
    padding: 100px 0;
  }
}

.p-windshield__faq-heading {
  text-align: center;
}

.p-windshield__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__faq-content {
  margin-top: 40px;
}

/* tips */
.p-windshield__tips {
  padding: 100px 0;
}
@media screen and (min-width:768px) {
  .p-windshield__tips {
    padding: 145px 0 80px;
  }
}

.p-windshield__tips-heading-wrap {
  position: relative;
  max-width: min(1107px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__tips-heading {
  font-size: 20px;
  font-weight: 800;
  padding: 42px 10px;
  background-color: #ffee9e;
  text-align: center;
}
@media screen and (min-width:500px) {
  .p-windshield__tips-heading {
    font-size: 24px;
  }
}
@media screen and (min-width:768px) {
  .p-windshield__tips-heading {
    padding: 59px 10px;
    font-size: 28px;
  }
}
@media screen and (min-width:900px) {
  .p-windshield__tips-heading {
    font-size: 36px;
  }
}
@media screen and (min-width:1240px) {
  .p-windshield__tips-heading {
    font-size: 40px;
  }
}
.p-windshield__tips-heading span.colored {
  color: #d81513;
}

.p-windshield__tips-heading-text {
  position: absolute;
  object-fit: cover;
  display: inline-block;
  width: 140px;
  top: -30px;
  left: 20px;
}
@media screen and (min-width:500px) {
  .p-windshield__tips-heading-text {
    width: 160px;
    top: -40px;
    left: 40px;
  }
}
@media screen and (min-width:768px) {
  .p-windshield__tips-heading-text {
    width: 200px;
    top: -50px;
    left: 20px;
  }
}
@media screen and (min-width:1240px) {
  .p-windshield__tips-heading-text {
    top: -59px;
    left: -47px;
    width: 313px;
  }
}

.p-windshield__tips-inner {
  max-width: min(1306px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__tips-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width:900px) {
  .p-windshield__tips-content {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width:1240px) {
  .p-windshield__tips-content {
    gap: 70px;
  }
}

@media screen and (min-width:900px) {
  .p-windshield__tips-photo {
    flex: 0 0 500px;
  }
}
@media screen and (min-width:1240px) {
  .p-windshield__tips-photo {
    flex: 0 0 570px;
  }
}
.p-windshield__tips-photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:900px) {
  .p-windshield__tips-body {
    flex: 1 1 auto;
  }
}

.p-windshield__tips-text {
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width:768px) {
  .p-windshield__tips-text {
    font-size: 20px;
  }
}
.p-windshield__tips-text:not(:first-child) {
  margin-top: 1em;
}

/* reason */
.p-windshield__reason {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-windshield__reason {
    padding: 100px 0;
  }
}

.p-windshield__reason-heading {
  text-align: center;
}

.p-windshield__reason-inner {
  max-width: min(1124px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__reason-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-windshield__reason-content {
    margin-top: 76px;
  }
}

/* price */
.p-windshield__price {
  padding: 51px 0 70px;
  background-color: #d81513;
}
@media screen and (min-width:768px) {
  .p-windshield__price {
    padding: 67px 0 80px;
  }
}

.p-windshield__price-heading {
  text-align: center;
}

.p-windshield__price-inner {
  max-width: min(734px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-windshield__price-content {
  margin-top: 40px;
}

.p-windshield-cards {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-bottom: 0px;
}
@media screen and (min-width:900px) {
  .p-windshield-cards {
    padding-bottom: 90px;
  }
}

.p-windshield__card {
  background-color: #f3f4e0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width:900px) {
  .p-windshield__card {
    flex-wrap: nowrap;
    margin-bottom: 50px;
  }
}

.p-windshield__photo {
  width: 100%;
}
@media screen and (min-width:900px) {
  .p-windshield__photo {
    width: 42%;
  }
}

.p-windshield__body1 {
  width: 100%;
  padding: 20px 10px 10px 10px;
}
@media screen and (min-width:900px) {
  .p-windshield__body1 {
    width: 58%;
    padding: 30px 30px 0px 30px;
  }
}

.p-windshield__body11 {
  padding: 0px 10px 10px 10px;
}
@media screen and (min-width:900px) {
  .p-windshield__body11 {
    padding: 10px 10px 0px 0px;
  }
}

.p-windshield__tag {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (min-width:900px) {
  .p-windshield__tag {
    font-size: 30px;
  }
}

.p-windshield__tag1 {
  display: flex;
  font-weight: 800;
  align-items: center;
  padding-bottom: 20px;
}
@media screen and (min-width:900px) {
  .p-windshield__tag1 {
    font-size: 30px;
    padding-bottom: 30px;
  }
}

.p-windshield__tag2 {
  color: #e00200;
  font-size: 21px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .p-windshield__tag2 {
    font-size: 21px;
  }
}

.p-windshield__tag2 div {
  color: #e00200;
  font-size: 10px;
  text-align: center;
  line-height: 1em;
}
@media screen and (min-width:900px) {
  .p-windshield__tag2 div {
    font-size: 10px;
  }
}

.p-windshield__tag3 {
  color: #e00200;
  font-size: 20px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 3px solid #e00200;
}
@media screen and (min-width:900px) {
  .p-windshield__tag3 {
    font-size: 30px;
  }
}

.p-windshield__tagtext {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-windshield__tagtext {
    font-size: 25px;
  }
}

.p-windshield__body3 {
  margin-bottom: 40px;
}
@media screen and (min-width:900px) {
  .p-windshield__body3 {
    margin-bottom: 60px;
  }
}

.p-windshield__box {
  display: flex;
  padding-bottom: 5px;
  align-items: center;
}

.p-windshield__left {
  background: #fdd116;
  padding: 2px 10px;
  font-size: 13px;
  min-width: 65px;
  text-align: center;
  margin-right: 30px;
}
@media screen and (min-width:900px) {
  .p-windshield__left {
    padding: 2px 10px;
    font-size: 20px;
    min-width: 120px;
    margin-right: 30px;
  }
}

.p-windshield__right {
  font-weight: 600;
  display: flex;
  align-items: baseline;
}
.p-windshield__right .num {
  font-size: 22px;
}
@media screen and (min-width:900px) {
  .p-windshield__right .num {
    font-size: 34px;
  }
}

.p-windshield__right img {
  margin: 0 5px;
  width: 18px;
}
@media screen and (min-width:900px) {
  .p-windshield__right img {
    width: auto;
    margin: 0 15px;
  }
}

.p-windshield .num {
  font-size: 22px;
  color: #e00200;
}
@media screen and (min-width:900px) {
  .p-windshield .num {
    font-size: 34px;
  }
}

.p-windshield .unit {
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-windshield .unit {
    font-size: 22px;
  }
}

.p-windshield .num1 {
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-windshield .num1 {
    font-size: 22px;
  }
}

.p-windshield .unit1 {
  font-size: 12px;
}
@media screen and (min-width:900px) {
  .p-windshield .unit1 {
    font-size: 16px;
  }
}

/* object > project > スタック(stack)
--------------------------------------------- */
/* about */
.p-stack__about {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-stack__about {
    padding: 100px 0;
  }
}

.p-stack__about-heading {
  text-align: center;
}

.p-stack__inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* confirm */
.p-stack__confirm {
  background-color: #f0f0f0;
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-stack__confirm {
    padding: 100px 0;
  }
}

.p-stack__confirm-heading {
  text-align: center;
}

.p-stack__confirm-inner {
  width: min(1413px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-stack__confirm-content {
  margin-top: 89px;
}

/* voice */
.p-stack__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-stack__voice {
    padding: 100px 0;
  }
}

.p-stack__voice-heading {
  text-align: center;
}

.p-stack__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-stack__content {
  margin-top: 40px;
}

/* faq */
.p-stack__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-stack__faq {
    padding: 100px 0;
  }
}

.p-stack__faq-heading {
  text-align: center;
}

.p-stack__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-stack__content {
  margin-top: 40px;
}

/* object > project > キー閉じ込み(key)
--------------------------------------------- */
/* about */
.p-key__about {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-key__about {
    padding: 80px 0 0;
  }
}

.p-key__about-heading {
  text-align: center;
}

.p-key__inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-key__about02 {
  margin-top: 40px;
  padding: 0 0 60px;
}
@media screen and (min-width:768px) {
  .p-key__about02 {
    margin-top: 80px;
    padding: 0 0 80px;
  }
}

/* cause */
.p-key__cause {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-key__cause {
    padding: 80px 0;
  }
}

.p-key__cause-heading {
  text-align: center;
}

.p-key__cause-inner {
  width: min(1034px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-key__cause-content {
  margin-top: 40px;
}

/* voice */
.p-key__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-key__voice {
    padding: 100px 0;
  }
}

.p-key__voice-heading {
  text-align: center;
}

.p-key__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-key__content {
  margin-top: 40px;
}

/* faq */
.p-key__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-key__faq {
    padding: 100px 0;
  }
}

.p-key__faq-heading {
  text-align: center;
}

.p-key__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-key__content {
  margin-top: 40px;
}

/* object > project > 外車(輸入車)の修理(foreign car repair)
--------------------------------------------- */
/* service */
.p-foreign__service {
  background-color: #f2f2f2;
  padding: 60px 0;
}
@media screen and (min-width:1024px) {
  .p-foreign__service {
    padding: 100px 0;
  }
}

.p-foreign__service-heading {
  /*   text-align: center;
  font-size: 35px;
  color: #fdd116;
  -webkit-text-stroke: 6px #000000;
  text-stroke: 6px black;
  paint-order: stroke;
  @include mq("pc") {
    font-size: 52px;
  } */
}

.p-foreign__service-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 12px;
  padding-top: 20px;
}
@media screen and (min-width:1024px) {
  .p-foreign__service-inner {
    padding-top: 85px;
  }
}

.p-foreign__service-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 14px;
  row-gap: 20px;
  column-gap: 60px;
}
@media screen and (min-width:900px) {
  .p-foreign__service-items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}

.p-foreign__service-body {
  background-color: #e00200;
  padding: 20px 30px 20px 30px;
  color: #fff;
}
@media screen and (min-width:900px) {
  .p-foreign__service-body {
    min-height: 220px;
  }
}

.p-foreign__service-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .p-foreign__service-title {
    font-size: 30px;
  }
}

.p-foreign__service-text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-foreign__service-text {
    font-size: 20px;
  }
}

.p-foreign__service-photo {
  margin-top: auto;
  position: relative;
}
@media screen and (min-width:1024px) {
  .p-foreign__service-photo {
    flex: 0 0 250px;
    margin-top: initial;
  }
}
.p-foreign__service-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 300/170;
}

.p-foreign__service-tag {
  background-color: #e00200;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 3px 5px;
  font-weight: bolder;
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width:900px) {
  .p-foreign__service-tag {
    width: 108px;
    font-size: 75px;
    letter-spacing: 5px;
  }
}

/* about */
.p-foreign__about {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-foreign__about {
    padding: 80px 0;
  }
}

.p-foreign__about-heading {
  text-align: center;
}

.p-foreign__about-inner {
  width: min(1147px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__about-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:900px) {
  .p-foreign__about-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 70px;
  }
}
@media screen and (min-width:768px) {
  .p-foreign__about-content {
    gap: 42px;
  }
}

@media screen and (min-width:900px) {
  .p-foreign__about-photo {
    flex: 0 0 570px;
  }
}
@media screen and (min-width:768px) {
  .p-foreign__about-photo {
    flex: 0 0 500px;
  }
}
.p-foreign__about-photo img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width:768px) {
  .p-foreign__about-body {
    flex: 1 1 auto;
  }
}

.p-foreign__about-text {
  font-weight: 600;
  line-height: 1.8;
}
.p-foreign__about-text span.colored {
  color: #d81513;
}
@media screen and (min-width:768px) {
  .p-foreign__about-text {
    font-size: 20px;
  }
}
.p-foreign__about-text:not(:first-child) {
  margin-top: 2em;
}

/* worry */
.p-foreign__worry {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-foreign__worry {
    padding: 80px 0;
  }
}

.p-foreign__worry-heading {
  text-align: center;
}

.p-foreign__worry-inner {
  width: min(1376px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__worry-content {
  margin-top: 40px;
}

/* reason */
.p-foreign__reason {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-foreign__reason {
    padding: 100px 0;
  }
}

.p-foreign__reason-heading {
  text-align: center;
}

.p-foreign__reason-inner {
  width: min(1028px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__reason-content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-foreign__reason-content {
    margin-top: 76px;
  }
}

/* price */
.p-foreign__price {
  padding: 50px 0 70px;
  background-color: #d81513;
}
@media screen and (min-width:768px) {
  .p-foreign__price {
    padding: 67px 0 80px;
  }
}

.p-foreign__price-heading {
  text-align: center;
}

.p-foreign__price-inner {
  width: min(734px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__price-content {
  margin-top: 40px;
}

/* voice */
.p-foreign__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-foreign__voice {
    padding: 100px 0;
  }
}

.p-foreign__voice-heading {
  text-align: center;
}

.p-foreign__voice-inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__voice-content {
  margin-top: 40px;
}

/* faq */
.p-foreign__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-foreign__faq {
    padding: 100px 0;
  }
}

.p-foreign__faq-heading {
  text-align: center;
}

.p-foreign__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-foreign__faq-content {
  margin-top: 40px;
}

/* object > project > サービス一覧スライダー(service slide)
--------------------------------------------- */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #d9d9d9;
}

.p-service-slide__container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .p-service-slide__container {
    padding: 0 59px;
  }
}
@media screen and (min-width:768px) {
  .p-service-slide__container.recruit {
    padding-bottom: 80px;
  }
}
@media screen and (min-width:1024px) {
  .p-service-slide__container.recruit {
    padding-bottom: 0;
  }
}
.p-service-slide__container .swiper {
  max-width: 1200px;
}
@media screen and (min-width:768px) {
  .p-service-slide__container .swiper-pagination {
    display: none;
  }
}
.p-service-slide__container .swiper-button-prev {
  display: none;
}
@media screen and (min-width:768px) {
  .p-service-slide__container .swiper-button-prev {
    display: block;
    left: 0;
  }
}
.p-service-slide__container .swiper-button-prev::after {
  content: none;
}
.p-service-slide__container .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/slider-chevron-left.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 20px;
  height: 32px;
}
.p-service-slide__container .swiper-button-next {
  display: none;
}
@media screen and (min-width:768px) {
  .p-service-slide__container .swiper-button-next {
    display: block;
    right: 0;
  }
}
.p-service-slide__container .swiper-button-next::after {
  content: none;
}
.p-service-slide__container .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/slider-chevron-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 20px;
  height: 32px;
}

.p-service-slide__card {
  display: flex;
  flex-direction: column;
  width: 320px;
  height: 582px;
  border-radius: 20px;
  border: 2px solid #222;
  background-color: #f9dc56;
  padding: 30px;
}
@media screen and (min-width:500px) {
  .p-service-slide__card {
    width: 350px;
  }
}
@media screen and (min-width:768px) {
  .p-service-slide__card {
    width: 450px;
    height: 623px;
  }
}
.p-service-slide__card.recruit {
  height: 650px;
}
.p-service-slide__card.recruit:nth-of-type(even) {
  background-color: #fff7d0;
}
.p-service-slide__card.beige {
  background-color: #ffefa4;
}

.p-service-slide__title {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #000;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width:1240px) {
  .p-service-slide__title {
    font-size: 26px;
  }
}
@media screen and (min-width:1440px) {
  .p-service-slide__title {
    font-size: 28px;
  }
}
.p-service-slide__title.recruit {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width:1440px) {
  .p-service-slide__title.recruit {
    font-size: 26px;
  }
}

.p-service-slide__desc {
  min-height: 100px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-service-slide__desc {
    min-height: 120px;
    font-size: 20px;
  }
}

.p-service-slide__price {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .p-service-slide__price {
    font-size: 20px;
  }
}

.p-service-slide__sub-title {
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
}
.p-service-slide__sub-title.second {
  margin-top: auto;
}

.p-service-slide__sub-desc {
  margin-top: 10px;
  font-weight: 600;
  min-height: 56px;
}
@media screen and (min-width:1240px) {
  .p-service-slide__sub-desc {
    font-size: 20px;
  }
}

.p-service-slide__photo {
  margin-top: 30px;
  height: 200px;
}
@media screen and (min-width:768px) {
  .p-service-slide__photo {
    height: 191px;
    aspect-ratio: 380/191;
  }
}
.p-service-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.p-service-slide__btn-wrap {
  margin-top: 20px;
}

/* object > project > サービス：〇〇とは (service about)
--------------------------------------------- */
.p-service-about {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: normal;
}
@media screen and (min-width:900px) {
  .p-service-about {
    align-items: center;
    flex-direction: row;
    gap: 0px;
  }
}
@media screen and (min-width:1024px) {
  .p-service-about {
    gap: 0px;
  }
}

.p-service-about__photo {
  width: 4/3;
}
@media screen and (min-width:900px) {
  .p-service-about__photo {
    aspect-ratio: 400/350;
    width: 37%;
  }
}
@media screen and (min-width:1024px) {
  .p-service-about__photo {
    aspect-ratio: 570/378;
    width: 37%;
  }
}
.p-service-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width:900px) {
  .p-service-about__photo img {
    object-fit: cover;
  }
}

.p-service-about__body {
  margin-left: 0;
}
@media screen and (min-width:900px) {
  .p-service-about__body {
    width: calc(63% - 35px);
    margin-left: 35px;
    border-left: none;
  }
}

.p-service-about__text {
  font-weight: 600;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (min-width:900px) {
  .p-service-about__text {
    font-size: 20px;
    width: fit-content;
    margin-left: auto;
    display: block;
  }
}

/* object > project > サービス：タグ付カード(service cards)
--------------------------------------------- */
.p-service-cards__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:900px) {
  .p-service-cards__card {
    flex-direction: row;
    gap: 0;
  }
}
.p-service-cards__card + .p-service-cards__card {
  margin-top: 30px;
}
@media screen and (min-width:900px) {
  .p-service-cards__card + .p-service-cards__card {
    margin-top: 50px;
  }
}
.p-service-cards__photo {
  width: 100%;
}
@media screen and (min-width:900px) {
  .p-service-cards__photo {
    width: 37%;
  }
}
.p-service-cards__photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 400/250;
  border-radius: 5px;
}
@media screen and (min-width:900px) {
  .p-service-cards__photo img {
    width: 100%;
    aspect-ratio: 400/288;
    object-fit: cover;
  }
}
.p-service-cards__tag {
  display: flex;
  font-weight: 800;
  align-items: center;
  padding-bottom: 10px;
  flex-wrap: nowrap;
  padding-bottom: 20px;
}
@media screen and (min-width:900px) {
  .p-service-cards__tag {
    flex-wrap: nowrap;
  }
}
.p-service-cards__tag1 {
  color: #e00200;
  font-size: 18px;
  text-align: left;
  font-weight: 900;
  line-height: 1em;
  width: auto;
  text-align: center;
}
@media screen and (min-width:900px) {
  .p-service-cards__tag1 {
    font-size: 25px;
  }
}

.p-service-cards__tag1 div {
  color: #e00200;
  font-size: 10px;
  text-align: center;
  display: block;
  font-weight: 900;
  line-height: 1em;
}

.p-service-cards__tag2 {
  color: #e00200;
  font-size: 20px;
  margin-left: 15px;
  padding-left: 15px;
  padding-top: 0px;
  font-weight: 900;
  border-left: 3px solid #e00200;
}
@media screen and (min-width:900px) {
  .p-service-cards__tag2 {
    font-size: 30px;
  }
}

.p-service-cards__body {
  width: 100%;
}
@media screen and (min-width:900px) {
  .p-service-cards__body {
    width: 63%;
    padding-left: 50px;
  }
}

.p-service-cards__text {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-service-cards__text {
    font-size: 20px;
  }
}

/* object > project > サービス：ステップ (service step)
--------------------------------------------- */
.p-service-step__item {
  background: #e00200;
  color: #fff;
  position: relative;
}
.p-service-step__item + .p-service-step__item {
  margin-top: 25px;
}
@media screen and (min-width:768px) {
  .p-service-step__item + .p-service-step__item {
    margin-top: 70px;
  }
}

.p-service-step__item1 {
  background: #e00200;
  color: #fff;
  position: relative;
}
.p-service-step__item1 + .p-service-step__item1 {
  margin-top: 40px;
}

.p-service-step__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(50% - 0px);
  transform: translateX(-50%);
  bottom: -10px;
  background-image: url(../img/flat-tire/p-flat-tire__steps_img_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 40px;
  height: 20px;
}
@media screen and (min-width:900px) {
  .p-service-step__item:not(:last-child)::before {
    width: 87px;
    height: 44px;
    left: calc(50% + 44px);
    bottom: -40px;
  }
}

.p-service-step__item-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
@media screen and (min-width:900px) {
  .p-service-step__item-content {
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 350px;
  }
}
.p-service-step__item-photo {
  position: relative;
  width: 100%;
}
@media screen and (min-width:900px) {
  .p-service-step__item-photo {
    flex: 0 0 400px;
  }
}
@media screen and (min-width:1240px) {
  .p-service-step__item-photo {
    flex: 0 0 470px;
  }
}
.p-service-step__item-photo img {
  width: -webkit-fill-available;
  object-fit: cover;
  height: 170px;
}
@media screen and (min-width:900px) {
  .p-service-step__item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-flat-tire__steps-tag {
  background-color: #e00200;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 3px 5px;
  font-weight: bolder;
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-tag {
    width: 108px;
    font-size: 75px;
    letter-spacing: 5px;
    line-height: 1;
  }
}

.p-flat-tire__steps-body {
  padding: 20px;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-body {
    padding: 50px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.p-flat-tire__steps-title {
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-title {
    font-size: 30px;
    border-left: 3px solid #fff;
    padding-left: 20px;
  }
}

.p-flat-tire__steps-textarea {
  margin-top: 10px;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-textarea {
    margin-top: 20px;
    padding-right: 20px;
  }
}
.p-flat-tire__steps-textarea ul {
  margin-top: 1em;
}
.p-flat-tire__steps-textarea ul li {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-textarea ul li {
    font-size: 20px;
  }
}

.p-flat-tire__steps-text,
.p-flat-tire__steps__second-text {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-flat-tire__steps-text,
  .p-flat-tire__steps__second-text {
    font-size: 20px;
  }
}

.p-service-step__second-text {
  margin-top: 1em;
}

.p-service-step__first-message {
  padding-top: 60px;
  text-align: center;
  color: #d81513;
  font-weight: 800;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px #fff, -2px -2px #fff;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-service-step__first-message {
    font-size: 36px;
    text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px #fff, -3px -3px #fff;
  }
}
@media screen and (min-width:900px) {
  .p-service-step__first-message::before {
    content: "";
    position: absolute;
    top: -205px;
    left: 0;
    background-image: url(../img/service/service-step01-balloon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 316px;
    height: 314px;
  }
}
@media screen and (min-width:1024px) {
  .p-service-step__first-message::before {
    top: -145px;
  }
}
.p-service-step__first-message span.lg {
  font-size: 24px;
}
@media screen and (min-width:900px) {
  .p-service-step__first-message span.lg {
    font-size: 48px;
  }
}

.p-service-step__first-btns {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (min-width:900px) {
  .p-service-step__first-btns {
    margin-top: 59px;
    gap: 33px;
  }
}

.p-service-step__second {
  margin-top: 40px;
  border-radius: 20px;
  border: 2px solid #222;
  background: #fff7d0;
  padding: 30px 15px;
}
@media screen and (min-width:900px) {
  .p-service-step__second {
    padding: 30px 30px;
    margin-top: 20px;
  }
}
.p-service-step__second.third {
  background-color: #f9dc56;
}

.p-service-step__second-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:900px) {
  .p-service-step__second-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width:1240px) {
  .p-service-step__second-content {
    gap: 70px;
  }
}
@media screen and (min-width:900px) {
  .p-service-step__second-content.third {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width:900px) {
  .p-service-step__second-body {
    flex: 1 1 auto;
  }
}
@media screen and (min-width:1240px) {
  .p-service-step__second-body {
    flex: 0 0 500px;
  }
}

@media screen and (min-width:900px) {
  .p-service-step__second-photo {
    flex: 0 0 470px;
  }
}
@media screen and (min-width:1240px) {
  .p-service-step__second-photo {
    flex: 0 0 570px;
  }
}
.p-service-step__second-photo img {
  width: 100%;
  object-fit: cover;
}

.p-service-step__second-title {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width:900px) {
  .p-service-step__second-title {
    font-size: 28px;
  }
}

.p-service-step__second-textarea {
  margin-top: 20px;
}

.p-service-step__second-text {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-service-step__second-text {
    font-size: 20px;
  }
}

/* third */
.p-service-step__third {
  margin-top: 40px;
  border-radius: 20px;
  border: 2px solid #000;
  background: #f9dc56;
  padding: 30px 25px;
}
@media screen and (min-width:900px) {
  .p-service-step__third {
    padding: 30px 30px;
  }
}

.p-service-step__third-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:900px) {
  .p-service-step__third-title {
    font-size: 28px;
  }
}

.p-service-step__third-items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media screen and (min-width:1240px) {
  .p-service-step__third-items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 20px;
  }
}

.p-service-step__third-item {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (min-width:900px) {
  .p-service-step__third-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

.p-service-step__third-body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:900px) {
  .p-service-step__third-body {
    flex: 1 1 auto;
  }
}

.p-service-step__third-item-title {
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:900px) {
  .p-service-step__third-item-title {
    font-size: 28px;
  }
}

.p-service-step__third-textarea {
  margin-top: 28px;
}

.p-service-step__third-text {
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-service-step__third-text {
    font-size: 20px;
  }
}

.p-service-step__third-price {
  margin-top: 2em;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-service-step__third-price {
    font-size: 20px;
  }
}

.p-service-step__third-photo {
  aspect-ratio: 300/200;
}
@media screen and (min-width:900px) {
  .p-service-step__third-photo {
    aspect-ratio: 1;
    flex: 0 0 250px;
  }
}
.p-service-step__third-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* object > project > header
--------------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: rgba(255, 249, 223, 0.94);
  padding: 5px 20px;
  z-index: 1001;
}
@media screen and (min-width:1440px) {
  .p-header {
    padding: 8px 40px;
  }
}

.p-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.p-header__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.p-header__logo {
  flex: 0 0 83px;
}
@media screen and (min-width:1440px) {
  .p-header__logo {
    flex: 0 0 89px;
  }
}

.p-header__logo-link {
  display: block;
}
.p-header__logo-link img {
  width: 100%;
  object-fit: cover;
}

.p-header__links {
  display: none;
}
@media screen and (min-width:1440px) {
  .p-header__links {
    display: block;
    display: flex;
    gap: 12px;
  }
}

/* PC */
.p-header__nav-pc {
  display: none;
}
@media screen and (min-width:1440px) {
  .p-header__nav-pc {
    display: block;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

.p-header__nav-pc-link {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* SP */
.p-header__nav-sp {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
@media screen and (min-width:1440px) {
  .p-header__nav-sp {
    display: none;
  }
}

.p-header__nav-sp-item:nth-child(1) {
  flex: 0 0 18px;
  height: 24px;
}
.p-header__nav-sp-item:nth-child(2) {
  flex: 0 0 30px;
}

.p-header__nav-sp-tel {
  display: block;
  position: relative;
  transform: translateY(1px);
}
.p-header__nav-sp-tel img {
  width: 19px;
  height: 26px;
  aspect-ratio: 19/26;
  object-fit: contain;
}

.p-header__hamburger {
  display: inline-block;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1000;
}
.p-header__hamburger.js-is-open .p-header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.p-header__hamburger.js-is-open .p-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.js-is-open .p-header__hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.p-header__hamburger-line {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #222;
  transition: opacity 0.3s, transform 0.3s;
}
.p-header__hamburger-line:nth-child(1) {
  top: 0;
}
.p-header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-header__hamburger-line:nth-child(3) {
  top: 100%;
  transform: translateY(-50%);
}

/* object > project > footer
--------------------------------------------- */
.p-footer {
  background-color: #d81513;
  padding: 40px 0 162px;
  color: #fff;
  margin-top: -1px;
}
@media screen and (min-width:768px) {
  .p-footer {
    padding: 40px 0;
  }
}

.p-footer__inner {
  width: min(1304px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:768px) {
  .p-footer__top {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.p-footer__info-items {
  margin-top: 28px;
}

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

.p-footer__info-list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.p-footer__info-list-item {
  font-size: 13px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-footer__info-list-item {
    font-size: 16px;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-footer__info-title {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-footer__info-title {
    font-size: 16px;
  }
}
.p-footer__info-title a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-footer__info-title a:hover {
    opacity: 0.8;
  }
}

.p-footer__nav-link {
  font-size: 12px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-footer__nav-link {
    font-size: 15px;
  }
}

.p-footer__bottom-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-footer__bottom-nav {
    flex-direction: row;
    justify-content: center;
  }
}

.p-footer__bottom-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-footer__bottom-nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.p-footer__bottom-nav-link {
  font-size: 12px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-footer__bottom-nav-link {
    font-size: 15px;
  }
}

.p-footer__copyright {
  margin-top: 8px;
}

.p-footer__copyright-text {
  font-size: 10px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-footer__copyright-text {
    font-size: 12px;
    text-align: center;
  }
}

/* object > project > sidebar
--------------------------------------------- */
.p-sidebar__top {
  grid-row: 1/2;
}
@media screen and (min-width:900px) {
  .p-sidebar__top {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.p-sidebar__main {
  margin-top: 60px;
  grid-row: 3/4;
}
@media screen and (min-width:900px) {
  .p-sidebar__main {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 40px;
  }
}

.p-sidebar__title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-sidebar__new {
  padding: 4px 10px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: #fff;
  background-color: #d81513;
  font-size: 10px;
  font-weight: 800;
}

.p-sidebar__content {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:900px) {
  .p-sidebar__content {
    margin: initial;
    margin-right: auto;
  }
}
.p-sidebar__content:not(:first-child) {
  margin-top: 40px;
}
.p-sidebar__content.mt40 {
  margin-top: 40px;
}

.p-sidebar__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-sidebar__article {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-sidebar__article:hover {
    opacity: 0.8;
  }
}

.p-sidebar__thumbnail {
  max-width: 300px;
  width: 100%;
  position: relative;
}
.p-sidebar__thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-sidebar_article-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 10px;
}

/* タグリスト */
.p-sidebar__tag-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width:900px) {
  .p-sidebar__tag-list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.p-sidebar__tag-link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  background-color: #fff7d0;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-sidebar__tag-link:hover {
    opacity: 0.8;
  }
}

/* お知らせリスト */
.p-sidebar__news-title {
  font-size: 30px;
  font-weight: 600;
}

.p-sidebar__news-list {
  margin-top: 14px;
}

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

.p-sidebar__news-link {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.p-sidebar__news-item {
  border-bottom: 1px solid #000;
  padding: 5px 0px;
  background: url(../img/common/sidebar-arrow.svg) center right no-repeat;
}

/* object > project > first view
--------------------------------------------- */
.p-fv img {
  width: 100%;
  object-fit: cover;
}

/* object > project > 下層ページFV Type01
--------------------------------------------- */
.p-page-fv01 {
  height: 450px;
  position: relative;
  padding-top: 0px;
}
@media screen and (min-width:768px) {
  .p-page-fv01 {
    height: 400px;
  }
}
.p-page-fv01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-page-fv01__heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 320px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading {
    width: 512px;
    top: 139px;
  }
}
.p-page-fv01__heading.voice {
  width: 200px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.voice {
    width: 320px;
  }
}
.p-page-fv01__heading.case {
  width: 160px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.case {
    width: 256px;
  }
}
.p-page-fv01__heading.single-case {
  width: 200px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.single-case {
    width: 320px;
  }
}
.p-page-fv01__heading.single-news {
  width: 160px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.single-news {
    width: 256px;
  }
}
.p-page-fv01__heading.contact {
  width: 1100px;
  top: 50px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.contact {
    width: 668px;
    top: 50px;
  }
}
@media screen and (min-width:900px) {
  .p-page-fv01__heading.contact {
    width: 1100px;
    top: 50px;
  }
}
.p-page-fv01__heading.company {
  width: 240px;
  top: 198px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.company {
    width: 530px;
    top: 55px;
  }
}
.p-page-fv01__heading.policy {
  width: 238px;
  top: 178px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.policy {
    width: 850px;
    top: 55px;
  }
}
.p-page-fv01__heading.media {
  width: 320px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.media {
    width: 512px;
    top: 139px;
  }
}
.p-page-fv01__heading.staff {
  width: 239px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.staff {
    width: 383px;
    top: 139px;
  }
}
.p-page-fv01__heading.store {
  width: 160px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.store {
    width: 256px;
    top: 139px;
  }
}
.p-page-fv01__heading.area {
  width: 200px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.area {
    width: 320px;
    top: 139px;
  }
}
.p-page-fv01__heading.safety {
  width: 280px;
  top: 178px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.safety {
    width: 832px;
    top: 139px;
  }
}
.p-page-fv01__heading.service {
  width: 192px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.service {
    width: 384px;
    top: 137px;
  }
}
.p-page-fv01__heading.pricing {
  width: 160px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.pricing {
    width: 256px;
    top: 139px;
  }
}
.p-page-fv01__heading.faq {
  width: 280px;
  top: 208px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.faq {
    width: 448px;
    top: 139px;
  }
}
.p-page-fv01__heading.page-flow {
  width: 240px;
  top: 205px;
}
@media screen and (min-width:768px) {
  .p-page-fv01__heading.page-flow {
    width: 384px;
    top: 139px;
  }
}

/* object > project > 下層ページFV02 (page fv02)
--------------------------------------------- */
.p-page-fv02 {
  position: relative;
}
.p-page-fv02 img {
  width: 100%;
  object-fit: cover;
}
.p-page-fv02 .p-page-fv02__price {
  position: absolute;
  display: inline-block;
  width: 213px;
  right: 20px;
  bottom: 68px;
  object-fit: cover;
}
@media screen and (min-width:768px) {
  .p-page-fv02 .p-page-fv02__price {
    right: 10px;
    bottom: 0;
    width: 260px;
  }
}
@media screen and (min-width:1024px) {
  .p-page-fv02 .p-page-fv02__price {
    width: 335px;
    right: 45px;
  }
}
@media screen and (min-width:1240px) {
  .p-page-fv02 .p-page-fv02__price {
    right: 46px;
    bottom: 30px;
  }
}
.p-page-fv02 .p-page-fv02__price.car-storage {
  bottom: 0;
}
.p-page-fv02 .p-page-fv02__price.windshield {
  bottom: 0;
  width: 200px;
}
@media screen and (min-width:1024px) {
  .p-page-fv02 .p-page-fv02__price.windshield {
    width: 260px;
  }
}
@media screen and (min-width:1240px) {
  .p-page-fv02 .p-page-fv02__price.windshield {
    width: 320px;
  }
}
@media screen and (min-width:1440px) {
  .p-page-fv02 .p-page-fv02__price.windshield {
    width: 335px;
    bottom: 29px;
    right: 26px;
  }
}

.p-page-fv02__tel {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media screen and (min-width:768px) {
  .p-page-fv02__tel {
    left: 70px;
    transform: translateX(0);
  }
}
.p-page-fv02__tel .link {
  display: grid;
  place-items: center;
  width: 278px;
  height: 51px;
  background-color: #d81513;
  border: 1px solid #000;
}
.p-page-fv02__tel .link .inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-page-fv02__tel .link img {
  flex: 0 0 17px;
  width: 17px;
  object-fit: contain;
}
.p-page-fv02__tel .link .text {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
.p-page-fv02__tel .sub-text {
  position: absolute;
  top: -24px;
  left: -15px;
  display: inline-grid;
  place-items: center;
  width: 101px;
  height: 25px;
  color: #d81513;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #000;
}

/* cause */
.p-gas-out__cause {
  padding: 60px 0 0;
}
@media screen and (min-width:768px) {
  .p-gas-out__cause {
    padding: 80px 0;
  }
}

.p-gas-out__cause-heading {
  text-align: center;
}

.p-gas-out__cause-inner {
  width: min(1376px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-gas-out__content {
  margin-top: 40px;
}

/* confirm */
.p-gas-out__confirm {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-gas-out__confirm {
    padding: 100px 0;
  }
}

.p-gas-out__confirm-heading {
  text-align: center;
}

.p-gas-out__confirm-inner {
  width: min(1268px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-gas-out__confirm-content {
  margin-top: 89px;
}

/* steps */
.p-gas-out__steps {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-gas-out__steps {
    padding: 100px 0;
  }
}

.p-gas-out__steps-heading {
  text-align: center;
}

.p-gas-out__steps-content {
  margin-top: 60px;
}

.p-gas-out__steps-inner {
  width: min(1224px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

/* voice */
.p-gas-out__voice {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-gas-out__voice {
    padding: 100px 0;
  }
}

.p-gas-out__voice-heading {
  text-align: center;
}

.p-gas-out__inner {
  width: min(1324px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-gas-out__content {
  margin-top: 40px;
}

/* faq */
.p-gas-out__faq {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-gas-out__faq {
    padding: 100px 0;
  }
}

.p-gas-out__faq-heading {
  text-align: center;
}

.p-gas-out__faq-inner {
  width: min(984px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-gas-out__content {
  margin-top: 40px;
}

/* object > project > フォーム(form)
--------------------------------------------- */
.p-form .p-form__item:not(:first-child) {
  margin-top: 42px;
}
.p-form .p-form__control {
  margin-top: 10px;
}
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form input[type=url],
.p-form select,
.p-form textarea {
  width: 100%;
  padding: 14px 10px;
  background-color: #fff;
  border: 3px solid #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 125.4%;
}
@media screen and (min-width:768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email],
  .p-form input[type=url],
  .p-form select,
  .p-form textarea {
    padding: 14px 14px 14px;
    font-size: 20px;
  }
}
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form input[type=url],
.p-form select {
  height: 54px;
}
.p-form textarea {
  height: 172px;
  resize: none;
}
.p-form input[type=text]::placeholder,
.p-form input[type=tel]::placeholder,
.p-form input[type=email]::placeholder,
.p-form input[type=url]::placeholder,
.p-form textarea::placeholder {
  color: rgba(49, 49, 49, 0.4);
  font-size: 15px;
  font-weight: 600;
  line-height: 125.4%;
}
@media screen and (min-width:768px) {
  .p-form input[type=text]::placeholder,
  .p-form input[type=tel]::placeholder,
  .p-form input[type=email]::placeholder,
  .p-form input[type=url]::placeholder,
  .p-form textarea::placeholder {
    font-size: 20px;
  }
}

.p-form__label-text {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.p-form__label-text.align {
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width:768px) {
  .p-form__label-text.align {
    align-items: center;
    justify-content: initial;
  }
}

.p-form__label-required {
  background-color: #f64838;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  width: 64px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 3px;
  margin-left: 0.5em;
}

/* 生年月日 */
.p-form__birth-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-form__btn-wrap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-form__btn-wrap {
    margin-top: 54px;
  }
}

.p-form__birth-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-form__birth-item-year {
  width: 97px;
  position: relative;
}
.p-form__birth-item-year .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -59px;
  left: 0;
}

.p-form__birth-item-month,
.p-form__birth-item-day {
  width: 69px;
}

.p-form__birth-item-month {
  position: relative;
}
.p-form__birth-item-month .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -82px;
  left: 0;
}

.p-form__birth-item-day {
  position: relative;
}
.p-form__birth-item-day .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -84px;
  left: 0;
}

.p-form__birth-unit {
  flex: 1 1 auto;
  text-align: center;
}

/* 性別：ラジオボタン */
.p-form__control.radio {
  margin-top: 11px;
}
.p-form__control.radio .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 30px;
}
.p-form__control .wpcf7-list-item label {
  cursor: pointer;
}
.p-form__control input[type=radio] {
  position: absolute;
  opacity: 0;
}
.p-form__control input[type=radio] + span {
  padding-left: 37px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.p-form__control input[type=radio] + span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: inline-block;
  width: 28px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #222;
}
.p-form__control input[type=radio] + span::after {
  content: none;
}
.p-form__control input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  display: inline-block;
  width: 19px;
  height: 18px;
  background-color: #d81513;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form.sent .wpfc7-response-output {
  display: none;
}

/* object > project > 下層ページCTA:写真なし(page cta)
--------------------------------------------- */
.p-page-cta {
  padding: 32px 12px 195px;
  background-color: #d81513;
  position: relative;
}
@media screen and (min-width:1240px) {
  .p-page-cta {
    padding: 78px 12px 93px;
  }
}

.p-page-cta__photo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  width: 160px;
  height: 167px;
  aspect-ratio: 150/157;
}
@media screen and (min-width:1240px) {
  .p-page-cta__photo-wrap {
    width: 210px;
    height: 250px;
    right: -40px;
    left: initial;
    top: 0;
    bottom: initial;
    aspect-ratio: 210/250;
  }
}
@media screen and (min-width:1440px) {
  .p-page-cta__photo-wrap {
    right: 50px;
  }
}
@media screen and (min-width:1600px) {
  .p-page-cta__photo-wrap {
    right: 124px;
  }
}
@media (min-width: 1700px) {
  .p-page-cta__photo-wrap {
    right: 194px;
  }
}
@media (min-width: 1850px) {
  .p-page-cta__photo-wrap {
    right: 244px;
  }
}
@media (min-width: 1900px) {
  .p-page-cta__photo-wrap {
    right: 314px;
  }
}
.p-page-cta__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width:1240px) {
  .p-page-cta__photo-wrap.windshield {
    right: -90px;
    top: 70px;
  }
}
@media screen and (min-width:1600px) {
  .p-page-cta__photo-wrap.windshield {
    right: 70px;
    top: 70px;
  }
}
@media (min-width: 1700px) {
  .p-page-cta__photo-wrap.windshield {
    right: 120px;
    top: 70px;
  }
}
@media (min-width: 1850px) {
  .p-page-cta__photo-wrap.windshield {
    right: 190px;
    top: 80px;
  }
}
@media (min-width: 1900px) {
  .p-page-cta__photo-wrap.windshield {
    right: 210px;
    top: 80px;
  }
}
@media screen and (min-width:1240px) {
  .p-page-cta__photo-wrap.foreign {
    right: -70px;
    width: 270px;
    height: 315px;
    aspect-ratio: 270/315;
  }
}
@media screen and (min-width:1600px) {
  .p-page-cta__photo-wrap.foreign {
    right: 0px;
  }
}
@media (min-width: 1700px) {
  .p-page-cta__photo-wrap.foreign {
    right: 30px;
  }
}
@media (min-width: 1850px) {
  .p-page-cta__photo-wrap.foreign {
    right: 120px;
  }
}
@media (min-width: 1900px) {
  .p-page-cta__photo-wrap.foreign {
    right: 140px;
  }
}

.p-page-cta__photo-text {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width:1240px) {
  .p-page-cta__photo-text {
    font-size: 20px;
    top: 48%;
    left: 54%;
  }
}
.p-page-cta__photo-text span.colored {
  color: #d81513;
}

.p-page-cta__inner {
  position: relative;
  z-index: 2;
}

.p-page-cta__message {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width:1240px) {
  .p-page-cta__message {
    font-size: 36px;
  }
}
.p-page-cta__message span.lg {
  font-size: 32px;
}
@media screen and (min-width: 400px) {
  .p-page-cta__message span.lg {
    font-size: 36px;
  }
}
@media screen and (min-width:1240px) {
  .p-page-cta__message span.lg {
    font-size: 48px;
  }
}
.p-page-cta__message span.pc-lg {
  font-size: 24px;
}
@media screen and (min-width:1240px) {
  .p-page-cta__message span.pc-lg {
    font-size: 32px;
  }
}
.p-page-cta__message.p-page-cta__message--black {
  color: #000;
}

.p-page-cta__btn-wrap {
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width:900px) {
  .p-page-cta__btn-wrap {
    margin-top: 52px;
    gap: 33px;
  }
}
.p-page-cta__btn-wrap.p-top__worry02-btn-wrap {
  margin-top: 46px;
}

/* object > project > 会社概要(company info)
--------------------------------------------- */
.p-company-info__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding: 35px 0px;
}
@media screen and (min-width:768px) {
  .p-company-info__item {
    flex-direction: row;
    align-items: center;
  }
}
.p-company-info__term {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-company-info__term {
    flex: 0 0 220px;
    font-size: 20px;
  }
}

.p-company-info__desc {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (min-width:768px) {
  .p-company-info__desc {
    font-size: 18px;
    flex: 1 1 auto;
  }
}

/* object > project > 事業責任者挨拶(greeting)
--------------------------------------------- */
.p-greeting {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:500px) {
  .p-greeting {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (min-width:1024px) {
  .p-greeting {
    width: initial;
    margin: initial;
    flex-direction: row;
    align-items: stretch;
  }
}

@media screen and (min-width:1024px) {
  .p-greeting__photo {
    flex: 0 0 496px;
  }
}
@media screen and (min-width:1240px) {
  .p-greeting__photo {
    flex: 0 0 596px;
  }
}
.p-greeting__photo img {
  width: 100%;
  object-fit: cover;
}

.p-greeting__body {
  background-color: #fff;
  padding: 40px 40px;
  border: 2px solid #000;
  box-shadow: 10px 10px 0px 0px #222;
}
@media screen and (min-width:1024px) {
  .p-greeting__body {
    flex: 1 1 auto;
  }
}

.p-greeting__title {
  color: #d81513;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width:1024px) {
  .p-greeting__title {
    font-size: 36px;
    font-weight: 600;
  }
}

.p-greeting__textarea {
  margin-top: 40px;
}

.p-greeting__text {
  font-size: 20px;
  font-weight: 300;
}

.p-greeting__sns-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-greeting__sns-item {
  flex: 0 0 50px;
  width: 50px;
}

.p-greeting__sns-link {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-greeting__sns-link:hover {
    opacity: 0.8;
  }
}
.p-greeting__sns-link img {
  width: 100%;
  object-fit: cover;
}

/* object > project > 人物写真 + 文章カード(person card)
--------------------------------------------- */
.p-person-card-wrap {
  padding: 40px 0;
}
@media screen and (min-width:768px) {
  .p-person-card-wrap {
    padding: 60px 0;
  }
}
.p-person-card-wrap.yellow {
  background-color: #ffe255;
}
.p-person-card-wrap.beige {
  background-color: #ffefa4;
}
.p-person-card-wrap.border {
  border-bottom: 2px solid #222;
}

.p-person-card__inner {
  width: min(1242px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-person-card {
  display: flex;
  flex-direction: column;
  gap: 41px;
}
@media screen and (min-width:500px) {
  .p-person-card {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (min-width:1240px) {
  .p-person-card {
    width: initial;
    margin: initial;
    flex-direction: row;
  }
}
@media screen and (min-width:1240px) {
  .p-person-card.reverse {
    flex-direction: row-reverse;
  }
}

.p-person-card__photo {
  position: relative;
}
@media screen and (min-width:1240px) {
  .p-person-card__photo {
    flex: 0 0 596px;
  }
}
.p-person-card__photo img {
  width: 100%;
  object-fit: cover;
}
.p-person-card__photo .message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: inline-block;
  width: 262px;
  object-fit: cover;
}
@media screen and (min-width:768px) {
  .p-person-card__photo .message {
    bottom: 46px;
    width: 335px;
  }
}

.p-person-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 10px 10px 0px 0px #222;
  padding: 30px 30px;
}
@media screen and (min-width:1240px) {
  .p-person-card__body {
    flex: 1 1 auto;
    padding: 40px 40px;
  }
}
.p-person-card__body.staff {
  display: block;
}

.p-person-card__title {
  color: #d81513;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-person-card__title {
    font-size: 36px;
  }
}

.p-person-card__name {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-person-card__name {
    font-size: 28px;
  }
}

.p-person-card__profile {
  font-size: 20px;
  font-weight: 600;
}

.p-person-card__block {
  margin-top: 26px;
}

.p-person-card__shop {
  font-size: 20px;
  font-weight: 600;
}

.p-person-card__text {
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-person-card__text {
    font-size: 20px;
  }
}

/* staff */
.p-staff .p-person-card__body {
  display: block;
}
.p-staff .p-person-card__profile {
  margin-top: 40px;
}
.p-staff .p-person-card__text {
  margin-top: 14px;
}
.p-staff .p-person-card__license {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
}

.p-single-store__staff .p-person-card__license {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
}

/* object > project > 画像ありリンクリスト(photo links)
--------------------------------------------- */
.p-photo-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}
@media screen and (min-width:900px) {
  .p-photo-links {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
  }
}

.p-photo-links__anchor {
  display: block;
  padding: 0px 0 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.3s;
  background: url(../img/safety/safety-boxbg.png) top center no-repeat;
  border-radius: 5px;
}
@media (hover: hover) {
  .p-photo-links__anchor:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:900px) {
  .p-photo-links__anchor {
    padding: 0px 0 10px;
  }
}
.p-photo-links__anchor:nth-of-type(11) {
  background-image: url(../img/safety/link01-pc.webp);
}
.p-photo-links__anchor:nth-of-type(12) {
  background-image: url(../img/safety/link02-pc.webp);
}
.p-photo-links__anchor:nth-of-type(13) {
  background-image: url(../img/safety/link03-pc.webp);
}
.p-photo-links__anchor:nth-of-type(14) {
  background-image: url(../img/safety/link04-pc.webp);
}
.p-photo-links__anchor:nth-of-type(15) {
  background-image: url(../img/safety/link05-pc.webp);
}
.p-photo-links__anchor:nth-of-type(16) {
  background-image: url(../img/safety/link06-pc.webp);
}
.p-photo-links__anchor:nth-of-type(17) {
  background-image: url(../img/safety/link07-pc.webp);
}
.p-photo-links__anchor:nth-of-type(18) {
  background-image: url(../img/safety/link08-pc.webp);
}
.p-photo-links__anchor span.text {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  min-height: 60px;
}
@media screen and (min-width:768px) {
  .p-photo-links__anchor span.text {
    font-size: 23px;
  }
}

.p-photo-links__number {
  display: block;
  text-align: center;
  margin: auto 10px;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 800;
}

.p-photo-links__imgarrow {
  padding-bottom: 10px;
  text-align: center;
}

/* object > project > ドロワーメニュー(drawer)
--------------------------------------------- */
.p-drawer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 249, 223, 0.94);
  padding: 90px 0 0 20px;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-drawer.js-is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width:1440px) {
  .p-drawer {
    opacity: 0;
    visibility: hidden;
  }
}

.p-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-drawer__nav-link {
  display: block;
  font-weight: 600;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-drawer__nav-link:hover {
    opacity: 0.8;
  }
}

.p-drawer__links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-drawer__link {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-drawer__link:hover {
    opacity: 0.8;
  }
}

.p-drawer__line-button,
.p-drawer__tel-button {
  display: inline-block;
  width: 200px;
  height: 45px;
  box-shadow: 4px 4px 0 #222;
}

.p-drawer__tel-button {
  background-color: #fff;
  display: grid;
  place-items: center;
}
.p-drawer__tel-button span.inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-drawer__tel-button span span.icon {
  flex: 0 0 16px;
  object-fit: contain;
}
.p-drawer__tel-button span span.text {
  flex: 1 1 auto;
  font-weight: 600;
}

.p-drawer__line-button {
  background-color: #07c655;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

/* object > project > 料金一覧パーツ(price)
--------------------------------------------- */
.p-price {
  padding: 60px 0;
  background: url(../img/flat-tire/p-price_bg.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width:900px) {
  .p-price {
    padding: 100px 0;
  }
}

.p-price__inner {
  width: min(1300px, 100%);
  margin-inline: auto;
  padding: 0 28px;
}

.p-price__heading {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  padding: 0 12px;
}
@media screen and (min-width:1240px) {
  .p-price__heading {
    font-size: 48px;
  }
}

.p-price__list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  position: relative;
}
@media screen and (min-width:1240px) {
  .p-price__list {
    margin-top: 92px;
    flex-direction: row;
    justify-content: center;
    gap: 90px;
  }
}
.p-price__list1 {
  justify-content: center;
}

.p-price-item {
  max-width: 360px;
  width: 100%;
  height: 115px;
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (min-width:1240px) {
  .p-price-item {
    width: calc((100% - 172px) / 3);
    max-width: initial;
  }
}
@media screen and (min-width:900px) {
  .p-price-item {
    height: 132px;
    max-width: 320px;
  }
}
.p-price-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  background-image: url(../img/flat-tire/p-price_plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 44px;
  height: 44px;
}
@media screen and (min-width:1240px) {
  .p-price-item:not(:first-child)::before {
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
  }
}
@media screen and (min-width:900px) {
  .p-price-item:not(:first-child)::before {
    width: 60px;
    height: 60px;
  }
}

.p-price-item1 {
  margin-left: 15px;
}

.p-price-name {
  position: absolute;
  left: 65px;
  transform: translateX(-50%);
  top: -35px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  background: #000;
  padding: 5px 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  min-width: 100px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .p-price-name {
    font-size: 25px;
    top: -55px;
    padding: 10px 20px;
    left: 75px;
  }
}

.p-price-name1 {
  left: 55px;
}

.p-price-name2 {
  left: 65px;
}

.p-price-number.text {
  font-size: 32px;
  font-weight: 800;
}
.p-price-number.text02 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width:1240px) {
  .p-price-number.text02 {
    text-align: left;
  }
}
.p-price-number span.num {
  color: #d81513;
  font-size: 50px;
  font-weight: 900;
}
.p-price-number span.unit {
  display: inline-block;
  margin-left: 5.76px;
  font-size: 30px;
  font-weight: 800;
}
.p-price-number span.colored {
  color: #d81513;
}

/* object > project > サービスバナー(banner)
--------------------------------------------- */
.p-banner {
  background-color: #ffd000;
}
.p-banner.red {
  background-color: #d81513;
}
.p-banner img {
  width: 100%;
  object-fit: cover;
}

/* object > project > ご利用の流れ(flow)
--------------------------------------------- */
.p-flow {
  padding: 60px 0;
}
@media screen and (min-width:900px) {
  .p-flow {
    padding: 100px 0;
  }
}

.p-flow__heading {
  text-align: center;
  color: #fdd116;
  font-size: 35px;
  -webkit-text-stroke: 10px #000000;
  text-stroke: 10px black;
  paint-order: stroke;
}
@media screen and (min-width:900px) {
  .p-flow__heading {
    font-size: 52px;
  }
}

.p-flow__inner {
  width: min(1337px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}
.p-flow__inner.col3 {
  width: min(803px, 100%);
}

.p-flow__wrap {
  margin-top: 0px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: 20px;
}
@media screen and (min-width:900px) {
  .p-flow__wrap {
    margin-top: 60px;
  }
}
.p-flow__wrap::-webkit-scrollbar {
  display: none;
}

.p-flow__numbers {
  display: flex;
  justify-content: center;
  gap: 214px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-flow__numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d81513 0%, #eea25d 100%);
}
.p-flow__numbers.start {
  padding-left: 100px;
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .p-flow__numbers.start {
    padding-left: 0;
    justify-content: center;
  }
}

.p-flow__number {
  font-family: "Arial", sans-serif;
  font-size: 32px;
  font-weight: 700;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #d81513 0%, #eea25d 100%);
  position: relative;
  z-index: 1;
}
.p-flow__number span.inner {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 2;
  background: #fff;
}

.p-flow__contact-link img {
  margin-top: 10px;
}
@media screen and (min-width:900px) {
  .p-flow__contact-link img {
    margin-top: 30px;
  }
}

.p-flow__items {
  margin: 55px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 30px;
}
.p-flow__items.center {
  justify-content: center;
}
.p-flow__items.start {
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .p-flow__items.start {
    justify-content: center;
  }
}

.p-flow__item {
  width: 100%;
  border: 5px solid #000;
  border-radius: 10px;
  padding: 25px;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-flow__item {
    width: 30%;
  }
}
.p-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 15px solid #000;
  border-bottom: 0;
}
@media screen and (min-width:900px) {
  .p-flow__item:not(:last-child)::before {
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    left: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 15px solid #000;
    border-right: 0;
  }
}

.p-flow__item-tag {
  position: absolute;
  top: -50px;
  left: 10px;
  width: fit-content;
  height: 50px;
  border-radius: 10px 10px 0 0;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 18px;
  font-weight: 900 !important;
  padding: 0 20px;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .p-flow__item-tag {
    top: -50px;
  }
}
.p-flow__item-tag span {
  font-size: 30px;
  padding-left: 10px;
}

.p-flow__title {
  font-size: 20px;
  font-weight: bold;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-flow__title {
    font-size: 30px;
  }
}

.p-flow__photo {
  margin-top: 30px;
}

.p-flow__textarea {
  margin-top: 5px;
  font-weight: 500;
}
@media screen and (min-width:900px) {
  .p-flow__textarea {
    margin-top: 20px;
  }
}

.p-flow__text {
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-flow__text {
    font-size: 20px;
  }
}

.p-flow__contact {
  margin-top: 20px;
}

.p-flow__contact-tel {
  display: flex;
  align-items: center;
  gap: 7px;
}
.p-flow__contact-tel img {
  flex: 0 0 20px;
  width: 20px;
  object-fit: cover;
}
.p-flow__contact-tel span.text {
  font-size: 27px;
  font-weight: 700;
}

.p-flow__contact-link {
  margin-top: 20px;
  width: 100%;
}

/* object > project > SP追従CTA(sticky cta)
--------------------------------------------- */
.p-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width:768px) {
  .p-sticky-cta {
    display: none;
  }
}

.p-sticky-cta__top {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #d81513;
}

.p-sticky-cta__message {
  color: #d81513;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.p-sticky-cta__btn-wrap {
  background-color: #d81513;
  padding: 13px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* object > project > 対応エリア(area)
--------------------------------------------- */
.p-area {
  padding: 30px 0 60px;
  margin: 0 15px;
}
@media screen and (min-width:900px) {
  .p-area {
    padding: 120px 0 110px;
    margin: 0px;
  }
}

.p-area__inner {
  width: min(1320px, 100%);
  margin-inline: auto;
  border: 3px solid #000;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
@media screen and (min-width:900px) {
  .p-area__inner {
    border: 7px solid #000;
  }
}

.p-area__heading {
  background-color: #FDD116;
  border-bottom: 3px solid #000;
  text-shadow: 2px 2px 0 #FFf, -2px 2px 0 #FFf, 2px -2px 0 #FFf, -2px -2px 0 #FFf;
  padding: 10px 20px;
  text-align: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media screen and (min-width:900px) {
  .p-area__heading {
    padding: 20px 20px;
    border-bottom: 7px solid #000;
  }
}
.p-area__heading img {
  height: 40px;
}
@media screen and (min-width:900px) {
  .p-area__heading img {
    height: auto;
  }
}

.p-area__content {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  background-color: #fff;
}
@media screen and (min-width:900px) {
  .p-area__content {
    flex-direction: row;
    align-items: center;
    gap: 6420px;
    padding-top: 92px;
  }
}
@media screen and (min-width:1024px) {
  .p-area__content {
    gap: 92px;
  }
}

@media screen and (min-width:900px) {
  .p-area__map {
    flex: 0 0 450px;
  }
}
@media screen and (min-width:1024px) {
  .p-area__map {
    flex: 0 0 500px;
  }
}
.p-area__map img {
  width: 100%;
  object-fit: cover;
  text-align: center;
}

.p-area__body {
  padding-right: 0px;
}
@media screen and (min-width:900px) {
  .p-area__body {
    flex: 1 1 auto;
    padding-right: 20px;
  }
}

.p-area__item {
  padding: 20px;
  border-bottom: 1px solid #000;
}
.p-area__item:not(:first-child) {
  margin-top: 20px;
}

.p-area__title {
  color: #d81513;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  padding-left: 20px;
}
@media screen and (min-width:900px) {
  .p-area__title {
    font-size: 50px;
    padding-left: 0px;
  }
}

.p-area__textarea {
  margin-top: 20px;
  background-color: #F3F4E0;
  padding: 30px 30px 30px 30px;
  margin-bottom: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (min-width:900px) {
  .p-area__textarea {
    margin-bottom: 50px;
    border-radius: 0;
  }
}

.p-area__texttitle {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width:900px) {
  .p-area__texttitle {
    font-size: 30px;
  }
}

.p-area__list {
  margin-top: 10px;
}

.p-area__area-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

.p-area__area-tag {
  background: #E00200;
  flex: 0 0 100px;
  color: #fff;
  padding: 6px 10px;
  font-weight: 500;
  margin-left: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .p-area__area-tag {
    font-size: 40px;
    flex: 0 0 190px;
  }
}

.p-area__li {
  padding: 5px 0px 10px 20px;
  font-size: 13px;
  font-weight: 400;
  background: url(../img/flat-tire/p-area_list.svg) 0px 10px no-repeat;
  background-size: 8px auto;
}
@media screen and (min-width:900px) {
  .p-area__li {
    font-size: 20px;
    background-size: auto;
  }
}

.p-area__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (min-width:768px) {
  .p-area__text {
    font-size: 20px;
  }
}
.p-area__text:not(:first-child) {
  margin-top: 1em;
}

/* object > project > パンくずリスト(breadcrumb)
--------------------------------------------- */
.p-breadcrumb {
  padding: 16px 0;
}
@media screen and (min-width:768px) {
  .p-breadcrumb {
    padding: 20px 0;
  }
}
.p-breadcrumb ul {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
}
.p-breadcrumb li {
  position: relative;
}
.p-breadcrumb li:not(:first-child) {
  margin-left: 24px;
}
.p-breadcrumb li:not(:first-child)::before {
  content: ">";
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -16px;
  font-size: 14px;
}
.p-breadcrumb li:has(.date-month) {
  margin-left: 2px;
}
.p-breadcrumb li:has(.date-month)::before {
  content: none;
}
.p-breadcrumb li:has(.date-day) {
  margin-left: 2px;
}
.p-breadcrumb li:has(.date-day)::before {
  content: none;
}
.p-breadcrumb li a,
.p-breadcrumb li span {
  font-size: 14px;
}
.p-breadcrumb li a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-breadcrumb li a {
    opacity: 0.8;
  }
}

/* object > project > ページ下部フッター上部「店舗情報セクション」
--------------------------------------------- */
.p-store-info {
  padding: 20px 0 40px;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .p-store-info {
    padding: 60px 0 40px;
  }
}

.p-store-info__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 12px;
  position: relative;
  padding-top: 40px;
}

.p-store-info__heading {
  text-align: center;
  font-size: 35px;
  color: #e00200;
}
@media screen and (min-width:768px) {
  .p-store-info__heading {
    font-size: 52px;
    text-align: left;
  }
}

.p-store-info__content {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .p-store-info__content {
    margin-top: 45px;
  }
}

.p-store-info__item {
  margin-bottom: 20px;
}

.p-store-info__term.js-is-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.p-store-info__term {
  padding: 10px 56px 10px 35px;
  background-color: #000;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .p-store-info__term {
    gap: 20px;
    align-items: center;
    padding: 25px 56px 25px 35px;
    font-size: 30px;
  }
}
.p-store-info__term.side {
  padding: 20px 56px 55px 10px;
  gap: 10px;
}
.p-store-info__term.side::before, .p-store-info__term.side::after {
  top: 40px;
}
.p-store-info__term.side::before {
  transform: translateY(0);
}
.p-store-info__term.side::after {
  transform: translateY(0) rotate(90deg);
}
.p-store-info__term span.answer {
  font-family: "Arial", sans-serif;
  font-size: 39px;
  font-weight: 700;
  background-color: #fff;
  width: 50px;
  text-align: center;
  color: #fdd116;
}
@media screen and (min-width:768px) {
  .p-store-info__term span.answer {
    font-size: 32px;
  }
}
.p-store-info__term span.text {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width:768px) {
  .p-store-info__term span.text {
    font-size: 25px;
  }
}
.p-store-info__term span.text.side {
  font-size: 18px;
}
.p-store-info__term span.number {
  font-size: 24px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
.p-store-info__term span.tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  padding: 8px 10px;
  background-color: #fff7d0;
  border-radius: 5px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-top: 10px;
}
.p-store-info__term::before, .p-store-info__term::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: inline-block;
  width: 14px;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s;
}
@media screen and (min-width:768px) {
  .p-store-info__term::before, .p-store-info__term::after {
    width: 20px;
  }
}
.p-store-info__term::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-store-info__term.js-is-open::after {
  transform: translateY(-50%) rotate(0);
}

.p-store-info__desc {
  background-color: #fff;
  opacity: 0;
  height: 0;
  line-height: 0;
  transition: opacity 0.3s, height 0.3s, padding 0.3s, line-height 0.3s;
  font-size: 20px;
}
.p-store-info__desc.js-is-open {
  padding: 20px 20px;
  opacity: 1;
  height: initial;
  line-height: initial;
  border: 1px solid #000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 10px;
}

.p-store-info__areas {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 25px;
}
@media screen and (min-width:768px) {
  .p-store-info__areas {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 45px;
  }
}

.p-store-info__area {
  padding: 0 20px 10px;
  border-bottom: 1px solid #000;
}

.p-store-info__title {
  color: #d81513;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.p-store-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.p-store-info__list-item {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}

.btn {
  position: absolute;
  top: 45px;
  right: 0;
}

.btn a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 90px 20px 60px;
  border-radius: 50px;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  -webkit-mask-image: url(../img/common/icon-chevron-right-w.svg);
  mask-image: url(../img/common/icon-chevron-right-w.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  display: inline-block;
  width: 8px;
  height: 12px;
}

.btn.key-color {
  background: #e00200;
}
@media screen and (min-width:768px) {
  .btn.key-color {
    display: block;
  }
}

/* 地図 */
.p-store-info__map {
  margin-top: 40px;
  aspect-ratio: 350/390;
}
@media screen and (min-width:768px) {
  .p-store-info__map {
    aspect-ratio: 1040/510;
  }
}
.p-store-info__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-store-info__desc .panel-body {
  padding: 10px 25px;
}

.shop__list-item:not(:last-child) {
  margin-bottom: 20px;
}

.shop-card {
  border: 1px solid #dbdbdb;
  padding: 20px 20px 35px 20px;
  border-radius: 10px;
}
.shop-card__title {
  font-size: 20px;
}
@media screen and (min-width:768px) {
  .shop-card__title {
    font-size: 28px;
  }
}

.shop-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0px 0 15px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.shop-card__line-button {
  background: #51c75e;
  color: #fff;
  padding: 5px 10px !important;
  font-size: 12px !important;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
@media screen and (min-width:900px) {
  .shop-card__line-button {
    padding: 16px 45px !important;
    font-size: 18px !important;
  }
}

.shop__list {
  font-weight: 600;
}

.shop-card__info-row {
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  row-gap: 10px;
  font-size: 22px;
  padding-bottom: 5px;
}
@media screen and (min-width:768px) {
  .shop-card__info-row {
    display: flex;
    align-items: center;
    flex-direction: unset;
  }
}

.shop-card__info-value {
  font-size: 16px;
}
@media screen and (min-width:768px) {
  .shop-card__info-value {
    font-size: 22px;
  }
}

.shop-card__info-row:not(:last-child) {
  margin-bottom: 10px;
}

.shop-card__info-label {
  background: #efefef;
  padding: 5px 10px;
  font-size: 16px;
  min-width: 120px;
  text-align: center;
  margin-right: 30px;
}

/* object > project > 任意保険セクション (insurance)
--------------------------------------------- */
.p-insurance {
  padding: 60px 12px 50px;
  background-color: #F4F5E1;
}
@media screen and (min-width:900px) {
  .p-insurance {
    padding: 120px 0px 100px;
  }
}

.p-insurance__inner {
  width: min(1124px, 100%);
  margin-inline: auto;
  background-color: #fff;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width:900px) {
  .p-insurance__inner {
    padding-bottom: 60px;
  }
}

.p-insurance__top-textarea {
  position: absolute;
  width: 100%;
  top: -25px;
  left: 0;
  text-align: center;
}
.p-insurance__top-text {
  display: inline-block;
  background-color: #e00200;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 40px;
  color: #fff;
  border-radius: 30px;
}
@media screen and (min-width:768px) {
  .p-insurance__top-text {
    font-size: 25px;
  }
}
.p-insurance__middle-textarea {
  padding-top: 50px;
}

.p-insurance__middle-text {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.4;
  color: #e00200;
}
@media screen and (min-width:768px) {
  .p-insurance__middle-text {
    font-size: 45px;
  }
}
.p-insurance__middle-text span {
  font-size: 20px;
  color: #000;
}
@media screen and (min-width:900px) {
  .p-insurance__middle-text span {
    font-size: 36px;
  }
}

.p-insurance__image {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width:900px) {
  .p-insurance__image {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.p-insurance__logo-list {
  margin-top: 14px;
  margin-left: -4px;
  margin-right: -4px;
  background-color: #fff;
  padding: 18px 18px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-list {
    padding: 25px 60px 20px;
    column-gap: 42px;
    row-gap: 36px;
  }
}

.p-insurance__logo-item img {
  object-fit: contain;
}
.p-insurance__logo-item:nth-child(1) img {
  width: 165px;
  height: 66px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(1) img {
    width: 245px;
    height: 97px;
  }
}
.p-insurance__logo-item:nth-child(2) {
  position: relative;
  transform: translateY(12px);
}
.p-insurance__logo-item:nth-child(2) img {
  width: 238px;
  height: 45px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(2) img {
    width: 352px;
    height: 66px;
  }
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(3) {
    margin-left: 14px;
  }
}
.p-insurance__logo-item:nth-child(3) img {
  width: 200px;
  height: 42px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(3) img {
    width: 296px;
    height: 62px;
  }
}
.p-insurance__logo-item:nth-child(4) img {
  width: 331px;
  height: 36px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(4) img {
    width: 488px;
    height: 53px;
  }
}
.p-insurance__logo-item:nth-child(5) img {
  width: 215px;
  height: 21px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(5) img {
    width: 198px;
    height: 35px;
  }
}
.p-insurance__logo-item:nth-child(6) img {
  width: 85px;
  height: 19px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(6) img {
    width: 169px;
    height: 37px;
  }
}
.p-insurance__logo-item:nth-child(7) img {
  width: 149px;
  height: 26px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(7) img {
    width: 364px;
    height: 34px;
  }
}
.p-insurance__logo-item:nth-child(8) img {
  width: 85px;
  height: 19px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(8) img {
    width: 130px;
    height: 30px;
  }
}
.p-insurance__logo-item:nth-child(9) img {
  width: 149px;
  height: 36px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(9) img {
    width: 177px;
    height: 43px;
  }
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(10) {
    margin-left: 30px;
  }
}
.p-insurance__logo-item:nth-child(10) img {
  width: 144px;
  height: 26px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(10) img {
    width: 185px;
    height: 34px;
  }
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(11) {
    margin-left: 30px;
  }
}
.p-insurance__logo-item:nth-child(11) img {
  width: 118px;
  height: 32px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(11) img {
    width: 140px;
    height: 38px;
  }
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(12) {
    margin-left: 30px;
    position: relative;
    transform: translateY(-10px);
  }
}
.p-insurance__logo-item:nth-child(12) img {
  width: 162px;
  height: 52px;
}
@media screen and (min-width:768px) {
  .p-insurance__logo-item:nth-child(12) img {
    width: 211px;
    height: 67px;
  }
}

/* object > project > CTA
--------------------------------------------- */
.p-cta {
  padding: 0 !important;
  background: url(../img/flat-tire/p-cta_bg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-cta {
    padding: 0;
  }
}
@media screen and (min-width:900px) {
  .p-cta {
    padding: 0;
  }
}
.p-cta__buttongroup {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (min-width:768px) {
  .p-cta__buttongroup {
    flex-wrap: nowrap;
    margin-top: 35px;
    gap: 20px;
  }
}
.p-cta__buttongroup img {
  height: 75px;
}
@media screen and (min-width:768px) {
  .p-cta__buttongroup img {
    height: auto;
  }
}
.p-cta.p-cta-main {
  overflow-x: hidden;
  padding: 40px 12px 220px;
}
@media screen and (min-width:900px) {
  .p-cta.p-cta-main {
    padding: 62px 12px 62px;
  }
}
.p-cta.p-cta-balloon {
  padding: 40px 12px 310px;
}
@media screen and (min-width:900px) {
  .p-cta.p-cta-balloon {
    padding: 50px 12px 73px;
  }
}

.p-cta__photo {
  display: none;
}
@media screen and (min-width:1240px) {
  .p-cta__photo {
    display: block;
    position: absolute;
    right: 12px;
    bottom: 0;
    width: 389px;
    object-fit: cover;
    z-index: 1;
  }
}

.p-cta__photo-sp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 237px;
  object-fit: cover;
}
@media screen and (min-width:1240px) {
  .p-cta__photo-sp {
    display: none;
  }
}

.p-cta__inner {
  position: relative;
  z-index: 2;
}

.p-cta__top-message {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width:900px) {
  .p-cta__top-message {
    font-size: 32px;
  }
}

.p-cta__message {
  margin-top: 15px;
  text-align: right;
}
@media screen and (min-width:900px) {
  .p-cta__message {
    margin-top: 40px;
  }
}
@media screen and (min-width:500px) {
  .p-cta__message {
    text-align: center;
  }
}
.p-cta__message span.lg {
  font-size: 32px;
}
@media screen and (min-width:900px) {
  .p-cta__message span.lg {
    font-size: 46px;
  }
}
.p-cta__message span.xl {
  font-size: 36px;
}
@media screen and (min-width:900px) {
  .p-cta__message span.xl {
    font-size: 46px;
  }
}
.p-cta__message.p-cta__message--black {
  color: #000;
}
@media screen and (min-width:900px) {
  .p-cta__message.p-cta__message--balloon {
    font-size: 34px;
  }
  .p-cta__message.p-cta__message--balloon span.lg {
    font-size: 46px;
  }
}

.p-cta__btn-wrap {
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width:900px) {
  .p-cta__btn-wrap {
    margin-top: 52px;
    gap: 33px;
  }
}
.p-cta__btn-wrap.p-top__worry02-btn-wrap {
  margin-top: 46px;
}
.p-cta__btn-wrap.no-icon {
  margin-top: 40px;
}
.p-cta__btn-wrap.has-sp-photo {
  margin-top: 188px;
}
@media screen and (min-width:900px) {
  .p-cta__btn-wrap.has-sp-photo {
    margin-top: 40px;
  }
}

/* object > project > CTA 画像あり
--------------------------------------------- */
.p-cta-main__photo {
  position: absolute;
  width: 202px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  object-fit: cover;
}
@media screen and (min-width:900px) {
  .p-cta-main__photo {
    display: none;
  }
}
@media screen and (min-width:1240px) {
  .p-cta-main__photo {
    left: initial;
    right: -200px;
    width: 389px;
    bottom: 0;
    display: block;
  }
}

.p-cta-main__btn-wrap {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:900px) {
  .p-cta-main__btn-wrap {
    margin-top: 52px;
    gap: 33px;
  }
}
.p-cta-main__btn-wrap.p-top__worry02-btn-wrap {
  margin-top: 46px;
}
.p-cta-main__btn-wrap.no-icon {
  margin-top: 40px;
}
.p-cta-main__btn-wrap.has-sp-photo {
  margin-top: 188px;
}
@media screen and (min-width:900px) {
  .p-cta-main__btn-wrap.has-sp-photo {
    margin-top: 40px;
  }
}
.p-cta-main__btn-wrap .c-tel-button,
.p-cta-main__btn-wrap .c-line-button {
  flex: 0 0 165px;
}
@media screen and (min-width: 400px) {
  .p-cta-main__btn-wrap .c-tel-button,
  .p-cta-main__btn-wrap .c-line-button {
    flex: 0 0 170px;
  }
}
@media screen and (min-width:900px) {
  .p-cta-main__btn-wrap .c-tel-button,
  .p-cta-main__btn-wrap .c-line-button {
    flex: 0 0 375px;
  }
}

/* object > project > CTA：SP写真あり(cta photo)
--------------------------------------------- */
.p-cta-photo {
  background-color: #d81513;
  padding: 23px 12px 54px;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-cta-photo {
    position: static;
  }
}

.p-cta-photo__photo {
  position: absolute;
  width: 237px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width:900px) {
  .p-cta-photo__photo {
    left: initial;
    right: -200px;
    width: 389px;
    bottom: -93px;
    object-fit: cover;
  }
}

.p-cta-photo__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
@media screen and (min-width:900px) {
  .p-cta-photo__inner {
    padding: 78px 12px 93px;
    position: relative;
  }
}

.p-cta-photo__btn-wrap {
  margin-top: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:900px) {
  .p-cta-photo__btn-wrap {
    margin-top: 52px;
    gap: 33px;
  }
}
.p-cta-photo__btn-wrap.p-top__worry02-btn-wrap {
  margin-top: 46px;
}
.p-cta-photo__btn-wrap.no-icon {
  margin-top: 40px;
}
.p-cta-photo__btn-wrap.has-sp-photo {
  margin-top: 188px;
}
@media screen and (min-width:900px) {
  .p-cta-photo__btn-wrap.has-sp-photo {
    margin-top: 40px;
  }
}

/* object > project > CTA 画像 + 吹き出し
--------------------------------------------- */
.p-cta-balloon__inner {
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:1240px) {
  .p-cta-balloon__inner {
    margin-inline: initial;
    padding-left: 90px;
    position: relative;
  }
}
@media (min-width: 1500px) {
  .p-cta-balloon__inner {
    padding-left: 200px;
  }
}
@media (min-width: 1700px) {
  .p-cta-balloon__inner {
    padding-left: 0;
    margin-inline: auto;
  }
}

.p-cta-balloon__inner1 {
  max-width: 1350px;
  margin: 0px auto;
  padding: 0 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: url(../img/flat-tire/p-cta_photo.svg) top left no-repeat;
  background-size: 55% 55%;
}
@media screen and (min-width:768px) {
  .p-cta-balloon__inner1 {
    background: url(../img/flat-tire/p-cta_photo.svg) bottom left no-repeat;
    background-size: auto 100%;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

/* object > project > 採用：CTA背景グラデーション(cta02)
--------------------------------------------- */
.p-cta02 {
  padding: 37px 12px 40px;
  background: linear-gradient(90deg, #d81513 0%, #eea25d 100%);
  position: relative;
}
@media screen and (min-width:1240px) {
  .p-cta02 {
    padding: 98.5px 12px 98.5px;
  }
}

.p-cta02__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.p-cta02__photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  width: 236px;
}
@media screen and (min-width:1240px) {
  .p-cta02__photo {
    width: 320px;
    left: 160px;
  }
}
@media screen and (min-width:1440px) {
  .p-cta02__photo {
    width: 389px;
    left: 190px;
  }
}

.p-cta02__message {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1240px) {
  .p-cta02__message {
    font-size: 32px;
  }
}
@media screen and (min-width:1440px) {
  .p-cta02__message {
    font-size: 36px;
  }
}

.p-cta02__btn-wrap {
  text-align: center;
  margin-top: 160px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1240px) {
  .p-cta02__btn-wrap {
    margin-top: 40px;
  }
}

/* object > project > お客様の声カード(voice cards)
--------------------------------------------- */
.p-voice-cards {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-voice-cards::-webkit-scrollbar {
  display: none;
}

.p-voice-cards__list {
  padding-top: 30px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .p-voice-cards__list {
    flex-wrap: nowrap;
    padding-top: 64px;
  }
}

.p-voice-cards__title {
  font-size: 24px;
  font-weight: 600;
}

.p-voice-cards__item {
  display: block;
  width: 100%;
  padding: 65px 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #222;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-voice-cards__item {
    width: calc((100% - 40px) / 3);
    padding: 80px 20px 20px;
    border: 5px solid #222;
    margin-bottom: 0;
  }
}
.p-voice-cards__item.service {
  background-color: #ffefa4;
}
.p-voice-cards__item.single-store {
  background-color: #f9dc56;
}
.p-voice-cards__photo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  width: 135px;
  overflow: hidden;
  width: 90px;
  height: 90px;
}
@media screen and (min-width:900px) {
  .p-voice-cards__photo {
    transform: translateX(-50%);
    top: -68px;
    width: 135px;
    width: auto;
    height: auto;
  }
}
.p-voice-cards__photo img {
  object-fit: contain;
}

.p-voice-cards__texttitle {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: #e00200;
}
@media screen and (min-width:900px) {
  .p-voice-cards__texttitle {
    font-size: 25px;
  }
}

.p-voice-cards__metatext {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
}
@media screen and (min-width:900px) {
  .p-voice-cards__metatext {
    margin-top: 15px;
  }
}

.p-voice-cards__text {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6em;
}
@media screen and (min-width:900px) {
  .p-voice-cards__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

.p-voice-cards__message {
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-voice-cards__message {
    font-size: 20px;
  }
}

.p-single-store__voice-btn {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-single-store__voice-btn {
    margin-top: 60px;
  }
}

/* object > project > 縦並びカード
--------------------------------------------- */
/* 理由 */
@media screen and (min-width:768px) {
  .p-vertical-cards01 .swiper-pagination {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .p-vertical-cards01 .swiper-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width:500px) {
  .p-vertical-cards01.no-slider {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (min-width:1024px) {
  .p-vertical-cards01.no-slider {
    width: initial;
    margin: initial;
  }
}
.p-vertical-cards01.no-slider .p-vertical-card01__card:not(:first-child) {
  margin-top: 40px;
}

.p-vertical-card01__card {
  border-radius: 20px;
  border: 2px solid #222;
  background-color: #f9dc56;
  padding: 30px 15px;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__card {
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__card:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (min-width:768px) {
  .p-vertical-card01__card.franchise:not(:first-child) {
    margin-top: 40px;
  }
}
.p-vertical-card01__card:nth-child(even) {
  background-color: #ffefa4;
}
.p-vertical-card01__card.reverse {
  flex-direction: row-reverse;
}
.p-vertical-card01__card.windshield {
  padding: 30px 12px;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__card.windshield {
    padding: 30px;
  }
}

.p-vertical-card01__title {
  text-align: center;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__title {
    font-size: 28px;
  }
}
.p-vertical-card01__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__title::after {
    width: 370px;
  }
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__title.windshield {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid #000;
  }
}
.p-vertical-card01__title.windshield::after {
  content: none;
}

.p-vertical-card01__photo {
  margin: 20px auto 0;
  height: 190px;
  aspect-ratio: 300/190;
}
@media screen and (min-width: 400px) {
  .p-vertical-card01__photo {
    height: 200px;
    aspect-ratio: 320/200;
  }
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__photo {
    flex: 0 0 380px;
    width: 380px;
    height: 312px;
    margin: 0;
  }
}
.p-vertical-card01__photo.foreign {
  max-width: 320px;
  width: 100%;
  aspect-ratio: 320/280;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__photo.foreign {
    aspect-ratio: 380/312;
  }
}
.p-vertical-card01__photo.windshield {
  flex: 0 0 570px;
  aspect-ratio: initial;
  max-width: initial;
  width: initial;
}
.p-vertical-card01__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width:1024px) {
  .p-vertical-card01__body {
    flex: 1 1 auto;
  }
}

.p-vertical-card01__textarea {
  margin-top: 30px;
  min-height: 268px;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__textarea {
    min-width: initial;
  }
}
.p-vertical-card01__textarea.foreign {
  min-height: initial;
}
.p-vertical-card01__textarea.windshield {
  margin-top: 20px;
}

.p-vertical-card01__text {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__text {
    font-size: 20px;
  }
}
.p-vertical-card01__text span.sm {
  display: block;
  margin-top: 2em;
  font-size: 16px;
  text-align: center;
}

.p-vertical-card01__btn-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (min-width:900px) {
  .p-vertical-card01__btn-wrap {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width:1024px) {
  .p-vertical-card01__btn-wrap {
    text-align: left;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
  }
}

/* 02 */
/* object > component > サービス：理由カード(reason cards)
--------------------------------------------- */
.p-reason-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width:500px) {
  .p-reason-cards {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (min-width:900px) {
  .p-reason-cards {
    width: initial;
    margin: initial;
  }
}

.p-reason-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 20px;
  border: 2px solid #222;
  background: #f9dc56;
  padding: 30px 10px;
}
@media screen and (min-width:900px) {
  .p-reason-card {
    padding: 50px 50px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.p-reason-card:nth-of-type(even) {
  background-color: #ffefa4;
}
@media screen and (min-width:900px) {
  .p-reason-card.reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width:900px) {
  .p-reason-card__body {
    flex: 1 1 auto;
  }
}

.p-reason-card__title {
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-reason-card__title {
    font-size: 28px;
    padding-bottom: 30px;
  }
}
.p-reason-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width:900px) {
  .p-reason-card__title::after {
    width: 369px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-reason-card__textarea {
  margin-top: 20px;
}
@media screen and (min-width:900px) {
  .p-reason-card__textarea {
    margin-top: 30px;
  }
}

.p-reason-card__text {
  white-space: wrap;
  font-weight: 600;
}
@media screen and (min-width:900px) {
  .p-reason-card__text {
    font-size: 20px;
  }
}

@media screen and (min-width:900px) {
  .p-reason-card__photo {
    flex: 0 0 380px;
  }
}
.p-reason-card__photo img {
  width: 100%;
  object-fit: cover;
}

/* object > project > qa
--------------------------------------------- */
.p-qa-inner {
  width: min(954px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-qa-content {
  margin-top: 15px;
}
@media screen and (min-width:768px) {
  .p-qa-content {
    margin-top: 45px;
  }
}

.p-qa__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .p-qa__item:not(:first-child) {
    margin-top: 14px;
  }
}

.p-qa__term {
  padding: 10px 35px 10px 10px;
  background-color: #fdd116;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  font-size: 24px;
}
@media screen and (min-width:768px) {
  .p-qa__term {
    gap: 20px;
    align-items: center;
    padding: 20px 56px 20px 20px;
  }
}
.p-qa__term.side {
  padding: 20px 56px 55px 10px;
  gap: 10px;
}
.p-qa__term.side::before, .p-qa__term.side::after {
  top: 40px;
}
.p-qa__term.side::before {
  transform: translateY(0);
}
.p-qa__term.side::after {
  transform: translateY(0) rotate(90deg);
}
.p-qa__term span.answer {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  font-weight: 700;
  background-color: #fff;
  padding: 0 5px;
  text-align: center;
  color: #fdd116;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media screen and (min-width:768px) {
  .p-qa__term span.answer {
    font-size: 32px;
    width: 53px;
    height: 53px;
  }
}
.p-qa__term span.text {
  font-weight: 600;
  font-size: 15px;
}
@media screen and (min-width:768px) {
  .p-qa__term span.text {
    font-size: 25px;
  }
}
.p-qa__term span.text.side {
  font-size: 18px;
}
.p-qa__term span.number {
  font-size: 24px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
.p-qa__term span.tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  padding: 8px 10px;
  background-color: #fff7d0;
  border-radius: 5px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-top: 10px;
}
.p-qa__term::before, .p-qa__term::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: inline-block;
  width: 14px;
  height: 3px;
  background-color: #222;
  transition: transform 0.3s;
}
@media screen and (min-width:768px) {
  .p-qa__term::before, .p-qa__term::after {
    width: 20px;
    right: 20px;
  }
}
.p-qa__term::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-qa__term.js-is-open::after {
  transform: translateY(-50%) rotate(0);
}

.p-qa__desc {
  background-color: #fff;
  opacity: 0;
  height: 0;
  line-height: 0;
  transition: opacity 0.3s, height 0.3s, padding 0.3s, line-height 0.3s;
  font-size: 20px;
}
.p-qa__desc.js-is-open {
  padding: 20px 20px;
  font-size: 15px;
  opacity: 1;
  height: initial;
  line-height: initial;
  border: 4px solid #fdd116;
}
@includemq ("md") {
  .p-qa__desc.js-is-open {
    font-size: 20px;
  }
}

.p-faq-inner {
  width: min(1130px, 100%);
  margin-inline: auto;
  padding: 0 12px;
  padding-bottom: 35px;
}

.p-faq-content_inner {
  width: min(950px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-faq-tag {
  display: flex;
  row-gap: 40px;
  column-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.p-faq-tags {
  background-color: #f2f2f2;
  font-size: 17px;
  padding: 7px 5px;
  text-align: center;
  flex: 0 0 calc(25% - 10px); /* 4 kolom */
  font-weight: 600;
}

.p-faq-tags a {
  display: block;
}

.p-faq-content {
  padding-top: 60px;
}

/* object > project > お知らせパーツ(news item)
--------------------------------------------- */
/* テキストのみ */
.p-news-item__link {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #000;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-news-item__link:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width:768px) {
  .p-news-item__link {
    align-items: center;
  }
}
.p-news-item__link:not(:first-child) {
  margin-top: 14px;
}

.p-news-item__date {
  flex: 0 0 110px;
}
@media screen and (min-width:768px) {
  .p-news-item__date {
    flex: 0 0 121px;
  }
}

.p-news-item__date-text {
  color: #d81513;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-news-item__date-text {
    font-size: 16px;
  }
}

/* カード型 */
/* object > project > 〇〇原因(cause list)
--------------------------------------------- */
.p-cause-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
  justify-content: center;
  gap: 50px 16px;
}
@media screen and (min-width:900px) {
  .p-cause-list {
    margin-top: 110px;
    gap: 70px 16px;
  }
}
@media screen and (min-width:900px) {
  .p-cause-list.col3 .p-cause-list-item {
    width: calc((100% - 32px) / 3);
  }
}

.p-cause-list-item {
  width: calc((100% - 16px) / 2);
  width: 100%;
  padding: 17px 5px;
  border: 3px solid #000;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  min-height: auto;
}
@media screen and (min-width:900px) {
  .p-cause-list-item {
    width: calc((100% - 32px) / 3);
    padding: 30px 5px;
    border: 5px solid #000;
    min-height: 165px;
  }
}
@media screen and (min-width:1240px) {
  .p-cause-list-item {
    width: calc((100% - 48px) / 4);
  }
}
.p-cause-list-item span.text {
  font-size: 25px;
  font-weight: 900;
}
@media screen and (min-width:600px) {
  .p-cause-list-item span.text {
    font-size: 22px;
  }
}
.p-cause-list-item span.colored {
  color: #e00200;
}

.p-cause-list__etc {
  text-align: right;
  font-size: 20px;
  font-weight: 600;
  margin-top: 18px;
}
@media screen and (min-width:768px) {
  .p-cause-list__etc {
    font-size: 40px;
    margin-top: 16px;
  }
}

.p-cause__list-tag {
  background-color: #000;
  color: #fff;
  font-size: 11px;
  display: inline-block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 2px 20px;
  font-weight: bolder;
  position: absolute;
  top: -29px;
  left: 5px;
}
@media screen and (min-width:900px) {
  .p-cause__list-tag {
    font-size: 15px;
    padding: 8px 25px;
    top: -48px;
  }
}

.p-cause__list-tag span {
  font-size: 17px;
}
@media screen and (min-width:900px) {
  .p-cause__list-tag span {
    font-size: 21px;
  }
}

/* object > project > 選ばれる理由セクション(reason section)
--------------------------------------------- */
.p-reason-section {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .p-reason-section {
    padding: 100px 0;
  }
}

.p-reason-section__heading {
  /*   margin-bottom: 60px;
  @include mq() {
    margin-bottom: 120px;
  } */
  /*   text-align: center;
  font-size:30px;
  @include mq('md') {
    font-size:48px;
  }   */
}

.p-reason-section__heading span {
  /*   font-size: 25px;
  color: $color-red;
  @include mq("md") {
    font-size: 41px;
  } */
}

.p-reason-section__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 0 12px;
}

.p-reason-section__content {
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  .p-reason-section__content {
    margin-top: 73px;
  }
}

.p-reason-section__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px 16px;
}
@media screen and (min-width:768px) {
  .p-reason-section__list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px 16px;
  }
}

.p-reason-section__list-item {
  width: 355px;
  padding: 17px 5px;
  border: 3px solid #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width:900px) {
  .p-reason-section__list-item {
    height: 205px;
    border: 5px solid #000;
    border-radius: 10px;
  }
}

.p-reason-section__list-title {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
}
@media screen and (min-width:900px) {
  .p-reason-section__list-title {
    font-size: 35px;
  }
}
.p-reason-section__list-title span.colored {
  color: #d81513;
}
.p-reason-section__list-title span.sm {
  font-size: 14px;
}
@media screen and (min-width:900px) {
  .p-reason-section__list-title span.sm {
    font-size: 20px;
  }
}

.p-reason-section__tag {
  background-color: #000;
  color: #fff;
  font-size: 11px;
  display: inline-block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 2px 15px;
  font-weight: bolder;
  position: absolute;
  top: -30px;
  left: 5px;
}
@media screen and (min-width:900px) {
  .p-reason-section__tag {
    font-size: 20px;
    padding: 8px 35px;
    top: -60px;
  }
}

.p-reason-section__tag span {
  color: #fff;
  font-size: 17px;
}
@media screen and (min-width:900px) {
  .p-reason-section__tag span {
    font-size: 28px;
  }
}

/* object > component > テーブル:ヘッド黒(table01)
--------------------------------------------- */
.p-table01 {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
}
.p-table01 dt,
.p-table01 dd {
  padding: 10px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-table01 dt,
  .p-table01 dd {
    font-size: 20px;
  }
}
.p-table01 dt {
  flex: 0 0 130px;
  text-align: center;
  background-color: #000;
  color: #fff;
}
@media screen and (min-width:768px) {
  .p-table01 dt {
    flex: 0 0 200px;
  }
}
.p-table01 dd {
  flex: 1 1 auto;
  border: 1px solid #000;
  background-color: #fff;
}

.p-table01__row {
  display: flex;
}

/* object > project > テーブル：盗難車数(table02)
--------------------------------------------- */
.p-table02 {
  width: 1305px;
}
.p-table02 tr.first th:not(:first-of-type) {
  border-bottom: 1px solid #fff;
}
.p-table02 tr.first th:nth-of-type(2) {
  border-right: 1px solid #fff;
}
.p-table02 tr.second {
  border-bottom: 1px solid #fff;
}
.p-table02 tr.second th:not(:first-of-type) {
  border-left: 1px solid #fff;
}
.p-table02 tr.normal td {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
.p-table02 tr.normal td:last-of-type {
  border-right: 1px solid #000;
}
.p-table02 tr:not(:first-of-type) th:not(:has(span)),
.p-table02 tr:not(:first-of-type) td:not(:has(span)) {
  width: 150px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-table02 tr:not(:first-of-type) th:not(:has(span)),
  .p-table02 tr:not(:first-of-type) td:not(:has(span)) {
    width: 200px;
  }
}
.p-table02 th,
.p-table02 td {
  padding: 10px 10px;
}
.p-table02 th {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width:768px) {
  .p-table02 th {
    font-size: 24px;
  }
}
.p-table02 th.lg {
  width: 200px;
}
@media screen and (min-width:768px) {
  .p-table02 th.lg {
    width: 255px;
  }
}
.p-table02 th.none {
  background-color: transparent;
}
.p-table02 td {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-table02 td {
    font-size: 20px;
  }
}
.p-table02 td:has(span) {
  padding: 10px 49px 10px 10px;
  width: 255px;
}
.p-table02 td span {
  display: inline-block;
  text-align: right;
  width: 100%;
  font-weight: 600;
  background-color: #f6bbaf;
}

/* object > project > 料金：テーブル(table03)
--------------------------------------------- */
.p-table03 {
  border: 1px solid #000;
}

.p-table03__item {
  display: flex;
  min-height: 48px;
}
.p-table03__item:not(:last-child) .p-table03__term {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-table03__item:not(:last-child) .p-table03__desc {
  border-bottom: 1px solid #000;
}
.p-table03__item:last-child .p-table03__term {
  border-right: 1px solid #000;
}

.p-table03__term {
  flex: 0 0 150px;
  background-color: #efefef;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 14px;
}
@media screen and (min-width:500px) {
  .p-table03__term {
    flex: 0 0 300px;
  }
}
@media screen and (min-width:768px) {
  .p-table03__term {
    flex: 0 0 461px;
    font-size: 20px;
    padding: 10px 20px;
  }
}
.p-table03__term span {
  display: block;
  margin-top: 0.25em;
  font-size: 10px;
  font-weight: 300;
}
@media screen and (min-width:768px) {
  .p-table03__term span {
    display: inline-block;
    margin-left: 0.25em;
    margin-top: 0;
    font-size: 12px;
  }
}
.p-table03__term span.block {
  display: block;
  margin-left: 0;
  margin-top: 0.25em;
}

.p-table03__desc {
  flex: 1 1 auto;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 10px 10px;
}

.p-table03__notice {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 300;
}

/* object > project > 検索バー(searchbar)
--------------------------------------------- */
.p-searchbar__inner {
  display: flex;
  gap: 6px;
  max-height: 42px;
  position: relative;
}
.p-searchbar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13px;
  background-image: url(../img/blogs/icon-search.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: 18px;
  height: 18px;
  user-select: none;
}
.p-searchbar__inner:has(.p-searchbar__field:focus)::before {
  content: none;
}
.p-searchbar__inner:has(.p-searchbar__field.js-is-filled)::before {
  content: none;
}

.p-searchbar__field {
  width: calc(100% - 82px);
  border: 3px solid #222;
  border-radius: 0px;
  padding: 12px 13px;
}
@media screen and (min-width:768px) {
  .p-searchbar__field {
    flex: 1 1 auto;
  }
}

.p-searchbar__btn {
  flex: 0 0 76px;
  background-color: #e00200;
  border-radius: 0;
  padding: 14px 21px;
  line-height: 1;
  color: #fff;
}
/* object > project > カテゴリーリスト(category list)
--------------------------------------------- */
/* object > project > ブログカード(blog card)
--------------------------------------------- */
.p-blog-card {
  display: block;
  border: 1px solid rgba(112, 112, 112, 0.3);
  transition: opacity 0.3s;
  box-shadow: 5px 5px 0 rgba(112, 112, 112, 0.1);
}
@media (hover: hover) {
  .p-blog-card:hover {
    opacity: 0.8;
  }
}
.p-blog-card__thumbnail {
  position: relative;
}
.p-blog-card__thumbnail img {
  width: 100%;
  object-fit: cover;
}

.p-blog-card__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 10px;
}
@media screen and (min-width:1024px) {
  .p-blog-card__title {
    font-size: 28px;
  }
}
@media screen and (min-width:1240px) {
  .p-blog-card__title {
    font-size: 32px;
  }
}

.p-blog-card__body {
  padding: 20px;
}

.p-blog-card__date {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width:900px) {
  .p-blog-card__date {
    font-size: 18px;
  }
}

.p-blog-card__cat {
  width: fit-content;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  background-color: #fdd116;
  padding: 4px 10px;
}

.p-blog-card__body-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width:900px) {
  .p-blog-card__body-title {
    font-size: 20px;
  }
}

.p-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.p-blog-card__text {
  margin-top: 10px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* object > project > ページネーション(pagination)
--------------------------------------------- */
.p-pagination .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.p-pagination a.page-numbers {
  background-color: #fff;
  color: #d81513;
  transition: background-color 0.3s, color 0.3s;
}
@media (hover: hover) {
  .p-pagination a.page-numbers:hover {
    background-color: #d81513;
    color: #fff;
  }
  .p-pagination a.page-numbers.prev:hover::before, .p-pagination a.page-numbers.next:hover::before {
    background: #fff;
  }
}
.p-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  border: 1px solid #d81513;
}
.p-pagination .page-numbers.current {
  background-color: #d81513;
  color: #fff;
}
.p-pagination .page-numbers.dots {
  color: #d81513;
  border: none;
}
.p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
  width: auto;
  position: relative;
}
.p-pagination .page-numbers.prev::before, .p-pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  mask-image: url(../img/blogs/icon-arrow-right-red.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center center;
  background: #d81513;
  width: 7.42px;
  height: 12px;
  transition: background 0.3s;
}
.p-pagination .page-numbers.prev {
  margin-right: 6px;
  padding: 0 13px 0 27px;
}
.p-pagination .page-numbers.prev::before {
  left: 8.59px;
  transform: translateY(-50%) rotate(180deg);
}
.p-pagination .page-numbers.next {
  margin-left: 6px;
  padding: 0 27px 0 13px;
}
.p-pagination .page-numbers.next::before {
  right: 8.59px;
  transform: translateY(-50%);
}

/* object > project > (前の記事へ/次の記事へ)ページャー(pager)
--------------------------------------------- */
.p-pager {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.p-pager__prev a,
.p-pager__next a {
  display: inline-block;
  position: relative;
  background-color: #e00200;
  color: #fff;
  border: 1px solid #e00200;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  transition: background-color 0.3s, color 0.3s;
  min-width: 230px;
}
.p-pager__prev a::before,
.p-pager__next a::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  mask-image: url(../img/blogs/blog-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center center;
  background: #fff;
  width: 7.42px;
  height: 12px;
  transition: background 0.3s;
  color: #fff;
}
@media (hover: hover) {
  .p-pager__prev a:hover,
  .p-pager__next a:hover {
    background: #fff;
    color: #e00200;
  }
  .p-pager__prev a:hover::before,
  .p-pager__next a:hover::before {
    background: #e00200;
  }
}

.p-pager__prev {
  grid-column: 1/2;
}
.p-pager__prev a {
  padding: 0 13px 0 27px;
}
.p-pager__prev a::before {
  left: 8.59px;
  transform: translateY(-50%) rotate(180deg);
}

.p-pager__next {
  grid-column: 2/3;
}
.p-pager__next a {
  padding: 13px 13px;
}
.p-pager__next a::before {
  right: 8.59px;
  transform: translateY(50%);
  rotate: 180deg;
}

.p-pager__prev a {
  padding: 13px 13px;
}
.p-pager__prev a::before {
  right: 8.59px;
  transform: translateY(-50%);
}

/* object > utility > display
--------------------------------------------- */
/* PC表示 */
.u-tab-br {
  display: none;
}
@media screen and (min-width:768px) {
  .u-tab-br {
    display: inline;
  }
}

/* 768px以下表示 */
.u-sp-br {
  display: inline;
}
@media screen and (min-width:768px) {
  .u-sp-br {
    display: none;
  }
}

.u-sp {
  display: block;
}
@media screen and (min-width:900px) {
  .u-sp {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width:900px) {
  .u-pc {
    display: block;
  }
}

/* 1024 */