@charset "UTF-8";
/* Theme Name: horoyoi */
/* ▼変数▼ */
:root {
    --bg_color:#FAF3E0;
    --btn_color: #D8C7CE;
    --text_color: #2C2C2C;
    --decoration_color: #CFA57A;
    --title_color: #A59ACA;
    --sub_bg_color: #DDD6E5;
}
/* ▲変数▲ */
/* ▼全体▼ */
html, body {
    height: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
body {
    background-color: var(--bg_color);
    color: var(--text_color);
    font-family: "Hannari","YuMincho", "Yu Mincho", serif;
    overflow-x: hidden;
}
h2 {
    color: var(--title_color);
    font-size: 36px;
    text-align: center;
}

@media (max-width:767px){
    h2{
        font-size: 24px;
    }
}
.back-top {
    font-size: 24px;
    background-color: var(--btn_color);
    border-radius: 20px;
    transition: 0.5s;
    padding: 20px 50px;
}
.back-top:hover{
    background-color: var(--decoration_color);
}
@media (max-width:1400px){
    .back-top {
        font-size: 20px;
    }
}
@media (max-width:767px){
    .back-top {
        font-size: 16px;
        padding: 15px 30px;
    }
}
.gradation {
    width: 100%;
    height: 100px;
    background: linear-gradient(to top,rgba(221, 214, 229, 1),rgba(250, 243, 224, 1));
}
.gradation-bottom{
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom,rgba(221, 214, 229, 1),rgba(250, 243, 224, 1));;
}
@media (max-width:767px){
    .gradation, .gradation-bottom {
        height: 50px;
    }
}
/* ▲全体▲ */
/* ▼ヘッダー▼ */
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.logo-big{
    display: block;
}
.logo-big img {
    width: 250px;
    position: relative;
    margin: 30px 0px 0px 30px;
    z-index: 2;
}
.logo-small {
    display: none;
}
.header-wrap {
    width: 100%;
    position: relative;
}
@media (max-width:1400px){
    .logo-big img{
        width: 200px;
    }
}
@media (max-width:767px){
    .logo-big {
        display: none;
    }
    .logo-small {
        display: block;
    }
    .logo-small img{
        width: 150px;
        position: relative;
        margin: -10px 0 0 -10px;
        z-index: 2;
    }
}
/* ▼ハンバーガーメニュー▼ */
.nav-toggle {
    width: 80px;
    height: 80px;
    background-color: var(--btn_color);
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
    z-index: 3;
}
.nav-toggle span{
    width: 50px;
    height: 2px;
    background-color: var(--text_color);
    display: block;
    position: relative;
    left: 15px;
    transition: 0.5s;
}
.nav-toggle span:first-child {
    top: 22px;
    transition: 0.5s;
}
.nav-toggle span:last-child {
    bottom: 22px;
    transition: 0.5s;
}

