@charset "UTF-8";

/* 
Theme name : ASCats
Author : Design Ponz
Description : ASCats Original Theme
Version : 1.0
*/

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.075em;
    background-color: #D9C7C5;
    color: #8E6565;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* img {
    display: block;
    width: 100%;
    height: auto;
}; */

a {
    cursor: pointer;
    color: #8E6565;
}

:root {
    --main-bg-color: #FCFAF7;
    --main-color: #8E6565;
    --accent-color1: #D9C7C5;
    --accent-color2: #A69898;
    --accent-color3: #C75B84;
    --accent-color4: #9071A0;
    --quicksand: 'Quicksand', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.content-area {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/bg.jpg);
    background-color: #FCFAF7;
    background-size: cover;
    background-attachment: fixed;
}


/* header */

header {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 16px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #FCFAF7;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 2;
    }


.logo-header {
    display: block;
    height: 40px;
    width: auto;
    transition: 0.3s ease;
}

.logo-header img {
    display: block;
    height: 40px;
    width: auto;
}

.logo-header:hover {
    opacity: 0.7;
}

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

#btn-open {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* footer */

footer {
    width: 100%;
    background-color: #A69898;
    color: white;
    text-align: center;
    padding: 24px 0;
}

.logo-footer {
    display: block;
    height: 40px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.logo-footer img {
    display: inline;
    height: 100%;
    width: auto;
}

small {
    font-size: 11px;
}

/* 共通 */

.main {
    margin-top: 64px;
}

/* contact button */

.btn-contact {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px;
    background-color: #8E6565;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    transition: 0.3s ease;
    margin: 56px auto;
}

.btn-contact:hover {
    opacity: 0.75;
}

.btn-icn {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.btn-text {
    display: block;
}


.swiper{
    margin-bottom: 12px;
}
.swiper-pagination {
    position: static;
}

.swiper-pagination-bullet {
    background-color: #A69898;
}

.swiper-pagination-bullet-active {
    background-color: #8E6565;
    filter: none;
}

/* menu */

#menu-wrapper {
    width: 100%;
    height: 100%;
    max-width: 720px;
    padding: 12px 16px;
    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 3;
    background-color: #FCFAF7;
    transition: 0.3s ease;
    transform: translate(0, 0);
}

#menu-wrapper.hidden {
    transform: translate(100%, 0);
}

#btn-close {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 0;
    margin-left: auto;
}

.menu-globalnav-container {
    text-align: center;
    font-size: 16px;
    padding-top: 32px;
}

.menu-item {
    margin-bottom: 32px;
}

/* 下層ページ共通 */

.breadcrumbs {
    font-size: 12px;
    padding-top: 16px;
    margin-left: 16px;
    margin-bottom: 24px;
}

.lower-h1 {
    font-family: 'Quicksand', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 40px;

}

.lower-h1 span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

.pnavi {
    font-size: 20px;
    margin-left: 24px;
}

.pnavi a {
    display: inline-block;
    padding: 8px;
    margin-right: 16px;
}

.pnavi .current {
    color: #C75B84;
}


@media screen and (min-width:721px) {
    
    #menu-wrapper.hidden {
        transform: translate(0, -100%);
    }


}