@charset "UTF-8";
/* Scss Document */
/*=============================================================
 レイアウト設定
=============================================================*/
.flexBox {
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.jc-space-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.jc-flex-end {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.al-stretch {
  align-items: stretch;
}

.al-flex-end {
  align-items: flex-end;
}

.al-flex-start {
  align-items: flex-start;
}

@media screen and (max-width: 768.9px) {
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
/*=============================================================
 common
=============================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #323232;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  /*font-feature-settings: "palt" 1; */
  /*background-color: f.$background-color;*/
  background-color: #F4F4F0;
  animation: loading 1s;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .en {
  font-family: "Cormorant Garamond", serif;
}
body .min {
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
body .vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
body b {
  font-weight: 700;
  font-style: normal;
}
body a {
  color: #323232;
  text-decoration: none;
}
body a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  body img {
    image-rendering: -webkit-optimize-contrast;
  }
}
body .object-fit {
  object-fit: contain;
  font-family: "object-fit: contain;";
}
body .view-sp {
  display: none;
}
@media screen and (max-width: 768.9px) {
  body .view-sp {
    display: block;
  }
}
body .view-pc {
  display: block;
}
@media screen and (max-width: 768.9px) {
  body .view-pc {
    display: none;
  }
}
body .container {
  width: 1424px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768.9px) {
  body .container {
    padding-left: 12px;
    padding-right: 18px;
  }
}
@media screen and (min-width: 768.9px) {
  body .container {
    max-width: 90%;
  }
}
body .ggmap {
  line-height: 1;
}
body .ggmap iframe {
  width: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 768.9px) {
  body .ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  body .ggmap iframe,
  body .ggmap object,
  body .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*=============================================================
 #gheader
=============================================================*/
@media screen and (min-width:1209.9px) {
  #gheader {
    text-align: center;
    z-index: 1000;
  }
  #gheader .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 1360px;*/
    max-width: 90%;
    margin: 0 auto;
    height: 110px;
  }
  #gheader .header .logo {
    color: #DD5B38;
    font-size: clamp(14px, 3vw, 16px);
    display: flex;
    align-items: center;
    font-weight: 400;
  }
  #gheader .header .logo img {
    width: auto;
    height: 38px;
    margin-right: 30px;
  }
  .drawer-hamburger {
    display: none;
  }
  .fixed #gheader {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-100%);
    animation: slideDown 0.6s forwards;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .fixed #gheader .header {
    height: 70px;
  }
  .fixed #gheader .header-navi .navi-list li a {
    color: #000000;
  }
  .fixed #gheader .header-navi .navi-list li a:after {
    background-color: #000;
  }
}
@media screen and (max-width:1209.9px) {
  #gheader {
    /*position: fixed;
    top: 0;
    left: 0;*/
    width: 100%;
    z-index: 1000;
  }
  #gheader .header {
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px 30px;
    padding: 12px 22px 12px 12px;
    box-sizing: border-box;
  }
  #gheader .header .logo {
    color: #DD5B38;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
  }
  #gheader .header .logo img {
    width: 100%;
  }
  #gheader .header .logo a {
    display: block;
    margin-bottom: 5px;
  }
  #gheader .header .com-btn.btn01 a {
    min-width: 100%;
    white-space: nowrap;
    padding: 10px 15px;
    line-height: 1;
    letter-spacing: 0;
    font-size: 14px;
  }
  .drawer-hamburger {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    /*background-color: f.$main_color;*/
    border-radius: 0;
    z-index: 1000;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .drawer-hamburger-icon {
    /*display: block;
    width: 100%;
    transform: scale(1.0);
    position: relative;
    transition: 0.5s;
    margin: 0 0 0 auto;
    height: 1px;
    background: none;*/
    display: block;
    width: 60px;
    height: 60px;
    background: url("../image/common/headerbutton.webp") no-repeat center center;
    background-size: cover;
    /*&:before {
        content: "";
        display: block;
        width: 100%;
        background-color: #FFFFFF;
        position: absolute;
        transition: 0.5s;
        top: -4px;
        height: 1px;
    }

    &:after {
        content: "";
        display: block;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        transition: 0.5s;
        bottom: -4px;
        height: 1px;
    }*/
  }
  .drawer-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    box-sizing: border-box;
    z-index: 10;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
  }
  .drawer-logo {
    width: 40%;
    height: auto;
    margin: 0 auto;
  }
  .drawer-open {
    overflow: hidden;
  }
  .drawer-open .drawer {
    position: relative;
  }
  .drawer-open .drawer-nav {
    transition: 0.5s;
    right: 0%;
    opacity: 1;
  }
  .drawer-open .drawer-nav .drawer-scroll {
    background-size: 100% auto;
    background-color: #F7F5F2;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    box-sizing: border-box;
    padding: 40px;
  }
  .drawer-open .drawer-nav .drawer-scroll div {
    width: 100%;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list {
    text-align: left;
    margin: 20px 0;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list li a {
    display: block;
    padding: 1em 0;
    color: #567706;
    font-size: 5vw;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list li a small {
    font-size: 3vw;
    color: #808080;
    margin-left: 20px;
  }
  .drawer-open .drawer-hamburger-icon {
    /*background-color: transparent;*/
    width: 60px;
    height: 60px;
    background: url("../image/common/headerbutton_cross.webp") no-repeat center center;
    background-size: cover;
    /*&:before {
        top: 0;
        transform: rotate(-25deg);
        transition: 0.5s;
        background-color: #707070;
    }

    &:after {
        bottom: 0;
        transform: rotate(25deg);
        transition: 0.5s;
        background-color: #707070;
    }*/
  }
  .drawer-open .view-sp {
    text-align: left;
  }
  .drawer-open .view-sp .navi-list-sp {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 0;
    border-bottom: 1px solid #CECCC2;
  }
  .drawer-open .view-sp .navi-list-sp li a {
    display: block;
    padding: 1em 0;
  }
  .drawer-open .view-sp .tel {
    margin: 32px 0 0 0;
    text-align: center;
  }
  .drawer-open .view-sp .tel a {
    font-size: 40px;
    color: #DD5B38;
  }
  .drawer-open .view-sp .open {
    text-align: center;
  }
  .drawer-open .view-sp .com-btn.map {
    text-align: left;
    margin: 20px auto 0 0;
  }
  .drawer-open .view-sp .com-btn.btn02 {
    display: block;
    margin: 20px 0;
  }
  .drawer-open .view-sp .com-btn.btn02 a {
    display: block;
    text-align: center;
  }
  .drawer-open .view-sp address {
    font-style: normal;
  }
  .fixed #gheader {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-100%);
    animation: slideDown 0.6s forwards;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .fixed #gheader .header {
    min-height: 70px;
  }
}
/*=============================================================
  drawer
=============================================================*/
@media screen and (max-width:1209.9px) {
  .drawer-scroll {
    overflow: scroll;
    height: 100%;
    box-sizing: border-box;
  }
}
/*=============================================================
 #pankz
=============================================================*/
#pankz {
  text-align: right;
  padding: 10px 20px;
  background-color: #edf1f3;
  width: 100%;
  z-index: 3;
  box-sizing: border-box;
}
#pankz li {
  color: #DD5B38;
}
#pankz li a {
  position: relative;
  color: #3a3a3a;
}
#pankz li a:after {
  content: ">";
  display: inline-block;
  margin: 0 1em;
  color: #3a3a3a;
}