.nav-toggle.click span:first-child {
    rotate: -45deg;
    top: 2px;
    transition: 0.5s;
}
.nav-toggle.click span:nth-child(2){
    background-color: transparent;
    transition: 0.5s;
}
.nav-toggle.click span:last-child {
    rotate: 45deg;
    top: -2px;
    transition: 0.5s;
}
@media (max-width:1400px){
    .nav-toggle {
        width: 70px;
        height: 70px;
        right: 30px;
    }
    .nav-toggle span {
        width: 30px;
        left: 20px;
    }
    .nav-toggle span:first-child{
        top: 17px;
    }
    .nav-toggle span:last-child{
        bottom: 17px;
    }
}
@media (max-width:767px){
    .nav-toggle{
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
    .nav-toggle span{
        width: 20px;
        left: 15px;
    }
    .nav-toggle span:first-child{
        top: 12px;
    }
    .nav-toggle span:last-child{
        bottom: 12px;
    }
}
/* ▲ハンバーガーメニュー▲ */
/* ▼ハンバーガーメニューの中身▼ */
.nav-menu {
    width: fit-content;
    font-size: 32px;
    color: transparent;
    text-align: center;
    position: absolute;
    top:250px;
    left: 0;
    right: 0;
    margin: 0 auto;
    visibility: hidden;
    transform: translateX(-100%);
    transition: 0.5s ease-out;
}
.nav-menu li {
    padding-bottom: 50px;
}
.nav-menu a:hover {
    color: var(--decoration_color);
    transition: 0.5s;
}

.nav-menu.click {
    color: var(--text_color);
    visibility: visible;
    transform: translateX(0);
    transition: 0.5s ease-out;
    z-index: 2;
}
@media (max-width:767px){
    .nav-menu {
        font-size: 24px;
    }
}
/* ▲ハンバーガーメニューの中身▲ */
/* ▼ハンバーガーメニューの背景▼ */
.layer {
    display: none;
    background-color: transparent;
    transition: 0.5s ease-out;
}
.layer.click{
    width: 100vw;
    height: 100vh;
    background-color: var(--btn_color);
    display: inline;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s ease-out;
    z-index: 1;
}
/* ▲ハンバーガーメニューの背景▲ */
/* ▼予約ボタン▼ */
.reserve a{
    width: 75px;
    height: 200px;
    font-size: 20px;
    background-color: var(--btn_color);
    border-radius: 20px 0 0 20px;
    position: fixed;
    top: 200px;
    right: 0;
}
.reserve p{
    height: 100%;
    writing-mode: vertical-rl;
    text-align: center;
    margin: auto;
}
.reserve a:hover{
    background-color: var(--decoration_color);
}
@media (max-width:1400px){
    .reserve a{
        width: 50px;
        height: 120px;
        font-size: 16px;
        top: 150px;
    }
}
@media (max-width:767px){
    .reserve a{
        width: 30px;
        height: 80px;
        font-size: 14px;
        top: 100px;
    }
}
/* ▲予約ボタン▲ */
/* ▲ヘッダー▲ */
/* ▼フッター▼ */
footer {
    width: 100%;
    height: auto;
    background-color: var(--sub_bg_color);
    text-align: center;
    position: sticky;
    top: 100%;
}
footer .logo img{
    width: 450px;
    margin-top: 40px;
}
.sns{
    font-size: 18px;
    display: flex;
    justify-content: center;
    column-gap: 50px;
    margin: 50px 0 30px 0;
}
.copyright {
    font-size: 12px;
    padding-bottom: 20px;
}
@media (max-width:1400px){
    /* footer{
        height: 250px;
    } */
    footer .logo img{
        width: 300px;
    }
    .sns {
        font-size: 16px;
        margin: 20px 0;
    }
}
@media (max-width:767px){
    /* footer{
        height: 215px;
    } */
    footer .logo img{
        width: 200px;
    }
    .sns{
        font-size: 14px;
        margin: 20px 0;
    }
}
/* ▲フッター▲ */
/* ▼index▼ */
main {
    margin-top: 130px;
    position: relative;
    z-index: 0;
}
.main-logo {
    text-align: center;
}
.main-logo img {
    width: 450px;
}
@media (max-width:767px){
    .main-logo img{
        width: 200px;
    }
}
/* ▼メインビジュアル▼ */
.fade-wrap {
    width: 100%;
    height: 300vh;
    margin: 0 auto;
    margin-top: -20%;
}
.main-visual {
    width: 100%;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: -1;
    transform: scale(1);
}
.main-visual img {
    width: 100%;
    vertical-align: bottom;
    object-fit: cover;
}
.mv-outer{
    display: none;
}
.mv-inner {
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(to bottom,rgba(0,0,0,0),rgba(221, 214, 229, 1));
    transform: scale(1);
    opacity: 0.3;
}
.mv-bg {
    height: 100%;
    background: linear-gradient(to top,rgba(221, 214, 229, 1) 70vh ,rgba(250, 243, 224, 1));
    opacity: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: -2;
}
@media (max-width:767px){
    .fade-wrap {
        height: 100vh;
        margin-top: 0;
    }
    .main-visual{
        width: 100%;
        height: 100%;
    }
    .main-visual img {
        height: 100%;
    }
    .mv-outer{
        width: 100%;
        height: 30%;
        display: block;
        background: linear-gradient(to top,rgba(0,0,0,0),rgba(250, 243, 224, 1));
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}
/* ▲メインビジュアル▲ */
/* ▼about▼ */
.about{
    height: 600px;
    background: linear-gradient(to bottom,rgba(221, 214, 229, 1) 83%,rgba(250, 243, 224, 1));
    text-align: center;
    padding-top: 140px;
    margin: 0 auto;
}
.about p {
    font-size: 24px;
    padding: 140px 30px 0 30px;
}
@media (max-width:767px){
    .about{
        height: auto;
        padding-top: 40px;
        padding-bottom: 70px;
    }
    .about p{
        font-size: 16px;
        padding-top: 40px;
    }
}
/* ▲about▲ */
/* ▼お酒▼ */
.drink {
    background-color: var(--bg_color);
}
.drink h2{
    padding: 20px 0;
}
.sake-wrap {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 6%;
    row-gap: 70px;
    padding: 0 10%;
    margin-top: 150px;
}
.sake-wrap li{
    width: 41%;
    display: flex;
    justify-content: center;
}
.sake-wrap li:nth-of-type(3n){
    width: 100%;
}
.sake-wrap li:nth-of-type(3n) .thumbnail{
    width: 32%;
}
.sake-wrap li:nth-of-type(3n+2){
    margin-top: 150px;
}
.sake-wrap h3 {
    font-size: 32px;
    font-weight: normal;
    text-align: left;
    writing-mode: vertical-rl;
}
.sake-wrap p {
    font-size: 24px;
    position: relative;
}
.sake-wrap p a{
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.5s;
}
.sake-wrap p a:hover{
    scale: 1.2;
}
.shadow img{
    width: 100%;
    height: auto;
}
.shadow {
    position: relative;
    display: inline-block;
}
.shadow::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 10px 10px var(--bg_color);
}
@media (max-width:1400px){
    .sake-wrap{
        column-gap: 10%;
        row-gap: 30px;
        margin-top: 50px;
    }
    .sake-wrap li{
        width: 45%;
    }
    .sake-wrap li:nth-of-type(3n+2){
        margin-top: 0;
    }
    .sake-wrap li:nth-of-type(3n){
        width: 45%;
    }
    .sake-wrap li:nth-of-type(3n) .thumbnail, .thumbnail{
        width: 80%;
    }
    .sake-wrap h3{
        font-size: 24px;
    }
    .sake-wrap p{
        font-size: 16px;
    }
    .sake-wrap p a{
        top: auto;
        bottom: 10%;
    }
}
@media (max-width:767px){
    .sake-wrap {
        padding: 0 30px;
        row-gap: 50px;
    }
    .sake-wrap li, .sake-wrap li:nth-of-type(3n){
        width: 100%;
    }
    .sake-wrap h3{
        font-size: 20px;
    }
    .sake-wrap p{
        font-size: 14px;
    }
    .sake-wrap p a{
        bottom: 5%;
    }
}
/* ▲お酒▲ */
/* ▼メニュー▼ */
.menu{
    background-color: var(--sub_bg_color);
}
.menu h2{
    height: 500px;
    background: linear-gradient(to top,rgba(221, 214, 229, 1) 300px,rgba(250, 243, 224, 1));
    padding-top: 360px;
}
.single-menu li{
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
    justify-content: center;
    padding: 0 10%;
}
.single-menu li:nth-of-type(2n){
    flex-direction: row-reverse;
    margin-top: 80px;
}
.single-menu .thumbnail, .description  {
    width: 40%;
}
.single-menu .thumbnail img{
    width: 100%;
    height: auto;
}
.description h3{
    display: block;
    font-size: 24px;
    font-weight: normal;
}
.h3-sp {
    display: none;
}
.description p{
    font-size: 16px;
}
.course {
    font-size: 16px;
    text-align: center;
    transition: 0.5s;
    padding: 20px 0;
}
.course:hover{
    scale: 1.2;
}
@media (max-width:1400px){
    .single-menu li:nth-of-type(2n){
        flex-direction: row;
    }
}
@media (max-width:767px){
    .menu h2{
        height: 200px;
        padding-top: 100px;
        background: linear-gradient(to top,rgba(221, 214, 229, 1) 50px,rgba(250, 243, 224, 1));
    }
    .single-menu li, .single-menu li:nth-of-type(2n) {
        flex-direction: column;
    }
    .single-menu .thumbnail, .description {
        width: 100%;
    }
    .description h3{
        display: none;
    }
    .h3-sp {
        display: block;
        font-size: 20px;
        font-weight: normal;
        text-align: center;
        padding-bottom: 25px;
    }
    .single-menu li:nth-of-type(2n){
        margin-top: 70px;
    }
    .single-menu .thumbnail{
        margin-bottom: 25px;
    }
}
/* ▲メニュー▲ */
/* ▼お知らせ▼ */
.news {
    width: 100%;
    text-align: center;
    padding-bottom: 100px;
    margin: 0 auto;
}
.news h2{
    height: 300px;
    background: linear-gradient(to bottom,rgba(221, 214, 229, 1),rgba(250, 243, 224, 1));
    padding-top: 130px;
}
.news-list {
    text-align: left;
    padding: 0 30%;
}
.news-list p{
    font-size: 16px;
}
.news-list a{
    font-size: 18px;
}
.news-list li:hover{
    opacity: 0.7;
}
.news-list li{
    position: relative;
    transition: 0.5s;
    margin-bottom: 90px;
}
.news-list li::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--decoration_color);
    position: absolute;
    bottom: -15px;
    left: 0;
}
.readmore{
    font-size: 16px;
    text-align: right;
    margin-right: 25%;
}
.readmore a{
    display: inline-block;
    transition: 0.5s;
}
.readmore a:hover{
    scale: 1.2;
}
@media (max-width:767px){
    .news {
        padding-bottom: 50px;
    }
    .news h2 {
        height: 150px;
        padding-top: 70px;
    }
    .news-list {
        padding: 0 15%;
    }
    .news-list li{
        margin-bottom: 30px;
    }
    .news-list li::after {
        bottom: 0;
    }
    .readmore {
        margin-right: 10%;
    }
}
/* ▲お知らせ▲ */
/* ▼店舗情報▼ */
.info{
    background-color: var(--sub_bg_color);
}
.info h2{
    padding: 35px 0;
}
.info-wrap {
    display: flex;
    justify-content: center;
    column-gap: 100px;
    padding: 0 15%;
    padding-bottom: 100px;
}
.map {
    width: 45%;
}
.map iframe{
    width: 100%;
}
.info-dl {
    width: 45%;
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10%;
}
.info-dl dt{
    width: 15%;
    position: relative;
}
.info-dl dd{
    width: 75%;
}
.info-dl dt::after{
    content: "";
    width: 600%;
    height: 1px;
    background-color: var(--decoration_color);
    position: absolute;
    bottom: 30px;
    left: 0;
}
@media (max-width:1400px){
    .info-wrap {
        column-gap: 5%;
        padding: 0 5%;
        padding-bottom: 50px;
    }
    .info-dl{
        column-gap:  3%;
    }
    .info-dl dt::after{
        bottom: 0;
    }
}
@media (max-width:767px){
    .info-wrap{
        flex-direction: column;
        row-gap: 50px;
    }
    .map, .info-dl {
        width: 100%;
    }
    .info-dl {
        font-size: 12px;
    }
}
/* ▲店舗情報▲ */
/* ▼お問い合わせ▼ */
.contact{
    margin-bottom: 100px;
}
.contact h2{
    padding: 35px 0 100px 0;
}
.contact span{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
.contact span::after{
    content: "";
    width: 50%;
    height: 1px;
    background-color: var(--decoration_color);
    position: absolute;
    bottom: 50px;
    left: 25%;
}
.contact-wrap {
    font-size: 32px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.cantact-text{
    font-size: 20px;
    margin-bottom: 30px;
}
.tel-time{
    font-size: 18px;
    margin-top: 30px;
}
.tel{
    padding-right: 50px;
    position: relative;
}
.tel::after {
    content: "";
    width: 1px;
    height: 120%;
    background-color: var(--decoration_color);
    position: absolute;
    top: -10px;
    right: -50px;
}
.contact-btn{
    background-color: var(--btn_color);
    border-radius: 50px;
    padding: 10px 30px;
    transition: 0.5s;
}
.contact-btn:hover{
    background-color: var(--decoration_color);
}
.mail {
    padding-left: 80px;
}
@media (max-width:767px){
    .contact {
        margin-bottom: 50px;
    }
    .contact-wrap{
        flex-direction: column;
        row-gap: 40px;
    }
    .contact h2{
        padding-bottom: 35px;
    }
    .mail {
        padding-left: 0;
    }
    .tel{
        padding-right: 0;
    }
    .tel a{
        font-size: 20px;
    }
    .tel::after{
        width: 90%;
        height: 1px;
        right: 0;
        left: 5%;   
        top: 110px; 
    }
    .contact span::after{
        width: 90%;
        bottom: 30px;
        left: 5%;
    }
    .cantact-text {
        font-size: 16px;
        margin-bottom: 0;
    }
    .tel-time {
        font-size: 16px;
        margin-top: 0;
    }
    .contact-btn{
        font-size: 18px;
    }
}
/* ▲お問い合わせ▲ */
/* ▲index▲ */
/* ▼お酒個別▼ */
.drink-title-wrap{
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    margin: 0 auto ;
}
.drink-thumbnail{
    width: 800px;
}
.drink-thumbnail img{
    width: 100%;
}
.drink-title-inner{
    width: auto;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: space-between;
}
.drink-title-inner h2, .drink-title-inner p{
    color: var(--text_color);
    font-size: 48px;
    font-weight: normal;
    display: inline-block;
    vertical-align: bottom;
}

.drink-text-wrap{
    width: 100%;
    background-color: var(--sub_bg_color);
}
.drink-text {
    font-size: 40px;
    writing-mode: vertical-rl;
    margin: 0 auto;
}
.drink-other{
    width: 100%;
    text-align: center;
    padding: 0 10%;
    margin: 0 auto;
    margin-bottom: 70px;
}
.drink-other h3{
    font-size: 48px;
    font-weight: normal;
}
.drink-slide {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    column-gap: 5%;
    margin: 50px 0 25px 0;
}
.slide-list{
    width: calc(90%/3);
    flex-shrink: 0;
    transition: 0.5s;
}
.slide-img{
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}
.arow-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 10%;
    margin-bottom: 70px;
}
.arow-left, .arow-right{
    width: 30px;
    height: 30px;
    background-color: var(--btn_color);
}
.arow-left {
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.arow-right {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (max-width:1400px){
    .drink-thumbnail{
        width: 500px;
    }
    .drink-title-inner h2, .drink-title-inner p{
        font-size: 32px;
    }
    .drink-text{
        font-size: 24px;
    }
    .drink-other h3{
        font-size: 32px;
    }
    .drink-other {
        margin-bottom: 40px;
    }
    .drink-slide {
        margin: 30px 0 15px 0;
    }
}
@media (max-width:767px){
    .drink-title-wrap {
        height: 260px;
        padding-bottom: 50px;
    }
    .drink-thumbnail{
        width: 250px;
    }
    .drink-title-inner h2, .drink-title-inner p{
        font-size: 24px;
    }
    .drink-text {
        font-size: 20px;
        padding: 30px 0;
    }
    .drink-other h3{
        font-size: 24px;
    }
    .slide-list{
        width: 100%;
    }
}
/* ▲お酒個別▲ */
/* ▼お酒記事一覧▼ */
.archive-drink-list{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 100px;
    justify-content: center;
    margin: 50px auto;
}

.archive-drink-list li{
    width: 500px;
    height: 340px;
    position: relative;
    text-align: center;
    border: solid 3px var(--decoration_color);
    padding: 5px;
    overflow: hidden;
}

.archive-drink-list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    vertical-align: bottom;
    transition: 0.5s;
}

.archive-drink-list li img:hover {
    transform: scale(1.3);
}

.title-layer {
    width: 60px;
    height: 180px;
    background-color: var(--decoration_color);
    opacity: 0.7;
    font-size: 36px;
    font-weight: bold;
    display: inline-block;
    writing-mode: vertical-rl;
    position: absolute;
    top: 30px;
    right: 60px;
}

.pagenation ul{
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
    margin: 100px auto;
    text-align: center;
}
.prev-btn {
    width: 30px;
    height: 30px;
    background-color: var(--btn_color);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.next-btn{
    width: 30px;
    height: 30px;
    background-color: var(--btn_color);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.prev-btn a, .next-btn a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.prev-btn span, .next-btn span{
    width: 1px;
    height: 1px;
}
@media (max-width:1400px){
    .archive-drink-list {
        width: 100%;
        column-gap: 20px;
        row-gap: 50px;
    }
    .archive-drink-list li{
        width: 300px;
        height: 200px;
    }
    .title-layer{
        width: 50px;
        height: 140px;
        font-size: 24px;
        top: 30px;
        right: 30px;
    }
}
@media (max-width:767px){
    .archive-drink-list li{
        width: 250px;
        height: 170px;
    }
    .title-layer{
        width: 40px;
        height: 120px;
        font-size: 20px;
        top: 20px;
        right: 20px;
    }
    .pagenation ul{
        font-size: 14px;
        column-gap: 50px;
    }
    .prev-btn, .next-btn{
        width: 20px;
        height: 20px;
    }
}
/* ▲お酒記事一覧▲ */
/* ▼メニュー一覧▼ */
.menu-archive {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}
.menu-archive h2{
    margin-bottom: 100px;
}
.menu-info {
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 50px;
}
.menu-info h3{
    font-weight: normal;
}
h3, .price {
    display: inline;
}
.price{
    padding-left: 24px;
}
.menu-wrap {
    width: 70%;
    display: flex;
    justify-content: center;
    column-gap: 8%;
    margin: 0 auto;
    padding-bottom: 150px;
}
.menu-img, .menu-detail{
    width: 46%;
}
.menu-img img{
    width: 100%;
    object-fit: contain;
}
.menu-detail{
    text-align: left;
    margin: auto 0;
}
.menu-detail li {
    position: relative;
    font-size: 20px;
}
.menu-detail li::before{
    width: 20px;
    height: 20px;
    background-color: var(--decoration_color);
    content: "";
    position: absolute;
    top: 8px;
    left: -23px;
    clip-path: polygon(evenodd,  0 0, 0 100%, 100% 50%, 3px 3px, 3px calc(100% - 3px), calc(100% - 3px) calc(50% - 1.5px));
}


.menu-back-top {
    width: 100%;
    text-align: center;
    margin: 50px auto;
    padding: 0 2%;
}
@media (max-width:1400px){
    .menu-info {
        font-size: 20px;
    }
    .price {
        padding-left: 20px;
    }
    .menu-wrap{
        padding-bottom: 100px;
    }
    .menu-detail li{
        font-size: 16px;
    }
    .menu-detail li::before{
        width: 15px;
        height: 15px;
        left: -20px;
        top: 7px;
    }
}
@media (max-width:767px){
    .menu-info {
        margin-bottom: 30px;
    }
    .menu-wrap {
        flex-direction: column;
        row-gap: 30px;
        padding-bottom: 50px;
    }
    .menu-img, .menu-detail{
        width: 100%;
    }
}
/* ▲メニュー一覧▲ */
/* ▼お知らせ一覧▼ */
.news-wrap {
    width: 40%;
    text-align: left;
    margin: 0 auto;
}
.news-date{
    font-size: 16px;
}
.news-title {
    font-size: 18px;
    font-weight: normal;
}
.news-wrap li{
    position: relative;
    margin-bottom: 50px;
}
.news-wrap li::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--decoration_color);
    position: absolute;
    bottom: -5px;
    left: 0;
}
.news-wrap a{
    transition: 0.5s;
}
.news-wrap a:hover{
    opacity: 0.7;
}
@media (max-width:1400px){
    .news-wrap{
        width: 80%;
    }
}
/* ▲お知らせ一覧▲ */
/* ▼お知らせ投稿▼ */
.news-single{
    width: 60%;
    margin: 0 auto;
}
.article-news-date{
    font-size: 16px;
}
.article-news-title {
    font-size: 24px;
    display: block;
    padding-bottom: 20px;
}
.article-news-text{
    font-size: 20px;
    padding-top: 30px;
}
.article-news span{
    display: block;
    width: 100%;
    position: relative;
}
.article-news span::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--decoration_color);
    position: absolute;
    top: 0;
    left: -50px;
}
.article-news-text{
    font-size: 20px;
}
.share{
    font-size: 20px;
    text-align: center;
    padding-top: 150px;
}
.news-single .pagenation ul{
    column-gap: 200px;
    margin-top: 50px;
}
@media (max-width:1400px){
    .article-news span::after{
        left: 0;
    }
}
@media (max-width:767px){
    .article-news-date{
        font-size: 14px
    }
    .article-news-title{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .article-news span::after{
        left: 0;
    }
    .article-news-text{
        font-size: 16px;
        padding-top: 10px
    }
    .share{
        font-size: 12px;
        padding-top: 30px;
    }
    .news-single .pagenation ul{
        column-gap: 50px;
        margin-top: 15px;
    }
}
/* ▲お知らせ投稿▲ */
/* ▼お問い合わせ▼ */
.page-contact-wrap {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}
.page-contact-wrap h2{
    margin-bottom: 100px;
}
input, textarea {
    width: 100%;
    border: solid 1px var(--decoration_color);
    background-color: #fff;
}
label {
    display: flex;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}

label > span {
    width: 70%;
}
.contact-label-text {
    width: 30%;
    font-size: 24px;
}
.label-name input{
    height: 110px;
}
.label-email input, .label-tel input {
    height: 80px;
}
.label-text textarea{
    display: block;
    height: 200px;
}
.submit{
    width: auto;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}
input[type="submit"]{
    width: auto;
    display: block;
    background-color: var(--decoration_color);
    padding: 5px 10px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.submit:hover {
    opacity: 0.7;
}
@media (max-width:1400px){
    .contact-label-text {
        font-size: 16px;
    }
    .label-name input, .label-email input, .label-tel input{
        height: 30px;
    }
    .label-text textarea{
        height: 150px;
    }
    input[type="submit"]{
        font-size: 16px;
    }
}
@media (max-width:767px){
    .page-contact-wrap{
        width: 90%;
    }
    label {
        justify-content: center;
    }
    label > span{
        width: 45%;
    }
    .contact-label-text{
        width: 45%;
    }
}
/* ▲お問い合わせ▲ */