@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/

/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #333;
    --color-primary: #D2B48C;
    --color-primary-shade: #D4A76A;
    --color-border: #ccc;
    --color-table-border: #ccc;

    --body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --font-family01: 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #333;
    --header-color-primary: #D2B48C;

    --footer-background: #D2B48C;
    --footer-color-font: #fff;
    --footer-color-primary: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    color: var(--color-font);
    font-size: var(--px16);
}
.pad_anchor{
    display: block;
    margin-top: -100px !important;
    padding-top: 100px !important;
}

/*--メディアクエリ--------------------------------------------*/
@media print, screen and (min-width: 1024px) {}
@media print, screen and (max-width: 1023px) {}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}


/*------------------------------------------------------
ベース修正
------------------------------------------------------*/
#front_top_content, #front_bottom_content {
    background: #fff;
}
.postlist .post_text {
    padding: 20px 0;
}
/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: var(--color-background01);
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

/*------------------------------------------------------
カラムリスト
------------------------------------------------------*/
/*---------col02-----------*/

.post .col2_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col2_list > li {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 600px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col03-----------*/

.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
}
.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}
.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
@media print, screen and (max-width: 768px) {
	.post .col3_list > li {
		width: 49%;
        margin-bottom: 8%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/

.post .col4_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col4_list > li {
    width: 24%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*------------------------------------------------------
Hover
------------------------------------------------------*/
a:hover {
    opacity: .7;
    cursor: pointer;
}

/*------------------------------------------------------
gap
------------------------------------------------------*/
/* 縦 */
.col_gap2 {
    display: flex;
    flex-direction: column;
    gap: var(--px20);
}
.col_gap6 {
    display: flex;
    flex-direction: column;
    gap: var(--px60);
}
.col_gap8 {
    display: flex;
    flex-direction: column;
    gap: var(--px80);
}
.col_gap10 {
    display: flex;
    flex-direction: column;
    gap: var(--px100);
}
.col_gap14 {
    display: flex;
    flex-direction: column;
    gap: var(--px140);
}

/* 横 */
.gap2 {
    gap: 2% !important;
}
.gap8 {
    gap: var(--px80) !important;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
/* 色 */
.color_w {
    color: #fff !important;
}

/* 配列 */
.txt_c_l {
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left;
    }
}

/* テキスト */
.post p, p {
    font-size: var(--rem16);
    line-height: 2.5;
}
.post p.fz20, p.fz20 {
    font-size: var(--rem20);
}
.post .read p, .read p {
    margin-bottom: 1em;
}
.post .read p:last-child, .read p:last-child {
    margin-bottom: 0;
}

/* 間隔 */
.post p {
    &.lh_25 {
        line-height: 2.5 !important;
    }
    &.lh_30 {
        line-height: 3 !important;
    }
}

/* H1 */
h1.title, .post h1, header#h1Header h1.title {
    font-size: var(--rem60);
    font-weight: 400;
    letter-spacing: .5rem;
}

h1.title.bottom-loop,
h1.title.top-loop {
    font-size: var(--rem48w);
    font-weight: 300;
    margin: 0 0 var(--px80);
    letter-spacing: .4rem;
}
h1.title.bottom-loop::after,
h1.title.top-loop::after {
    content: "";
    position: relative;
    visibility: visible;
    display: block;
    width: 1.2em;
    height: 2px;
    background: var(--color-primary);
    margin: 0.4em auto 0;
}

/* H2 */
.post h2 {
    font-size: var(--rem48w);
    font-weight: 300;
    margin: 0 0 var(--px80);
    letter-spacing: .4rem;
    &::after {
        content: '';
        position: relative;
        visibility: visible;
        display: block;
        width: 1.2em;
        height: 2px;
        background: var(--color-primary);
        margin: 0.4em 0 0;
    }
    &.txt_c {
        &::after {
            margin: 0.4em auto 0;
        }
    }
}

/* H3 */
.post h3, h3 {
    font-size: var(--rem30w);
    font-weight: 400;
    letter-spacing: .5rem;
    line-height: 1.45;
    padding: 0 20px;
    margin: 0 0 var(--px50);
    border: none;
    border-left: 5px solid var(--color-primary);
    display: flex;
    align-items: baseline;
    gap: 10px;
    @media print, screen and (max-width: 768px) {
        display: block;
        line-height: 1.2;
    }
    span {
        display: inline-block;
        font-size: var(--rem18);
        @media print, screen and (max-width: 768px) {
            font-size: var(--rem14);
        }
    }
}

/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* ulリスト */
.post ul.list {
    margin: 0;
    padding: 0;
    li {
        list-style: disc;
        padding-left: 1.3em;
        text-indent: -1.3em;
        margin-bottom: .7em;
        line-height: 1.55;
        list-style-position: inside;
        &:last-child {
            margin-bottom: 0;
        }
    }
}

.post ul.point_list {
    margin: var(--px120) auto 0;
    @media print, screen and (max-width: 1023px) {
        gap: var(--px60) 0;
    }
    &>li {
        width: 31%;
        display: flex;
        flex-direction: column;
        @media print, screen and (max-width: 1023px) {
            width: 48%;
        }
        @media print, screen and (max-width: 640px) {
            width: 100%;
        }
        img {
            display: block;
            margin: 0 auto var(--px20);
        }
        h3 {
            font-size: var(--rem24w);
            text-align: center;
            line-height: 1.65;
            margin: 0 auto var(--px20);
            padding: 0;
            border: none;
        }
    }
}

.post ul.staff_member {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    @media print, screen and (max-width: 1023px) {
        gap: var(--px60) 0;
    }
    > li {
        width: 31%;
        p.member_ttl {
            font-size: var(--rem20);
            font-weight: 400;
            letter-spacing: .4rem;
            margin-top: var(--px20);
        }
        @media print, screen and (max-width: 1023px) {
            width: 48%;
        }
        @media print, screen and (max-width: 768px) {
            width: 100%;
        }
        h3 {
            font-size: var(--rem30w);
            font-weight: 400;
            display: block;
            padding: 0;
            margin: 0 0 var(--px50);
            border: none;
            span {
                display: block;
                font-size: var(--rem20);
            }
        }
    }
}


/* olリスト */
.post ol.num  {
    margin: 0;
    padding: 0;
    li {
        list-style: none;
        padding-left: 1.3em;
        text-indent: -1.3em;
        margin-bottom: .7em;
        line-height: 1.55;
        &:last-child {
            margin-bottom: 0;
        }
    }
}


/* dlリスト */
.post dl.menu_list {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    dt {
        width: 67%;
        font-size: var(--rem20);
        font-weight: 400;
        padding-bottom: var(--px24);
        margin-bottom: var(--px24);
        border-bottom: 1px solid var(--color-table-border);
        @media print, screen and (max-width: 640px) {
            font-size: var(--rem14);
        }
    }
    dd {
        width: 33%;
        font-size: var(--rem24);
        font-weight: 400;
        text-align: right;
        padding-bottom: var(--px24);
        margin-bottom: var(--px24);
        border-bottom: 1px solid var(--color-table-border);
        @media print, screen and (max-width: 640px) {
            font-size: var(--rem14);
        }
    }
}

.post dl.staff_list {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    font-size: var(--rem20);
    @media print, screen and (max-width: 1023px) {
        flex-direction: column;
    }
    dt {
        width: 25%;
        margin-bottom: var(--px20);
        @media print, screen and (max-width: 1023px) {
            width: 100%;
            margin-bottom: 5px;
        }
    }
    dd {
        width: 75%;
        margin-bottom: var(--px20);
        line-height: 3;
        @media print, screen and (max-width: 1023px) {
            width: 100%;
        }
    }
}

.post dl.map_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    font-size: var(--rem20);
    font-weight: 400;
    dt {
        width: 20%;
        font-weight: normal;
        margin-bottom: var(--px24);
    }
    dd {
        width: 75%;
        margin-bottom: var(--px24);
        display: flex;
        @media print, screen and (max-width: 1023px) {
            display: block;
        }
        a.icon_map {
            margin-left: auto;
            display: flex;
            align-items: end;
            gap: 5px;
            @media print, screen and (max-width: 1023px) {
                margin-top: 10px;
            }
            &::before {
                content: "";
                display: block;
                background: url(/wp-content/uploads/icon_map.svg) no-repeat center / contain;
                width: 16px;
                height: 22px;
            }
        }
    }
}


/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 260px;
    text-align: right;
    font-weight: 500;
    font-size: var(--rem18);
    color: var(--color-font);
    letter-spacing: .3rem;
    line-height: 1.45;
    text-align: left;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    content: "";
    text-align: right;
    position: absolute;
    background: url(/wp-content/uploads/btn_arrow.svg) no-repeat center / contain;
    border: none;
    width: 55px;
    height: 7px;
    right: 0;
    top: 50%;
    transform: translate(-50%,0);
    -webkit-transition: .4s;
    transition: .4s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover {
    background: transparent;
    color: var(--color-font);
}
.post .linkBtn:hover::before, .linkBtn:hover::before, a.linkBtn:hover::before {
    border: none;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border: none;
    right: -20px;
}
.subimitarea {
    margin-top: var(--px60);
}


.linkBtn.btn_s, .post .linkBtn.btn_s, a.linkBtn.btn_s {
    max-width: 200px;
    font-size: var(--rem16);
    margin-left: auto;
    display: block;
}

/*------------------------------------------------------
画像
------------------------------------------------------*/
.post img.img_sns {
    @media print, screen and (max-width: 768px) {
        max-height: 100px !important;
        margin: 0 auto;
    }
}

/*------------------------------------------------------
table
------------------------------------------------------*/
.post table.table01 th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 500;
}


