.indexContents {
  background-color: #26C9AE;
  overflow: hidden;
}

.indexSectionTitle {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  font-weight: bold;
  line-height: 1.2;
}

.indexSectionTitleLabel {
  color: #0E6355;
  font-size: 5.5rem;
}

.indexSectionTitleText {
  color: #333;
  font-size: 1.5rem;
}

.indexMoreButton {
  background-color: #0E6355;
  border: 2px solid #0E6355;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  max-width: 180px;
  width: 100%;
  padding: 0.75em 1.75em;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.indexMoreButton:after {
  content: "";
  display: block;
  background-color: #0E6355;
  border: solid 3px #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 1px;
  right: 1.5em;
  transition: background 0.3s, border 0.3s;
}
.indexMoreButton:hover {
  background-color: #fff;
  color: #0E6355;
}
.indexMoreButton:hover:after {
  background-color: #fff;
  border: solid 3px #0E6355;
}

.hero {
  padding: 130px 0 40px;
}

.about {
  background-color: #fff;
  border-radius: 100px 0 0 0;
  position: relative;
}

.aboutContents {
  gap: 0 8%;
  padding: 95px 0 50px;
}
.aboutContents .c-gridImgBox {
  display: none;
}

.aboutFeeLink {
  border: none;
  background-color: transparent;
  background-color: #FF4545;
  border: 2px solid #FF4545;
  border-radius: 20px 0 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  width: fit-content;
  padding: 1.25em 1.75em;
  position: absolute;
  top: -1em;
  right: 0;
  transition: background 0.3s, color 0.3s;
}
.aboutFeeLink:before {
  content: "";
  display: block;
  background-image: url(../images/icon-list-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  width: 26px;
  height: 26px;
  min-width: 26px;
  transition: background 0.3s;
}
.aboutFeeLink:hover {
  background-color: #fff;
  color: #FF4545;
}
.aboutFeeLink:hover:before {
  background-image: url(../images/icon-list-01.png);
}

.gallerySliderWrap {
  position: relative;
}
.gallerySliderWrap:after {
  content: "";
  display: block;
  background-color: #F2F2F2;
  width: 100%;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.gallerySlider {
  position: relative;
  z-index: 1;
}

.business {
  background-color: #F2F2F2;
  padding-top: 60px;
  position: relative;
  z-index: 0;
}
.business .c-maxContainer {
  position: relative;
}
.business .indexSectionTitle {
  position: relative;
  z-index: 1;
}

.businessImg01 {
  display: none;
  max-width: 220px;
  position: absolute;
  top: -75px;
  right: 15%;
  z-index: 0;
}

.businessImg02 {
  display: none;
  max-width: 65px;
  position: absolute;
  top: -60px;
  right: 2%;
  z-index: 0;
}

.businessList {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.businessListItem {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 20px 20px 30px;
}
.businessListItem .indexMoreButton {
  margin-inline: auto;
}

.businessListTitle {
  border-bottom: 1px solid;
  padding: 0.5em 0 0.75em;
}

.feeWrap {
  background-color: #F2F2F2;
  background-image: linear-gradient(90deg, #D7D7D7 1px, transparent 0), linear-gradient(#D7D7D7 1px, transparent 0);
  background-size: 80px 80px;
  margin-top: 40px;
  padding: 120px 0 60px;
}

.trivia {
  background-color: #26C9AE;
  padding: 50px 0 150px;
  position: relative;
  z-index: 1;
}
.trivia:before {
  content: "";
  display: block;
  background: url(../images/bg-cloud-01.png);
  animation: cloud 120s linear infinite;
  background-position-x: 0%;
  background-position-y: 0;
  background-repeat: no-repeat;
  background-size: 1440px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.trivia:after {
  content: "";
  display: block;
  background: url(../images/bg-cloud-02.png);
  animation: cloud 100s linear infinite;
  background-position-x: 0%;
  background-position-y: 0;
  background-repeat: no-repeat;
  background-size: 1440px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.trivia .c-maxContainer {
  position: relative;
  z-index: 1;
}

.bgCloud {
  background: url(../images/bg-cloud-03.png);
  animation: cloud 120s linear infinite;
  background-position-x: 0%;
  background-position-y: 0;
  background-repeat: no-repeat;
  background-size: 1440px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

@keyframes cloud {
  from {
    background-position-x: -1440px;
  }
  to {
    background-position-x: 1600px;
  }
}
.triviaTitle {
  max-width: 360px;
  width: 85%;
  margin-inline: auto;
  margin-bottom: 35px;
  filter: drop-shadow(0px 0px 5px #26c9ae);
}

.triviaLeadText {
  color: #fff;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  margin-bottom: 70px;
  filter: drop-shadow(0px 0px 5px #26c9ae);
}

.triviaLinkWrap {
  gap: 10px;
  max-width: 340px;
  margin-inline: auto;
}

.triviaLink {
  border: none;
  background-color: transparent;
  background-color: #fff;
  border-radius: 50px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  width: 100%;
  padding: 1.25em 1.75em;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  transition: background 0.3s, color 0.3s;
}
.triviaLink:hover {
  background-color: #0E6355;
  color: #fff;
}

.triviaIllustWrap {
  max-width: 1280px;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.triviaIllust01 {
  max-width: 84px;
  margin: auto;
  position: absolute;
  left: -60%;
  right: 0;
  bottom: -40px;
  z-index: 0;
}

.triviaIllust02 {
  max-width: 308px;
  margin: auto;
  position: absolute;
  left: 0;
  right: -50%;
  bottom: -40px;
  z-index: 0;
}

.news {
  background-color: #fff;
  padding: 100px 0 20px;
  position: relative;
  z-index: 0;
}

.newsContents {
  gap: 30px 8%;
}
.newsContents .c-noPost {
  display: block;
}
@media (min-width: 768px) {
  .indexSectionTitleLabel {
    font-size: 7.5rem;
  }
  .indexSectionTitleText {
    font-size: 1.6rem;
  }
  .aboutFeeLink {
    font-size: 2rem;
    top: -2em;
  }
  .business {
    padding-top: 100px;
  }
  .businessImg01 {
    display: block;
  }
  .businessImg02 {
    display: block;
  }
  .businessList {
    display: flex;
    flex-wrap: wrap;
  }
  .businessListItem {
    width: calc(50% - 15px);
    padding: 30px 30px 40px;
  }
  .feeWrap {
    background-size: 170px 170px;
    padding: 150px 0;
  }
  .trivia {
    padding: 60px 0 160px;
  }
  .triviaLeadText {
    margin-bottom: 40px;
  }
  .triviaIllust01 {
    max-width: 151px;
    left: 15px;
    right: auto;
  }
  .triviaIllust02 {
    max-width: 513px;
    left: auto;
    right: -5%;
    bottom: -45px;
  }
  .news {
    padding: 80px 0;
  }
}
@media (min-width: 960px) {
  .indexSectionTitleLabel {
    font-size: 9.5rem;
  }
  .aboutContents {
    grid-template-columns: 1fr 45%;
    padding: 130px 0 150px;
  }
  .aboutContents .c-gridImgBox {
    border-radius: 60px;
    display: block;
    max-width: 513px;
    overflow: hidden;
  }
  .businessImg01 {
    max-width: 382px;
    width: 26vw;
    top: 0;
    right: 13%;
  }
  .businessImg02 {
    max-width: 105px;
    width: 8vw;
    top: 0;
    right: 0;
  }
  .businessList {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
  }
  .businessListItem {
    width: 100%;
    padding: 30px 30px 40px;
  }
  .businessListItem:nth-child(2) {
    margin-top: 70px;
  }
  .businessListItem:nth-child(3) {
    margin-top: 140px;
  }
  .feeWrap {
    margin-top: -30px;
    padding: 180px 0;
  }
  .trivia {
    padding: 60px 0 110px;
  }
  .triviaIllust01 {
    bottom: -30px;
  }
  .triviaIllust02 {
    bottom: -30px;
  }
  .newsContents {
    grid-template-columns: 320px 1fr;
  }
}
@media (min-width: 1080px) {
  .newsContents {
    gap: 30px 12%;
  }
}

/*# sourceMappingURL=index.css.map*/