@charset "UTF-8";

font {
    font-family: "Noto Sans JP", "Noto Serif JP", "Dancing Script";
}

img {
    width: 100%;
}

p {
    line-height: 1.7;
}

body {
    color: #2b2b2b;
}

header {
    position: fixed;
    background-color: #3B6F57;
    height: 51px;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1 {
    font-size: 24px;
    font-family: "Dancing Script";
    color: #fdfdfd;
    padding: 11px 23px;
}

.global-nav-pc {
    display: none;
}

/* ハンバーガーメニューの設定 */

.drawer-hamburger {
    width: 35px;
    padding: 15px .75rem 24px;
    background-color: #3B6F57;
    z-index: 120;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
    background-color: #fdfdfd;
}

.drawer-overlay {
    background-color: rgba(0, 0, 0, .6);
    z-index: 110;
}

.drawer-nav {
    width: 180px;
    z-index: 120;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 180px;
}

.drawer-menu li {
    border-bottom: 1px solid #579E7D;
}

.drawer-menu li a {
    position: relative;
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #333;
}

.drawer-menu li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    height: 10px;
    width: 10px;
    border-top: 2px solid #579E7D;
    border-right: 2px solid #579E7D;
    transform: translateY(-50%) rotate(45deg);
}

/* メイン */

main {
    padding: 51px 0 0 0;
}

/* スライダーの設定 */

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    background-color: #DFF2E9;
}

.slick-dots li button::before {
    font-size: 8px;
}

.slick-dots li button:hover::before {
    color: #79453d;
}

.slick-dots li.slick-active button::before {
    color: #9D5F56;
}

.prev_icon {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
    width: 24px;
    z-index: 10;
    cursor: pointer;
}

.next_icon {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%);
    width: 24px;
    z-index: 10;
    cursor: pointer;
}

.prev_icon:hover {
    opacity: 0.6;
}

.next_icon:hover {
    opacity: 0.6;
}

/* メイン内の複数に関わる設定 */

.intro,
.news,
.about,
.menu,
.opening-time,
.form {
    padding: 40px 20px;
}

.intro,
.about,
.opening-time,
.form {
    background-color: #DFF2E9;
}

h2 {
    font-size: 24px;
    font-family: "Dancing Script";
    font-weight: 600;
    color: #9D5F56;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1;
}

