@charset "UTF-8";

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: #fff;
  /* background: linear-gradient(45deg, #ffffe0 0%, #b0e0e6 50%, #f0ffff 100%); */
  background: linear-gradient(32deg, rgba(255, 255, 224, 1) 0%, rgba(176, 224, 230, 1) 33%, rgba(255, 255, 224, 1) 70%, rgba(240, 255, 255, 1) 100%);

  opacity: 0.6;
  animation: huerotator 12s infinite alternate;
}

@keyframes huerotator {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}


@media only screen and (min-width:813px) {}

@media only screen and (max-width:812px) {}

#main .mainBox {
  width: 100%;
  padding: 26vh 4%;
  height: 50vh;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow:hidden;
}

#main .mainBox::before,
#main .mainBox::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40%;
  height: 40%;
}

#main .mainBox::before {
  top: 2px;
  right: 0;
  background-image: url(/home/artcampus/assets/img/common/bg_line01_R.svg);
  background-position: right top;
  transform-origin: right top;
  transform: rotate(-12deg);
}

#main .mainBox::after {
  bottom: 0;
  left: 0;
  background-image: url(/home/artcampus/assets/img/common/bg_line01_L.svg);
  background-position: left bottom;
  transform-origin: left bottom;
  transform: rotate(-12deg);
}

@media only screen and (min-width:440px) {

  #main .mainBox::before {
    width: 30%;
    height: 100%;
    transform: rotate(10deg);
  }

  #main .mainBox::after {
    width: 32%;
    height: 100%;
    transform: none;
  }

}

@media only screen and (min-width:813px) {
  #main .mainBox {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
}

#main .title {
  text-align: center;
}

#main .title .cap-txt{
  margin-bottom: 20px;
}

#main .title  .cap-txt img {
  max-width: 100%;
  height: auto;
}

#main .aboutBox h1 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
}

#main .aboutBox {
  padding: 120px 4%;
}

@media only screen and (min-width:813px) {}

@media only screen and (max-width:812px) {
  #main .aboutBox h1 {
    text-align: center;
    font-size: 1.8rem;
  }

  #main .aboutBox {
    padding: 80px 4%;
  }
  #main .title > p img{max-width: 120px; height: auto;}
}


#why {
  padding: 100px 4% 50px 4%;
}

#why .wrap>div>p:not(:last-of-type) {
  margin-bottom: 20px;
}

#why .wrap .title01 {
  margin-bottom: 0;
}

#why .wrap>div h3::before {
  content: "ー";
  margin-right: 5px;
}

#why .wrap>div h3 {
  font-size: 1.8rem;
  margin: -10px 0 40px 0;
}

@media only screen and (min-width:813px) {
  #why .wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
  }

  #why .wrap>div {
    width: calc(100% - 31.48% - 2.78%);
  }

  #why .wrap>figure {
    width: 31.48%;
  }

}

@media only screen and (max-width:812px) {
  #why {
    padding: 80px 4% 40px 4%;
  }

  #why .wrap>div h3 {
    font-size: 1.6rem;
    margin-top: -5px;
  }

  #why .wrap>div {
    margin-bottom: 40px;
  }

  #why .wrap>figure {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
  }
}

#power {
  padding: 50px 4% 100px 4%;
  position:relative;
}

#power::before,
#power::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40%;
  height: 40%;
  z-index: -1;
}

#power::before {
  bottom: -5vw;
  right: 0;
  background-image: url(/home/artcampus/assets/img/top/bg_line02_R.svg);
  background-position: right bottom;
  transform-origin: right bottom;
}

#power::after {
  top: 17vw;
  left: -3vw;
  background-image: url(/home/artcampus/assets/img/top/bg_line02_L.svg);
  background-position: left top;
  transform-origin: left top;
}

@media only screen and (min-width:813px) {

  #power::before {
    width: 28vw;
    height: 100%;
  }

  #power::after {
    top: -5vw;
    width: 20vw;
    height: 100%;
  }

}

#power .wrap>figure figcaption {
  font-size: 1.3rem;
  color: var(--color-text-sub);
}

#power .wrap>div>p:not(:last-of-type) {
  margin-bottom: 20px;
}

@media only screen and (min-width:813px) {
  #power .wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
  }

  #power .wrap>div {
    width: calc(100% - 31.48% - 2.78%);
  }

  #power .wrap>figure {
    width: 31.48%;
  }

  #power .wrap>div {
    order: 2;
  }

  #power .wrap>figure {
    order: 1;
  }
}

