@charset "UTF-8";
html {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #faf4ea;
  margin: 30px 0;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}
body p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.4s;
}

a img {
  border-style: none;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.entry-header {
  display: none;
}

.leftTxt {
  text-align: left;
}

.rightTxt {
  text-align: right;
}

.centerTxt {
  text-align: center;
}

.anchor {
  display: block;
  padding-top: 20px;
  margin-top: -20px;
}

.atteTxtWrap {
  margin: 24px 0;
}

.attentionTxt {
  margin-left: 1em;
  text-indent: -1em;
}

.atteTxt {
  font-size: 1.4rem;
  line-height: 1.8em;
}

/* contants */
main {
  padding: 20px 0;
}

.petKiyaku {
  background-color: #fff;
  border-radius: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .petKiyaku {
    padding: 32px 24px;
  }
}
.petKiyaku p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .petKiyaku p {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
}
.petKiyaku p a {
  color: #502219;
  text-decoration: underline;
}
.petKiyaku p a:hover {
  text-decoration: none;
}
.petKiyaku h1 {
  color: #502219;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 32px;
  border-bottom: 4px double #502219;
  display: inline-block;
  padding: 12px 4px 12px;
}
@media screen and (max-width: 768px) {
  .petKiyaku h1 {
    font-size: 2rem;
  }
}
.petKiyaku h2 {
  color: #D04B18;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 80px 0 24px;
}
@media screen and (max-width: 768px) {
  .petKiyaku h2 {
    font-size: 1.8rem;
    margin: 40px 0 24px;
  }
}
.petKiyaku h3 {
  color: #687935;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.petKiyaku .sectionL li {
  color: #D04B18;
  font-weight: bold;
  list-style: decimal;
  margin: 0 0 0 32px;
}
.petKiyaku .sectionL li h2 {
  color: #D04B18;
}
.petKiyaku .sectionL li h3 {
  color: #D04B18;
}
.petKiyaku .sectionL li p {
  font-weight: normal;
}
.petKiyaku .sectionL .sectionS li {
  color: #687935;
  list-style-type: upper-roman;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .petKiyaku .sectionL .sectionS li {
    margin: 0 0 0 20px;
  }
}
.petKiyaku .sectionL .sectionS li h3 {
  color: #687935;
  margin: 40px 0 8px;
}
.petKiyaku .sectionL .sectionS li .attentionTxt {
  margin: 0 0 16px;
}

.mainTitle {
  color: #502219;
  text-align: center;
  font-size: 4.8rem;
  padding: 88px 0;
}
@media screen and (max-width: 768px) {
  .mainTitle {
    font-size: 3.2rem;
    padding: 64px 0;
  }
}
@media screen and (max-width: 450px) {
  .mainTitle {
    font-size: 2.4rem;
    padding: 32px 0;
  }
}

.pageLinkWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  row-gap: 24px;
  align-items: center;
}
.pageLinkWrap .pageLinkInner {
  position: relative;
  display: inline-block;
  padding-right: 48px; /* 矢印ぶん */
  background-color: #502219;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 24px 16px;
  border-radius: 50px;
  width: 47%;
}
.pageLinkWrap .pageLinkInner::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/arrow_wh.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.pageLinkWrap .pageLinkInner:hover::after {
  transform: translateY(-40%); /* 中心より少し下げる */
}
@media screen and (max-width: 768px) {
  .pageLinkWrap .pageLinkInner {
    font-size: 1.4rem;
    padding: 16px 8px;
    width: 100%;
  }
}

.copyTxt {
  display: inline-block;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 20px 30px;
  width: 100%;
}

/* go top */
.goTopWrap {
  position: relative;
}
.goTopWrap .goTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
}
@media screen and (max-width: 450px) {
  .goTopWrap .goTop {
    right: 12px;
  }
}
.goTopWrap .goTop img {
  opacity: 1;
  height: auto;
  width: 64px;
}
@media screen and (max-width: 768px) {
  .goTopWrap .goTop img {
    width: 48px;
  }
}
.goTopWrap .goTop:hover {
  opacity: 1;
  transform: translateY(-6px);
}

/* fade */
.scroll_fadein {
  opacity: 0;
}

.fadein_animation_start {
  animation-name: fadein_animation;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

/* blank */
.pcBlank {
  display: none;
}
@media screen and (max-width: 450px) {
  .pcBlank {
    display: block;
  }
}

.spBlank {
  display: block;
}
@media screen and (max-width: 450px) {
  .spBlank {
    display: none;
  }
}

.pcBlankTab {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcBlankTab {
    display: block;
  }
}

.tabBlank {
  display: block;
}
@media screen and (max-width: 768px) {
  .tabBlank {
    display: none;
  }
}

.pcBlankSpc {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pcBlankSpc {
    display: block;
  }
}

.spcBlank {
  display: block;
}
@media screen and (max-width: 1024px) {
  .spcBlank {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */