@charset "utf-8";

*, *::before, *::after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body, h1, h2, h3, nav, ul, li, ol, dl, dt, dd, main, section, aside, small, p, img {
    margin: 0;
    padding: 0;
}
img {
    vertical-align: bottom;
    border-style: none;
}
a {
    text-decoration: none;
}
a:link, :visited, :active {
    color: #333;
}
p {
    margin-bottom: 1em;
    text-align: left;
}
body {
    text-align: center;
    font-size: 1.6em;
    font-family: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W3", "UD Digi Kyokasho NP-B", "HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO", "メイリオ", Meiryo, Arial, sans-serif;
    color: #333;
    position: relative;
}

/*    ヘッダー    */

header {
    height: 100px;
    position: relative;
    box-shadow: 0 1px 8px rgba(0,0,0,.1);
    z-index: 1001;
}
header h1 {
    margin: auto 0;
}
header h1 img {
    width: 220px;
    height: 60px;
}
header .container {
    display: flex;
    width: 960px;
    height: 100px;
    margin: 0 auto;
    justify-content: space-between;
}
.nav_global ul {
    display: flex;
    width: 660px;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    z-index: 1000;
}
.nav_global li {
    text-align: center;
    width: 110px;
    height: 100px;
    border-left: 1px solid #dadada; 
}
.nav_global li:last-of-type {
    border-right: 1px solid #dadada;
}

.nav_global li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    transition: .3s;
}
.nav_global ul span {
    display: block;
    padding-top: 10px;
    font-weight: normal;
    font-size: 1.4rem;
}
.nav_global ul span:active {
    color: #fff;
}
.nav_global .home_color {
    background-color: #fff;
    color: #fdb731;
}
.nav_global .home_color:hover {
    background-color: #fdb731;
    color: #fff;
}
.nav_global .home_current {
    background-color: #fdb731;
    color: #fff;
}
.nav_global .about_color {
    background-color: #fff;
    color: #3d8f58;
}
.nav_global .about_color:hover {
    background-color: #3d8f58;
    color: #fff;
}
.nav_global .about_current {
    background-color: #3d8f58;
    color: #fff;
}
.nav_global .menu_color {
    background-color: #fff;
    color: #d0504d;
}
.nav_global .menu_color:hover {
    background-color: #d0504d;
    color: #fff;
}
.nav_global .menu_current {
    background-color: #d0504d;
    color: #fff;
}
.nav_global .news_color {
    background-color: #fff;
    color: #1566aa;
}
.nav_global .news_color:hover {
    background-color: #1566aa;
    color: #fff;
}
.nav_global .news_current {
    background-color: #1566aa;
    color: #fff;
}
.nav_global .cats_color {
    background-color: #fff;
    color: #87644d;
}
.nav_global .cats_color:hover {
    background-color: #87644d;
    color: #fff;
}
.nav_global .cats_current {
    background-color: #87644d;
    color: #fff;
}
.nav_global .access_color {
    background-color: #fff;
    color: #895fa1;
}
.nav_global .access_color:hover {
    background-color: #895fa1;
    color: #fff;
}
.nav_global .access_current {
    background-color: #895fa1;
    color: #fff;
}

/*    ハンバーガーメニュー    */

.sp_global {
    display: none;
    width: 48px;
    height: 41px;
    cursor: pointer;
    position: absolute;
    top: 30%;
    right: 5%;
}
.sp_global span {
    display: inline-block;
    transition: all .4s;
    width: 45px;
    height: 8px;
    background-color: #8e6b4f;
    border-radius: 10px;
    position: absolute;
    right: 5%;
}
.sp_global span:nth-of-type(1) {
    top: 0px;
}
.sp_global span:nth-of-type(2) {
    top: 15px;
}
.sp_global span:nth-of-type(3) {
    top: 30px;
}
.active.sp_global span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.active.sp_global span:nth-child(2) {
    opacity: 0;
}
.active.sp_global span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}

/*    フッター    */

