@charset "UTF-8";
/* CSS Document */
:root {
    --main: #E48801;
    --sub: #F7DBB3;
    --bg: #FEF9F3;
}

html {
    font-size: 62.5%;
    /* scroll-behavior: smooth; を削除してJavaScriptでのみ制御 */
}

body{
    color: #333;
    overflow-x: hidden;
    font-family: "Noto Sans JP", "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
    margin: 0;
    -webkit-text-size-adjust: 100%;
}

a {
    color: var(--main);
    text-decoration: underline;
}

a:hover {
    opacity: 0.7;
}

a.target-blank {
    position: relative;
    padding-right: 15px;
}

a.target-blank::after {
    position: absolute;
    content: "";
    width: 13px;
    height: 12px;
    bottom: 3px;
    right: 0;
    background: url(../img/icon-link.svg) no-repeat;
}

a.target-blank_2 {
    position: relative;
    padding-right: 15px;
    display: inline-block;
}

a.target-blank_2::after {
    position: absolute;
    content: "";
    width: 13px;
    height: 12px;
    bottom: 7px;
    right: 0;
    background: url(../img/icon-link.svg) no-repeat;
}

p {
    font-size: 1.6rem;
    line-height: 1.8;
}

.contents-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 790px) {
    .contents-wrapper {
        padding: 0 20px;
    }
}
