@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    font-family: "Hiragono kaku gothic ProN ", "Hiragino Sans", "BIZ UDPGothic", sans-self;
    line-height: 1;
    color: gray;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ht {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
    padding-right: 30px;
    gap: 0 1.5em;
    font-size: 14px;
    display: none;
}

.align-center {
    display: flex;
    justify-content: space-between;
}

#menu_btn_check {
    display: none;
}

.menu_btn {
    position: fixed;
    top: 1.8px;
    right: 10px;
    z-index: 999;
    width: 60px;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: gray;
    transition: all 0.3s linear;
    position: relative;
}

.menu_btn span::before {
    position: absolute;
    top: 8px;
}

.menu_btn span::after {
    position: absolute;
    bottom: 8px;
}

#menu_btn_check:checked~.menu_btn span {
    background-color: transparent;
}

#menu_btn_check:checked~.menu_btn span::before {
    rotate: 45deg;
    top: 0;
}

#menu_btn_check:checked~.menu_btn span::after {
    rotate: -45deg;
    bottom: 0;
    z-index: 9999;
}

.menu_content {
    position: fixed;
    top: 0;
    left: 100%;
    background-color: white;
    width: 100%;
    height: 100vh;
    text-align: right;
    padding-top: 100px;
    padding-right: 24px;
    transition: all 0.3s linear;
    z-index: 100;
}

#menu_btn_check:checked~.menu_content {
    top: 0;
    left: 0;
}

/* ディスクトップ版 */
@media (min-width: 800px) {

    /* ハンバーガー */
    .menu_btn {
        display: none;
    }

    .ht {
        display: flex;
    }

    /* 見出し */
    .page-title {
        font-size: 5rem;
    }

    .heading-large {
        font-style: 4rem;
    }

    /* ヘッダー */
    .main-nav {
        font-size: 5rem;
    }
}

.wrapper {
    max-width: 700px;
    margin: auto;
    padding: 0 1rem;
}

.font-english {
    font-family: 'Philosopher', sans-self;
    font-weight: normal;
}


.logo {
    width: 90px;
    padding-top: 5px;
    margin-left: 30px;
}


.main-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
}

a {
    text-decoration: none;
    color: gray;
}

a:hover {
    color: #b7b6b6;
}




.news {
    padding: 50px 0;
    background: white;
}


.inner {
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    padding: 30px 0 100px;
}


.sub_ttl {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

/* ここからがニュース記事のCSS */

.news_list {
    margin: 15px;
}

.news_list_item {
    padding: 25px 0;
    border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
    border-top: 1px solid #E6E6E6;
}

.news_list_item img {
    width: 100%;

}

.news_list_date {
    font-size: 15px;
    margin-right: 15px;
    align-items: center;
}

.news_item {
    background: #f5cbf7;
    border-radius: 14px;
    width: 6em;
    /* 親要素の文字サイズを基準 */
    text-align: center;
    margin-left: 20px;
}

.arrow {
    width: 25px;
    height: 1px;
    background: whitesmoke;
    position: absolute;
    top: 50%;
    right: 0;
}

.arrow::after {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: whitesmoke;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    bottom: 2px;
}


@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a {
        font-size: 14px;
    }


}

@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }

    .news_list_item a {
        padding-right: 0;
    }
}

/* フッター */
.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: whitesmoke;
}

.footer-001__logo {
    width: 130px;
    height: 30px;
}

.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}

.sp-menu_box {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    height: 60px;
    width: 60px;
    z-index: 100;
}

.sp-menu_box span,
.sp-menu_box span:before .sp-menu_box span::after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: absolute;
}

.mn {
    font-size: 15px;
    line-height: 1.5;
}

.footer-001__link {
    color: gray;
    font-weight: 200;
    text-decoration: none;
}

.footer-001__copyright {
    margin: 0;
    color: gray;
    font-weight: 200;
    font-size: .8em;
}

.about-1 {
    margin-top: 4.5rem;
    text-align: center;
    padding-bottom: 4px;
    font-size: 16px;
    color: gray;
}

.about-2 {
    margin-bottom: 8rem;
    text-align: center;
    font-size: 16px;
    color: gray;
}

.logo-02 {
    width: 30%;
    justify-content: center;
    color: gray;
}

.logo-ab {
    max-width: 200px;
    margin: auto;
    display: block;

}

/* 店舗情報 */
.location {
    margin-bottom: 3.5rem;
}

.location-info {
    margin-bottom: 2rem;
}

.location-info .info {
    padding: 0;
}

iframe {
    width: 100%;
}

.gmap_iframe {
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

.tytle {
    font-size: 20px;
    padding-top: 3px;
    padding-bottom: 10px;
    text-align: center;
    color: #f690fc;
}

.detail {
    font-size: 15px;
    padding-bottom: 16px;
    text-align: center;
    color: gray;
}