/* 共通部分を設定 */


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.fade {
    opacity: 0;
    transition: all 1s ease-out
}

.fadeIn {
    opacity: 1;
}

body {
    color:#000;
    overflow-x: hidden;
}

section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;

    padding-right: 25px;
    padding-left: 25px;
    

    @media screen and (min-width: 769px) {
        padding-right: 140px;
        padding-left: 140px;
    }
}

section  a:hover {
    opacity:0.5;
    text-decoration: none;
}

section  h2 {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    font-size: 22px;
    line-height: 38px;
    font-weight: bold;
    letter-spacing: 0.16em;

    @media screen and (min-width: 769px) {
        font-size: 45px;
        line-height: 78px;
        font-weight: bold;
        letter-spacing: 0.18em;
    }
}

section h3 {
    font-family: "Noto Sans JP", sans-serif;
    border-bottom:0.4rem solid #F5FF2A;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
}
@media screen and (min-width: 769px) {
  section h3 {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 0.12em;
    border-bottom:0.4rem solid #F5FF2A;
  }
}


section  p {
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0.09em;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;

    @media screen and (min-width: 769px) {
        font-size: 21px;
        line-height: 36px;
        letter-spacing: 0.11em;
    }
}

section  hr {
    border-width: 1px 0 0 0;
    border-color: #000000;
}

section  a {
    margin-top: 23px;
    margin-bottom: 23px;
    width: 100%;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    section  a {
        margin-top: 45px;
        margin-bottom: 60px;
        width: 395px;
        height: 54px;
    }
}

section span {
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
}

section  a> span {
    color: #fff;
    position: relative;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

@media screen and (min-width: 769px) {
    section a>span {
        letter-spacing: 0.12em;
    }
}

section a>span::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    position: absolute;
    top: 52%;
    transform: translateY(-50%) rotate(45deg);
    right: -20px;
    bottom: 0;
}

@media screen and (min-width: 769px) {
    section a>span::after {
        right: -24px;
        width: 8px;
        height: 8px;
    }
}

picture>img {
    width: 100%;
}
