@charset "utf-8";
@media screen and (min-width: 820px) {
  .mainvisual{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .mainvisual .img-box{
    height: 50vh;
    width: 65vw;
  }
  h1{
    font-size: 220%;
    letter-spacing: 1px;
    margin: 20px auto 50px;
  }
  .intro{
    width: 95%;
    max-width: 900px;
    margin: 1.5em auto 2em;
    font-size: 108%;
  }
  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.2em;
  }
  table th, table td {
    padding: 1em;
  }
  .admission-flow ul{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .admission-flow ul::before{
    display: none;
  }
  .admission-flow ul li{
    width: calc(85% / 3);
    margin-bottom: 2rem;
    position: relative;
    z-index: 0;
  }
  .admission-flow ul li:not(:first-of-type)::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid var(--page_color);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 5%;
    left: -15%;
    margin: auto;
  }
  .admission-flow ul li .num{
    background: var(--accent_pink);
    color: #fff;
  }
  .admission-flow ul li .text{
    padding: 0 10px;
  }
  .admission-flow a{
    width: 70%;
    margin: 1.2em auto 0;
  }
  .daily-life .schedule{
    width: 95%;
    max-width: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
  }
  .daily-life .schedule li{
    width: calc(85% / 4);
    height: auto;
    padding: 10px;
    margin: 0 auto 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .daily-life .schedule li::after{
    display: none;
  }
  .daily-life .schedule li:not(:first-of-type)::before {
    content: "▼";
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -13%;
    margin: auto;
    transform: rotate(270deg);
    color: var(--page_color);
  }
  .daily-life .free-time{
    margin: 20px auto 0;
  }
  .daily-life .free-time li{
    width: calc(95% / 4);
    margin-bottom: 0;
  }
  .daily-life .free-time li img{
    width: unset;
  }
  .meal-recreation .inner{
    display: flex;
    justify-content: space-between;
  }
  .meal-recreation .flex-box{
    width: 48%;
  }
  .meal-recreation .flex-box h3{
    font-size: 130%;
    letter-spacing: 1px;
  }
  .meal-recreation .message{
    width: fit-content;
    font-size: 150%;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1;
    display: block;
    margin: 30px auto;
  }
  .family-connection .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .family-connection .img-box{
    width: 50%;
    margin: 0;
  }
}