@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 769px) {
  html {
    font-size: min(0.715vw, 10px);
    scroll-padding-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", sans-serif;
  margin: 0;
  color: #000000;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  overflow-x: hidden;
  margin-inline: auto;
  width: 100%;
}
body.bg-fixed {
  overflow: hidden;
}

main {
  display: block;
}
main a {
  color: #000000;
}

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

ul,
ol {
  list-style: none;
}

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

svg,
img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

/* pagetop
---------------------------*/
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 52;
}

.pagetop > a {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #00a7e3;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .pagetop > a {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetop > a {
    width: 8rem;
    height: 8rem;
  }
}

.pagetop > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (min-width: 769px) {
  .pagetop > a::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetop > a::before {
    width: 2rem;
    height: 2rem;
  }
}

@media only screen and (max-width: 959px) {
  .pagetop {
    bottom: 0;
    right: 0;
  }
  .pagetop > a {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
.bread {
  padding-top: 2rem;
}
.bread__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bread__slash {
  font-size: 1.2rem;
}
.bread__item {
  font-size: 1.2rem;
  white-space: nowrap;
}
.bread__item a:hover {
  color: var(--primary);
}
.bread__item:first-of-type {
  padding-right: 0.6rem;
}
.bread__item:last-of-type {
  padding-left: 0.6rem;
}