/* Move down content because we have a fixed navbar that is 50px tall */

body {}

li {
    padding: 0;
    margin: 0;
}

body {
    background-color: #FFF;
}

a {}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 576px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/* 余白 */

.space15px {
    padding: 15px
}

.space30px {
    padding: 30px
}

.space50px {
    padding: 50px
}


/* 改行 */

.text {
    display: inline-block;
}



/* スライドショー */



#slideshow {}

.slideshow {
    list-style-type: none;
}

.topimage {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-height: 900px;
    min-height: 600px;
}

.topimage ul {
    max-width: 500px;
    margin: 0;
    padding: 0;
}

.slideshow > li {
    opacity: 0;
    position: absolute;
    transition: opacity 3s ease-in-out;
    /*フェード時間・イージング*/
}

.slideshow > li.showSlide {
    opacity: 1;
}

.slideshow > li > img {
    width: 100%;
    max-height: 900px;
    min-height: 600px;
    object-fit: cover;
}

/* SP用メディアクエリ */
@media screen and (max-width:600px) {
    .slideshow {
        width: 100%;
        /* スライドショー幅（SP）*/
    }
}

.dots {
    position: absolute;
    background-image: url(../img/dots.png);
    width: 100%;
    height: 2000px;
    top: 0;
    z-index: 2000;
}


.top-logo {
    position: absolute;
    width: 180px;
    max-width: 30%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3000;
}

@media screen and (max-width:600px) {
    .top-logo {
        top: 25%;
    }
}

.top-logo img {
    width: 100%;
}

.scroll {
    position: absolute;
    width: 45px;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3000;
}

.scroll img {
    width: 100%;
}

/* コンテナ */

.container {
    max-width: 1000px;
    width: 100%;
    margin: auto;

}

/* トップロゴ */

.logoarea {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 10px 30px;
}

.logoarea .logo {
    width: 150px;
}

.logoarea h1 {
    font-size: 12px;
    color: #FFF;
}

.logoarea .topbtn {
    float: right;
    margin: 5px;
}

@media (max-width: 768px) {
    .logoarea {
        display: none;
    }
}


/* ナビバー pc*/

.inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #FFF;
}

.inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */

#top-head {
    width: 100%;
    line-height: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #FFF;
    z-index: 9999;
    padding: 10px 0;
}

#top-head a,
#top-head {
    color: #333;
    text-decoration: none;
}

#top-head .inner {
    position: relative;
}

#global-nav ul {
    list-style: none;
    right: 0;
    bottom: 0;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

#global-nav ul li {
    padding: 5px 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

#global-nav ul li a {}

#global-nav ul img {
    max-width: 150px;
    height: 55px;
    margin-right: 0px;

}

a :hover {
    opacity: 0.7;
}

#global-nav li + li {
    border-left: 1px solid #333;
}

@media (max-width: 768px) {
    #global-nav li {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #global-nav li + li {
        border-style: none;
    }
}



/* Fixed */

#top-head.fixed {
    margin-top: 0;
    top: 0;
    width: 100%;
    max-width: 1170px;
    position: fixed;
    background-color: #FFF;
    transition: top 1s ease-in;
    -webkit-transition: top 1s ease-in;
    -moz-transition: top 1s ease-in;
}

@media (max-width: 768px) {
    #top-head.fixed {
        width: 100%;
        height: 100px;
    }
}

#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}

#top-head.fixed #global-nav ul li a {
    color: #333;
}

/* Toggle Button */

#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 20px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 80%;
    background: #555;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 10px;
}

#nav-toggle span:nth-child(3) {
    top: 20px;
}

/* ナビバー sp*/

@media screen and (min-width: 769px) {
    #mobile-head .logo {
        display: none
    }
}

@media screen and (max-width: 769px) {

    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }

    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }

    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }

    #mobile-head {
        background-color: #FFF;
        width: 100%;
        z-index: 999;
        position: relative;
    }

    #mobile-head .logo {
        width: 150px;
    }

    #top-head.fixed .logo,
    #top-head .logo {
        width: 150px;
    }

    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -700px;
        background: #DDD;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 12px;
    }

    #global-nav ul li {
        float: none;
        position: static;
        display: block;
        padding: 0px;
    }

    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #555;
        line-height: 1.5em;
        padding: 10px 0;
        padding-top: 15px;
    }

    #nav-toggle {
        display: block;
    }

    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(750px);
        -webkit-transform: translateY(750px);
        transform: translateY(750px);
    }
}

