@charset "UTF-8";

*, *::before, *::after {
    box-sizing: border-box;
}
/*header 変更*/
.header {
	font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    background-color: #fff;
    border-bottom: 1px solid #333;
    left: 0;
    padding: 11px 0 10px;
    /*position: fixed;*/
    right: 0;
    top: 0;
    z-index: 900;
    box-sizing: border-box;
}

.header__inner {
    align-items: center;
    display: flex;
    padding: 0 0.5rem;
}

.header__logo {
    display: flex;
}

.header__logo a {
    display: inline-block;
    height: inherit;
    width: 162px;
}

.header__logo img {
    -o-object-fit: contain;
    aspect-ratio: 120/51;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.header__buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.button,
.button--green {
    background-color: #5a2800;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 0 11px;
    text-align: center;
    width: 164px;
    box-sizing: border-box;
}

.button--green {
    background-color: #00b900;
    text-transform: uppercase;
}
.lineup h3 {
    width: fit-content;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto 40px;
    line-height: 3rem;
    border-bottom: 5px solid #5a3c00;
    font-size: 2rem;
    color: #5a3c00;
}
.lineup h3 span {
    color: #5a3c00;
    vertical-align: top;
}
.lineup {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}
.lineup-box {
    width: 80%;
    margin: 0 auto;

}
.lineup__cta-buttons {
    width: 100%;
    margin: 0 auto;
}
.lineup__cta-button {
    flex:1;
}
.cta-button span, .cta-button--line span {
    padding-left: 1.25rem;
    position: relative;
}
.cta-button span::before, .cta-button--line span::before {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    content: "";
    height: 18px;
    left: -4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
}
.cta-button, .cta-button--line {
    background-color: #358f2b;
    box-shadow: 0 6px 0 #25641e;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.024em;
    line-height: 1.3;
    /* max-width: 15.375rem; */
    padding: 12px 0;
    text-align: center;
    transition: 0.2s;
    width: 100%;
    margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
.header {
    padding: 15px 0 14px;
}

.header__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1020px;
}

.header__logo a {
    width: 162px;
}

.header__buttons {
    flex-direction: initial;
    gap: 24px;
}

.cta-button,
.cta-button--line {
    background-color: #358f2b;
    box-shadow: 0 0.3125rem 0 #25641e;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.024em;
    line-height: 1;
    padding: 0.75rem 0;
    text-align: center;
    transition: 0.2s;
    width: 100%;
}

.cta-button span,
.cta-button--line span {
    padding-left: 1.25rem;
    position: relative;
}

.cta-button span::before,
.cta-button--line span::before {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    content: "";
    height: 1rem;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6875rem;
}

.cta-button--line {
    text-transform: uppercase;
}
.button,
.button--green {
    font-size: 16px;
    padding: 15px 20px;
    width: 100%;
}
.lineup__cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 0.875rem;
}

.lineup__cta-button:not(:first-child) {
    margin-top: 0;
    margin-top: initial;
}
.cta-button,
.cta-button--line {
    box-shadow: 0 0.4375rem 0 #25641e;
    padding: 1.3125rem 0;
    width: 100%;
}
.lineup-box {
    width: 60%;
}

}
@media (hover: hover) {

    .cta-button:hover,
    .cta-button--line:hover {
        box-shadow: none;
        opacity: 1;
        transform: translateY(0.3125rem);
    }
}

.mb20 {
    margin-bottom: 20px;
}