@charset "UTF-8";
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

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

/* 共通
---------------------------------------*/
.inner {
  margin: 0 auto;
}

html {
  font-size: 62.5%;
  line-height: 1;
}

body {
  margin-top: 118px;
  font-size: 16px;
  line-height: 1;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}
body p {
  text-align: justify;
  line-height: 2;
}
@media (max-width: 767px) {
  body {
    margin-top: 60px;
  }
  body.active {
    overflow-y: hidden;
  }
}
body a {
  color: #111;
}

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

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a:link {
  text-decoration: none;
}
a:hover, a:active {
  opacity: 0.7;
}
a:visited {
  color: #000;
}

.clearfix {
  display: flex;
}

.mainv {
  height: 300px;
  position: relative;
}
.mainv .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mainv .cover {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.mainv .cover h1, .mainv .cover .h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}
.mainv .cover span {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mainv .cover h1, .mainv .cover .h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .mainv .cover span {
    font-size: 14px;
  }
}

.bread {
  margin-top: 20px;
  margin-bottom: 120px;
}
.bread .inner {
  width: 1000px;
}
.bread ul {
  display: flex;
  align-items: center;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
  overflow-y: hidden;
  overflow-x: scroll;
  padding-bottom: 5px;
}
.bread ul li {
  position: relative;
  padding-right: 16px;
  white-space: nowrap;
}
.bread ul li::after {
  content: ">";
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.bread ul li:last-of-type {
  padding-right: 0;
}
.bread ul li:last-of-type::after {
  content: none;
}
.bread ul li:last-of-type a:hover {
  opacity: 1;
}
.bread ul li a {
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .bread {
    margin-bottom: 50px;
  }
  .bread .inner {
    width: calc(100% - 40px);
  }
}

.page-content .inner {
  width: 1000px;
  padding-bottom: 60px;
}
.page-content p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}
.page-content h2 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid #92c48c;
  margin-bottom: 24px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .page-content .inner {
    width: calc(100% - 40px);
  }
}