@charset "UTF-8";



/*================================================
* about
================================================*/

.aboutTop {
  position: relative;
}

.about_wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 5%;
}


.about_txt p {
  line-height: 2;
  margin-bottom: 1em;
}

.about_img {
  /* min-width: 47.5%; */
  /* max-width: 57rem; */
  width: 30%;
  max-width: 50rem;
}

.about_txt {
  width: 65%;
}

#about .about-loop_swiper {
  position: absolute;
  /* bottom: 5rem; */
  bottom: 0rem;
  left: 0;
  width: 100%;
  z-index: -1;
}

.about-loop_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.about-loop_swiper .swiper-slide {
  font-size: 15rem;
  color: var(--color-white);
  font-family: var(--en);
  font-weight: 700;
  margin-right: 0.5em;
  width: fit-content;
  white-space: nowrap;
}

.aboutConcept {
  background-color: #F0EEDE;
  padding: 5.3rem 7.2rem 7.8rem;
  text-align: center;
  margin-top: 9rem;

  position: relative;
  z-index: 1;
}

.aboutConcept::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    /* 左上 */
    linear-gradient(#000 0 0) left top, linear-gradient(#000 0 0) left top,
    /* 右上 */
    linear-gradient(#000 0 0) right top, linear-gradient(#000 0 0) right top,
    /* 左下 */
    linear-gradient(#000 0 0) left bottom, linear-gradient(#000 0 0) left bottom,
    /* 右下 */
    linear-gradient(#000 0 0) right bottom, linear-gradient(#000 0 0) right bottom;
  background-size: 10rem 2px, 2px 10rem;
  background-repeat: no-repeat;
  z-index: -1;
}

.aboutConcept h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.aboutConcept h2 span {
  font-size: 1.6rem;
  font-family: var(--en);
  margin-top: 2rem;
  display: block;
  letter-spacing: 0;
}

.aboutConcept .lead {
  margin: 4.5rem 0;

}

.aboutConcept ul {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}


.aboutConcept ul li {
  background: var(--color-white);
  padding: 2.8rem 0;
}

.aboutConcept ul li img {
  width: 18rem;
  margin: 0 auto;
}

.aboutConcept ul li h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 1.6rem 0 1.3rem;
}

@media screen and (max-width:767px) {


  .about_wrap {
    flex-wrap: wrap;
    gap: 2.4rem;
  }

  .aboutTop {
    padding-bottom: 10rem;
  }

  .about_img {
    width: 100%;
    max-width: unset;
  }

  .about_txt {
    width: 100%;
  }

  #about .about-loop_swiper {
    bottom: 1rem;
  }

  .about-loop_swiper .swiper-slide {
    font-size: 9rem;
  }

  .aboutConcept {
    padding: 3.3rem 1.5rem 5.8rem;
    margin-top: 6rem;

    position: relative;
    z-index: 1;
  }

  .aboutConcept::before {
    background:
      /* 左上 */
      linear-gradient(#000 0 0) left top, linear-gradient(#000 0 0) left top,
      /* 右上 */
      linear-gradient(#000 0 0) right top, linear-gradient(#000 0 0) right top,
      /* 左下 */
      linear-gradient(#000 0 0) left bottom, linear-gradient(#000 0 0) left bottom,
      /* 右下 */
      linear-gradient(#000 0 0) right bottom, linear-gradient(#000 0 0) right bottom;
    background-size: 5rem 2px, 2px 5rem;
    background-repeat: no-repeat;
  }

  .aboutConcept h2 {
    font-size: 2rem;
  }

  .aboutConcept .lead {
    margin: 2.5rem 0;
  }

  .aboutConcept ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.2rem;
  }

  .aboutConcept ul li img {
    width: 16rem;
  }

  .aboutConcept ul li h3 {
    font-size: 2.2rem;
    margin: 1.3rem 0 0.6rem;

  }
}



/*================================================
* Purpose
================================================*/
#purpose {
  background: var(--color-white);
}


.purpose_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.2rem;
  position: relative;
}

.purpose_wrap::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #ddd;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.purpose_box {
  position: relative;
  padding-right: 13.3rem;

}


.purpose_box h3 {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 1.8rem;
  right: 0;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 600;
}

.purpose_box ul {
  margin-top: 6rem;
}

.purpose_box ul li {
  position: relative;
  margin-top: 1.2rem;
  padding-left: 3.4rem;
}

.purpose_box ul li::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/icon_check_b.webp);
  width: 2rem;
  height: 2rem;
  top: 0.5rem;
  left: 0;
}

.purpose_box:nth-child(2) ul li::before {
  background-image: url(../../images/icon_check_g.webp);

}

@media screen and (max-width:767px) {
  .purpose_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
    position: relative;
  }

  .purpose_wrap::before {
    content: none;
  }

  .purpose_box {
    padding-right: 7.5rem;
  }

  .purpose_box:first-of-type {
    border-bottom: 1px solid #ddd;
    padding-bottom: 3.2rem;
  }

  .purpose_box h3 {
    top: 1rem;
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 600;
  }

  .purpose_box ul {
    margin-top: 2rem;
  }

  .purpose_box ul li {
    padding-left: 2.4rem;
  }

  .purpose_box ul li::before {
    width: 1.6rem;
    height: 1.6rem;
    top: 0.2rem;
  }
}


