@charset "UTF-8";

/* 全体 */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: serif;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.set {
    display: inline-block;
}

/* ヘッダー */
header {
    color: #0f0f0f;
}

.hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
    margin: 0 1rem;
}

.hd img {
    width:54px;
}

.hd_reserve p {
    font-size: 11px;
    margin: 0;
}

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

.hd_tel img {
    width: 20px;
}

.hd_tel p {
    font-size: 18px;
}

.na ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.2rem 0;
}

/* .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
  } */

.na li {
    font-size: 14px;
    font-weight: 500;
}

.na a:link {
    color: #0f0f0f;
}

.na a:visited {
    color: #0f0f0f;
}

.na a:hover {
    color: #C1A36C;
}

.na a:active {
    color: #C1A36C;
}

/* wrap */
.wrap {
    background-image: url(../images/backblack.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/* メイン */
.main {
    width: 100%;
    height: 50vh;
    background-image: url("../images/index.png");
    background-color: antiquewhite;
    background-position: center;
    background-size: cover;
}

/* コロナ */
.notice {
    margin: 30px auto;
    padding: 10px;
    width: 340px;
    height: auto;
    background-color: white;
    text-align: center;
    color: #0f0f0f;
}

.notice_anno p {
    font-size: 10px;
}

.cap {
    font-size: 18px;
    font-weight: 400;
    border-bottom: solid 0.5px #3b3b3b;
}

.notice_cont {
    padding: 0.5rem 0;
}

.notice_cont p {
    font-size: 14px;
}

.notice_last {
    padding: 0.2rem 0;
}

.notice_last p {
    font-size: 11px;
}

.notice_small p {
    font-size: 8px;
}

/* コンセプト */
.commit {
    display: flex;
    width: 100%;
}

.concept img {
    width: 50%;
}

.com_text {
    text-align: center;
    background-color: #C1A36C;
    color: #FBF8F4;
    flex-grow: 1;
}

.com_text h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0.5rem;
}

.com_text p {
    font-size: 12px;
    margin: 0 0.5rem 0.5rem;
}

.button {
    background-color: #B5574F;
    padding: 0.2rem;
    margin-bottom: 0.5rem;
    font-size: 10px;
}

.button a:link {
    color: #FBF8F4;
}

.button a:visited {
    color: #FBF8F4;
}

.button a:hover {
    color: #BDA661;
}

.button a:active {
    color: #BDA661;
}

/* お知らせ */
.news {
    text-align: center;
    margin: 30px auto;
}

.news h2 {
    font-size: 30px;
    color: #C1A36C;
}

.news_text {
    color: #FBF8F4;
    font-size: 14px;
    margin: 0 auto;
}

.news_text div {
    display: flex;
    align-items: top;
    margin-left: 2rem;
}

.news_text dt {
    margin-right: 1rem;
}

.news_text dd {
    margin-right: 2rem;
    text-align: left;
}

/* 情報 */
.link {
    padding: 30px 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.link p {
    color: #0f0f0f;
    text-shadow: 2px 2px 3px #FBF8F4;
    text-align: center;
    line-height: 145px;
    font-size: 22px;
}

.linkinfo {
    width: 145px;
    height: 145px;
    background-image: url(../images/storeguide.png);
    background-color: antiquewhite;
    background-position: center;
    background-size: cover;
}

.linkaccess {
    width: 145px;
    height: 145px;
    background-image: url(../images/access.png);
    background-color: antiquewhite;
    background-position: center;
    background-size: cover;
}

/* フッター */
footer {
    color: #FBF8F4;
    background-color: #0f0f0f;
    text-align: center;
}

.ft {
    padding: 0.3rem 0;
    margin: 0 1rem;
}

.ft_set {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ft_set h4 {
    margin:0;
    text-align: center;
}

.ft img {
    width: 65px;
}

.ft_text {
    font-size: 14px;
    margin-left: 1.5rem;
}

.ft_reserve {
    margin-bottom: 0.5rem;
}

.ft_reserve p {
    font-size: 13px;
    margin: 0;
    font-weight: lighter;
}

.ft_tel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ft_tel img {
    width: 16px;
    margin: 0;
}

.ft_tel p {
    font-size: 16px;
    margin-left: 0.3rem;
    font-weight: bold;
}

.cp p {
    font-size: small;
    text-align: center;
}

/* レスポンシブ（tablet） */
@media screen and (min-width:768px) {
    /* ヘッダー */
    .hd {
        padding: 0.3rem 0;
        /* outline: solid 1px red; */
    }
    .hd img {
        width:70px;
    }
    .hd_reserve p {
        font-size: 14px;
    }
    .hd_tel img {
        width: 25px;
    }
    .hd_tel p {
        font-size: 25px;
    }
    .na li {
        font-size: 18px;
        font-weight: 500;
    }
    /* メイン */
    .main {
        height: 65vh;
    }
    /* コロナ */
    .notice {
        margin: 35px auto;
        padding: 10px;
        width: 600px;
        height: auto;
    }
    .notice_anno p {
        font-size: 12px;
    }
    .cap {
        font-size: 23px;
    }
    .notice_cont {
        padding: 0.8rem 0;
    }
    .notice_cont p {
        font-size: 25px;
    }
    .notice_last {
        padding: 0.6rem 0;
    }
    .notice_last p {
        font-size: 14px;
    }
    .notice_small {
        margin-bottom: 1rem;
    }
    .notice_small p {
        font-size: 12px;
    }
    /* コンセプト */
    .com_text h2 {
        font-size: 40px;
        margin-top: 15px;
        margin-bottom: 0.5rem;
    }
    .com_text p {
        font-size: 19px;
        margin: 0 2rem 1rem;
    }
    .button {
        padding: 0.5rem;
        margin-bottom: 1rem;
        font-size: 18px;
    }
    /* お知らせ */
    .news {
        margin: 35px auto;
    }
    .news h2 {
        font-size: 44px;
        margin-bottom: 2rem;
    }
    .news_text {
        font-size: 20px;
    }
    .news_text div {
        margin-left: 10%;
        margin-bottom: 1rem;
    }
    .news_text dt {
        margin-right: 2rem;
    }
    /* 情報 */
    .link {
        padding: 35px 0;
    }
    .link p {
        line-height: 260px;
        font-size: 45px;
    }
    .linkinfo {
        width: 260px;
        height: 260px;
    }
    .linkaccess {
        width: 260px;
        height: 260px;
    }
    /* フッター */
    .ft {
        padding: 0.3rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ft_set {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ft img {
        margin-right: 1rem;
    }
    .ft_text {
        font-size: 16px;
        margin-left: 1rem;
        text-align: left;
    }
    .ft_reserve p {
        font-size: 16px;
    }
    .ft_tel img {
        width: 18px;
        margin: 0;
    }
    .ft_tel p {
        font-size: 18px;
    }
}

/* レスポンシブ（pc） */
@media screen and (min-width:1024px) {
    /* ヘッダー */
    /* .hd {
        outline: solid 1px blue;
    } */
    .hd img {
        width:90px;
    }
    .hd_reserve p {
        font-size: 17px;
    }
    .hd_tel img {
        width: 36px;
    }
    .hd_tel p {
        font-size: 36px;
    }
    .na li {
        font-size: 22px;
        font-weight: 500;
    }
    /* メイン */
    .main {
        height: 75vh;
    }
    /* コロナ */
    .notice {
        margin: 45px auto;
        padding: 10px;
        width: 790px;
    }
    .notice_anno p {
        font-size: 13px;
    }
    .cap {
        font-size: 26px;
    }
    .notice_cont {
        padding: 1.3rem 0;
    }
    .notice_cont p {
        font-size: 28px;
    }
    .notice_last {
        padding: 1rem 0;
    }
    .notice_last p {
        font-size: 16px;
    }
    .notice_small p {
        font-size: 14px;
    }
    /* コンセプト */
    .com_text h2 {
        font-size: 48px;
        margin-top: 30px;
        margin-bottom: 1rem;
    }
    .com_text p {
        font-size: 24px;
        margin: 0 5rem 1rem;
    }
    .button {
        padding: 0.5rem;
        margin-bottom: 1rem;
        font-size: 21px;
    }
    /* お知らせ */
    .news {
        margin: 45px auto;
    }
    .news h2 {
        font-size: 50px;
        margin-bottom: 2rem;
    }
    .news_text {
        font-size: 22px;
    }
    .news_text div {
        margin-left: 20%;
        margin-bottom: 1rem;
    }
    .news_text dt {
        margin-right: 2rem;
    }
    /* 情報 */
    .link {
        padding: 45px 0;
    }
    .link p {
        line-height: 300px;
        font-size: 55px;
    }
    .linkinfo {
        width: 300px;
        height: 300px;
    }
    .linkaccess {
        width: 300px;
        height: 300px;
    }
    /* フッター */
    .ft {
        padding: 0.5rem 0;
    }
    .ft img {
        width: 75px;
    }
    .ft_text {
        font-size: 22px;
        margin-right: 1rem;
    }
    .ft_reserve p {
        font-size: 15px;
    }
    .ft_tel img {
        width: 30px;
        margin: 0;
    }
    .ft_tel p {
        font-size: 30px;
    }
}

