* {
	box-sizing: border-box; /* 各要素の大きさをpaddingとか込みにしない（100pxにpadding10pxだと110pxになる） */
}

body {
    font-family: "Times New Roman", "Yu Mincho", "Meiryo", sans-serif; /* ページのフォント指定（英語, 日本語第一候補, 日本語第二候補, それでもダメだったときのフォント群） */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: #000000; /* 文字の色 */
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a:hover img {
    opacity: 0.7;
    transition: all 0.5s;
}

.top img, .header img, .top_category img, .leftnavi img, .footer img {
    width: 100%;
    height: auto;
}

.header {
    background: #f8f5f1;
}

.header_ifm {
    height: 47vw;
}

.wrapper_navi_area {
    width: 100%;
    position: absolute;
    z-index: 999;
}

.wrapper_navi_area a {
    text-decoration: none;
}

.navi_area {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 20px auto;
}

.city_logo {
    width: 200px;
}

.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_innner_nav {
    margin-right: auto;
}
.header_innner_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
}
.header_innner_nav li {
    margin-right: 50px;
}

.header_innner_nav li {
    margin-right: 50px;
}

.header_innner_nav ul li a:hover {
    opacity: 0.7;
    transition: all 0.5s;
}

.navi_area li a {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #FFF;
    white-space: nowrap;
}

.search_box {
    position: relative;
    width: 230px;
    height: 40px;
}
.search_box input[type="text"] {
    background-color: #FFF;
    border: 0;
    padding: 12px 20px;
    width: 100%;
}
.search_box input[type="image"] {
    position: absolute;
    top: -2px;
    right: 15px;
    width: 32px;
    height: 43px;
}
.search_box input {
    border-radius: 21px;
}


.title_area {
    position: relative;
    height: 720px;
    overflow: hidden;
}
.title_area h1, h2 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.logo {
    position: absolute;
    width: 391px;
    height: 427px;
    top: 55%;
    left: 50%;
    transform: translate(-55%, -50%);
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(0, 92, 35, 0.8));
}

.bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url(../img/header_bg3.jpg);
    background-repeat: repeat;
    background-size: cover;
}

.wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.wrapper_top_category {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.wrapper_top_category h2 {
    margin: 20px auto 0;
    font-size: 25px;
    text-align: center;
    padding: 10px;
}

.top_category_title {
    position: relative;
}
.top_category_title img {
    width: 50px;
    padding: 10px;
    vertical-align: bottom!important;
}
.top_category_title::after {
    content: "";
    position: absolute;
    background: #cec9c3;
    width: 350px;
    height: 1px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.top_category {
    margin: 10px auto 0;
}

.top_category ul {
    display: flex;
    gap: 0 30px;
    justify-content: space-between;
}

.top_category li {
    width: calc(100% / 8);
    text-align: center;
}

.top_category li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.top_category li img {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.4));
}

.top_amount {
    margin: 10px auto 0;
}

.top_amount ul {
    display: flex;
    gap: 0 30px;
    justify-content: space-between;
}

.top_amount li {
    width: calc(100% / 6);
}

.top_amount li a {
    background-color: #000000;
    transition: background-color .5s;
    color: #FFF;
    display: block;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    height: 75px;
    line-height: 75px;
}

.top_amount li a:hover, .black_button a:hover, .link ul li a:hover {
    /* background-color: #6a0019; */
    background-color: rgb(0, 92, 35);
}

.tablet_display{
    display: none;
}

.banner {
    margin-top: 40px;
    padding-bottom: 500px;
}

.L_banner li {
    margin-top: 20px;
}
.L_banner img {
    width: 100%;
}

.S_banner {
    margin-top: 20px;
}
.S_banner ul {
    display: flex;
}
.S_banner li {
    margin-right: 10px;
    width: 50%;
}
.S_banner li:nth-child(even) {
    margin-right: 0;
}

@media screen and (max-width: 1279px) {
    .PC_display {
        display: none;
    }
    .tablet_display{
        display: block;
    }
    .navi_area {
        justify-content: flex-start;
    }
    .wrapper {
        width: 95%;
    }
    .top_amount li {
        width: calc(100% / 3);
        margin-bottom: 40px;
    }
}