/*=============================================================
 #gFooter
=============================================================*/
#gFooter {
  position: relative;
  text-align: left;
}
#gFooter .footer-inner {
  width: 1360px;
  max-width: 90%;
  margin: 0 auto;
}
#gFooter .footer-top {
  text-align: center;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top {
    padding: 60px 0;
  }
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-top {
    padding: 120px 0;
  }
}
#gFooter .footer-top .txt {
  line-height: 2;
}
#gFooter .footer-top ul {
  margin-top: 60px;
}
#gFooter .footer-top ul li:first-child {
  margin-bottom: 16px;
}
#gFooter .footer-middle {
  background-color: #605A52;
  padding: 76px 0;
  color: #fff;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-middle {
    padding: 48px 0;
  }
}
#gFooter .footer-middle a {
  color: #fff;
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-middle-col {
    display: grid;
    gap: 0 32px;
    grid-template-columns: 1fr 1fr auto;
  }
}
#gFooter .footer-middle-col dl {
  margin-top: 1em;
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-middle-col dl:first-of-type {
    margin: 0;
  }
}
#gFooter .footer-middle-col dl {
  display: grid;
  gap: 0 0px;
  grid-template-columns: 4em auto;
}
#gFooter .footer-bottom {
  background-color: #333333;
  line-height: 1;
  color: #fff;
}
#gFooter .footer-bottom a {
  color: #fff;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-bottom-col {
    text-align: center;
    padding: 1em 0;
  }
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-bottom-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }
}
#gFooter .footer-bottom-navi {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 3vw, 14px);
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-bottom-navi {
    display: flex;
    gap: 0 28px;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-bottom-navi {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-bottom-navi li {
    margin-top: 1.5em;
  }
}
#gFooter .footer-bottom-copy {
  font-size: clamp(10px, 3vw, 13px);
}
#follow-btn {
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 768.9px) {
  #follow-btn {
    width: 22px;
    bottom: 50px;
    right: 11px;
  }
}
@media screen and (min-width: 768.9px) {
  #follow-btn {
    transform: translateY(-50%);
    top: 50%;
    right: 0;
  }
}
#follow-btn a {
  display: block;
  background-color: #342b24;
  color: #fff;
  padding: 1em 0.5em;
}

.pageTop {
  display: none;
}
@media screen and (min-width: 768.9px) {
  .pageTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 2;
  }
}

@media screen and (min-width: 768.9px) {
  .fixed .pageTop {
    display: block;
  }
}
@media screen and (min-width: 768.9px) {
  .fixed .pageTop img {
    width: 100px;
  }
}/*# sourceMappingURL=style_basic.css.map */