@charset "UTF-8";
body {
  line-height: 1.8;
}

a {
  cursor: pointer;
  color: #ffffff;
}

.wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
.wrapper > * {
  width: 100%;
  box-sizing: border-box;
}
.wrapper > * > * .cont {
  max-width: 980px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 2% 0;
}
@media screen and (max-width: 1200px) {
  .wrapper > * > * .cont {
    max-width: clamp(530px, 55.2vw, 630px);
  }
}
@media screen and (max-width: 980px) {
  .wrapper > * > * .cont {
    max-width: clamp(430px, 57.33vw, 530px);
  }
}
@media screen and (max-width: 768px) {
  .wrapper > * > * .cont {
    max-width: none;
    padding: 2%;
  }
}
.wrapper .main .cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-block img {
  display: block;
  width: 100%;
}

.footer {
  padding: 20px 0 30px;
  background-color: #528f55;
  color: #ffffff;
  text-align: center;
}
.footer .lists {
  margin-bottom: 16px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .footer .lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 980px) {
  .footer .lists .list {
    margin-bottom: 10px;
  }
}
.footer .lists .list > .link {
  padding: 10px 20px;
}
.footer .lists .list:nth-child(2) > .link {
  position: relative;
}
.footer .lists .list:nth-child(2) > .link::before, .footer .lists .list:nth-child(2) > .link::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #ffffff;
  position: absolute;
}
@media screen and (max-width: 980px) {
  .footer .lists .list:nth-child(2) > .link::before, .footer .lists .list:nth-child(2) > .link::after {
    display: none;
  }
}
.footer .lists .list:nth-child(2) > .link::before {
  top: 13px;
  left: 0;
}
.footer .lists .list:nth-child(2) > .link::after {
  top: 13px;
  left: 197px;
}
.footer .copyright {
  font-size: 16px;
  color: #ffffff;
}

.fadeInUpTrigger {
  opacity: 0; /* 初期状態で非表示 */
}

.in-view {
  opacity: 1; /* 表示状態 */
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.show {
  opacity: 1;
}

.policy .wrapper, .sctl .wrapper, .tos .wrapper {
  background-color: #528f55;
}
.policy .header .cont, .policy .main .cont, .sctl .header .cont, .sctl .main .cont, .tos .header .cont, .tos .main .cont {
  max-width: none;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  padding: 20px 30px;
}
@media screen and (max-width: 980px) {
  .policy .header .cont, .policy .main .cont, .sctl .header .cont, .sctl .main .cont, .tos .header .cont, .tos .main .cont {
    padding: 2% 3%;
  }
}
.policy .header .box, .sctl .header .box, .tos .header .box {
  padding: 2% 3% 0;
}
.policy .header .title, .sctl .header .title, .tos .header .title {
  max-width: 1200px;
  width: 100%;
  background-color: #ffffff;
  font-size: 30px;
}
@media screen and (max-width: 576px) {
  .policy .header .title, .sctl .header .title, .tos .header .title {
    font-size: clamp(22px, 6.28vw, 30px);
  }
}
.policy .header .text, .sctl .header .text, .tos .header .text {
  padding: 10% 0 20px;
  font-weight: bold;
  text-align: center;
}
.policy .main .kiyaku, .sctl .main .kiyaku, .tos .main .kiyaku {
  padding: 0 3%;
}
.policy .main .kiyaku .item, .sctl .main .kiyaku .item, .tos .main .kiyaku .item {
  max-width: 1200px;
  width: 100%;
}
.policy .main .kiyaku .item-title, .sctl .main .kiyaku .item-title, .tos .main .kiyaku .item-title {
  border-bottom: solid 4px #528f55;
  padding: 10px 2%;
  margin: 20px 0;
}
.policy .main .kiyaku .item-title .title, .sctl .main .kiyaku .item-title .title, .tos .main .kiyaku .item-title .title {
  padding: 0;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .policy .main .kiyaku .item-title .title, .sctl .main .kiyaku .item-title .title, .tos .main .kiyaku .item-title .title {
    font-size: clamp(18px, 5.14vw, 20px);
  }
}
.policy .main .kiyaku .item-desc, .policy .main .kiyaku .item-ul, .policy .main .kiyaku .item-ol, .policy .main .kiyaku .item-info, .sctl .main .kiyaku .item-desc, .sctl .main .kiyaku .item-ul, .sctl .main .kiyaku .item-ol, .sctl .main .kiyaku .item-info, .tos .main .kiyaku .item-desc, .tos .main .kiyaku .item-ul, .tos .main .kiyaku .item-ol, .tos .main .kiyaku .item-info {
  padding: 10px 2%;
}
.policy .main .kiyaku .item-ul, .sctl .main .kiyaku .item-ul, .tos .main .kiyaku .item-ul {
  list-style-type: disc;
}
.policy .main .kiyaku .item-ul .list, .sctl .main .kiyaku .item-ul .list, .tos .main .kiyaku .item-ul .list {
  margin-left: 17px;
}
.policy .footer, .sctl .footer, .tos .footer {
  background-color: #528f55;
  color: #222222;
}

.sctl .header .title {
  border-bottom: solid 4px #528f55;
}
.sctl .hyou {
  padding: 0 3%;
}
.sctl .hyou .overview {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 2%;
}
.sctl .hyou .overview .dl {
  width: 100%;
  border: solid 1px #999;
}
.sctl .hyou .overview .dl_flex {
  display: flex;
  align-items: center;
  border-collapse: collapse;
  border-top: solid 1px #999;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  .sctl .hyou .overview .dl_flex {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.sctl .hyou .overview .dl_flex .dt_wrap {
  width: 30%;
  font-weight: normal;
  background-color: #f5f5f5;
  padding: 20px 0;
}
@media screen and (max-width: 980px) {
  .sctl .hyou .overview .dl_flex .dt_wrap {
    width: 100%;
    padding: 10px 0;
  }
}
.sctl .hyou .overview .dl_flex .dt_wrap .dt {
  margin-left: 8%;
}
@media screen and (max-width: 980px) {
  .sctl .hyou .overview .dl_flex .dt_wrap .dt {
    width: 100%;
    font-size: clamp(0.75rem, 0.545rem + 0.94vw, 1.125rem);
    margin-left: 0;
    padding-left: 5%;
  }
}
.sctl .hyou .overview .dl_flex .dd {
  width: 70%;
  margin: 0;
  margin-left: 5%;
}
@media screen and (max-width: 980px) {
  .sctl .hyou .overview .dl_flex .dd {
    width: 100%;
    font-size: clamp(0.75rem, 0.545rem + 0.94vw, 1.125rem);
    padding: 15px 0;
    margin-left: 0;
    padding-left: 5%;
  }
}
.sctl .item-ul {
  margin-left: 0;
}
.sctl .item-li {
  list-style-type: disc;
  list-style-position: inside;
}

.tos .kiyaku .item .end {
  text-align: right;
}
.tos .kiyaku .item .days, .tos .kiyaku .item .company {
  padding: 3% 2% 4%;
}/*# sourceMappingURL=style.css.map */