/*================================================
* sprttarget
================================================*/
#sprttgt {
  background: #EBF2F7;
}

.sprttgtTop {
  background: var(--color-white);
  padding: 4.4rem 7rem;
  position: relative;
}

.sprttgtTop .ttl {
  position: absolute;
  font-size: 1.8rem;
  font-weight: 700;
  width: fit-content;
  top: 1.4rem;
  left: 2.6rem;
}

.sprttgtTop .ttl::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/about/sprttgt_ttl.webp);
  width: 27rem;
  height: 3.3rem;
  bottom: -1rem;
}

.sprttgtTop .ttl span {
  font-size: 1.4rem;
  opacity: .2;
  font-family: var(--en);
  margin-left: 1.5rem;
}

.sprttgtTop .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.sprttgtTop_imgset {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 48.5%;
  position: relative;
}

.sprttgtTop_imgset .plus {
  color: var(--color-yellow);
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  top: -2rem;
}

.sprttgtTop_imgset div {
  width: 44%;
}

.sprttgtTop_imgset div img {
  margin-bottom: 1rem;
}


.sprttgtList {
  display: grid;
  gap: 3.2rem 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4.6rem;
}

.sprttgt_box {
  background: var(--color-white);
  padding: 2rem 2.5rem 3rem;
}

.sprttgt_box .ttl {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 1.4rem;
  margin-bottom: 2rem;
}

.sprttgt_box .ttl img {
  width: 8rem;
  min-width: 8rem;
}

@media screen and (max-width:767px) {
  .sprttgtTop {
    padding: 2rem 2rem 4rem;
  }

  .sprttgtTop .ttl {
    position: relative;
    font-size: 1.6rem;
    top: 0;
    left: 0;
    margin-bottom: 4rem;
  }

  .sprttgtTop .ttl::before {
    width: 20rem;
    height: 2.4rem;
    bottom: -1rem;
  }

  .sprttgtTop .ttl span {
    font-size: 1.2rem;
    margin-left: 1rem;
  }

  .sprttgtTop .inner {
    flex-wrap: wrap;
  }

  .sprttgtTop_imgset {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
  }

  .sprttgtTop_imgset div {
    width: 100%;

  }

  .sprttgtTop_imgset .plus {
    top: 0;
  }

  .sprttgtList {
    gap: 2rem 4rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.2rem;
  }

  .sprttgt_box {
    background: var(--color-white);
    padding: 2rem 1.6rem 3rem;
  }

  .sprttgt_box .ttl {
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }

  .sprttgt_box .ttl img {
    width: 6rem;
    min-width: 6rem;
  }
}

/*================================================
* adm
================================================*/
#adm {
  background: var(--color-white);
}

.adm_wrap {
  width: 83.33%;
  margin: 5rem auto 0;
  padding: 5.8rem 8rem;
  border: 1px solid var(--color-gray);

  line-height: 2;
}

.adm_wrap img {
  width: 39rem;
  margin: 0 auto 5rem;
  display: block;
}

.admLinkList {
  display: grid;
  gap: 5rem 8rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 7rem auto 0;
  width: 75%;
}

.admLinkList .c_btn {
  width: 100%;
}

@media screen and (max-width:767px) {
  .adm_wrap {
    width: 100%;
    margin: 3rem auto 0;
    padding: 3.8rem 2rem;
  }

  .adm_wrap img {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto 3rem;
  }

  .admLinkList {
    gap: 3rem 8rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem auto 0;
    width: 90%;
  }
}

/*================================================
* access
================================================*/
#access {
  background: #F5F5F5;
}

.access_wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 6rem;
}

.access_list,
.access_map {
  width: calc((100% - 6rem) / 2);
}

.access_list dl {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: start;
  border-top: 1px solid var(--color-gray);
}

.access_list dl dt {
  width: 20rem;
  background: var(--color-white);
  padding: 1.3rem 0 0 2.6rem;
  border-bottom: 1px solid var(--color-gray);
  font-weight: 700;
}

.access_list dl dd {
  width: calc(100% - 20rem);
  padding: 1.3rem 0 1.6rem 2.9rem;
  border-bottom: 1px solid var(--color-gray);
}

.access_map iframe {
  display: block;
  aspect-ratio: 570/500;
  height: auto;
  width: 100%;
}



@media screen and (max-width:767px) {
  .access_wrap {
    flex-wrap: wrap;
    gap: 3.2rem;
  }

  .access_list,
  .access_map {
    width: 100%;
  }


  .access_list dl dt {
    width: 11rem;
    padding: 1.3rem 0 0 1.6rem;
  }

  .access_list dl dd {
    width: calc(100% - 11rem);
    padding: 1.3rem 0 1.6rem 1.9rem;
  }
}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}



@media screen and (max-width:767px) {}