@charset "UTF-8";

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Variables & Base
==================== */
:root {
  --base-width: 414;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1714;
  line-height: 1;
  text-align: center;
}

section {
  scroll-margin-top: 61px;
}

@media screen and (min-width: 501px) {
  a:hover,
  a:active,
  button:hover,
  button:active {
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  a:focus-visible,
  button:focus-visible {
    opacity: 0.85;
  }
}

/* ====================
  Common
==================== */
.c-balloon {
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: inline-block;
  width: 284px;
  border: 2px solid #E60012;
  border-radius: 32px;
  padding: 2px 22px;
  color: #E60012;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.786;
  position: relative;
  z-index: 1;
}
.c-balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 54px;
  width: 2px;
  height: 17px;
  background-color: #E60012;
  border-radius: 8px;
  transform: rotate(45deg);
  z-index: -1;
}

.c-balloon.-white {
  border: 2px solid #fff;
  color: #fff;
}
.c-balloon.-white::after {
  background-color: #fff;
}

.c-balloon.-black {
  border: 2px solid #1A1714;
  color: #1A1714;
}
.c-balloon.-black::after {
  background-color: #1A1714;
}

.c-cta {
  width: 100%;
  display:flex;
  gap: 4px;
}

.c-cta a {
  display: block;
  width: 100%;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  background-color: #DB0B1B;
  box-shadow: 0px 10px 30px -8px #C8102E80;
  color: #FBF7EF;
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding: 12px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

.c-cta a.-black {
  background-color: #3C3631;
  box-shadow: 0px 10px 30px -8px #3C363180;
}

@media screen and (max-width: 414px) {
  .c-cta a {
    font-size: calc((18 / 414) * 100vw);
  }
}

.c-section-title {
  font-size: 32px;
  color: #1A1714;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  margin: 32px 0 40px;
  padding-bottom: 14px;
  position: relative;
}

.c-section-title::after {
  content: "";
  position: absolute;
  background-color: #1A1714;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
}

.c-section-title.-yellow {
  color: #ffe600;
}
.c-section-title.-yellow::after {
  background-color: #ffe600;
}

.c-section-title.-red {
  color: #E60012;
}
.c-section-title.-red::after {
  background-color: #E60012;
}

.c-section-title.-white {
  color: #fff;
}
.c-section-title.-white::after {
  background-color: #fff;
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  padding: 2px 0;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .l-header { padding: 8px 0; }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}
@media screen and (max-width: 500px) {
  .l-header__inner { padding: 0 10px; }
}

.l-header__logo a { display: block; }
.l-header__logo img {
  width: 269px;
  height: 56px;
}
@media screen and (max-width: 959px) {
  .l-header__logo img {
    width: 212px;
    height: 44px;
  }
}

/* ====================
  PC 横ナビ（960px以上）
==================== */
.pc-side { display: none; }

@media screen and (min-width: 501px) {
  .pc-side {
    display: block;
    position: fixed;
    z-index: 0;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 61px);
    background-color: #F5F5F5;
  }
  .pc-side__inner { display: none; }
}