/*------------------------------------------------------
inner
------------------------------------------------------*/
.inner {
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}
#header ul.header__contact {
    margin-left: 20px;
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
    font-weight: 500;
    letter-spacing: .2rem;
}

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #fff;
    color: var(--color-font);
    font-family: var(--font-family01);
    font-size: 2.2rem;
}
#header a.head_btn.tel_btn .tel_icon::before {
    content: '\f095';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 1.8rem;
    line-height: 1;
    padding-right: 6px;
}
#header a.head_btn span.note {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-top: 0.2em;
}
#header a.head_btn.tel_btn:hover {
    opacity: .7;
}

#header a.head_btn.mail_btn::before {
    content: "";
    background: url(/wp-content/uploads/icon_mail_w.svg) no-repeat center / contain;
    border: none;
    width: 28px;
    height: 22px;
}

nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-ancestor li.current-menu-item a, nav#mainNav ul li.current-menu-ancestor li a:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* SP */
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a {
		padding: 16px;
	}
	nav#mainNav ul li a {
		border-bottom: 1px solid var(--color-border);
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}

#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
#foot-contact_pt05 {
    clear: both;
    position: relative;
    background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding: min(calc(90px + (1vw - 19.2px) * 1.9417), 90px) calc((100vw - 100%) / 2);
    z-index: 0;
    .wrapper_content {
        position: relative;
        z-index: 5;
        background: rgba(255, 255, 255, .85);
        padding: var(--px40);
        max-width: var(--content-max-width);
    }
    ul.contactbtn_list {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: min(calc(15px + (1vw - 19.2px) * 0.6472), 15px);
        max-width: 1000px;
        margin: min(calc(40px + (1vw - 1.92rem) * 1.2945),40px) auto;
        z-index: 10;
        @media print, screen and (max-width: 768px) {
            gap: 15px;
        }
        & > li {
            width: 100%;
            a.f-contact_btn {
                width: 100%;
                max-width: none;
                min-width: inherit;
            }
            @media print, screen and (min-width: 769px) {
                width: calc((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2);
            }
        }
        &:first-child {
            margin-top: 0;
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
}

/*FireFox対応*/
@-moz-document url-prefix() {
    @media print, screen and (min-width: 769px) {
            #foot-contact_pt05 ul.contactbtn_list > li {
                    width: calc(((100% - min(calc(15px + (1vw - 19.2px) * 0.6472), 15px)) / 2) - 1px);
            }
    }
}

#foot-contact_pt05 a.f-contact_btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    height: 100%;
    font-size: var(--rem24w);
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    padding: var(--px30) var(--px20);
    border-radius: 0;
    transition: .3s;
    @media print, screen and (max-width: 768px) {
        height: 110px;
    }
    &::after {
        content: "";
        background: url(/wp-content/uploads/btn_arrow.svg) no-repeat center / contain;
        border: none;
        width: 55px;
        height: 7px;
    }
    &.telBtn {
        color: var(--color-font);
        background: transparent;
        border: 1px solid var(--color-font);
        &:hover {
            color: var(--color-secondary);
            background: #FFF;
        }
        &::before {
            content: "";
            background: url(/wp-content/uploads/icon_tel.svg) no-repeat center / contain;
            border: none;
            width: 35px;
            height: 35px;
        }
    }
    &.mailBtn {
        color: var(--color-font);
        background: transparent;
        border: 1px solid var(--color-font);
        &:hover {
            color: var(--color-primary);
            background: #FFF;
        }
        &::before {
            content: "";
            background: url(/wp-content/uploads/icon_mail.svg) no-repeat center / contain;
            border: none;
            width: 28px;
            height: 22px;
        }
    }
    .note {
        font-size: var(--rem14);
        font-weight: 500;
        letter-spacing: .1rem;
    }
}


