@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", serif;
  --min-font: "Shippori Mincho", serif;
  --base-color: #514f4a;
  --white: #FFF;
  --black: #000;
  --beige1: #fcf9f2;
  --beige2: #F8F2E2;
  --beige3: #DEDAD2;
  --beige4: #C7C1B3;
  --beige5: #FFFEFD;
  --brown1: #998675;
  --brown2: #906D37;
  --brown3: #BD947B;
  --brown4: #EBE4D8;
  --orage1: #E98B00;
  --orage2: #ff7600;
  --orage3: #977745;
  --gray1: #E2DDD7;
  --gray2: #B9B9B7;
  --gray3: #F0EEEB;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media all and (min-width: 897px) and (max-width: 1220px) {
  html {
    font-size: 0.8203445447vw;
  }
}
@media all and (max-width: 374px) {
  html {
    font-size: 2.6737967914vw;
  }
}
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;
  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;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: var(--beige1);
}
body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
}
@media all and (min-width: 897px) {
  body.fixed {
    overflow-y: scroll;
  }
}
@media all and (max-width: 896px) {
  body.fixed {
    width: 100%;
  }
}

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

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%;
  box-sizing: border-box;
  z-index: 99;
}
#gHeader .logo {
  width: 16rem;
}
#gHeader .hBox {
  position: fixed;
  right: 18.9rem;
  top: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#gHeader .hBox .hLink {
  width: 35rem;
}
#gHeader .hBox .hLink li {
  width: 16.4rem;
}
#gHeader .hBox .hLink li a {
  padding: 1rem 0 1.4rem 2.2rem;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  background: var(--beige4) url(../img/common/icon01.webp) no-repeat left 2.7rem center;
  background-size: 1.8rem auto;
}
#gHeader .hBox .hLink li a span {
  font-style: italic;
}
@media all and (min-width: 897px) {
  #gHeader .hBox .hLink li a:hover {
    opacity: 0.6;
  }
}
#gHeader .hBox .hLink li:last-child a {
  color: var(--white);
  background: var(--brown1) url(../img/common/icon02.webp) no-repeat left 2.4rem center;
  background-size: 2.1rem auto;
}
#gHeader .hBox .hTel {
  margin: -0.3rem 2.3rem 0 0;
  font-size: 2.2rem;
  font-style: italic;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  #gHeader .logo {
    width: 12.6rem;
  }
  #gHeader .hBox {
    display: none;
  }
}

/*------------------------------------------------------------
	menu
------------------------------------------------------------*/
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.menu {
  position: fixed;
  right: 2.5rem;
  top: 2.8rem;
  width: 13rem;
  cursor: pointer;
  border-radius: 100%;
  overflow: hidden;
  transition: 0.3s;
  z-index: 9;
}
.menu .on {
  display: none;
}
@media all and (min-width: 897px) {
  .menu:hover {
    opacity: 0.6;
  }
}
.menu::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/menu_bg.webp) no-repeat;
  background-size: 100% 100%;
  content: "";
  animation: rotation 15s linear infinite;
}
.menu.on .on {
  display: block;
}
.menu.on .off {
  display: none;
}
.menu.on::before {
  background-image: url(../img/common/menu_on_bg.webp);
}
@media all and (max-width: 896px) {
  .menu {
    right: 1.4rem;
    top: 1.4rem;
    width: 8.2rem;
  }
}

