@charset "utf-8";
/* CSS Document */
.main-contents {
  width: 100%;
  background: linear-gradient(135deg, #fee764, #b3e0ff, #ff8b9a);
  background-size: 200% 200%;
  animation: bggradient 16s ease infinite;
}
@keyframes bggradient {
  0%{background-position: 0% 50%;}
  50%{background-position: 100% 50%;}
  100%{background-position: 0% 50%;}
}
.title-main {
  color: #fff;
  font-size: 3.5rem;
  line-height: 5rem;
  text-align: left;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.contents-wrap {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 10%;
}
.contents-inWrap {
  width: 100%;
  padding-top: 10%;
  text-align: left;
}
.contents-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 5rem;
  margin-bottom: 5%;
}
.contents-title span {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contents-title span::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 40px;
  height: 2px;
  background-color: #333;
}
.outline-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10%;
}
.grid-text {
  width: 50%;
}
.grid-text p {
  font-weight: 600;
  line-height: 3.4rem;
  padding-right: 4%;
  text-align: justify;
}
.grid-img {
  width: 40%;
  height: auto;
}
.grid-img img {
  width: 100%;
  height: auto;
}
@media(max-width: 900px) {
  .outline-grid {
    display: block;
  }
  .grid-text {
    width: 100%;
  }
  .grid-text p {
    padding-right: 0;
    font-size: 1.3rem;
    line-height: 2.6rem;
  }
  .grid-img {
    width: 70%;
    padding-top: 5%;
    margin: 0 auto;
  }
  .contents-title {
    font-size: 2rem;
  }
  .contents-title span::before {
    content: "";
    margin-right: 10px;
    width: 20px;
  }
}

/*方針セクション*/
.policy {
  width: 100%;
  max-width: 900px;
  padding: 10% 0;
}
.policy-message {
  margin-bottom: 6%;
  border-top: 1px solid #edfafa;
  padding-top: 4%;
}
.policy-text {
  font-size: 2rem;
  line-height: 4.6rem;
  font-weight: 600;
  text-align: justify;
}
.policy-sign {
  text-align: right;
}
.policy-sign p {
  font-weight: 600;
  margin-bottom: 1.4%;
}
.position {
  font-size: 1.8rem;
}
.name {
  font-size: 2rem;
  border-bottom: 1px solid #edfafa;
  padding-bottom: 4%;
}

@media(max-width: 900px) {
  .policy-text {
    font-size: 1.6rem;
    line-height: 3.7rem;
  }
  .policy-sign p {
    margin-bottom: 0.5%;
  }
  .date {
    font-size: 1rem;
  }
  .position {
    font-size: 1.2rem;
  }
  .name {
    font-size: 1.4rem;
  }
}

/*詳細セクション*/
.detail {
  padding-top: 5%;
}
.detail-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10%;
}
.detail-message {
  width: 65%;
  padding-right: 3%;
}
.detail-title {
  color: #333;
  font-size: 2.4rem;
  font-weight: 600;
}
.detail-text {
  font-weight: 600;
  line-height: 3.2rem;
  padding-top: 3%;
  text-align: justify;
}
.detail-text a {
  color: #9B3000;
}
.detail-imgWrap {
  align-self: flex-end;
}
.detail-imgWrap__icon {
  display: flex;
  gap: 15px;
}
.detail-imgWrap__icon img {
  width: 50px;
  height: 50px;
}

@media(max-width: 900px) {
  .detail-grid {
    display: block;
  }
  .detail-message {
    width: 100%;
    padding-right: 0;
  }
  .detail-imgWrap {
    padding-top: 15%;
    margin-bottom: 20%;
  }
  .detail-title {
    font-size: 1.8rem;
    margin-bottom: 3%;
  }
  .detail-text {
    font-size: 1.3rem;
    line-height: 2.6rem;
  }
}


.l-message {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 15% 0;
}
.l-message span {
  display: inline-block;
  color: #fff;
  font-size: 3.7rem;
  font-weight: 600;
  line-height: 10rem;
}

@media(max-width: 900px) {
  .l-message span {
    font-size: 2.6rem;
    line-height: 6rem;
  }
}

.footer-menu__list li a {
  color: #fff;
}