@charset "UTF-8";
.about-heading {
  text-align: center;
}

.section-about {
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .section-about {
    padding-top: 0;
  }
}
.section-about .intro-group {
  align-items: center;
  gap: 1.8rem min(6vw, 8rem);
}
.section-about .intro-group .img {
  flex-shrink: 0;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-about .intro-group .img {
    width: 100%;
  }
}
.section-about .intro-group .img img {
  border-radius: 0.8rem;
}
.section-about .intro-group .img figcaption {
  width: fit-content;
  margin: 1rem auto 0;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .section-about .intro-group .img figcaption {
    font-size: 1.2rem;
  }
}
.section-about .intro-group .content {
  flex: 1;
  font-weight: bold;
}
.section-about .intro-group .ttl {
  margin-bottom: 3rem;
  font-size: var(--heading-md);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .section-about .intro-group .ttl {
    margin-bottom: 1rem;
  }
}
.section-about .intro-group .txt {
  font-size: min(1.8vw, 1.8rem);
  line-height: 2.14;
}
@media screen and (max-width: 767px) {
  .section-about .intro-group .txt {
    font-size: 1.5rem;
  }
}

.section-message {
  overflow: hidden;
  text-align: center;
}
.section-message .c-section-inner {
  position: relative;
  z-index: 0;
}
.section-message .message-body {
  padding-block: 106px 198px;
}
@media screen and (max-width: 767px) {
  .section-message .message-body {
    padding-block: 5rem 0;
  }
}
.section-message .message-txt {
  margin-top: 4.8rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.14;
}
@media screen and (max-width: 767px) {
  .section-message .message-txt {
    margin-top: 2.8rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 640px) {
  .section-message .message-txt {
    text-align: left;
  }
}
.section-message .message-txt p + p {
  margin-top: 1em;
}
.section-message .message-txt .gap-top {
  margin-top: 3.3em;
}
@media screen and (max-width: 767px) {
  .section-message .message-txt .gap-top {
    margin-top: 2.7em;
  }
}
.section-message .more-link {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .section-message .more-link {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section-message .message-images {
    max-width: 500px;
    margin-inline: auto;
  }
}
.section-message .message-images .credit {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section-message .message-images .credit {
    position: absolute;
    left: 50%;
    bottom: -2em;
    max-width: 1320px;
    width: calc(100vw - var(--section-gap) * 2);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .section-message .message-images .credit {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }
}
.section-message .message-img {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .section-message .message-img {
    position: relative;
  }
}
.section-message .message-img.-img01 {
  top: 0;
  left: calc(50% - 600px);
}
@media screen and (max-width: 767px) {
  .section-message .message-img.-img01 {
    left: auto;
    width: 53.14%;
    z-index: 3;
  }
}
.section-message .message-img.-img02 {
  bottom: 8.4rem;
  left: calc(50% + 350px);
}
@media screen and (max-width: 767px) {
  .section-message .message-img.-img02 {
    bottom: auto;
    left: auto;
    z-index: 2;
    width: 75.23%;
    margin: -12% 0 0 auto;
    aspect-ratio: 252/276;
    object-fit: cover;
    object-position: 50% 100%;
  }
}
.section-message .message-img.-img03 {
  bottom: 0;
  left: calc(50% - 660px);
}
@media screen and (max-width: 767px) {
  .section-message .message-img.-img03 {
    left: auto;
    z-index: 1;
    width: 38.21%;
    margin-top: -13%;
  }
}

.guide-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 960px) {
  .guide-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .guide-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.guide-group .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  padding: 2rem 2rem 3rem;
  border-radius: 0.8rem;
  background-color: var(--bg-color-gray);
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .guide-group .item {
    padding-bottom: 2rem;
  }
}
.guide-group .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.8rem;
  height: 7.8rem;
  border-radius: 50%;
  padding: 4%;
  margin: 0 auto 1rem;
  background-color: #fff;
}
.guide-group .img img {
  display: block;
  flex: 0 1 auto;
}
.guide-group .ttl {
  margin-bottom: 1.2rem;
  font-size: min(5.87vw, 2.2rem);
  font-weight: bold;
}
.guide-group .item-txt {
  margin-bottom: auto;
  font-size: 1.4rem;
}
.guide-group .link {
  margin-top: 2rem;
}