@charset "UTF-8";

/* 下層ページ　共通設定 */
/* ２カラムレイアウト */
.sticky-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.sticky-sidebar {
  position: sticky;
  padding-top: 60px;
  padding-right: 20px;
  top: 40px;
  left: 0;
  width: 10%;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 100;
  overflow: hidden;
}
.main-content {
  width: 90%;
  box-sizing: border-box;
}
.rotated-text {
  font-size: 23rem;
  font-weight: bold;
  white-space: nowrap;
  color: var(--bg-third);
  writing-mode: vertical-rl;
  transform: translateX(50%);
  max-height: 100%;
}
.rotated-image {
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.cs-pagefull {
  width: calc(100vw - 80px);
  margin-left: -11.111%;
  position: relative;
  z-index: 100;
}
.rotated-image-sp {
  display: none;
}
/* メインコンテンツの中身 */
.page-inner {
  max-width: 1300px;
}
.column-inner {
  margin-right: 10%;
}
.main-fullinner {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .sticky-wrapper {
    min-height: initial;
  }
  .rotated-image {
    display: none;
  }
  .sticky-wrapper {
    flex-direction: column;
  }
  .sticky-sidebar {
    display: none;
  }
  .main-content {
    width: 100%;
  }
  .cs-pagefull {
    width: 100%;
    margin-left: 0;
  }
  .column-inner {
    margin-right: 0;
    padding: 0 20px;
  }
  .main-fullinner {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .column-inner {
    padding: 0 15px;
  }
}

/* タブの形のフルセクション tab-section*/
.tab-section {
  background-color: var(--bg-secondary);
  padding: 60px 40px;
  border-radius: 0 0 20px 20px;
  position: relative;
  margin-top: 200px;
  width: initial;
  z-index: 1;
  margin-bottom: 0;
}
.tab-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 80%;
  height: 100px;
  background-color: var(--bg-secondary);
  border-radius: 20px 20px 0 0;
  transform: translateX(-50%);
  z-index: -1;
}
.tab-section::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 10%;
  width: 40px;
  height: 40px;
  background-image: url("..//images/sub/scratches/frame-orange-s.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-100%);
  z-index: 1;
}
.tab-section .right-image {
  position: absolute;
  top: -40px;
  left: 90%;
  width: 40px;
  height: 40px;
  background-image: url("..//images/sub/scratches/frame-orange-s.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transform: rotate(90deg);
}
.tab-section .section-inner {
  margin-top: -100px;
}
.tab-section .main-fullinner {
  margin-top: -100px;
}
.tab-section .full-inner {
  margin-top: -100px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .tab-section {
    padding: 40px 0px;
  }
}
@media screen and (max-width: 600px) {
  .tab-section::before {
    top: -80px;
    height: 80px;
  }
  .tab-section::after {
    top: -30px;
    width: 30px;
    height: 30px;
  }
  .tab-section .right-image {
    top: -30px;
    width: 30px;
    height: 30px;
  }
}

/* 白タブセクション w-tab */
.w-tab {
  background-color: var(--bg-secondary);
  margin-bottom: 0;
  padding-bottom: 60px;
}
.w-tab .w-tab-ttl {
  position: relative;
  background-color: #ffffff;
  padding: 30px 10px 0;
  border-radius: 35px 35px 0 0;
  margin-bottom: 0;
  min-width: 400px;
  display: inline-block;
  z-index: 10;
}
.w-tab .w-content {
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  border-radius: 0 50px 50px 50px;
  margin-top: -30px;
}
.w-tab .en-ttl {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .w-tab .w-content {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .w-tab .w-tab-ttl {
    padding: 20px 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .w-tab .w-tab-ttl {
    min-width: 40%;
    padding: 15px 20px 0;
  }
}
@media screen and (max-width: 430px) {
  .w-tab .w-content {
    border-radius: 0 0 50px 50px;
  }
  .w-tab .w-tab-ttl {
    width: 100%;
  }
}

/* 左写真円形のセクション round-section */
.cs-round .card-container {
  display: grid;
  grid-template-columns: 35% auto;
  min-height: 280px;
  background-color: #fdf5e6;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}
.cs-round .card-container.is-reverse {
  direction: rtl;
}
.cs-round .card-container.is-reverse > * {
  direction: ltr;
}
.cs-round .photo-area {
  align-self: stretch;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 0% 50%);
}
.cs-round .card-container.is-reverse .photo-area {
  clip-path: ellipse(100% 100% at 100% 50%);
}
.cs-round .photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-round .content-area {
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cs-round e .r-ttl-area {
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .cs-round .content-area {
    padding: 30px;
  }
  .cs-round .r-ttl-area {
    margin-bottom: 10px;
  }
  .cs-round .r-ttl-area .main-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .cs-round .card-container {
    grid-template-columns: 40% auto;
  }
  .cs-round .r-ttl-area .main-ttl {
    font-size: 2.4rem;
  }
  .p-license .description {
    line-height: 1.8;
  }
  .p-license .description br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cs-round .card-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .cs-round .photo-area {
    height: 240px;
    clip-path: ellipse(100% 100% at 50% 0%);
  }
  .cs-round .card-container.is-reverse .photo-area {
    clip-path: ellipse(100% 100% at 50% 0%);
  }
  .cs-round .content-area {
    padding: 25px 20px 35px;
  }
}
@media screen and (max-width: 430px) {
  .cs-round .content-area {
    padding: 20px 15px 25px;
  }
  .cs-round .r-ttl-area .main-ttl {
    font-size: 2rem;
  }
}

/* 下層共通タイトル */
.ttl-area:has(.medium-ttl) {
  margin-bottom: 20px;
}
.medium-ttl {
  font-size: 2rem;
  font-weight: 400;
  display: inline;
  padding: 0 10px;
  background: linear-gradient(transparent 60%, #fcdc8f 60%);
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ttl-area:has(.medium-ttl) {
    margin-bottom: 10px;
  }
}

/* 共通MV page-mv */
.page-mv {
  margin-top: 30px;
}
.page-mv .frame {
  display: grid;
  grid-template-columns: 25% auto;
  border-radius: 50px;
  overflow: hidden;
}
.page-mv .text-area {
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.page-mv .ttl-box {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.page-mv .mvttl-ja {
  margin-bottom: 10px;
}
.page-mv .mvttl-en {
  color: var(--bg-primary);
}
.page-mv .img-area {
  height: 350px;
}
.page-mv .img-area img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .page-mv .frame {
    grid-template-columns: 35% auto;
  }
  .page-mv .img-area {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .page-mv .ttl-box {
    font-size: 2.8rem;
  }
  .page-mv .img-area {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .page-mv {
    margin-top: 50px;
  }
  .page-mv .full-inner {
    position: relative;
    z-index: 1;
  }
  .page-mv .frame {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 20px;
  }
  .page-mv .ttl-box {
    font-size: 2.4rem;
  }
  .page-mv .img-area {
    height: 200px;
  }
  .page-mv .ttl-box {
    text-align: center;
  }
  .page-mv .mvttl-ja {
    margin-bottom: 0;
  }
  .rotated-image-sp {
    display: block;
    position: absolute;
    top: -33px;
    right: 30px;
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  .page-mv .img-area {
    height: 170px;
  }
}
@media screen and (max-width: 430px) {
  .page-mv {
    margin-top: 35px;
  }
  .rotated-image-sp {
    width: 210px;
    top: -23px;
  }
}

/*---------------------*/
/* 車検・点検 inspection */
/* オススメ recomend */
.p-recomend .content {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 50px;
}
.p-recomend .inner {
  padding: 50px;
  background-color: var(--bg-secondary);
  border-radius: 50px;
}
@media screen and (max-width: 1280px) {
  .p-recomend .content {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-recomend .inner {
    padding: 20px 10px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-recomend .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media screen and (max-width: 430px) {
  .p-recomend .content {
    grid-template-columns: 1fr;
    row-gap: 10px;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* 車検・点検 共通サブタイトル ins-ttlarea */
.cs-round .r-ttl-area.ins-ttlarea {
  width: 700px;
  background-color: var(--bg-primary);
  line-height: 1;
  border-radius: 60px 0 0 60px;
  margin: 0 0 40px auto;
  padding: 30px 30px 30px 80px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ins-ttlarea .ttl-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}
.ins-ttlarea .en-ttl {
  text-align: left;
}
.ins-ttlarea .main-ttl {
  color: var(--text-light);
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .cs-round .r-ttl-area.ins-ttlarea {
    width: 45vw;
    min-width: 400px;
    padding: 20px 20px 20px 50px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cs-round .r-ttl-area.ins-ttlarea {
    min-width: 350px;
    padding: 15px 15px 15px 50px;
  }
  .ins-ttlarea .ttl-icon {
    width: 60px;
  }
}
@media screen and (max-width: 430px) {
  .cs-round .r-ttl-area.ins-ttlarea {
    min-width: 280px;
    padding: 12px 12px 12px 40px;
  }
  .ins-ttlarea .ttl-icon {
    width: 40px;
  }
}

/* もっと長く long */
.p-long .br-470 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .p-long.cs-round .r-ttl-area .main-ttl {
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 470px) {
  .p-long .br-470 {
    display: block;
  }
}

/* 車検書類 document */
.p-document {
  background-color: var(--bg-primary);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 0;
}
.p-document .box {
  display: grid;
  grid-template-columns: 40% auto;
  column-gap: 40px;
}
.p-document .list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  align-items: center;
}
.p-document .list-box li {
  background-color: var(--bg-light);
  border-radius: 60px;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 20px 20px 60px;
  box-sizing: border-box;
  box-shadow: 8px 8px 0 #d19b1b;
}
.p-document .list-box li::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("..//images/sub/inspection/docu-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.p-document .list-box li p {
  font-size: 3rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-document .box {
    grid-template-columns: 30% auto;
    column-gap: 20px;
  }
  .p-document .list-box {
    column-gap: 20px;
  }
  .p-document .list-box li p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-document .list-box li {
    padding: 10px 10px 10px 40px;
  }
  .p-document .list-box li::before {
    width: 24px;
    height: 24px;
    left: 24px;
  }
  .p-document .list-box li p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-document .box {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .p-document .subttl {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .p-document .list-box {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .p-document .list-box li p {
    font-size: 1.8rem;
  }
}

/* 車検の流れ flow */
.p-flow .step-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 30px 0;
  margin: 0;
}
.p-flow .step-item {
  flex: 1;
  background-color: var(--bg-light);
  border: 3px solid var(--bg-primary);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-flow .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent var(--bg-primary);
  z-index: 2;
}
.p-flow .step-header {
  background-color: var(--bg-primary);
  color: var(--text-light);
  text-align: center;
  padding: 10px;
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 1px;
  line-height: 1;
  border-radius: 12px 12px 0 0;
}
.p-flow .step-header span {
  font-size: 6rem;
  margin-left: 4px;
}
.p-flow .step-body {
  padding: 20px 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  text-align: center;
}
.p-flow .step-text {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 600;
}
.p-flow .step-sub {
  margin: 4px 0 0;
  font-size: 1.6rem;
}
.p-flow .step-icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.p-flow .step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1500px) {
  .p-flow .step-text {
    font-size: 2.4rem;
  }
  .p-flow .step-sub {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 1280px) {
  .w-tab .w-content {
    padding: 40px 20px;
  }
  .p-flow .step-body {
    padding: 10px 10px 20px;
  }
  .p-flow .step-item:not(:last-child)::after {
    right: -20px;
    border-width: 20px 0 20px 20px;
  }
  .p-flow .step-list {
    gap: 20px;
  }
  .p-flow .step-header {
    font-size: 2rem;
  }
  .p-flow .step-header span {
    font-size: 5rem;
  }
  .p-flow .step-text {
    font-size: 2rem;
  }
  .p-flow .step-sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-flow .step-list {
    gap: 20px;
  }
  .p-flow .step-header {
    font-size: 1.8rem;
  }
  .p-flow .step-header span {
    font-size: 4rem;
  }
  .p-flow .step-text {
    font-size: 1.8rem;
  }
  .p-flow .step-sub {
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-flow .step-list {
    max-width: 450px;
    margin: 0 auto;
    flex-direction: column;
    gap: 40px;
  }
  .p-flow .step-body {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center;
    justify-content: space-between;
  }
  .p-flow .text-area {
    flex: 1;
  }
  .p-flow .step-text {
    font-size: 2.2rem;
  }
  .p-flow .step-text br {
    display: none;
  }
  .p-flow .step-icon {
    width: 110px;
    padding: 0;
    flex-shrink: 0;
  }
  .p-flow .step-item:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(50%);
    border-width: 20px 20px 0 20px;
    border-color: var(--bg-primary) transparent transparent transparent;
  }
}
@media screen and (max-width: 600px) {
  .p-flow .step-list {
    padding: 20px 0;
  }
  .p-flow .step-icon {
    width: 100px;
  }
  .p-flow .step-text {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 430px) {
  .p-flow .step-header span {
    font-size: 3rem;
  }
  .p-flow .step-body {
    padding: 10px;
  }
  .p-flow .step-icon {
    width: 60px;
  }
  .p-flow .step-text {
    font-size: 1.8rem;
  }
  .p-flow .step2 .br-1024 {
    display: block;
  }
}

/* 支払い方法 payment */
.w-tab.p-payment .full-inner {
  filter: drop-shadow(0px -3px 0px #f3a812) drop-shadow(3px 0px 0px #f3a812)
    drop-shadow(0px 3px 0px #f3a812) drop-shadow(-3px 0px 0px #f3a812);
  /* Safari向け：独自レイヤーを作成させて見切れを防ぐ */
  will-change: filter;
}
.p-payment ul {
  display: flex;
  justify-content: space-between;
  column-gap: 5vw;
  padding: 0 3vw;
}
.p-payment ul li {
  min-width: 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-payment ul {
    column-gap: 20px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-payment ul {
    flex-direction: column;
    row-gap: 30px;
  }
  .p-payment .img-box.mini img {
    max-width: 150px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 430px) {
  .p-payment .img-box.mini img {
    max-width: 110px;
  }
}

/* 点検について　inspection */
.p-inspection.cs-round .r-ttl-area.ins-ttlarea {
  margin: 0 auto 40px 0;
  padding: 20px 50px 20px 20px;
  border-radius: 0 60px 60px 0;
}
.p-inspection .listbody {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  margin-top: 80px;
  border: 6px solid var(--bg-primary);
  border-radius: 30px;
  padding: 30px;
}
.p-inspection .list {
  display: flex;
  flex-direction: column;
}
.p-inspection .text-box {
  margin-bottom: 20px;
  flex-grow: 1;
}
.p-inspection .listttl {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}
.p-inspection .listttl::before,
.p-inspection .listttl::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-inspection .listbody {
    column-gap: 20px;
  }
  .p-inspection .listttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-inspection.cs-round .r-ttl-area.ins-ttlarea {
    padding: 15px 50px 15px 15px;
    margin-bottom: 30px;
  }
  .p-inspection .listbody {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    padding: 20px;
  }
  .p-inspection .text-box {
    margin-bottom: 10px;
  }
  .p-inspection .img-box {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 430px) {
  .p-inspection.cs-round .r-ttl-area.ins-ttlarea {
    padding: 12px 40px 12px 12px;
  }
}

/* よくある質問 faq */
.p-faq {
  padding-top: 0;
  margin-bottom: 0;
}
.p-faq .faq-box {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 40px;
}
.p-faq .item {
  border-bottom: 1px solid var(--bg-primary);
  padding-bottom: 20px;
}
.p-faq .faq-box .q {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: left;
  font-family: inherit;
}
.p-faq .faq-box .icon {
  font-size: 3.2rem;
  font-weight: 500;
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
}
.p-faq .faq-box .q .icon {
  color: var(--bg-primary);
}
.p-faq .faq-box .a .icon {
  color: #e87a2a;
}
.p-faq .faq-box .q .txt {
  font-size: 1.6rem;
  flex-grow: 1;
  line-height: 1.6;
  letter-spacing: 2px;
}
.p-faq .faq-box .arrow {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 15px;
  flex-shrink: 0;
}
.p-faq .faq-box .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  transform: translate(-50%, -75%) rotate(45deg);
  transition: transform 0.3s ease;
}
.p-faq .faq-box .q.is-open .arrow::before {
  transform: translate(-50%, -25%) rotate(-135deg);
}
.p-faq .faq-box .a {
  display: none;
}
.p-faq .faq-box .a-inner {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}
.p-faq .faq-box .a .txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-faq .w-content {
    padding: 0;
  }
  .p-faq .faq-box {
    gap: 20px;
    padding-top: 20px;
  }
}

/*---------------------*/
/* 整備・修理　repair */
/* スピーディー speed */
.p-speed .speed-img-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-speed .content {
    max-width: 400px;
    margin: 0 auto;
  }
  .p-speed .speed-img {
    display: none;
  }
  .p-speed .speed-img-sp {
    display: block;
  }
}

/* 対応可能　available */
.p-available .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  align-items: center;
  padding-top: 30px;
}
.p-available .content li {
  border: 3px solid var(--bg-dark);
  border-radius: 50px;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .p-available .content {
    column-gap: 20px;
  }
  .p-available .content li {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .p-available .content li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-available .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 10px;
  }
  .p-available .content li {
    min-height: 90px;
  }
}
@media screen and (max-width: 430px) {
  .p-available .content {
    grid-template-columns: 1fr;
  }
  .p-available .content li {
    min-height: 76px;
    border-radius: 20px;
  }
}

/* 保守・修理 maint  */
.p-maint {
  margin-bottom: 0;
}
.p-maint .lead {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}
.p-maint .listbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
}
.p-maint .img-box {
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
}
.p-maint .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-maint .text-box {
  padding: 30px 0;
}
.p-maint .maint-ttl {
  text-align: center;
  margin-bottom: 30px;
}
.p-maint .ttl-ja {
  color: var(--text-accent);
  font-size: 2.6rem;
  font-weight: 600;
}
.p-maint .ttl-en {
  font-size: 1.4rem;
}
.p-maint .para-box {
  text-align: center;
}
.p-maint .para-ttl {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.p-maint .para-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 16px;
  background-color: #fcdc8f;
  border-radius: 9999px;
  z-index: -1;
}
.p-maint .para-ttl span::after {
  display: none;
}
.p-maint .para-box p {
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .p-maint .listbox {
    column-gap: 20px;
  }
  .p-maint .img-box {
    height: 270px;
  }
  .p-maint .text-box {
    padding: 20px 0 0;
  }
  .p-maint .maint-ttl {
    margin-bottom: 10px;
  }
  .p-maint .para-ttl::after {
    display: none;
  }
  .p-maint .para-ttl span {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 5px;
  }
  .p-maint .para-ttl span::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1em;
    width: 100%;
    height: 0.6em;
    background-color: #fcdc8f;
    border-radius: 9999px;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .p-maint .listbox {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .p-maint .img-box {
    height: 230px;
  }
}
@media screen and (max-width: 430px) {
  .w-content {
    padding: 20px 15px;
  }
  .p-maint .ttl-ja {
    font-size: 2.4rem;
  }
  .p-maint .img-box {
    height: 200px;
    border-radius: 20px;
  }
  .p-maint .para-ttl {
    font-size: 1.6rem;
  }
}

/* トップテン topten  */
.p-topten {
  background-color: var(--bg-light);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-topten .ttl-area {
  text-align: center;
}
.p-topten .main-ttl {
  margin-bottom: 30px;
}
.p-topten .small-ja {
  margin-bottom: 15px;
}
.p-topten .color-ja {
  background-color: var(--bg-primary);
  font-size: 2rem;
  font-weight: 600;
  max-width: 350px;
  width: 100%;
  border-radius: 50px;
  padding: 8px;
  color: var(--text-light);
  margin: 0 auto;
  line-height: 1.6;
}
.p-topten .w-content {
  background-color: initial;
}
.p-topten .parts-list {
  list-style: none;
  font-family: sans-serif;
}
.p-topten .part-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 4px dotted #fab920;
}
.p-topten .part-item:last-child {
  border-bottom: none;
}
.p-topten .part-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}
.p-topten .part-detail {
  display: flex;
  margin: 0;
}
.p-topten .detail-label {
  flex-shrink: 0;
  width: 150px;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--text-accent);
  margin: 0;
}
.p-topten .detail-text {
  flex-grow: 1;
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-topten .w-content {
    padding: 0;
  }
  .p-topten .main-ttl {
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  .p-topten .part-detail {
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .p-topten .part-title {
    font-size: 1.8rem;
  }
  .p-topten .color-ja {
    font-size: 1.6rem;
  }
}

/* お客様の声 voice */
.p-voice {
  margin-bottom: 0;
}
.p-voice .w-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  background-color: initial;
  padding-top: 0;
  padding-bottom: 0;
}
.p-voice .w-content li {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
}
.p-voice .name-box {
  padding-bottom: 10px;
}
.p-voice .name {
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 5px;
}
.p-voice .star {
  font-size: 2.2rem;
  color: #fab920;
}
.p-voice .name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #fab920;
}
@media screen and (max-width: 1280px) {
  .p-voice .w-content {
    column-gap: 20px;
    padding: 0;
  }
  .p-voice .w-content li {
    padding: 20px;
  }
  .p-voice .w-content li p {
    line-height: 1.6;
  }
}
@media screen and (max-width: 1024px) {
  .p-voice .name-box {
    padding-bottom: 5px;
  }
  .p-voice .name {
    padding-bottom: 10px;
  }
  .p-voice .star {
    font-size: 1.8rem;
  }
  .p-voice .w-content li p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 960px) {
  .p-voice .w-content {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .p-voice .name-box {
    display: flex;
    column-gap: 10px;
  }
  .p-voice .name::after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-voice .w-content {
    padding: 20px;
  }
}

/* ギャラリー　gallery */
.p-gallery {
  background-color: var(--bg-light);
  margin-top: 0;
  margin-bottom: 0;
}
.p-gallery .w-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  background-color: initial;
  padding-top: 0;
  padding-bottom: 0;
}
.p-gallery .w-content li {
  border-radius: 20px;
  overflow: hidden;
}
.p-gallery .w-content li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .p-gallery .w-content {
    column-gap: 15px;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-gallery .w-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .p-gallery .w-content li:first-child {
    grid-column: 1 / -1;
  }
}

/*---------------------*/
/* キズ・ヘコミ scratches */
/* ポイント　point */
.p-point .pre-ttl {
  color: var(--text-primary);
  margin-bottom: 10px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.p-point .main-ttl {
  display: flex;
  justify-content: center;
  line-height: 1;
  column-gap: 10px;
}
.p-point .three-img {
  width: 93px;
  height: auto;
}
.p-point .en-ttl {
  font-size: 3.6rem;
  margin-bottom: 0;
  line-height: 1;
  padding-top: 2px;
}
.p-point .content {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}
.p-point .card {
  flex: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-point .number-box {
  margin-left: 0;
  margin-right: auto;
  padding-left: 20px;
}
.p-point .label {
  color: var(--text-accent);
  font-size: 2.6rem;
  line-height: 1.2;
}
.p-point .number {
  color: var(--text-accent);
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.p-point .card-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.p-point .frame {
  background-color: var(--bg-secondary);
  border-radius: 30px;
  padding: 20px;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.p-point .frame::before {
  content: "";
  position: absolute;
  top: -17px;
  right: 140px;
  transform: translateY(-40%);
  width: 30px;
  height: 30px;
  background-image: url("..//images/sub/scratches/frame-orange-s.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
.p-point .frame::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 140px;
  height: 100px;
  background-color: var(--bg-secondary);
  border-radius: 30px 30px 0 0;
  transform: translateY(-40%);
  z-index: -1;
}
.p-point .image-box {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-point .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1500px) {
  .p-point .text br {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .p-point .content {
    gap: 20px;
  }
  .p-point .card-ttl {
    font-size: 1.6rem;
  }
  .p-point .text {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .p-point .card-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-point .content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .p-point .content > .card {
    flex: none;
    width: calc(50% - 15px);
    max-width: 450px;
  }
  .p-point .content > .card:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-point .pre-ttl {
    font-size: 2rem;
  }
  .p-point .three-img {
    width: 78px;
    padding-bottom: 10px;
  }
  .p-point .en-ttl {
    font-size: 3rem;
  }
  .p-point .content {
    display: flex;
    flex-direction: column;
  }
  .p-point .content > .card {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
  }
  .p-point .number-box {
    padding-left: 10px;
  }
  .p-point .label {
    font-size: 2rem;
  }
  .p-point .number {
    color: var(--text-accent);
    font-size: 3.2rem;
  }
  .p-point .card-ttl {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}

/* 実績　repair */
.p-repair {
  margin-bottom: 0;
}
.p-repair .w-content {
  background-color: initial;
}
.p-repair .box {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.p-repair .box li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: center;
  position: relative;
}
.p-repair .card {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 20px 20px 30px;
  position: relative;
}

/* PC：1つ目のカードの右側に矢印を配置 */
.p-repair .card:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 25px;
  border-color: transparent transparent transparent var(--bg-primary);
  z-index: 1;
}

.p-repair .img-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  height: 300px;
}
.p-repair .img-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-repair .when {
  position: absolute;
  background-color: var(--bg-light);
  top: 0;
  left: 30px;
  padding: 0 20px 5px;
  border-radius: 0 0 10px 10px;
  color: var(--text-accent);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2;
}
.p-repair .repair-ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .p-repair .img-box {
    height: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .p-repair .box li {
    column-gap: 40px;
  }
  .p-repair .card:first-child::after {
    right: -20px;
    border-width: 15px 0 15px 20px;
  }
  .p-repair .img-box {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-repair .w-content {
    padding: 0;
  }
  .p-repair .box li {
    column-gap: 30px;
  }
  .p-repair .card:first-child::after {
    right: -15px;
  }
  .p-repair .text-box {
    line-height: 1.6;
  }
}
@media screen and (max-width: 600px) {
  .p-repair .box {
    max-width: 400px;
    margin: 0 auto;
    row-gap: 40px;
  }
  .p-repair .box li {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .p-repair .box > li + li {
    border-top: 3px dashed var(--bg-primary);
    padding-top: 40px;
  }
  .p-repair .card:first-child::after {
    top: auto;
    bottom: -20px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 50%);
    border-width: 20px 15px 0 15px;
    border-color: var(--bg-primary) transparent transparent transparent;
  }
  .p-repair .when {
    left: 25px;
    padding: 0 15px 3px;
    border-radius: 0 0 6px 6px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 430px) {
  .p-repair .img-box {
    height: 160px;
  }
}

/* 流れ process */
.p-process .box {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.p-process .box li {
  display: grid;
  grid-template-columns: 150px auto;
  column-gap: 30px;
  align-items: center;
  position: relative;
}
.p-process .icon-box {
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  position: relative;
}
.p-process .box li:not(:last-child) .icon-box::before {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 25px;
  background-color: var(--bg-primary);
  z-index: 1;
}
.p-process .box li:not(:last-child) .icon-box::after {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--bg-primary);
  border-bottom: 3px solid var(--bg-primary);
  z-index: 2;
}
.p-process .process-ttl {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-accent);
  margin-bottom: 10px;
}
.p-process .process-ttl span {
  font-size: 1.8rem;
  margin-left: 10px;
  color: var(--text-primary);
}
.p-process .list04 .process-ttl span {
  margin-left: 0;
  margin-right: 10px;
}
.p-process .message-box {
  background-color: #fff8e6;
  border-radius: 60px;
  padding: 30px 40px;
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}
.p-process .message-text {
  flex: 1;
  padding-right: 20px;
}
.p-process .message-text p {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
.p-process .message-image {
  width: 120px;
  flex-shrink: 0;
  position: relative;
}
.p-process .message-image img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .p-process .box li {
    grid-template-columns: 120px auto;
  }
  .p-process .message-text p {
    font-size: 2rem;
  }
  .p-process .message-image {
    width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .p-process .box li {
    grid-template-columns: 100px auto;
  }
  .p-process .message-box {
    margin: 40px auto 0;
  }
  .p-process .message-image img {
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-process .message-text p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-process .box li {
    grid-template-columns: 80px auto;
    column-gap: 15px;
  }
  .p-process .process-ttl {
    font-size: 2.2rem;
  }
  .p-process .process-ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-process .message-box {
    border-radius: 30px;
    padding: 20px;
  }
  .p-process .message-text {
    padding-right: 10px;
  }
  .p-process .message-text p {
    font-size: 1.6rem;
  }
  .p-process .message-image {
    width: 70px;
  }
}
@media screen and (max-width: 430px) {
  .p-process .box li {
    grid-template-columns: 54px auto;
    column-gap: 10px;
  }
  .p-process .process-ttl {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .p-process .process-ttl span {
    font-size: 1.2rem;
  }
  .p-process .caption {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .p-process .box li:not(:last-child) .icon-box::before {
    height: 22px;
  }
  .p-process .box li:not(:last-child) .icon-box::after {
    width: 12px;
    height: 12px;
  }
  .p-process .message-text p {
    font-size: 1.4rem;
  }
  .p-process .message-image {
    width: 50px;
  }
}

/*---------------------*/
/* 会社案内 company */
/* intro */
.p-intro .text-area {
  max-width: 790px;
  margin: 0 auto;
}
.p-intro .text-area p {
  line-height: 2;
}

/* 経営理念 philosophy */
.p-philosophy {
  border-radius: 50px 0 0 50px;
  margin-bottom: 0;
}
.p-philosophy .text-area {
  margin-top: 30px;
}
.p-philosophy .text {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .p-philosophy .text {
    text-align: left;
  }
  .p-philosophy .text br {
    display: none;
  }
}

/* 代表挨拶　greeting */
.p-greeting .column-inner {
  display: grid;
  grid-template-columns: 25% auto;
}
.p-greeting .img-area {
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  max-height: 400px;
}
.p-greeting .img-area img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.p-greeting .text-area {
  padding: 20px 50px;
}
.p-greeting .name-area {
  margin-top: 30px;
  text-align: right;
}
.p-greeting .name span {
  font-size: 1.6rem;
  margin-left: 20px;
}
@media screen and (max-width: 1280px) {
  .p-greeting .column-inner {
    grid-template-columns: 30% auto;
  }
  .p-greeting .img-area {
    max-height: 350px;
  }
  .p-greeting .text-area {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-greeting .column-inner {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .p-greeting .img-area {
    width: 350px;
    height: 300px;
    margin: 0 auto;
    border-radius: 30px;
  }
  .p-greeting .img-area img {
    object-position: center 20%;
  }
  .p-greeting .text-area {
    padding: 0px;
  }
}
@media screen and (max-width: 600px) {
  .p-greeting .img-area {
    max-height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .p-greeting .img-area {
    width: 80%;
    height: 240px;
  }
}

/* 会社概要 company */
.p-company .info-table {
  width: 100%;
}
.p-company .info-table th,
.p-company .info-table td {
  padding: 20px 0;
  border-bottom: 2px solid var(--bg-primary);
  font-size: 2rem;
}
.p-company .info-table th {
  width: 20%;
  text-align: center;
  vertical-align: middle;
  color: var(--bg-primary);
}
.p-company .info-table tr:last-child th,
.p-company .info-table tr:last-child td {
  border-bottom: none;
}
.p-company .info-table td {
  text-align: left;
  padding-left: 50px;
  padding-right: 30px;
}
.p-company .info-table ul {
  list-style: disc;
  padding-left: 20px;
}
@media screen and (max-width: 1280px) {
  .p-company .info-table th,
  .p-company .info-table td {
    font-size: 1.8rem;
    padding: 10px 0;
    line-height: 1.4;
  }
  .p-company .info-table td {
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-company .info-table th,
  .p-company .info-table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .p-company .info-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-company .info-table th,
  .p-company .info-table td {
    width: 100%;
    padding: 5px 0;
  }
  .p-company .info-table th {
    background-color: var(--bg-primary);
    color: var(--text-light);
    border-bottom: none;
  }
  .p-company .info-table td {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
  }
}

/*---------------------*/
/* お問い合わせ contact */
.p-contact-form {
  padding: 0 20px;
}
.p-contact .p-contact-form .form-list {
  margin-bottom: 50px;
}
.p-contact .form-item {
  display: flex;
  padding: 20px 0;
  column-gap: 10px;
  margin-bottom: 10px;
}
.p-contact .form-item dt {
  width: 200px;
  font-weight: 800;
  font-size: 2rem;
  padding-top: 10px;
  color: var(--text-accent);
}
.p-contact .form-item dd {
  width: 80%;
  margin: 0;
}
.p-contact .form-item input[type="text"],
.p-contact .form-item input[type="email"],
.p-contact .form-item input[type="tel"],
.p-contact .form-item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.8rem;
  box-sizing: border-box;
}
.p-contact .form-item textarea {
  resize: vertical;
}
.p-contact .c-btn {
  width: 250px;
  padding: 15px;
}
@media screen and (max-width: 960px) {
  .p-contact .p-note .text-area {
    text-align: left;
  }
  .p-contact .p-note .text-area br {
    display: none;
  }
  .p-contact .p-contact-form {
    padding: 0px;
  }
  .p-contact .p-contact-form .form-list {
    margin-bottom: 30px;
  }
  .p-contact .form-item {
    flex-direction: column;
    padding: 0;
  }
  .p-contact .form-item dt,
  .p-contact .form-item dd {
    width: 100%;
  }
  .p-contact .form-item dt {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
  .p-contact .form-item input[type="text"],
  .p-contact .form-item input[type="email"],
  .p-contact .form-item input[type="tel"],
  .p-contact .form-item textarea {
    font-size: 1.4rem;
  }
}
/* リキャプチャ */
.contact-caption {
  max-width: 680px;
  margin: 10px auto;
}
.recaptcha-wrapper p a {
  color: var(--bg-primary);
}
.recaptcha-br {
  display: none;
}
.recaptcha-br2 {
  display: none;
}
.recaptcha-wrapper {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}
@media (max-width: 767px) {
  .recaptcha-wrapper p {
    font-size: 12px;
  }
  .recaptcha-br {
    display: block;
  }
}
@media (max-width: 420px) {
  .recaptcha-br2 {
    display: block;
  }
}

/*---------------------*/
/* プライバシーポリシー privacy */
.p-privacy .lead {
  margin-bottom: 50px;
}
.p-privacy .content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  list-style: decimal;
  padding-left: 40px;
}
.p-privacy .list {
  font-size: 2rem;
}
.p-privacy .text {
  font-size: 1.4rem;
}
.p-privacy .item-list {
  list-style: disc;
  padding-left: 20px;
}
.p-privacy .item {
  font-size: 1.4rem;
}
.p-privacy .text-last {
  margin-top: 20px;
}