/*------------------------------------------------------------
	menuBox
------------------------------------------------------------*/
.menuBox {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 37.5rem;
  overflow-y: auto;
  background-color: rgba(144, 109, 55, 0.9);
  box-sizing: border-box;
  transform: translateX(100%);
  transition: 0.3s;
}
.menuBox.on {
  transform: none;
}
.menuBox .menuInfo {
  height: 100%;
  width: 100%;
  min-height: 60rem;
  display: flex;
  align-items: center;
  padding: 10rem 5rem 10rem 12rem;
  box-sizing: border-box;
}
.menuBox .menuInfo ul li {
  margin-bottom: 2.8rem;
  letter-spacing: 0.05em;
}
.menuBox .menuInfo ul li a {
  color: var(--white);
}
@media all and (min-width: 897px) {
  .menuBox .menuInfo ul li a:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 896px) {
  .menuBox {
    width: 100%;
  }
  .menuBox .menuInfo {
    width: 37.5rem;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .comContact {
  background-color: var(--beige1);
}
#gFooter .comContact::before {
  background-image: url(../img/common/f_contact_bg.webp);
}
#gFooter .comContact .lBox .tabBox {
  border-color: var(--gray3);
}
@media all and (min-width: 897px) {
  #gFooter .comContact {
    padding: 6.6rem 0 8.4rem;
  }
  #gFooter .comContact .lBox .logo {
    margin-bottom: 3.4rem;
  }
  #gFooter .comContact .lBox .logo span {
    margin: 1.6rem 0 0 0;
  }
  #gFooter .comContact .lBox .tel {
    margin-bottom: 3.8rem;
    font-size: 4.5rem;
  }
  #gFooter .comContact .lBox .tabBox {
    margin-bottom: 0;
    padding: 2.6rem 3rem 2.8rem;
  }
}
#gFooter .fBox {
  padding: 6.5rem 2rem 1.6rem;
  background: url(../img/common/f_bg.webp) no-repeat center top;
  background-size: cover;
}
#gFooter .fBox .fNavi {
  width: 82.6rem;
  margin: 0 auto 5.3rem;
}
#gFooter .fBox .fNavi a {
  display: inline-block;
}
@media all and (min-width: 897px) {
  #gFooter .fBox .fNavi a:hover {
    opacity: 0.6;
  }
}
#gFooter .fBox .fNavi .fList {
  width: 34.5rem;
  font-family: var(--min-font);
  letter-spacing: 0.05em;
}
#gFooter .fBox .fNavi .fList > li ul li {
  margin-bottom: 2.2rem;
}
#gFooter .fBox .fNavi .fList > li ul li.en {
  font-style: italic;
}
#gFooter .fBox .fNavi .fInfo {
  width: 40.5rem;
}
#gFooter .fBox .fNavi .fInfo p {
  margin-bottom: 2.4rem;
  letter-spacing: 0.08em;
  font-family: var(--min-font);
}
#gFooter .fBox .fNavi .fInfo > ul {
  margin-right: -8rem;
  font-size: 1.4rem;
}
#gFooter .fBox .fNavi .fInfo > ul > li ul li {
  margin-bottom: 1.3rem;
}
#gFooter .fBox .fNavi .fInfo > ul > li ul li a {
  padding-left: 1.4rem;
  position: relative;
  letter-spacing: 0.04em;
}
#gFooter .fBox .fNavi .fInfo > ul > li ul li a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
}
#gFooter .fBox address {
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
@media all and (max-width: 896px) {
  #gFooter .comContact {
    padding-bottom: 5.4rem;
  }
  #gFooter .comContact .content {
    padding-bottom: 0;
  }
  #gFooter .fBox {
    padding: 4.8rem 3.7rem 6.8rem;
  }
  #gFooter .fBox .fNavi {
    width: auto;
    margin: 0 auto 3.2rem;
  }
  #gFooter .fBox .fNavi .fList {
    width: 55%;
    display: block;
  }
  #gFooter .fBox .fNavi .fList > li ul li {
    margin-bottom: 2.5rem;
  }
  #gFooter .fBox .fNavi .fInfo {
    width: 42%;
  }
  #gFooter .fBox .fNavi .fInfo p {
    margin-bottom: 1.8rem;
  }
  #gFooter .fBox .fNavi .fInfo > ul {
    margin-right: -2rem;
    display: block;
  }
  #gFooter .fBox .fNavi .fInfo > ul > li ul li {
    margin-bottom: 1.5rem;
  }
  #gFooter .fBox address {
    text-align: center;
  }
}