@charset "UTF-8";
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1;
}

.header_list {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: fit-content;
    left: 0;
    right: 0;
    margin: auto;
    gap: 2rem;
    font-family: gopher,sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: transform .8s cubic-bezier(.16,1,.3,1),opacity .2s linear,visibility .2s linear;
}

.header_title {
    position: relative;
}

.main_contents {
    position: relative;
    z-index: 1;
    background-color: #d7a28c;
    width: auto;
}

.contents_title {
    position: relative;
    width: fit-content;
}

.contents_text {
    font-family: YakuHanJPs,TazuganeGothicStdN-Regular,sans-serif;
    background-color: #d7a28c;
}

.contents_image {
    width: 100%;
}