@media screen and (min-width: 960px) {
  .pc-side__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .pc-side__logo,
  .pc-side__nav {
    width: calc(50vw - 207px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pc-side__logo { padding: 0 calc((46 / 1440) * 100vw); }

  .pc-side__logo img {
    width: 100%;
    max-width: 421px;
    height: auto;
  }

  .pc-side__nav { 
    padding: 0 calc((64 / 1440) * 100vw);
  }

  .pc-side__anchor {
    width: 100%;
    max-width: 385px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pc-side__anchor li {
    width: 100%;
    border-bottom: 2px solid #E60012;
  }

  .pc-side__anchor li a {
    display: block;
    position: relative;
    padding: 8px 16px;
    padding-right: 32px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 2;
  }
  .pc-side__anchor li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    background-image: url("../img/icon-anchor-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
  }

  .pc-side__nav .c-cta {
    max-width: 385px;
    margin-top: 32px;
  }

  .pc-side__nav .c-cta a {
    position: relative;
    padding: 20.5px 50px 22.5px 18px;
    font-size: 24px;
    line-height: 1.125;
  }

  .pc-side__nav .c-cta a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 32px;
    height: 32px;
    background-image: url("../img/icon-cta-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
  }
}

@media screen and (max-height: 600px) {
  .pc-side__nav { display: none; }
}

/* ====================
  SP main
==================== */
.sp-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(90deg, #FFFFFF 0%, #F5F5F5 100%);
}
@media screen and (min-width: 501px) {
  .sp-wrapper {
    max-width: 414px;
    box-shadow: 0px 0px 40px #1A17141A;
  }
}

/* ====================
  MV
==================== */
.p-mv {
  padding: 0 20px;
}

.p-mv__inner {
  padding: 80px 0;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-mv__title {
  padding: 0 24px;
  margin: 24px 0 40px;
}

.p-mv__lead {
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.p-mv__lead p {
  margin-bottom: 16px;
}
.p-mv__lead p:last-child {
  margin-bottom: 0;
}

.u-marker {
  color: #E60012;
  font-weight: 900;
  background: linear-gradient(transparent 75%, #FBE732 75%);
}

/* ====================
  background
==================== */
.p-background {
  background-color: #000;
  padding: 80px 20px;
  color: #fff;
}

.p-background__lead {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 414px) {
  .p-background__lead {
    font-size: calc((24 / 414) * 100vw);
  }
}

.p-background__body {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

.p-background__body p {
  margin-bottom: 16px;
}
.p-background__body p:last-child {
  margin-bottom: 0;
}

.p-background__message-box {
  background-color: #FFFFFF4D;
  border-radius: 16px;
  padding: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.p-background__message-text {
  text-align: left;
  margin-bottom: 10px;
}

/* =========================================
  promise
========================================= */
.p-promise {
  background-color: #fff;
  padding: 80px 20px;
}

.p-promise__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-promise__item {
  background-position: right top;
  background-size: 125px 125px;
  background-repeat: no-repeat;
}
@media (max-width: 414px) {
  .p-promise__item {
    background-size: calc((125 / 414) * 100vw) calc((125 / 414) * 100vw);
  }
}
.p-promise__item:nth-child(1) {
  background-image: url("../img/icon-promise-01.svg");
}
.p-promise__item:nth-child(2) {
  background-image: url("../img/icon-promise-02.svg");
}
.p-promise__item:nth-child(3) {
  background-image: url("../img/icon-promise-03.svg");
}


.p-promise__item-num {
  height: 34.560001373291016px;
  margin-bottom: 8px;
}

.p-promise__item-num img {
  height: 100%;
}

.p-promise__item-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.44px;
  margin-bottom: 16px;
  color: #2A2A2A;
}

.p-promise__item-desc {
  padding-right: 21px;
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

/* =========================================
  makers
========================================= */
.p-makers {
  background-color: #fff;
  padding: 0 20px 125px;
}

.p-makers__text {
  text-align: left;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
  margin-bottom: 40px;
}

.p-makers__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: start;
}

.p-makers__item {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 18px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.75;
  color: #2A2A2A;
}

.p-makers__item.-honda {
  padding-top: 22px;
  background-color: #E60012;
  color: #fff;
  position: relative;
}

.p-makers__badge {
  position: absolute;
  width: 106px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #E60012;
  border: 2px solid #E60012;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.75;
  padding: 3px 12.5px 4.5px;
  letter-spacing: 1px;
}

/* ====================
  1日のスケジュール
==================== */
.p-services {
  position: relative;
  background-color: #E60012;
  padding-top: 75px; 
  padding-bottom: 80px;
}
.p-services::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url('../img/bg-services.svg'); 
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.p-services__inner  {
  padding: 0 20px;
}

.p-services__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.p-services__item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 26px;
  color: #2A2A2A;
}

.p-services__item:nth-child(even) {
  background-color: #FFE5E5;
}

.p-services__name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.75;
  margin-bottom: 7px;
}

.p-services__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

/* ====================
  message
==================== */
.p-message {
  padding: 0 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.p-message__inner {
  padding: 80px 0;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-message__body {
  margin-bottom: 24px;
}

.p-message__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #2A2A2A;
  margin-bottom: 8px;
}
.p-message__text:last-child {
  margin-bottom: 0;
}
.p-message__text .-red {
  color: #E60012;
}

.p-message__signature {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: #2A2A2A;
}

/* ====================
  Q&A
==================== */
.p-faq {
  padding: 0 20px;
}

.p-faq__inner {
  padding: 80px 0;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-faq__item {
  border-bottom: 1px solid #E8E8E8;
  padding: 8px 0;
}

.p-faq__question {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__q-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 33px;
  border-radius: 999px;
  background-color: #E60012;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0.6px;
  flex-shrink: 0;
  margin-right: 16px;
}

.p-faq__q-text {
  flex-grow: 1;
  text-align: left;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #2A2A2A;
  padding-right: 20px;
}

.p-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #E60012;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-faq__icon::before {
  width: 19px;
  height: 4px;
}
.p-faq__icon::after {
  width: 4px;
  height: 19px;
}

.p-faq__item[open] .p-faq__icon {
  transform: rotate(90deg);
}

.p-faq__item[open] .p-faq__icon::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.p-faq__answer {
  text-align: left;
  margin-top: 10px;
  color: #3C3631;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* ====================
  Footer
==================== */
.l-footer {
  padding: 140px 20px;
  background-color: #E60012;
  color: #fff;
}

.l-footer__title {
  padding: 0 24px;
  margin-bottom: 24px;
}

.l-footer__desc {
  margin-bottom: 49px;
  text-align: left;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.l-footer__contact {
  margin-top: 24px;
}

.l-footer__tel {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: 42px;
}

.l-footer__time {
  margin-top: 4px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}
