@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: "YakuHanJP_Narrow", "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", 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: url("../image/common/bg01.png") repeat center center;
  background-color: #F7F5F2;
  animation: loading 1s;
  font-size: clamp(15px, 3vw, 16px);
  line-height: 1.4;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .en {
  font-family: "Cormorant Garamond", serif;
}
body .en02 {
  font-family: "Cormorant Infant", serif;
  font-weight: 300;
}
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: 90%;
  margin-left: auto;
  margin-right: auto;
}
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%;
  }
}

.layout {
  width: 1424px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-bottom: 92px;
  position: relative;
}
@media screen and (min-width: 768.9px) {
  .layout {
    display: grid;
    gap: 0px 120px;
    grid-template-columns: 15% auto;
    padding-bottom: 184px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768.9px) {
  .layout .sticky-area {
    position: sticky;
    top: 100px;
    left: 0;
  }
}
@media screen and (min-width: 768.9px) {
  .layout-main {
    order: 2;
  }
}
@media screen and (min-width: 768.9px) {
  .layout-side {
    order: 1;
  }
}
.layout-side .tit {
  line-height: 1 !important;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768.9px) {
  .layout-side .tit {
    border: 1px solid #ccc;
    padding: 10px 20px;
    position: relative;
  }
}
@media screen and (min-width: 768.9px) {
  .layout-side .tit {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    pointer-events: none;
  }
}
.layout-side .tit.en {
  font-size: clamp(16px, 4vw, 21px);
}
.layout-side .tit:before {
  content: "";
  display: inline-block;
}
@media screen and (max-width: 768.9px) {
  .layout-side .tit:before {
    width: 1em;
    height: 1em;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -0.5em;
    transform: rotate(-90deg);
    background: url("../image/common/ico_arrow01.png") no-repeat center center;
  }
}
@media screen and (min-width: 768.9px) {
  .layout-side .tit:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    background-color: #333;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768.9px) {
  .layout-side .tit.on:before {
    transform: rotate(90deg);
  }
}
.layout-side .list {
  font-size: clamp(14px, 3vw, 17px);
  margin-left: 26px;
}
@media screen and (min-width: 768.9px) {
  .layout-side .list {
    display: block !important;
  }
}
.layout-side .list li a {
  display: inline-block;
  padding: 16px 0;
  line-height: 1;
}
.layout-side .list li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #76572F;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0.5em auto 0 0;
}
.layout-side .list li a:hover {
  opacity: 1;
}
.layout-side .list li a:hover:after {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*=============================================================
 #gheader
=============================================================*/
@media screen and (min-width:1209.9px) {
  #gheader {
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 1000;
  }
  #gheader .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1360px;
    max-width: 90%;
    margin: 0 auto;
    height: 103px;
  }
  #gheader .header .logo img {
    width: 180px;
    height: auto;
  }
  #gheader .header .logo img.noswp_logo {
    display: block;
  }
  #gheader .header .logo img.swp_logo {
    display: none;
  }
  #gheader .header-navi .navi-list {
    display: flex;
    justify-content: flex-end;
    gap: 0 32px;
  }
  #gheader .header-navi .navi-list li a {
    color: #fff;
  }
  #gheader .header-navi .navi-list li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background-color: #76572F;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0em auto 0 0;
  }
  #gheader .header-navi .navi-list li a:hover {
    opacity: 1;
  }
  #gheader .header-navi .navi-list li a:hover:after {
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .drawer-hamburger {
    display: none;
  }
  .drawer-logo {
    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: 90px;
  }
  .fixed #gheader .header .logo img {
    width: 180px;
    height: auto;
  }
  .fixed #gheader .header .logo img.noswp_logo {
    display: none;
  }
  .fixed #gheader .header .logo img.swp_logo {
    display: block;
  }
  .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 {
    /*border-bottom: 1px solid #ccc;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    min-height: 60px;
  }
  #gheader .header .logo {
    text-align: left;
    padding: 15px;
  }
  #gheader .header .logo img {
    width: auto;
    height: 40px;
  }
  #gheader .header .logo .noswp_logo {
    display: block;
  }
  #gheader .header .logo .swp_logo {
    display: none;
  }
  .home #gheader .header .logo {
    display: none;
  }
  .home.fixed #gheader .header .logo {
    display: block;
  }
  .drawer-hamburger {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 16px;
    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);
    position: relative;
    transition: 0.5s;
    margin: 0 0 0 auto;
    height: 1px;
    background: none;
  }
  .drawer-hamburger-icon:before {
    content: "";
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    position: absolute;
    transition: 0.5s;
    top: -4px;
    height: 1px;
  }
  .drawer-hamburger-icon: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: 149px;
    height: 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: url("../image/common/bg01.png") repeat center center;
    background-size: 100% auto;
    background-color: #F7F5F2;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    box-sizing: border-box;
    padding: 20px;
  }
  .drawer-open .drawer-nav .drawer-scroll div {
    width: 100%;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list {
    text-align: left;
    margin: 40px 0 0 0;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list li {
    border-bottom: 1px solid #CECCC2;
  }
  .drawer-open .drawer-nav .drawer-scroll div .navi-list li a {
    display: block;
    padding: 1em 0;
  }
  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }
  .drawer-open .drawer-hamburger-icon:before {
    top: 0;
    transform: rotate(-25deg);
    transition: 0.5s;
    background-color: #707070;
  }
  .drawer-open .drawer-hamburger-icon: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: #76572F;
  }
  .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 .drawer-hamburger-icon:before {
    background-color: #707070;
  }
  .fixed .drawer-hamburger-icon:after {
    background-color: #707070;
  }
  .fixed #gheader {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .fixed #gheader .header .logo .noswp_logo {
    display: none;
  }
  .fixed #gheader .header .logo .swp_logo {
    display: block;
  }
}
/*=============================================================
  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: #76572F;
}
#pankz li a {
  position: relative;
  color: #3a3a3a;
}
#pankz li a:after {
  content: ">";
  display: inline-block;
  margin: 0 1em;
  color: #3a3a3a;
}

/*=============================================================
 #gFooter
=============================================================*/
#gFooter {
  position: relative;
  z-index: 100;
  background: url("../image/common/bg01.png") repeat center center;
  background-color: #F7F5F2;
  text-align: left;
}
#gFooter .footer-inner {
  width: 1360px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-about {
    border-top: 1px solid #ccc;
    margin-top: 32px;
  }
}
#gFooter .footer-about address {
  font-style: normal;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.8;
  margin: 32px 0 20px 0;
}
#gFooter .footer-about .tel {
  font-size: clamp(28px, 3vw, 28px);
  margin: 44px 0 16px 0;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-about .tel {
    margin: 24px 0 8px 0;
  }
}
#gFooter .footer-about .open {
  font-size: clamp(14px, 3vw, 16px);
}
#gFooter .footer-top {
  line-height: 1;
}
@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;
  }
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-top-col {
    display: grid;
    gap: 0px 20px;
    grid-template-columns: 1fr auto;
  }
}
@media screen and (min-width:1209.9px) {
  #gFooter .footer-top-col {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-left .logo {
    text-align: center;
    margin-bottom: 20px;
  }
}
#gFooter .footer-top-col-left .logo img {
  width: 240px;
  height: auto;
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-left .logo img {
    width: 122.5px;
    margin: 0 auto;
  }
}
#gFooter .footer-top-col-right nav {
  font-size: clamp(14px, 3vw, 17px);
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-right nav {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-top-col-right nav {
    display: flex;
    justify-content: flex-end;
    gap: 0 4vw;
  }
}
@media screen and (min-width:1209.9px) {
  #gFooter .footer-top-col-right nav {
    gap: 0 100px;
  }
}
#gFooter .footer-top-col-right nav ul li {
  margin: 1.5em 0 0 0;
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-top-col-right nav ul li {
    margin: 36px 0 0 0;
  }
}
@media screen and (min-width: 768.9px) {
  #gFooter .footer-top-col-right nav ul li:first-of-type {
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-right nav ul:nth-child(1) {
    order: 1;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-right nav ul:nth-child(2) {
    order: 3;
  }
}
@media screen and (max-width: 768.9px) {
  #gFooter .footer-top-col-right nav ul:nth-child(3) {
    order: 2;
  }
}
#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);
}
@media screen and (max-width: 768.9px) {
  #follow-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-bottom: -4em;
    z-index: 100;
  }
}
@media screen and (min-width: 768.9px) {
  #follow-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-top: -4em;
    z-index: 100;
  }
}
#follow-btn a {
  display: inline-block;
  padding: 1em 0.5em;
  color: #fff;
  background-color: #272727;
}
#follow-btn a:hover {
  opacity: 1;
  background-color: #76572F;
}

.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 */