@charset "UTF-8";
/* ボディー */
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
/* ボタン共通スタイル */
.link-button {
    color: #FFFFFF;
    background-color: #4AB817;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-decoration: none;
}
/* ヘッダー */
header {
    background-color: #7E5639;
    width: 100%;
    box-sizing: border-box;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    width: 213.49px;
}
header div {
    display: flex;
    align-items: center;
    gap: 40px;
}
header div ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
header div ul a {
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color: #FFFFFF;
}
/* メイン */
section h2 {
    color: #5A8046;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin: 0;
}
.recipe {
    display: flex;
    width: 1040px;
    margin: 64px 200px;
    position: relative;
}
.recipe_text {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.recipe_text p {
    color: #666666;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px 0;
    text-decoration: underline;
}
.recipe_text ul {
    padding: 0;
    margin: 0;
    list-style: inside;
}
.recipe_text ol {
    padding: 0;
    margin: 0;
    list-style: decimal inside;
}
.recipe_text li {
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
}
.recipe img {
    width: 707px;
    position: absolute;
    top: -64px;
    right: -200px;
}
.movie-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}
/* フッター */
footer {
    background-color: #F7F7F7;
    padding: 16px 0;
}
footer p {
    text-align: center;
    margin: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
}
