@charset "UTF-8";
/*
==========================================================================

setting.scss

==========================================================================
*/
/*
==========================================================================

base.scss

==========================================================================
*/
_:-ms-lang(x)::-ms-backdrop, body {
  line-height: 2;
}
_:-ms-lang(x)::-ms-backdrop .card-deck, body .card-deck {
  display: block;
}
_:-ms-lang(x)::-ms-backdrop .card-deck .card, body .card-deck .card {
  display: block;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 1px;
  background-color: #e7f5fc;
  color: #000000;
}

body, #wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

p {
  margin-bottom: 0;
}

.arrow {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: right;
  padding-right: 3rem;
  font-size: 70%;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #000000;
  transition: 0.3s;
}
.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.arrow:hover::before {
  right: 10px;
  width: 30px;
}
.arrow:hover::after {
  right: 10px;
}
/* -------------------------------------------------------------------------------- */
/*     部品　　　                                                                     */
/* -------------------------------------------------------------------------------- */
.f-15{
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.5rem) !important;
}
.fc-red{
  color: #dc3545;
  font-weight: 600;
}
/* -------------------------------------------------------------------------------- */
/*      フッター                                                                     */
/* -------------------------------------------------------------------------------- */
footer {
  position: relative;
  background-color: navy;
}

footer .copy-area {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #ffffff;
  text-align: center;
}

/* -------------------------------------------------------------------------------- */
/*      上に戻るボタン                                                              */
/* -------------------------------------------------------------------------------- */
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #8c9595;
  border: solid 1px #8c9595;
  background: #ffffff;
  opacity: 0;
  z-index: 10;
}

.pagetop:hover {
  box-shadow: 0 0 10px #8c9595;
}