@charset "UTF-8";

html {
    /* font-family: system-ui, -apple-system, sans-serif; */
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
}

/* fonts */

h2 {
    font-size: large;
}



h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    clear: both;
}

.h1_index{
    padding: 2rem 0rem;
    font-size: 1.5rem;
}

.h2_index {
    font-size: large;
    text-align: center;
    /* border-bottom: 4px solid #B9C67F; */
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 2rem;
}

.h2_under {
    border-bottom: 4px solid #B9C67F;
}

.h3_index{
    font-size: 0.8rem;
    background: #B9C67F;
    padding: 0.25rem 2rem;
    border-radius: 5px;
    width: fit-content;
    margin-top: 1rem;
}

.h4_index {
    font-size: medium;
    text-align: center;
}

.h4_under {
    border-bottom: 2px solid #c4c4c4;
}

.h6_side{
    border-left: 2px solid #000;
    padding-left: 5px;
}

/* imgs */
img {
    height: auto;
}

/* ヘッダー */
.header-Logo_container {
    /* float: left; */
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.top_logo {
    font-weight: 900;
}

.header-Logo {
    display: flex;
    align-items: center;
}

.header-Logo_container span {
    display: block;
}

.hearder-Description {
    font-size: 1rem;
}

/* フッター */
.footer-Logo_container {
    /* float: left; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #706c67;
}

.footer-Description {
    font-size: 1rem;
}

.footer-Logo_container span {
    display: block;
}


/* ヘッダーナビゲーション */
.header-Nav {
    display: flex;
    justify-content: center;
}

.header-Nav_Items {
    overflow-y: auto;

}

.header-Nav li {
    /* border-bottom: 1px dashed #000; */
    list-style: none;
    float: left;
    text-decoration: none;
}

.header-Nav a {
    position: relative;
    display: block;
    padding: 1rem 60px;
    text-decoration: none;
    overflow-wrap: break-word;
    line-height: 0;
    color: #000;

}


.header-Nav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: auto;
    content: "";
    text-decoration: none;

}

.header-Nav ul {
    margin-bottom: 0%;
    text-decoration: none;
}

.bg-green {
    background-color: #B9C67F;
}

.bg-whitegreen {
    background-color: #EFEFEA;
    padding: 2rem 0rem;
}

/* フッターナビゲーション */

.footer-Logo_container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-Nav {
    display: flex;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-Nav_Items {
    overflow-y: auto;
    margin-bottom: 0;

}

.footer-Nav ul {
    margin-bottom: 0;
}

.footer-Nav li {
    /* border-bottom: 1px dashed #000; */
    list-style: none;
    float: left;
}

.footer-Nav a {
    position: relative;
    display: block;
    padding: 1rem 15px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    overflow-wrap: break-word;
    line-height: 0;

}

.footer-Nav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: auto;
    content: "";

}

.footer-Logo_discription {
    color: white;
}

.footer-Logo_tel {
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    font-weight: 600;
}

/* 最近の投稿 */
.wp-block-latest-posts__list {
    color: aqua;
}

.wp-block-latest-posts__list a {
    text-decoration: none;
}

/* お問い合わせページ */

/* TELアイコン */
.icon_tel {
    display: block;
    padding: 20px 20px 10px 60px;
    background-position: left 20px !important;
    background-repeat: no-repeat;
    background-size: 52px 40px;
    background-image: url('../img/icon_tel.png');
}

.icon_tel_sm {
    display: block;
    padding: 10px 10px 5px 40px;
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 26px 20px;
    background-image: url('../img/icon_tel.png');
}

/* メディアクエリ */

@media screen and (min-width: 481px) {

    /* 481px以上に適用されるCSS（タブレット用） */

}

@media screen and (min-width: 960px) {
    /* 960px以上に適用されるCSS（PC用） */

}