.news h2,
.menu h2,
.access h2 {
    color: #3B6F57;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* 各項目 */
/* 導入部分 */

.intro>h2 {
    font-family: "Noto Serif JP";
    font-size: 24px;
    color: #9D5F56;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 400;
    line-height: 1.7;
}

.pc-only {
    display: none;
}

.intro-s {
    display: flex;
    justify-content: center;
}

.intro p {
    font-size: 16px;
    font-family: "Noto Serif JP";
    color: #9D5F56;
    max-width: 600px;
}

/* お知らせ */

.news-list li {
    margin-bottom: 24px;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list time {
    display: inline-block;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.news-list p {
    font-size: 14px;
}

.news-list li a:hover {
    text-decoration: underline;
}

/* About */
.about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-list li {
    max-width: 335px;
}

.about p {
    font-size: 14px;
}

.about img {
    margin-bottom: 16px;
}

/* メニュー */
.menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.menu-list li {
    max-width: 335px;
}

.menu p {
    font-size: 16px;
    margin-bottom: 12px;
}

.menu-list p:last-child {
    font-size: 20px;
    margin: 0;
}

.menu img {
    margin-bottom: 16px;
}

.more-menu {
    display: flex;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 335px;
    height: 60px;
    padding: 18px 0;
    background-color: #579E7D;
    border: 1px solid #579E7D;
    box-sizing: border-box;
    color: #fdfdfd;
    font-size: 20px;
    cursor: pointer;
    gap: 20px;
    line-height: 1;
    transition: 0.2s;
}

.more-menu:hover {
    background-color: #fdfdfd;
    color: #579E7D;
}

.more-menu::after {
    content: "";
    display: flex;
    height: 15px;
    width: 15px;
    border-top: 2px solid #fdfdfd;
    border-right: 2px solid #fdfdfd;
    rotate: 45deg;
    transition: 0.2s;
}

.more-menu:hover::after {
    border-top: 2px solid #579E7D;
    border-right: 2px solid #579E7D;
}

/* 営業時間 */

/* 表の背景色を白に修正。デザインカンプでは#FFFFFFでしたが、他と合わせ#fdfdfdを使用 */

table {
    margin: 0 auto;
    font-size: 14px;
    width: 100%;
    max-width: 335px;
    line-height: 1;
    background-color: #fdfdfd;
}

table td {
    border: solid 1px #3B6F57;
    padding: 15px;
}

table tr td:first-child {
    width: 40%;
}

/* アクセス */

.access {
    padding: 40px 0 0;
}

.address {
    display: flex;
    justify-content: center;
}

.address p {
    font-size: 14px;
    margin-bottom: 24px;
}

.map iframe {
    aspect-ratio: 16/9;
    width: 100%;
    max-height: 400px;
}

/* 問い合わせフォーム */

.form form {
    max-width: 590px;
    margin: auto;
}

.form-row {
    margin: 0 0 16px;
}

.form label {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
}

.form input {
    -webkit-appearance: none;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #C8C8C8;
    background-color: #fff;
    width: 100%;
    height: 42px;
}

.form input::placeholder {
    font-size: 12px;
}

.form textarea {
    -webkit-appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 144px;
    padding: 5px;
    border: 1px solid #C8C8C8;
    background-color: #fff;
    resize: vertical;
}

.form-row:last-of-type {
    margin-bottom: 40px;
}

.form button {
    display: flex;
    max-width: 160px;
    margin: auto;
    padding: 13px 60px;
    background-color: #579E7D;
    border-radius: 18px;
    border: 1px solid #579E7D;
    font-size: 16px;
    color: #fdfdfd;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.form button:hover {
    color: #579E7D;
    background-color: #fdfdfd;
}

/* フッター */

footer {
    height: 60px;
    background-color: #3B6F57;
    font-size: 14px;
    color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* タブレット用設定 */

@media screen and (768px <=width) {

    .drawer-hamburger,
    .global-nav-sp {
        display: none;
    }

    .global-nav-pc {
        display: block
    }

    header {
        height: 60px;
    }

    .pc-menu {
        display: flex;
        padding: 20px 123px 20px 0;
        gap: 27px;
    }

    .pc-menu li {
        font-size: 16px;
    }

    .pc-menu li a {
        position: relative;
        text-decoration: none;
        color: #fdfdfd;
        transition: 0.2s;
    }

    .pc-menu li a:hover {
        border-bottom: 1.5px solid #fdfdfd;
    }

    .slick-dots li button::before {
        font-size: 15px;
    }

    .prev_icon {
        width: 24px;
    }

    .next_icon {
        width: 24px;
    }

    main {
        padding: 60px 0 0 0;
    }

    .intro,
    .news,
    .about,
    .menu,
    .opening-time,
    .form {
        padding: 60px 20px;
    }

    .intro>h2 {
        font-size: 30px;
        margin-bottom: 48px;
        line-height: 1.15
    }

    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }

    .intro p {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 48px;
    }

    h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    /* タブレット用お知らせ欄 */

    .news-list a {
        max-width: 600px;
    }

    .news-set {
        display: flex;
        justify-content: center;
    }

    .news-list time {
        font-size: 18px;
        width: 100px;
        margin-bottom: 0;
    }

    .news-list p {
        font-size: 18px;
        width: 500px;
    }

    /* タブレット用About */

    .about p {
        font-size: 16px;
    }

    /* タブレット用メニュー */

    .menu-list {
        flex-flow: row wrap;
        margin-bottom: 60px;
        justify-content: center;
    }

    .menu-list li {
        width: calc(50% - 120px);
    }

    .more-menu {
        border-radius: 26px;
        max-width: 380px;
        width: 27vw;
        height: 65px;
        padding: 18px 0;
        font-size: 22px;
    }

    /* タブレット用営業時間 */
    table {
        font-size: 16px;
        max-width: 462px;
        line-height: 1;
    }

    /* タブレット用アクセス */

    .access {
        padding: 60px 0 0;
    }

    .address p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* タブレット用お問合せ */
    .form label {
        font-size: 16px;
    }

    /* タブレット＆PC用フッター */

    footer {
        height: 76px;
        font-size: 16px;
    }

}

@media screen and (1024px <=width) {

    .prev_icon {
        width: 36px;
    }

    .next_icon {
        width: 36px;
    }

    .intro,
    .news,
    .about,
    .menu,
    .opening-time,
    .form {
        padding: 80px 40px;
    }

    h1 {
        padding: 14px 0 14px 120px
    }

    .intro>h2 {
        font-size: 36px;
        margin-bottom: 56px;
    }

    .intro p {
        font-size: 20px;
        max-width: 800px;
    }

    h2 {
        font-size: 36px;
        margin-bottom: 56px;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    /* PC用お知らせ欄 */

    .news-list a {
        max-width: 800px;
    }

    .news-list time {
        font-size: 20px;
        width: 145px;
    }

    .news-list p {
        font-size: 20px;
        width: 655px;
    }

    /* PC用　About */

    .about-list {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .about-list li {
        max-width: 380px;
        flex: 1;
    }

    .about img {
        margin-bottom: 24px;
    }

    /* PC用　メニュー */
    .menu-list {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .menu-list li {
        max-width: 275px;
        flex: 1;
    }

    .menu p {
        margin-bottom: 16px;
    }

    .menu img {
        margin-bottom: 24px;
    }

    .more-menu {
        border-radius: 30.8px;
        height: 77px;
        font-size: 24px;
    }

    /* PC用営業時間 */
    table {
        font-size: 24px;
        max-width: 589px;
    }

    table td {
        padding: 18px;
    }

    table tr td:first-child {
        width: 35.5%;
    }

    /* PC用アクセス */

    .access {
        padding: 80px 0 0;
    }

    .address p {
        font-size: 20px;
        margin-bottom: 60px;
    }

    /* PC用フォーム */
    .form-row {
        margin: 0 0 32px;
    }

    .form label {
        font-size: 18px;
    }

    .form input {
        height: 59px;
    }

    .form input::placeholder {
        font-size: 16px;
    }

    .form textarea {
        height: 232px;
    }

    .form button {
        width: 170px;
        height: 77px;
        font-size: 24px;
        padding: 13px 15px;
        border-radius: 30.8px;
    }
}