@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

html{
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
  font-family: "Inter","Noto Sans JP", sans-serif;
  line-height: 1.8;
  padding: 0 1rem;
}
@media (max-width: 768px) {
}


@media (min-width: 769px) {
    .main-aside{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .hero{
        width: 50%;
        position: sticky;
        top: 0;
    }
    .side{
        width: 50%;
    }
    h1{
        font-size: 6rem;
        line-height: 1.5;
    }
    .hero p{
        margin-top: 2rem;  
        padding: 0 1rem;      
    }
    .heading-large{
        font-size: 3rem;
    }
    .content{
        display: flex;
    }
    .content h1{
        width: 700px;
    }
    .content p,
    .content h2{
        width: 600px;
         margin-bottom: 6rem;
        text-align: left;
    }
    .side img{
        width: 700px;
        height: auto;
    }
}