@charset "utf-8";

:root {
  --color-1: #F87F84;
  --color-2: #CFA95E;
  --font-mincho: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --font-gothic: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  color: #333333;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

body {
  max-width: 100%;
  display: block;
  font-family: var(--font-gothic);
}

body img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.u-text-color-1 {
  color: var(--color-1);
}

header {
  height: 120px;
  display: flex;
  align-items: center;
}

.header__inner {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-wrap {
  width: 135px;
  height: fit-content;
}

.inquiry-link {
  max-width: 350px;
  width: 100%;
  display: flex;
  line-height: 1.5;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  color: #ffffff;
  border: 2px solid var(--color-2);
  font-weight: 600;
  font-size: 24px;
  padding: 8px;
  gap: 4px;
  font-family: var(--font-mincho);
  transition: all 0.2s;
}

.inquiry-link::after {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.inquiry-link:hover {
  opacity: 0.8;
}

.kv {
  width: 100%;
  margin: 0 auto;
}

.kv__img {
  width: 100%;
}

.renewal {
  margin-top: 40px;
}

.renewal__inner {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
}

.renewal-info {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  font-family: var(--font-mincho);
}

.renewal-info__text--large {
  font-feature-settings: "palt";
  font-size: 48px;
}

.renewal-info__text--small {
  font-feature-settings: "palt";
  font-size: 32px;
}

.renewal__txt {
  margin-top: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  font-family: var(--font-gothic);
}

.banner-list {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  max-width: 100%;
}

.banner-list__item {
  width: 100%;
  display: block;
  transition: all 0.2s;
}

.banner-list__item:hover {
  opacity: 0.8;
}

.banner-list__image {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

footer {
  margin-bottom: 96px;
}

.footer__inner {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.annotation-txt {
  font-size: 14px;
  color: inherit;
}

.footer-btm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.footer__inquiry-link {
  margin: 0 auto;
}

.footer__txt {
  font-size: 16px;
  line-height: 1.5;
}

.footer-btm__name {
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-2);
  margin-bottom: 12px;
  font-family: var(--font-mincho);
}

.footer-btm__name--small {
  font-size: 16px;
}

.copyright {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.float {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--color-1);
  padding: 12px 16px;
  text-align: center;
}

.float__tel-wrap {
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  font-family: var(--font-mincho);
}

.float__tel-txt {
  color: #ffffff;
  font-size: 32px;
}

.float__tel-link {
  font-size: 48px;
  color: #ffffff;
}

.float__txt {
  color: #ffffff;
  font-size: 16px;
  margin-top: 4px;
  font-weight: bold;
  font-family: var(--font-gothic);
}

@media screen and (min-width:769px) {
  .c-only-sp {
    display: none;
  }
  .float__tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width:768px) {
  .c-only-pc {
    display: none;
  }

  header {
    height: 60px;
  }

  .header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    justify-content: space-between;
  }

  .header__logo-wrap {
    width: 71px;
  }

  .inquiry-link {
    max-width: 190px;
    font-size: 16px;
  }

  .inquiry-link::after {
    width: 6px;
    height: 6px;
  }

  .renewal {
    margin-top: 30px;
  }

  .renewal__inner {
    width: 100%;
    padding: 0 12px;
  }

  .renewal-info {
    font-size: 16px;
  }

  .renewal-info__text--large {
    font-size: 30px;
  }

  .renewal-info__text--small {
    font-size: 24px;
  }

  .renewal__txt {
    font-size: 14px;
  }

  .banner-list {
    margin-top: 24px;
    flex-direction: column;
  }

  footer {
    margin-bottom: 96px;
  }

  .footer__inner {
    width: 100%;
    padding: 40px 16px;
  }

  .footer-btm {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .footer__inquiry-link {
    max-width: none;
    font-size: 24px;
  }

  .footer__inquiry-link::after {
    width: 10px;
    height: 10px;
  }

  .footer__txt {
    font-size: 16px;
    text-align: center;
  }

  .footer__txt:nth-of-type(2) {
    margin-top: 0;
  }
  .float__tel-txt {
    font-size: 24px;
  }

  .float__tel-link {
    font-size: 42px;
  }

  .float__txt {
    font-size: 14px;
  }
  
  .float__txt .annotation-txt {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
  }

}
