@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Cormorant&family=Jost:wght@300;400&display=swap");
body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.6;
    font-family: sans-serif;
    letter-spacing: .1em;

    font-feature-settings: "palt" 1 !important;
    -webkit-font-feature-settings: "palt" 1 !important;
}

.en-got {
    font-weight: 400 !important;
    font-family: "Jost", sans-serif;
}

/* IE表示用のCSS */
@media screen and (min-width: 841px) {
    .tb-only {
        display: none;
    }
}

@media screen and (min-width: 601px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .sp-hide {
        display: none;
    }
}

/*----------------------------------
基本設定
----------------------------------*/
a, a img {
    transition: all .3s ease-in-out;
}

a:hover, a img:hover {
    opacity: .8;
    text-decoration: none;
}

a.textlink {
    text-decoration: underline;
}

a.textlink:hover {
    text-decoration: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    background-color: #d8d8d8;
}

a[href^="tel:"] {
    cursor: default;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.object-fit-img {
    font-family: "object-fit: cover;";

    -o-object-fit: cover;
    object-fit: cover;
}

.object-con-img {
    -o-object-fit: contain;
    object-fit: contain;
}

/*--------------------------
見出し・テキスト
----------------------------*/
p {
    margin-bottom: 1rem;
}

.txt-s {
    color: #3d3d3d;
    font-size: 1.2rem;
}

.mb0 {
    margin-bottom: 0 !important;
}

/*--------------------------------
レイアウト関係
---------------------------------*/
section {
    clear: both;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 0;
    box-sizing: border-box;
}

@media (max-width: 840px) {
    section {
        padding: 70px 0 30px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 50px 0 20px;
    }
}

main {
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    main {
        padding-top: 100px;
    }
}


@media (max-width: 840px) {
    main {
        padding-top: 70px;
    }
}

@media (max-width: 600px) {
    main {
        padding-top: 50px;
    }
}

.inner {
    position: relative;
    width: 100%;
    max-width: 1216px;
    height: auto;
    margin: 0 auto;
}

.section:after, .inner:after {
    display: table;
    clear: both;
    content: "";
}

@media only screen and (max-width: 1250px) {
    .inner {
        width: 94%;
    }
}

/*--------------------------------
button
---------------------------------*/
.link-button {
    display: block;
    max-width: 200px;
    height: 36px;
    margin: 4rem auto 1rem;
    padding: 0 20px;
    border-radius: 20px;
    background: #ba9f52;
    color: #fff !important;
    font-size: 1.4rem;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease .05s;
}

.link-button i {
    padding-right: .5rem;
}

.link-button:hover {
    color: #fff;
}

/*----------------------------
メニュー
---------------------------*/
#nav li a {
    display: block;
    position: relative;
    color: #333;
}

#nav .menu-item-has-children > a:after, #nav .menu-item-has-children > a:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    right: 20px;
    bottom: 0;
    width: 10px;
    height: 1px;
    margin: auto;
    background: #333;
    content: "";
    transition: .2s;
}

#nav .menu-item-has-children > a:after {
    transform: rotate(90deg);

    -webkit-transform: rotate(90deg);
}

#nav .menu-item-has-children > a.open:before {
    transform: rotate(0deg);

    -webkit-transform: rotate(0deg);
}

#nav .menu-item-has-children > a.open:after {
    background: transparent;
}

#nav .menu-item-has-children .sub-menu {
    display: none;
}

@media only screen and (max-width: 840px) {
    .overlay {
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 11;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, .7);
        transition: opacity .5s;
    }
    .overlay.open {
        opacity: 1;
        width: 100%;
        height: 100%;
    }
    #main {
        min-height: 100vh;
        transition: all .5s;
    }
    #main.open {
        position: fixed;
        width: 100%;
    }
    #menu_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 15px;
        left: 5px;
        z-index: 9999;
        width: 40px;
        height: 55px;
        cursor: pointer;
        transition: .3s;
    }

    #menu_btn.active {
        left: 220px;
    }

    .menu-trigger {
        position: relative;
        width: 20px;
        height: 19px;
    }
    .menu-trigger span {
        display: inline-block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        box-sizing: border-box;
        transition: all .5s;
    }
    #menu_btn.active .menu-trigger span {
        background: #000;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 9px;
        width: 70%;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    #menu_btn.active .menu-trigger span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
    }
    #menu_btn.active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }
    #menu_btn.active .menu-trigger span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
    }
    #nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 12;
        transform: translate(-280px);
        width: 280px;
        height: 100%;
        padding: 90px 0;
        overflow: auto;
        box-shadow: 0 8px 16px -2px rgba(0,0,0,.3), 7px 0 4px 0 rgba(0,0,0,.02);
        background: #fff;
        transition: all .5s;
    }
    #nav.open {
        transform: translateZ(0);
    }
    #nav li {
        padding: 0;
        border-bottom: 1px solid #c5c5c5;
    }

    #nav ul.nav {
        width: 90%;
        margin: 0 auto;
    }
    #nav li a {
        display: flex;
        align-items: center;
        position: relative;
        padding: 15px 10px;
        color: #000;
        text-align: left;
    }

    #nav li a::before {
        display: block;
        width: 8px;
        height: 9px;
        margin-right: 10px;
        margin-left: 10px;
        background: url(https://chanoniwa.itembox.design/item/new/img/common/menu-arrow@2x.png) left center no-repeat;
        background-size: 8px;
        content: "";
        content: "";
    }

    #nav .menu-item-has-children > a:after, #nav .menu-item-has-children > a:before {
        background: #fff;
    }
    #nav .menu-item-has-children .sub-menu {
        padding: 10px;
    }
    #nav .menu-item-has-children > a.open:first-of-type {
        color: #dad4ec;
    }
    #nav .menu-item-has-children .sub-menu li {
        margin-bottom: 20px;
        padding: 0;
    }
    #nav .menu-item-has-children .sub-menu li:last-child {
        margin-bottom: 0;
    }
    #nav .menu-item-has-children .sub-menu li a {
        padding: 0;
    }
}