footer .pagetop {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
    background-color: #8e6b4f;
    position: fixed;
    right: 4%;
    bottom: 5%;
    opacity: .9;
    transition: .3s;
    z-index: 1000;
}
footer .angle {
    font-size: 45px;
    color: #fff;
    text-align: center;
}
footer .pagetop:hover {
    opacity: .7;
}
.footer_global {
    width: 100%; 
    height: auto;
}
.footer_global ul {
    display: flex;
    padding: 30px 0;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_global ul li {
    margin: 0 10px;
    padding: 10px 0;
    font-size: 1.8rem;
}
.footer_global .home_color {
    color: #fdb731;
}
.footer_global .about_color {
    color: #3d8f58;
}
.footer_global .menu_color {
    color: #d0504d;
}
.footer_global .news_color {
    color: #1566aa;
}
.footer_global .cats_color {
    color: #87644d;
}
.footer_global .access_color {
    color: #895fa1;
}
.footer_global ul li:hover {
    opacity: .6;
}
.footer_global small p {
    color: #575756;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 20px;
}
.footer_global small a:hover {
    opacity: .6;
}

/*    ホームページ：スライド    */

.slider img {
    width: 100%;
    height: auto;
}

/*    ホームページ：共通要素    */

section {
    position: relative;
    padding: 90px 0;
}
section:nth-of-type(odd) {
    background-color: #fff5e1;
}
section:nth-of-type(even) {
    background-color: #fff;
}
.box_info p, .card_info p, address p {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.6;
}
.btn {
    width: 200px;
    height: 40px;
    margin: 40px auto 0;
    line-height: 40px;
    text-align: center;
    display: block;
    border-radius: 100px;
    font-size: 1.5rem;
    transition: .3s;
}

/*    ホームページ：お店について    */

.about h2, .about span {
    color: #3d8f58;
}
.about h2::before, .about span::after {
    content: "";
    position: absolute;
    background: url(../img/pad.png);
    -webkit-background-size: 62px;
    background-size: 62px;
    background-repeat: no-repeat;
    width: 62px;
    height: 54px;
    opacity: .7;
}
.about h2::before {
    left: 13%;
    transform: rotate(-30deg);
}
.about span::after {
    right: 13%;
    top: 120px;
    transform: rotate(15deg);
}
.about h2 {
    margin-bottom: 30px;
    font-size: 3rem;
}
.about span {
    font-size: 1.8rem;
}
.about .container {
    display: flex;
    width: 960px;
    height: 400px;
    margin: 60px auto 0;
    background-color: #fff;
}
.about .box_img, .about .box_info {
    width: 50%;
}
.about .box_info {
    padding: 60px;
}
.about .btn {
    border: 1px solid #3d8f58;
    color: #3d8f58;
}
.about .btn:hover {
    color: #fff;
    background-color: #3d8f58;
}

/*    ホームページ：喫茶メニュー    */

.menu h2, .menu span {
    color: #d0504d;
}
.menu h2::before, .menu span::after {
    content: "";
    position: absolute;
    background: url(../img/pad.png);
    -webkit-background-size: 62px;
    background-size: 62px;
    background-repeat: no-repeat;
    width: 62px;
    height: 54px;
    opacity: .6;
}
.menu h2::before {
    left: 13%;
    top: 120px;
    transform: rotate(-15deg);
}
.menu span::after {
    right: 13%;
    top: 100px;
    transform: rotate(30deg);
}
.menu h2 {
    margin-bottom: 30px;
    font-size: 3rem;
}
.menu span {
    font-size: 1.8rem;
}
.menu .container {
    display: flex;
    width: 960px;
    height: 400px;
    margin: 60px auto 0;
}
.menu .box_img, .menu .box_info {
    width: 50%;
    background-color: #fff;
}
.menu .box_info {
    padding: 60px;
    background-color: #fff;
}
.menu .btn {
    border: 1px solid #d0504d;
    color: #d0504d;
}
.menu .btn:hover {
    color: #fff;
    background-color: #d0504d;
}

/*    ホームページ：お知らせ    */

.news h2, .news span {
    color: #1566aa;
}
.news h2::before, .news span::after {
    content: "";
    position: absolute;
    background: url(../img/pad.png);
    -webkit-background-size: 62px;
    background-size: 62px;
    background-repeat: no-repeat;
    width: 62px;
    height: 54px;
    opacity: .6;
}
.news h2::before {
    left: 13%;
    transform: rotate(-30deg);
}
.news span::after {
    right: 13%;
    top: 120px;
    transform: rotate(15deg);
}
.news h2 {
    margin-bottom: 30px;
    font-size: 3rem;
}
.news span {
    font-size: 1.8rem;
}
.news .container {
    width: 960px;
    margin: 60px auto 0;
}
.news .grid_card {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news .grid_card li {
    position: relative;
    width: 310px;
    list-style: none;
    padding: 15px;
}
.news .grid_card li:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    transition: .5s;
}
.news .grid_card .card_img {
    width: 280px;
}
.news .grid_card .label {
    position: absolute;
    top: 15px;
    width: 140px;
    height: 35px;
    color: #fff;
    text-align: center;
    line-height: 35px;
}
.news .grid_card .coupon {
    background-color: #f8bf52;
}
.news .grid_card .media {
    background-color: #f67152;
}
.news .grid_card .cat-new {
    background-color: #4eb45d;
}
.news .grid_card .card_info {
    margin: 15px 10px;
    font-size: 1.7rem;
}
.news .grid_card .date {
    color: #7e7e7e;
    font-size: 1.3rem;
    margin-bottom: 0;
}
.news .btn {
    border: 1px solid #1566aa;
    color: #1566aa;
    background-color: #fff;
}
.news .btn:hover {
    color: #fff;
    background-color: #1566aa;
}

/*    ホームページ：猫スタッフ    */

.cats h2, .cats span {
    color: #87644d;
}
.cats h2::before, .cats span::after {
    content: "";
    position: absolute;
    background: url(../img/pad.png);
    -webkit-background-size: 62px;
    background-size: 62px;
    background-repeat: no-repeat;
    width: 62px;
    height: 54px;
    opacity: .6;
}
.cats h2::before {
    left: 13%;
    top: 120px;
    transform: rotate(-15deg);
}
.cats span::after {
    right: 13%;
    top: 90px;
    transform: rotate(30deg);
}
.cats h2 {
    margin-bottom: 30px;
    font-size: 3rem;
}
.cats span {
    font-size: 1.8rem;
}
.cats .container {
    display: flex;
    width: 960px;
    height: 400px;
    margin: 60px auto 0;
}
.cats .box_img, .cats .box_info {
    width: 50%;
    background-color: #fff;
}
.cats .box_info {
    padding: 60px;
    background-color: #fff;
}
.cats .btn {
    border: 1px solid #87644d;
    color: #87644d;
}
.cats .btn:hover {
    color: #fff;
    background-color: #87644d;
}

/*    ホームページ：アクセス    */

.access h2, .access span {
    color: #895fa1;
}
.access h2::before, .access span::after {
    content: "";
    position: absolute;
    background: url(../img/pad.png);
    -webkit-background-size: 62px;
    background-size: 62px;
    background-repeat: no-repeat;
    width: 62px;
    height: 54px;
    opacity: .6;
}
.access h2::before {
    left: 13%;
    transform: rotate(-30deg);
}
.access span::after {
    right: 13%;
    top: 120px;
    transform: rotate(15deg);
}
.access h2 {
    margin-bottom: 30px;
    font-size: 3rem;
}
.access span {
    font-size: 1.8rem;
}
.access .container {
    width: 960px;
    margin: 60px auto 0;
}
address p {
    text-align: center;
    font-style: normal;
    margin-top: 40px;
}
.access .btn {
    border: 1px solid #815d98;
    color: #815d98;
    background-color: #fff;
}
.access .btn:hover {
    color: #fff;
    background-color: #815d98;
}

/*    ブレイクポイント（959px以下）*/

@media screen and (max-width: 959px) {
    header {
        width: 100%;
        height: auto;
    }
    header h1 {
        margin: 10px;
    }
    header .container {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }
    .about .container {
        flex-direction: column;
        align-items: center;
        width: 480px;
        height: auto;
    }
    .about .box_img {
        width: 100%;
    }
    .about .box_img img {
        width: 100%;
        height: auto;
    }
    .about .box_info {
        width: 100%;
        height: auto;
        padding: 40px 20px 30px;
    }
    .menu .container {
        flex-direction: column;
        align-items: center;
        width: 480px;
        height: auto;
    }
    .menu .box_img {
        width: 100%;
    }
    .menu .box_img img {
        width: 100%;
        height: auto;
    }
    .menu .box_info {
        width: 100%;
        height: auto;
        padding: 40px 20px 20px;
    }
    .cats .container {
        flex-direction: column;
        align-items: center;
        width: 480px;
        height: auto;
    }
    .cats h2::before {
        top: 12%;
    }
    .cats span::after {
        top: 9%;
    }
    .cats .box_img {
        width: 100%;
    }
    .cats .box_img img {
        width: 100%;
        height: auto;
    }
    .cats .box_info {
        width: 100%;
        height: auto;
        padding: 40px 20px 20px;
    }
    .access .container {
        width: 90%;
        height: auto;
    }
    .access .map {
        position: relative;
        width: 100%; 
        height: 0;
        padding-bottom: 56.25%;
        overflow: hidden;
    }
    .access .map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;   
        height: 100%; 
    }
}