@media only screen and (max-width:812px) {
  #power {
    padding: 40px 4% 80px 4%;
  }

  #power .wrap>div {
    margin-bottom: 40px;
  }

  #power .wrap>figure {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
  }
}

#targets {
  padding: 100px 4%;
}



.targetBox li {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.targetBox li figure {
  text-align: center;
}

@media only screen and (min-width:813px) {
  #targets .targetBox {
  display: flex;
  gap: 28px;
}
  .targetBox li figure {
  margin-bottom: 10px;}
  .targetBox li {
    width: calc((100% - 84px) / 4);
  }
}

@media only screen and (max-width:812px) {
  #targets {
    padding: 80px 4%;
  }

  .targetBox {
    flex-wrap: wrap;
  }

  .targetBox li{
    display:flex;
    align-items:center;
  }
  .targetBox li:not(:last-of-type){
    margin-bottom:20px;
  }
  .targetBox li figure{
    width:30%;
  
  }
  .targetBox li p{
    width:calc(100% - 30%);
  }
}


#effort {
  padding: 100px 4% 0px 4%;
}

.effortBox>div:not(:last-of-type) {
  margin-bottom: 40px;
}

.effortBox figure figcaption {
  font-size: 1.3rem;
  color: var(--color-text-sub);
}

.effortBox h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}


@media only screen and (min-width:813px) {
  .effortBox>div {
    display: flex;
    gap: 2.78%;
  }

  .effortBox figure {
    width: 27.78%;
  }

  .effortBox>div>div {
    width: calc((100% - 2.78%) - 27.78%);
  }
}

@media only screen and (max-width:812px) {
  .effortBox figure {
    max-width: 300px;
    margin: 0 auto 15px;
  }

  .effortBox>div:not(:last-of-type) {
    margin-bottom: 60px;
  }

  .effortBox h3 {
    font-size: 2.0rem;
  }
}

#D_and_i {
  padding: 100px 4%;
  position:relative;
}

#D_and_i::before,
#D_and_i::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 40%;
  height: 40%;
  z-index: -1;
}

#D_and_i::before {
  top: -3vw;
  right: 0;
  background-image: url(/home/artcampus/assets/img/top/bg_line03_R.svg);
  background-position: right top;
  transform-origin: right top;
}

#D_and_i::after {
  bottom: 0;
  left: 0;
  background-image: url(/home/artcampus/assets/img/top/bg_line03_L.svg);
  background-position: left bottom;
  transform-origin: left bottom;
}

@media only screen and (min-width:813px) {

  #D_and_i::before {
    width: 28vw;
    height: 100%;
  }

  #D_and_i::after {
  bottom: 2vw;
  width: 24vw;
  height: 100%;
  }

}

#D_and_i .wrap {
  max-width: 1080px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 3px;
  padding: 40px;
}

#D_and_i h3 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

@media only screen and (min-width:813px) {
  #D_and_i .wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
  }

  #D_and_i .wrap>div,
  #D_and_i .wrap>figure {
    width: calc((100% - 40px) / 2);
  }

}

@media only screen and (max-width:812px) {
  #D_and_i {
    padding: 80px 4%;
  }

  #D_and_i h3 {
    font-size: 2.0rem;
  }

  #D_and_i .wrap>figure img {
    width: 100%;
  }

  #D_and_i .wrap>figure {
    margin-top: 30px;
  }
}

#cap {
  padding: 30vh 4%;
  background: url(../../img/top/bg_cap2.png) no-repeat top center;
  background-size: cover;
}

#cap p {
  text-align: center;
  font-size: 2.8rem;
}

@media only screen and (max-width:812px) {
  #cap {
    padding: 20vh 4%;
  }

  #cap p {
    font-size: 2.0rem;
  }
}

#bannerBox {
  padding: 100px 4%;
}

#bannerBox .wrap>a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media only screen and (min-width:813px) {
  #bannerBox .wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #bannerBox .wrap>a {
    width: calc((100% - 40px) / 2);
  }

  #bannerBox .wrap>a:hover {
    text-decoration: none;
  }

  #bannerBox .wrap>a:hover img {
    opacity: 0.8;
  }

}

@media only screen and (max-width:812px) {
  #bannerBox {
    padding: 80px 4%;
  }

  #bannerBox .wrap>a {
    max-width: 520px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #bannerBox .wrap>a:not(:last-of-type) {
    margin-bottom: 20px;
  }
}


.breadcrumbsBox{
margin-top: -78px;
}