@media only screen and (max-width: 600px) {
    #menu_btn {
        top: 10px;
        right: 5px;
    }
}

@media print, screen and (min-width: 841px) {
    .fs-p-drawerButton * {
        display: none!important;
    }
    #menu_btn, .overlay {
        display: none;
    }
    #nav ul {
        display: flex;
        flex-wrap: wrap;
    }
    #nav li {
        position: relative;
    }
    #nav li a {
        padding: 20px;
    }
    #nav .menu-item-has-children > a {
        padding-right: 40px;
    }
    #nav .menu-item-has-children > a.open:first-of-type, #nav .current-menu-item a {
        color: #333;
    }
    #nav .current-menu-item li a {
        color: #333;
    }
    #nav li ul.sub-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        padding: 10px 0;
        background: #fff;
    }
    #nav li ul.sub-menu li {
        width: 100%;
    }
    #nav li ul.sub-menu li a {
        padding: 10px 20px;
        color: #333;
        line-height: 1.6em;
    }
    #nav li ul.sub-menu li a:hover {
        color: #333;
    }
}

/*----------------------------
ヘッダー
---------------------------*/
/* header {
  width: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  z-index: 10;
}

@media print, screen and (min-width: 841px) {
  header {
    position: relative;
    padding: 0 50px;
    height: 110px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header #logo a {
    display: block;
  }
  header #logo img {
    width: 100%;
    max-width: 270px;
  }
}

@media only screen and (max-width: 840px) {
  header {
    position: fixed;
    padding: 0 20px;
    height: 70px;
  }
  header #logo img {
    max-width: 200px;
  }
}

@media only screen and (max-width: 600px) {
  header {
    height: 60px;
    padding: 0 10px;
  }
  header #logo img {
    max-width: 160px;
  }
} */





/*-----------------------
footer
------------------------*/

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    /********** フッターロゴとメニュー **********/
    .NewFooterMenuWrap {
        display: block!important;
        margin-bottom: 50px!important;
    }

    .NewFooterMenu {
        display: flex;
        flex-wrap: wrap;
        width: 100%!important;
    }

    .NewFooterMenu__logo {
        width: 230px;
        margin: 0!important;
    }

    .NewFooterMenu__menu {
        display: flex!important;
        flex: 1;
        flex-wrap: wrap!important;
        justify-content: flex-start!important;
        margin-top: 0!important;
        padding-left: 50px!important;
    }
}
/* footer {
  width: 85%;
  padding: 70px 0 90px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 840px) {
  footer {
    width: 90%;
    padding: 40px 0 80px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 40px 0 80px;
  }
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
} */

/* left */
/* .f-left {
  width: 50%;
} */

/* @media (max-width: 600px) {
  .f-left {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

.foot-logo {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .foot-logo {
    display: block;
    text-align: center;
  }
}

.foot-logo img {
  max-width: 160px;
}

@media (max-width: 600px) {
  .foot-logo img {
    max-width: 140px;
  }
} */

/* right */
/* .f-right {
  width: 50%;
  text-align: right;
}

@media (max-width: 600px) {
  .f-right {
    width: 100%;
    text-align: center;
  }
}

.foot-link {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

footer .copy {
  font-size: 1.2rem;
  line-height: 1;
}

footer .copy:before {
  content: "\0a9";
} */

/*トップへ戻るボタン */
/* #pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
  line-height: 1;
}

#pageTop a {
  display: flex;
  padding-top: 32px;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #333;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 600px) {
  #pageTop a {
    width: 50px;
    height: 50px;
    font-size: 11px;
    padding-top: 26px;
    opacity: 1;
  }
}

#pageTop a:before {
  content: "\f106";
  font-family: FontAwesome;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

@media (max-width: 600px) {
  #pageTop a:before {
    top: 6px;
  }
} */

/*side-btn-pc */
@media only screen and (min-width: 601px) {
    .shop-pc-btn {
        position: fixed;
        bottom: 40%;
        left: 0;
        transform: translate(0, -40%);
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        background: #539b83;
    }
    .shop-pc-btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 135px;
        padding: 10px;
    }
    .shop-pc-btn a img {
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 840px) {
    .shop-pc-btn {
        position: fixed;
        bottom: 40%;
        left: 0;
        transform: translate(0, -40%);
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        background: #539b83;
    }
    .shop-pc-btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 120px;
        padding: 6px;
    }
    .shop-pc-btn a img {
        max-width: 100%;
        height: auto;
    }
}

/*side-btn */
.shop-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translate(0, 0);
    width: calc(100% - 50px);
    height: 50px;
    overflow: hidden;
    background: #539b83;
    text-align: center;
}

.shop-btn a:hover {
    opacity: 1;
}

.shop-btn a img {
    display: block;
    width: 160px;
}