/*    グローバルメニュー強制表示    */

@media screen and (min-width: 780px) {
    .nav_global ul {
        display: flex !important;
    }
}

/*    ブレイクポイント（779px以下）    */

@media screen and (max-width: 779px) {
    header h1 {
        margin: 20px 3%;
    }
    header .container {
        height: auto;
        position: relative;
    }
    .nav_global ul {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        top: 100px;
        left: 0;
        z-index: 1000;
        flex-direction: column;
        box-shadow: 0 1px 8px rgba(0,0,0,.1);
    }
    .nav_global li {
        width: 100%;
        height: 74px;
        border-left: none;
        border-top: 1px solid #dadada;
    }
    .nav_global li:last-of-type {
        border-right: none;
        border-bottom: 1px solid #dadada;
    }
    .nav_global li a {
        flex-direction: row;
    }
    .nav_global ul span {
        padding-top: 0;
        padding-left: 20px;
    }
    .sp_global {
        display: block;
    }
    .btn {
        margin-bottom: 20px;
    }
    

    .news .container {
        width: 90%;
    }
    .news .grid_card {
        justify-content: center;
    }
    .news .grid_card li {
        width: 100%;
        border-top: 1px solid #e7e7e7;
    }
    .news .grid_card li:first-of-type {
        border-top: none;
    }
    .news .grid_card li a {
        display: flex;
    }
    .news .grid_card .card_info {
        margin: 7% 0 7% 15px;
    }
    .news .grid_card .date {
        margin-bottom: 10px;
    }
}