/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.post ul#sitemap_list li {
	margin-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	padding-left: 0;
	padding-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	border-bottom: 1px solid var(--color-border);
}

/*------------------------------------------------------
お問い合わせ
------------------------------------------------------*/
.post .wpcf7 table {
    border: none;
}
.post .wpcf7 table th,
.post .wpcf7 table td {
    padding: 20px 16px;
    border: none;
    border-top: 1px solid var(--color-table-border);
    border-bottom: 1px solid var(--color-table-border);
}
.post .wpcf7 table th {
    width: 30%;
    background: var(--color-background02);
    line-height: 1.25;
}
.wpcf7-form .must {
    background: #E80303;
}
.post p.contact_message, p.contact_message {
    font-size: var(--rem16);
    margin-bottom: var(--px60);
    line-height: 2.4;
}

@media print, screen and (max-width: 640px) {
    .post .wpcf7 table th {
            border-right: none;
            border-bottom: none;
            border-top: none;
            padding: 20px 0 10px 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            justify-content: space-between;
    }
    .post .wpcf7 table td {
            border-top: none;
            padding: 0 0 20px 0;
            padding-top: 5px;
    }
    .post .wpcf7 table tr:first-child {
            border-top: 1px solid var(--color-table-border);
    }
}

/* 完了 */
.post h2.thanks, h2.thanks {
    font-size: var(--rem30);
    margin: 0 0 var(--px30);
    text-align: left;
}
.post h2.thanks::after, h2.thanks::after {
    content: none;
}
.post .thanks_btn {
    margin: var(--px80) auto 0 !important;
    display: block;
}

