@charset "UTF-8";

:root {
  --font-noto-sans: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  --color-red: #ad2b19;
  --color-white: #ffffff;
  --color-gray: #f0f0f0;
  --color-blue: #00aaff;
  --color-pink: #ffe1e4;
  --color-yellow: #ffff00;
}

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}

@media (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.694444444vw;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 1.33333333vw;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-noto-sans);
}

/*--------------------------------
 common
---------------------------------*/

a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: initial;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: revert;
  }
}

button {
  display: block;
}

[disabled] {
  pointer-events: none;
}

ul li {
  list-style:none;
}

summary {
  cursor: pointer;
  list-style: none;
  &::-webkit-details-marker {
    display: none;
  }
}


/*--------------------------------
 header
---------------------------------*/
.header {
  width: 100%;
  padding: 1.3rem 0;
  text-align: center;
  transition: top 0.8s;
}

.header .header__logo {
  width: 28rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}

.header .header__logo img {
  width: 100%;
  height: auto;
}

.header .inner {
  position: relative;
  width: 75rem;
  margin: 0 auto;
}

/*--------------------------------
 footer
---------------------------------*/
.footer {
  margin-block: 0 12rem;
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}

.footer .logo {
  padding: 0 0 1rem;
}

.footer .logo span {
  display: block;
  width: 6.6rem;
  margin: 0 auto 5.5rem;
  cursor: pointer;
}

.footer .logo a {
  display: inline-block;
  width: 28rem;
}
.footer .logo a img {
  width: 100%;
  height: auto;
}

.footer .copyright {
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .footer {
    margin-block: 0 15rem;
  }
}

/*--------------------------------
 floating-banner
---------------------------------*/
.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-red);
  width: 100%;
  height: 120px;
  z-index: 101;
}
.floating-banner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 35px;
  height: 100%;
}
.floating-banner ul li:nth-of-type(1) {
  width: 183px;
}
.floating-banner ul li:nth-of-type(2) {
  width: 192px;
}
.floating-banner ul li figure img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .floating-banner {
    height: 15rem;
  }
  .floating-banner ul {
    gap: 0 5.5rem;
  }
  .floating-banner ul li:nth-of-type(1) {
    width: 24.4rem;
  }
  .floating-banner ul li:nth-of-type(2) {
    width: 26.4rem;
  }
}