/*    ブレイクポイント（479px以下）    */

@media screen and (max-width: 479px) {
    .about, .menu, .news, .cats, .access {
        padding: 50px 0;
    }
    .about .container, .menu .container, .news .container, .cats .container, .access .container {
        width: 90%;
        margin: 40px auto 0;
    }
    .about h2, .menu h2, .news h2, .cats h2, .access h2 {
        margin-bottom: 20px;
    }
    .about h2::before {
        left: 8%;
    }
    .about span::after {
        right: 8%;
        top: 80px;
    }
    .about .box_info {
        padding: 30px 15px;
    }
    .menu h2::before {
        left: 8%;
        top: 80px;
    }
    .menu span::after {
        right: 8%;
        top: 60px;
    }
    .menu .box_info {
        padding: 30px 15px 20px;
    }
    .news h2::before {
        left: 8%;
    }
    .news span::after {
        right: 8%;
        top: 80px;
    }
    .news .grid_card .card_img {
        margin: 0 auto;
    }
    .news .grid_card li a {
        display: block;
    }
    .news .grid_card .card_info {
        margin-bottom: 0;
    }
    .news .grid_card .card_info p {
        margin-bottom: 0;
    }
    .cats h2::before {
        left: 8%;
        top: 80px;
    }
    .cats span::after {
        right: 8%;
        top: 60px;
    }
    .cats .box_info {
        padding: 30px 15px 20px;
    }
    .access h2::before {
        left: 8%;
    }
    .access span::after {
        right: 8%;
        top: 80px;
    }
}

/*    ブレイクポイント（370px以下）    */

@media screen and (max-width: 370px) {
    .news .grid_card .card_img {
        width: 100%;
        margin: 0 auto;
    }
    .news .grid_card .card_img img {
        width: 100%;
    }
}