@charset "UTF-8";
@import url("https://use.typekit.net/zxg0pxv.css");

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}

body {
    height: auto;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}


/* ヘッダー */
/* 流れるテキスト */
.loop_wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 20px;
    background-color: #D5C8BC;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    font-family: 'Noto Serif JP', sans-serif;
}

.loop_area {
    display: flex;
    animation: loop-slide 75s infinite linear 1s both;
    list-style: none;
    margin: 0;
    padding: 0;
}

.loop_area .content {
    width: 1500px;
}

@keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

@media screen and (max-width: 900px) {

    .loop_wrap {
        height: 15px;
        font-size: 10px;
    }

    .loop_area .content {
        width: 350px;
    }

}


.header {
    width: 100%;
    height: 94px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 25px;
    border-bottom: 1px solid #CBBBAC;
}

.header_logo {
    display: flex;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
    font-family: 'Noto Serif JP', sans-serif;
}

.header_nav_list,
.header_nav_snslist {
    display: flex;
    gap: 25px;
}

.header_nav_list {
    font-size: 14px;
}

.header_nav_snslist {
    margin: 0 0 0 30px;
}

.header_btn {
    padding: 16px 8px;
    background-color: #CBBBAC;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0 0 0 30px;
}

.header_btn_text {
    margin: 10px 0 0 0;
} 


/* ハンバーガーメニュー */
@media screen and (max-width: 1024px) {

    .header {
        height: 65px;
    }

    .header_logo img {
        width: 130px;
    }

    .header_top {
        height: 50px;
    }

    .header_nav {
        position: fixed;
        top: 10px;
        right: -100%;
        transition: .5s;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #eee;
        min-height: 100vh;
        min-width: 60%;
        padding: 20px 70px 20px 20px;
        line-height: 1.8;
        transition: all .4s;
        transform: translateX(100%);
        display: block;
    }

    .header_nav a {
        display: block;
    }

    .header_nav.active {
        transform: translateX(0);
    }

    .header_nav_list {
        display: block;
    }

    .header_nav_list li{
        line-height: 45px;
        border-bottom: 1px solid #A09388;
        padding: 0 0 0 5px;
    }

    .header_nav_snslist {
        margin: 0;
        padding: 20px 0;
        display: flex;
        position: relative;
        left: 1px;
        gap: 28px;
    }

    .header_btn {
        margin: 0;
        padding: 15px 0;
        border-radius: 3px;
    }

    .init_buttom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header_btn_text {
        margin: 0;
    }

    .header_hamburger {
        position: fixed;
        top: 24px; 
        right: 15px;
        z-index: 9999;
        width: 25px;
        height: 30px;
    }

    .header_hamburger span {
        position: absolute;
        top: 20%;
        width: 100%;
        border-top: 2px solid #CBBBAC;
        transform-origin: center;
        transition: all .4s;
    }

    .header_hamburger span:nth-of-type(2) {
        top: 50%;
    }

    .header_hamburger span:nth-of-type(3) {
        top: 80%;
    }
    
    .header_hamburger.active span {
        border-color: #CBBBAC;
        transform: rotate(45deg);
        top: 50%;
    }

    .header_hamburger.active span:nth-of-type(2) {
        transform: none;
        opacity: 0;
    }

    .header_hamburger.active span:nth-of-type(3) {
        transform: rotate(-45deg);
    }

} 

@media screen and (max-width: 480px) {

    .header_nav {
        padding: 20px;
    }

    .header_top {
        padding: 0 0 0 15px;
    }

    .header_nav_list,
    .header_btn {
        font-size: 13px;
    }
    
}

/* ドロップダウンメニュー */
/* @media screen and (max-width: 769px) {

    .dropdown {
        position: relative;
        display: inline-block;
        margin-left: 20px;
    }
    
    .dropdown-button {
        background: none;
        border: none;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 5px 10px;
    }
    
    .arrow {
        margin-left: 5px;
        font-size: 12px;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown-content a:hover {
        background-color: #ddd;
    }
    
    .show {
        display: block;
    }

} */

/* ドロップダウンボタン */
/* @media screen and (min-width: 768px) {

    .dropdown {
        display: none;
    }

}

@media screen and (max-width: 768px) {

    .dropdown {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .dropdown-toggle {
        color: black;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    
    .dropdown-toggle .arrow {
        margin-left: 10px;
        transition: transform 0.3s;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        margin-top: 10px;
        border: 1px solid #ddd;
    }
    
    .dropdown-menu a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown-menu a:hover {
        background-color: #ddd;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown.open .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }
    

} */