/*------------------------------------------------------
新着情報
------------------------------------------------------*/
.post .time, .postlist .time, .post2b .time, .post4b .time {
    background: #fff;
    border: 1px solid var(--color-font);
}
.post .time a, .post2b .time a, .post4b .time a, .postlist .time a {
    color: var(--color-font);
}

/*------------------------------------------------------
column
------------------------------------------------------*/
.column01 {
    display: flex;
    flex-direction: column;
    gap: var(--px200);
    .column01_wrap {
        position: relative;
        z-index: 1;
        .txtarea {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--px80) var(--px40);
            margin: 0;
            .txtinner {
                max-width: 680px;
                width: 100%;
                @media print, screen and (max-width: 768px) {
                    width: 90%;
                }
            }
            @media print, screen and (max-width: 768px) {
                padding: var(--px50) 0;
            }
        }
        .imgarea {
            overflow: hidden;
            line-height: 0;
            margin: 0;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}

.column02 {
    .column02_wrap {
        display: flex;
        flex-direction: column;
        gap: var(--px100);
        .imgarea {
            width: 90%;
            margin-left: auto;
            @media print, screen and (max-width: 768px) {
                width: 100%;
            }
        }
        .txtarea {
            width: 100%;
            margin: 0 auto;
            .txtinner {
                max-width: 1000px;
                width: 86%;
                margin: 0 auto;
            }
        }
    }
}


/*------------------------------------------------------
staff
------------------------------------------------------*/
.post .staff_name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--px30);
    @media print, screen and (max-width: 768px) {
        justify-content: flex-start;
        margin: 0 0 var(--px40);
    }
    p.staff_ttl {
        font-size: var(--rem20);
        text-align: left;
    }
    h3 {
        font-size: var(--rem30w);
        display: flex;
        align-items: baseline;
        gap: 10px;
        padding: 0;
        margin: 0;
        border: none;
        span {
            font-size: var(--rem20);
            font-weight: 300;
        }
    }
}

.post .reserve_list {
    display: flex;
    justify-content: center;
    gap: var(--px80);
    margin: 0 auto;
    @media print, screen and (max-width: 768px) {
        justify-content: flex-start;

    }
}