@charset "utf-8";
html {
    -webkit-font-smoothing: antialiased;
}
body {
    /* font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif; */
    /* font-family: -apple-system, BlinkMacSystemFont, "YuGothic", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif; */
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.95 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    display: none; /* ページ読み込みフェードイン用 */
}
@media screen and (max-width:768px) {
    body {
        font-size: 1rem;
    }
}
* {
    box-sizing: border-box;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #333;
    text-decoration: none;
    outline: none;
}
img {
    width: 100%;
    height: auto;
}
.round-700 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.round-800 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-style: normal;
}
/*===========================================================*/
/* ヘッダー */
/*===========================================================*/
header {
    padding: 30px 26px;
    position: fixed;
    z-index: 40;
    background-color: rgba(255, 255, 255);
    width: 100%;
    z-index: 903;
}
header .logo img {
    width: 186px;
    filter: invert(27%) sepia(23%) saturate(1175%) hue-rotate(350deg) brightness(96%) contrast(89%) !important;
}
@media screen and (min-width:1024px) {
    header {
        padding: 45px 42px;
    }
    header .logo img {
        width: 220px;
    }
}
/*===========================================================*/
/* グローバルナビ */
/*===========================================================*/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #FFF;
    /*動き*/
    transition: all 0.3s;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-style: normal;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: left;
}
#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
#g-nav .g-nav-logo {
    margin-bottom: 1.75em;
}
#g-nav .g-nav-logo img {
    width: 260px;
    filter: invert(27%) sepia(23%) saturate(1175%) hue-rotate(350deg) brightness(96%) contrast(89%) !important;
}
#g-nav-list-ul > li {
    margin-bottom: 1em;
}
#g-nav-list-ol > li a {
    color: #888;
}

@media screen and (max-width:768px) {
    #g-nav ul {
        width: 70%;
    }
    #g-nav .g-nav-logo img {
        width: 210px;
    }
}

@media screen and (min-width:1440px) {
    #g-nav .g-nav-logo img {
        width: 320px;
    }
}



/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 15px;
    right: 5px;
    cursor: pointer;
    width: 70px;
    height: 50px;
}
@media screen and (min-width:1024px) {
    .openbtn1 {
        top: 24px;
        right: 8px;
        zoom: 1.2;
    }
}
/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #444;
    width: 45%;
}
.openbtn1 span:nth-of-type(1) {
    top: 15px;
}
.openbtn1 span:nth-of-type(2) {
    top: 23px;
}
.openbtn1 span:nth-of-type(3) {
    top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*===========================================================*/
/* フッター */
/*===========================================================*/
footer {
    padding: 30px 26px;
    background-color: rgba(255, 255, 255);
    width: 100%;
}
footer .logo img {
    width: 186px;
    filter: invert(27%) sepia(23%) saturate(1175%) hue-rotate(350deg) brightness(96%) contrast(89%) !important;
}
footer .logo small {
    display: block;
    padding-top: 10px;
    font-weight: 700;
}
footer .logo2 {
    display: inline-block;
    padding-right: 2em;
    float: left;
}
footer .logo2 img {
    width: 220px;
    filter: invert(27%) sepia(23%) saturate(1175%) hue-rotate(350deg) brightness(96%) contrast(89%) !important;
}
footer ul.sns {
    display: inline-block;
    float: left;
    margin-top: 3px;
}
footer ul.sns li {
    padding-bottom: 0em;
}
footer small {
    float: none;
    clear: left;
    display: block;
    padding-top: 10px;
    font-weight: 700;
}
@media screen and (min-width:1024px) {
    footer {
        padding: 45px 42px;
    }
    footer .logo img {
        width: 220px;
    }
}
@media screen and (max-width:768px) {
    footer .logo {
        text-align: center;
    }
    footer .logo img {
        display: inline-block;
    }
    footer .logo2 {
        display: block;
        float: none;
        text-align: center;
        padding-right: 0;
        margin-bottom: 1.25em;
    }
    footer .logo2 img {
        width: 220px;
        display: inline-block;
    }
    footer ul.sns {
        display: block;
        float: none;
        text-align: center;
        margin-bottom: .5em;
    }
    footer small {
        text-align: center;
    }
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6b4521;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 3rem;
    transition: all 0.3s;
}
#page-top a:hover {}
/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 26px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    transition: all 0.5s;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#page-top.UpMove-btm {
    bottom: 26px;
}
#page-top.UpMove-btm-end {
    bottom: 46px;
}
/*　下に下がる動き　*/
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}
@media screen and (max-width:768px) {
    #page-top a {
        font-size: 2.25rem;
    }
    #page-top {
        right: 20px;
    }
    #page-top.UpMove-btm {
        bottom: 20px;
    }
    #page-top.UpMove-btm-end {
        bottom: 44px;
    }
}
/*===========================================================*/
/* 基本レイアウト系 */
/*===========================================================*/
.w-full {
    width: 100%;
}
.relative {
    position: relative;
}
.justify-end {
    justify-content: flex-end;
}
.flex {
    display: flex;
}
section {
    clear: both;
}
section p {
    margin-bottom: 1em;
}
.section-pd {
    padding: 160px;
}
.brown {
    color: #6b4521;
}

a.brown{
    transition: .5s ease-in-out;
}
a.brown:hover {
    text-decoration: underline;
    transition: .5s ease-in-out;
}

a.btn-brown {
    background: #6b4521;
    color: #fff;
    transition: opacity .6s;
    border-radius: 3px;
    display:inline-block;
    text-align: center;
    vertical-align: middle;
    padding:.25em 1em;
}

a.blue　{
    color:#0066c0;
    transition: .5s ease-in-out;
}
a.blue:hover {
    text-decoration: underline;
    transition: .5s ease-in-out;
}