/* お知らせ */
.news {
    margin: 150px 200px;
    padding: 0 24px;
}

.news h1 {
    font-size: 30px;
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
} 

.news_title {
    background: linear-gradient(transparent 70%, #E6DDD5 40%);
    padding: 0 4px;
    letter-spacing: 2px;
}

.news_filter {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}

.news_filter button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.news_filter button:hover,
.news_filter button.selected {
    border-bottom: 1px solid #CBBBAC;
}

.news_list {
    border-top: 1px solid #CBBBAC;
}

.news_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #CBBBAC;
}

.date_category_title {
    display: flex;
    align-items: center;
}

.date_new {
    display: flex;
    align-items: center;
}

.news_item .date {
    color: #A09388;
}

.news_item .date {
    padding: 0 130px 0 0;
}

.news_item .new {
    flex: 1;
    color: #FFF;
    background-color: #CBBBAC;
    padding: 3px 10px;
    font-size: 14px;
    margin: 0 62px 0 15px;
}

.news_item .category {
    font-size: 14px;
    padding: 0 0 6px 0;
}

.news_item .title {
    flex: 6;
    color: #000;
}

.news_item .link {
    flex: 1;
    text-align: right;
    color: #CBBBAC;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {

    .news {
        margin: 150px 0;
    }

}

@media screen and (max-width: 768px) {

    .news {
        margin: 120px 0 0;
    }

    .news h1 {
        font-size: 24px;
    }

    .news_filter {
        justify-content: center;
        gap: 20px;
        margin: 25px auto;
    }

    .news_filter button {
        padding: 10px;
        font-size: 14px;
    }

    .news_item {
        padding: 10px;
    }

    .date_category_title {
        display: block;
        align-items: center;
    }

    .news_item .date,
    .news_item .date1 {
        font-size: 14px;
        color: #A09388;
    }

    .news_item .new {
        padding: 2px 5px;
        font-size: 12px;
        margin: 0 80px 0 10px;

    }

    .news_item .category {
        font-size: 12px;
        padding: 8px 0 5px;
    }
    
    .news_item .title {
        font-size: 14px;
        flex: 6;
        color: #000;
    }

    .category_title_link {
        display: flex;
    }

}

@media screen and (max-width: 480px) {

    .news {
        padding: 0 12px;
    }

    .news_filter {
        justify-content: center;
        gap: 10px;
        margin: 20px auto;
    }

    .news_filter button {
        padding: 5px;
        font-size: 14px;
    }

    .news_item .new {
        padding: 2px 7px;
        font-size: 12px;
        margin: 0 0 0 10px;
        max-width: 45px;
    }

}

@media screen and (max-width: 350px) {

    .news_filter {
        justify-content: center;
        gap: 8px;
        margin: 15px auto;
    }

    .news_filter button {
        padding: 7px;
        font-size: 12px;
    }

}


/* フッター */
.footer {
    display: flex;
    padding: 30px 0;
    margin: 120px 50px 0;
    border-top: 1px solid #CBBBAC;
    justify-content: center;
}

.footer_context {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer_group {
    display: grid;
    grid-template-columns: repeat(auto-fit, 120px);
    gap: 5px 10px;
    justify-content: center;
}

.footer_title {
    font-size: 14px;
    font-weight: bold;
}

.footer_li {
    padding: 10px 0;
    width: 140px;
    font-size: 12px;
    font-family: 'Noto Serif JP', sans-serif;
}

/* 下 */
.logo_sns_group {
    display: flex;
    gap: 50px;
    align-items: center;
    color: #fff;
    background-color: #CBBBAC;
    padding: 50px;
}

.logo_sns_ul {
    padding: 20px 0 0;
}

.logo_sns_li {
    display: flex;
    gap: 30px;
}

.footer_mail {
    color: #000;
}

.footer_text {
    padding: 5px 0;
    color: #000;
    font-size: 12px;
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
    background-color: #D5C8BC;
}



@media screen and (max-width: 768px) {

    .footer {
        margin: 70px 24px 0;
    }

    .footer_context {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer_title {
        font-size: 16px;
    }

    .footer_mail {
        font-size: 14px;
    }

    .footer_li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .footer_text {
        font-size: 10px;
    }
    
    .footer_title {
        font-size: 14px;
    }

    .logo_sns_group {
        display: block;
        text-align: center;
    }

    .logo_sns_ul {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

}

@media screen and (max-width: 480px) {

    .footer {
        margin: 70px 0 0;
    }
}