/* TOPイメージ */

.topimage img {
    width: 100%;
}

@media (max-width: 768px) {
    .topimage img {
        margin-top: 50px;
        width: 100%;
    }
}

/* TOPメッセージ */

.top-message {
    background-image: url(../img/top_mes_bg.jpg);
    width: 100%;
    height: 550px;
    padding: 30px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .top-message {
        background-image: url(../img/top_mes_bg-sp.jpg);
        width: 100%;
    }

    .top-message img {
        width: 100%;
        max-width: 550px;
    }
}

.top-message p {
    color: #FFF;
}

.topimg .bg {
    width: 100%;
    max-height: 10rem;
    object-fit: cover;
}

/* TOPメニュー */

.top-menu p {
    padding-top: 10px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
}

.top-menu a {
    text-decoration: none;
}

.menu-link {
    position: relative;
    width: 100%;
}

.menu-link a {
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}


@media (max-width: 767px) {
    .title-head {
        width: 100%;
        margin-top: 70px;
    }

    .title-head img {
        width: 100%;
        max-width: 550px;
    }
}

/* 共通項目 */

h2 {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    letter-spacing: 0.2em;
    text-align: center;
    padding-top: 50px;
}

h3 {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-align: center;
    font-size: 1.5em;
    padding-bottom: 30px;
}

h4 {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-align: center;
    font-size: 1.1em;
    margin-top: 15px;
}

.row p {
    font-size: 0.9em;
}

.row img {
    width: 100%;
}

/* コンセプト */

/* インフォメーション */

#info {
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
}

#info h4 {
    font-family: sans-serif;
    font-size: 2em;
    font-weight: 100;
    text-align: left;
    color: #af5452;
}

#news {
    background-color: #edefed;
    padding: 30px;
    font-size: 0.8em;
}

#news li {
    list-style: none;
}


/* メニュー */
#menu p {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 15px;
    text-align: justify;
}

.lunch {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    margin: auto;
}

.lunch2 {
    padding: 0;
    margin: 0;
}

.lunch img,
.lunch2 img {
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}

#menu h5 {
    font-size: 1.1em;
}

.syokugo {
    font-family: sans-serif;
    margin: 2em 0;
    color: #FFF;
    background-color: #000;
    border: solid 1px #000;
}

@media (max-width: 846px) {
    .m-space {
        padding-top: 15px;
    }
}


/* ごあいさつ */

.gre-wh {
    position: relative;
}

.greeting p {
    font-size: 0.9em;
    text-align: justify;
}

.greeting img {
    width: 100%;
}

.pc-g-img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
}

.pc-greeting {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 45%;
    font-size: 0.8em;
    text-align: justify;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
}

#greeting .sp img {
    width: 100%;
}

.greeting-sp p {
    text-align: justify;
}

/* コンタクト */

.c-how {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.8em;
    text-align: center;
}

.c-how img {
    width: 250px;
}

.open-close {
    font-size: 1.2em;
}

.open-close hr {
    padding: 5px;
    margin: 0;
}

@media (max-width: 846px) {
    .c-space {
        padding-top: 30px;
    }
}

/* アクセス */
.a-data {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.8em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ギャラリー */
.gly-img {
    padding: 0;
    margin: 0;
}

.gly-img .col-md-6 {
    padding: 0;
    margin: 0;
}

.col-md-6 .col-md-12 {
    padding: 0;
    margin: 0;
}

.gly-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half img {
    max-height: 350px;
}

#gallery img {
    padding: 5px;
}

/* フッター */

.sitemap {
    width: 100%;
    max-width: 900px;
    padding: 15px;
    color: #555;
    margin: 0 auto;
    padding-bottom: 30px;
}

.sitemap a {
    color: #555;
}

.sitemap img {
    width: 200px;
}

.sitemap li {
    color: #555;
    list-style: none;
    line-height: 1.7em;
}

.sitemap-line li {
    color: #555;
    list-style: none;
    line-height: 2.3em;
}

.sitemap .small {
    color: #888;
}

footer {
    padding: 15px 30px;
}

.telmail {
    float: right;
    margin: 5px;
}

@media (max-width: 768px) {
    .telmail {
        display: none;
    }
}


footer p {
    clear: both;
    text-align: center;
    color: #555;
    font-size: 0.7em;
}

footer a {
    text-align: center;
    color: #555;
    font-size: 0.8em;
}
