@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: "Shippori Mincho", serif;
  --en-font: "Cormorant Infant", serif;
  --base-color: #363636;
  --sub-color: #9E8A30;
  --white: #fff;
  --gold: #B7A44F;
  --yellow: #F6E69D;
  --yellow-9: rgba(246,230,157,0.9);
  --brown: #716A52;
  --gray: #f2f2f2;
  --dark-green: #032013;
  --green: #0d6f45;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media all and (min-width: 897px) and (max-width: 1365px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media all and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body, table, input, textarea, select, option {
  font-family: var(--base-font);
}

article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

chrome_annotation {
  border: none !important;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a {
  color: var(--base-color);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:link {
  color: var(--base-color);
}
a:visited {
  color: var(--base-color);
}
a:active {
  color: var(--base-color);
}
a:hover {
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: var(--base-color);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: var(--white);
}
body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
    height: 100%;
    overflow: auto;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
}

#container {
  text-align: left;
  position: relative;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 90;
  padding: 1.6rem 13rem 2rem 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#gHeader .logo {
  margin-top: 0.4rem;
  width: 24rem;
}
#gHeader .tel a {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.128rem;
  display: inline-block;
  padding-left: 2.6rem;
  background: url(../img/common/icon01.webp) no-repeat left 0.6rem/1.8rem;
}
@media all and (max-width: 896px) {
  #gHeader {
    padding: 1.1rem 13rem 2rem 1.3rem;
  }
  #gHeader .logo {
    margin-top: 0.2rem;
    width: 17.4rem;
  }
}

.menu {
  position: fixed;
  right: 3.9rem;
  top: 2.9rem;
  width: 5rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
@media all and (min-width: 897px) {
  .menu:hover {
    opacity: 0.65;
  }
}
@media all and (max-width: 896px) {
  .menu {
    right: 2rem;
    top: 1.9rem;
    width: 4rem;
  }
}

.menuBox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: url(../img/common/menu_bg.webp) no-repeat center top/cover;
  z-index: 100;
}
.menuBox .close {
  position: fixed;
  right: 4.2rem;
  top: 2.2rem;
  width: 4.5rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media all and (min-width: 897px) {
  .menuBox .close:hover {
    opacity: 0.65;
  }
}
.menuBox .subBox {
  margin: 20rem auto;
  max-width: 90rem;
  color: var(--white);
}
.menuBox .subBox .comInfo {
  margin-top: 1rem;
  width: 52rem;
}
.menuBox .subBox .comInfo .title {
  margin-bottom: 1.4rem;
  background: #635D45;
}
.menuBox .subBox .comInfo .logo {
  margin-bottom: 1rem;
  width: 26rem;
  -webkit-transform: translateX(-1.6rem);
          transform: translateX(-1.6rem);
}
.menuBox .subBox .comInfo .path {
  margin-bottom: 2.2rem;
  padding: 1rem 0 1.6rem;
  border-color: var(--white);
}
.menuBox .subBox .comInfo .path p {
  margin-bottom: 0.9rem;
}
.menuBox .subBox .comInfo .addList li {
  color: var(--white);
}
.menuBox .subBox .comInfo .addList li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.menuBox .subBox .comInfo .addList li:before {
  background-image: url(../img/common/icon05.webp);
}
.menuBox .subBox .comInfo .addList li.car:before {
  margin: 0.2rem 0.6rem 0 -0.2rem;
  background-image: url(../img/common/icon06.webp);
}
.menuBox .subBox .comInfo .btnList {
  margin-bottom: 2.3rem;
}
@media all and (min-width: 897px) {
  .menuBox .subBox .comInfo .schedule {
    background-image: url(../img/common/com_bg02.webp);
  }
}
.menuBox .subBox .menuList {
  width: 26rem;
}
.menuBox .subBox .menuList li {
  border-bottom: 1px solid var(--white);
}
.menuBox .subBox .menuList li a {
  position: relative;
  display: block;
  padding: 0.95rem 2rem 0.95rem 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.1rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.menuBox .subBox .menuList li a:after {
  margin-top: -0.3rem;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
}
@media all and (min-width: 897px) {
  .menuBox .subBox .menuList li a:hover {
    opacity: 0.65;
  }
}
@media all and (max-width: 896px) {
  .menuBox {
    background-image: url(../img/common/menu_bg_sp.webp);
  }
  .menuBox .close {
    right: 2.1rem;
    top: 1.6rem;
    width: 3.8rem;
  }
  .menuBox .subBox {
    margin: 9rem 2.1rem 6rem;
    max-width: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .menuBox .subBox .comInfo {
    margin-top: 0;
    width: auto;
  }
  .menuBox .subBox .comInfo .logo {
    margin-bottom: 1.4rem;
    width: 24rem;
    -webkit-transform: translateX(-1.7rem);
            transform: translateX(-1.7rem);
  }
  .menuBox .subBox .comInfo .path {
    margin-bottom: 2rem;
  }
  .menuBox .subBox .comInfo .path p {
    margin-bottom: 1.1rem;
  }
  .menuBox .subBox .comInfo .addList li.car:before {
    margin: 0.4rem 0.7rem 0 -0.1rem;
  }
  .menuBox .subBox .comInfo .btnList {
    margin-bottom: 2rem;
  }
  .menuBox .subBox .menuList {
    margin: 0 3.7rem 8.7rem;
    width: auto;
  }
}

/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/
#gFooter .fInner {
  padding: 9.3rem 2rem 8.9rem;
}
#gFooter .fBox {
  margin: 0 auto;
  max-width: 120rem;
}
#gFooter .fNavi .navi01Box {
  width: 48.5rem;
}
#gFooter .fNavi .navi02Box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#gFooter .fNavi .navi {
  margin-right: 10%;
}
#gFooter .fNavi .navi:last-of-type {
  margin-right: 0;
}
#gFooter .fNavi .navi > li {
  margin-bottom: 1rem;
}
#gFooter .fNavi .navi > li:last-child {
  margin-bottom: 0;
}
#gFooter .fNavi .navi > li > a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  color: var(--sub-color);
}
#gFooter .fNavi .navi > li a:hover {
  opacity: 0.65;
}
#gFooter .fNavi .navi > .li01 a {
  padding-right: 2rem;
  background: url(../img/common/icon07.webp) no-repeat right center/1.3rem;
}
#gFooter .fNavi .navi01 {
  margin-right: 7.5%;
}
#gFooter .fNavi .sub {
  margin-top: 1rem;
}
#gFooter .fNavi .subNavi {
  margin: -0.6rem 4% 0 0;
}
#gFooter .fNavi .subNavi:last-of-type {
  margin-right: 0;
}
#gFooter .fNavi .subNavi li {
  margin-top: 0.6rem;
}
#gFooter .fNavi .subNavi a {
  margin-left: 0.5rem;
  padding-left: 0.8rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
