@charset "utf-8";



.opcampus_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em 1.25em;
}

.opcampus_list > li {
    width: calc( ( 100% - 2.5em ) / 3 );
}

.opcampus_list li a{
  display: block;
  background: var(--c_lbln);
  padding: 1.25em 1.5em;
  border-radius: var(--br10);
}

@media (max-width: 799px){
    .opcampus_list > li {
        width: calc( ( 100% - 1.25em ) / 2 );
    }
}

@media (max-width: 599px) {
    .opcampus_list > li {
        width: 100%;
    }

    .opcampus_list > li a {
        display: flex;
        gap: 1em;
    }

    .opcampus_list > li a .thumb {
        flex: 1;
    }

    .opcampus_list > li a .opcampus_text {
        flex: 2;
    }
}


@media (max-width: 399px) {
    .opcampus_list > li a .opcampus_text {
        flex: 3;
        line-height: 1.4;
        letter-spacing: 0;
    }
}

/****個別ページ******/

.sec_01 .inner_section .box {
    border: solid 2px var(--c_sub);
    padding: clamp( 1em, 3vw, 3em );
    border-radius: 2em;
}

.sec_post .ph1 {
  font-size: clamp(1.25rem, 1.057rem + 0.96vw, 2.25rem);
  text-align: left;
}

.sec_post .opcampus_text dt {
  text-align: right;
  margin: 0 0 1rem;
}


.sec_01 .list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25em;
}

.sec_01 .list li{
  text-align: center;
  padding: .5em;
  border-radius: var(--br10);
  background: var(--c_lbln);
}

.sec_01 .evtitle {
  display: flex; flex-flow: row nowrap; justify-content: flex-start; align-items: center; gap: 1em;
}
.sec_01 .evtitle .title {
  order: 2;
  flex-shrink: 2;
  font-size: 150%;
  font-weight: bold;
}
.sec_01 .evtitle .thumb {
  width: 200px;
  order: 1;
  flex-shrink: 1;
}

.sec_01 .remarks dl {
    border-top: dashed 1px currentColor;
    margin-top: 1em;
    padding-top: 1em;
}


@media only screen and (max-width:449px) {
  .sec_01 .evtitle { display: block; }
  .sec_01 .evtitle .title { margin: 0 0 1em; }
  .sec_01 .evtitle .thumb { margin: 0 auto 0; }
}

.sec_01 .remarks .list>dl:not(:last-child){
  border-bottom: 2px dotted var(--c_bln);
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.sec_01 .remarks dt{
  width: 6em;
  font-weight: bold;
}
.sec_01 .remarks dd{
  width: calc(100% - 6em - .5em);
}

.sec_01 .remarks dd dl{
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
}
.sec_01 .remarks dd dl:not(:last-child){
  margin-bottom: 1em;
}
.sec_01 .remarks dd dl dt.no_month{
  display: none;
}
.sec_01 .remarks dd dl dd{
  width: fit-content;
  border-radius: .25em;
  padding: .125em .5em;
  background: var(--c_red);
  color: #fff;
}
.sec_form .tel_link{
  text-align: center;
}
.sec_form .tel_link a{
  position: relative;
  font-size: clamp(1.375rem, 1.057rem + 1.59vw, 2.25rem);
  padding-left: .85em;
  color: var(--c_red);
}

.sec_form .tel_link a::before{
  content: "";
  mask-image: url(../../../assets/images/common/icon_tel.svg);
  mask-size: cover;
  width: .75em;
  height: 1em;
  max-width: 24px;
  max-height: 32px;
  background-color: var(--c_red);
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}



@media (max-width: 799px){

.sec_01 .list{
  grid-template-columns: repeat(2, 1fr);
  gap: .75em;
}

}


@media (max-width: 599px){


.sec_01 .remarks dt,
.sec_01 .remarks dd{
  width: 100%;
}

.sec_01 .evtitle .title {
    font-size: 130%;
}

}