@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200&family=Poppins:wght@200&display=swap');

.sp{
  display: none;
}
@media (max-width: 768px){
.pc {
  display: none;
}
.sp{
  display: block;
}
}

body{
  animation: loadIN forwards 2s;
}



@keyframes loadIN {
 0%{
   opacity: 0;
 }
  100%{
   opacity: 1;
 }
}

.ll-main img{
  max-width: 100%;
  height: auto;
}

.ll-main p{
  line-height: 30px
}

.mv{
  text-align: center;
}

.mv p{
  margin-top: 40px;
  font-size: 16px;
}

@media (max-width: 768px){
  .mv p{
  padding: 0 5%;
  font-size: 14px;
  margin-bottom: 30px;
}
}

.ll-sec{
  padding: 100px 0 140px;
}
@media (max-width: 768px){
  .ll-sec{
    padding: 30px 0 70px;
  }
}
.ll-sec p{
  font-size: 14px;
}

.sec_head{
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.sec_head h2{
  font-size: 24px;
  /* font-weight: 200; */
  line-height: 32px;
  border-bottom: 1px solid #3c3c3c;
  padding: 0 0 3px;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  color: #5d308d;
}
.sec_head__pic{
  width: 290px;
}
.sec_head__dsc{
  /* flex: 1;
  padding-left: 40px; */
  width: calc(100% - 290px - 40px);
}

@media (max-width: 768px){
  .sec_head{
    display: block;
  }
  .sec_head__pic{
    width: 100%;
  }
  .sec_head__dsc{
    width: 100%;
    margin-top: 10px;
  }
}



.item_wrap{
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}

.item_wrap > a{
  display: block;
  width: calc(50% - 20px);
}

.item_wrap > a + a{
  margin-left: 40px;
}

.item_wrap p{
  font-size: 13px;
  text-align: center;
  font-family:sans-serif;
}
.item_wrap p span{
  font-size: 12px;
  display: block;
  
}
.moreLink{
  width: 100% !important;
  text-align: center;
  margin-top: 100px;
}
.moreLink span{
  border-bottom: 1px solid;
  padding-bottom: 3px;
  font-family:sans-serif;
  line-height: 2.4;
}

.sec_head + .item_wrap{
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  justify-content: flex-end;
}

.sec_head + .item_wrap > a{
  width: calc((100% - 290px - 40px - 40px) / 2);
}

/* 互い違い */
.ll-sec:nth-of-type(2n) .sec_head{
  flex-direction: row-reverse;
}
.ll-sec:nth-of-type(2n) .item_wrap{
  justify-content: flex-start;
}

@media (max-width: 768px){
  .item_wrap{align-items: center;}
  .item_wrap > a{
    width: 50% !important;
    margin:20px 0 0 !important;
  }
}


.LinkBox{
  max-width: 800px;
  width: 90%;
  margin: 0 auto 150px;
  text-align: center;
}

.bn2 {
  margin: 0 auto;
  display: flex;
  gap: 12px;
}
@media (max-width: 768px){
  .bn2{
    flex-direction: column;
}
}

.is-scloll{
  opacity: 0;
  transition: 1.2s ease-in;
}

.is-scloll.on{
  opacity: 1;
}