#gFooter .fNavi .subNavi a::after {
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-color: var(--base-color);
  content: "";
  z-index: 1;
}
#gFooter .fNavi .subNavi .li01 {
  margin-right: -13rem;
}
#gFooter address {
  padding: 1.6rem 15.6rem 1.65rem;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  text-align: right;
  background: url(../img/common/com_bg01.webp) repeat center top/10rem;
}
@media all and (max-width: 896px) {
  #gFooter {
    margin-bottom: 6rem;
  }
  #gFooter .fInner {
    padding: 4.3rem 3rem 3.8rem;
  }
  #gFooter .fBox {
    max-width: 100%;
  }
  #gFooter .fNavi .navi01Box {
    width: 44.5%;
    display: block;
  }
  #gFooter .fNavi .navi02Box {
    display: block;
  }
  #gFooter .fNavi .navi {
    margin: 0 0 0.9rem;
  }
  #gFooter .fNavi .navi:last-of-type {
    margin-bottom: 0;
  }
  #gFooter .fNavi .navi > li {
    margin-bottom: 0.9rem;
  }
  #gFooter .fNavi .navi > li > a {
    font-size: 1.2rem;
  }
  #gFooter .fNavi .navi > .li01 a {
    padding-right: 1.4rem;
    background-size: 1.1rem auto;
  }
  #gFooter .fNavi .navi01 {
    margin-right: 0;
  }
  #gFooter .fNavi .sub {
    margin-top: 0.7rem;
    display: block;
  }
  #gFooter .fNavi .subNavi {
    margin: 0 0 0.6rem;
  }
  #gFooter .fNavi .subNavi:last-of-type {
    margin: 0;
  }
  #gFooter .fNavi .subNavi li {
    margin: 0 0 0.6rem;
  }
  #gFooter .fNavi .subNavi li:last-child {
    margin-bottom: 0;
  }
  #gFooter .fNavi .subNavi a {
    margin-left: 0.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.055rem;
  }
  #gFooter .fNavi .subNavi .li01 {
    margin-right: -2rem;
  }
  #gFooter address {
    padding: 1.3rem 1rem 1.2rem 1.7rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */