@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: "Zen Kaku Gothic New", sans-serif;
  --en-font: "Bellota Text", sans-serif;
  --base-color: #444;
  --blk2: #777;
  --blk3: #ACC2BF;
  --blk4: #F2F2F2;
  --white: #fff;
  --yellow: #FFF1C2;
  --blue: #6FB0D3;
  --blue2: #8DABDA;
  --blue3: #519CC4;
  --light_blue: #F3F8FB;
  --pink: #EF9FB2;
  --green: #77CBC0;
  --green1: #75C8BD;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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;
  -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 {
  padding: 2.2rem 10.8rem 2.1rem 3rem;
  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;
}
#gHeader .logo {
  width: 14rem;
}
@media all and (max-width: 896px) {
  #gHeader {
    padding: 1rem 7rem 1rem 1rem;
  }
  #gHeader .logo {
    width: 9.9rem;
  }
}

#gNavi {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#gNavi ul {
  gap: 0 2.25rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#gNavi ul a {
  position: relative;
  display: inline-block;
  padding: 1rem 0;
  font-weight: 500;
  letter-spacing: 0.16rem;
}
#gNavi ul a:after {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: var(--blue2);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}
#gNavi ul a.on:after {
  opacity: 1;
}
@media all and (min-width: 1025px) {
  #gNavi ul a:hover:after {
    opacity: 1;
  }
}

.menu {
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 6rem;
  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: 1rem;
    top: 1rem;
    width: 4rem;
  }
}

.menuBox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--white);
  z-index: 100;
}
.menuBox .logo {
  position: absolute;
  left: 3rem;
  top: 2.2rem;
  width: 14rem;
}
.menuBox .close {
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 6rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media all and (min-width: 897px) {
  .menuBox .close:hover {
    opacity: 0.65;
  }
}
.menuBox .subBox {
  margin: 22.5rem auto;
  max-width: 110rem;
}
.menuBox .subBox .comInfo {
  width: 52rem;
}
.menuBox .subBox .rBox {
  margin-top: 0.3rem;
  width: 48.3rem;
}
.menuBox .subBox .rBox .menuList {
  width: 41.5%;
}
.menuBox .subBox .rBox .menuList:last-child {
  margin-left: 2rem;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.menuBox .subBox .rBox .menuList a:hover {
  opacity: 0.65;
}
.menuBox .subBox .rBox .menuList > li:not(:last-child) {
  margin-bottom: 3.4rem;
}
.menuBox .subBox .rBox .menuList > li > a {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.24rem;
}
.menuBox .subBox .rBox .menuList .subList {
  margin-top: 1.8rem;
}
.menuBox .subBox .rBox .menuList .subList li {
  width: 57.5%;
}
.menuBox .subBox .rBox .menuList .subList li:last-child {
  margin-right: -4rem;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.menuBox .subBox .rBox .menuList .subList li a {
  padding-left: 0.9rem;
  position: relative;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.3;
  letter-spacing: 0.216rem;
  white-space: nowrap;
}
.menuBox .subBox .rBox .menuList .subList li a::after {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.6rem;
  height: 1px;
  content: "";
  z-index: 1;
  background-color: var(--blue);
}
@media all and (max-width: 896px) {
  .menuBox .logo {
    width: 9.9rem;
    left: 1rem;
    top: 1rem;
  }
  .menuBox .close {
    right: 1rem;
    top: 1rem;
    width: 4rem;
  }
  .menuBox .subBox {
    margin: 11.8rem 2rem 6rem;
    max-width: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .menuBox .subBox .comInfo {
    width: auto;
  }
  .menuBox .subBox .comInfo .headLine01 {
    letter-spacing: 0.28rem;
  }
  .menuBox .subBox .comInfo .headLine01 .en {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
  }
  .menuBox .subBox .rBox {
    margin: 0 0 5.8rem;
    width: 100%;
    display: block;
  }
  .menuBox .subBox .rBox .menuList {
    width: auto;
  }
  .menuBox .subBox .rBox .menuList > li {
    border-bottom: 2px solid var(--blk4);
  }
  .menuBox .subBox .rBox .menuList > li:not(:last-child) {
    margin-bottom: 0;
  }
  .menuBox .subBox .rBox .menuList > li > a {
    padding: 1.05rem 0;
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
  }
}

/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/
#gFooter {
  padding: 14rem 0 4rem;
}
#gFooter .fLogo {
  margin: 0 auto 3rem;
  width: 30rem;
}
#gFooter .fLogo a {
  display: block;
}
#gFooter .title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6rem;
}
#gFooter .comContact {
  padding: 4.6rem 0 8rem;
}
#gFooter .comContact .comInfo .btnList li.reserve a .sub {
  padding: 0 1.1rem 0 5.5rem;
  font-size: 3rem;
}
#gFooter .comContact .comInfo .btnList li.reserve a .sub .large {
  font-size: 3.4rem;
}
#gFooter .fBox {
  padding-top: 7.4rem;
  border-top: 0.2rem solid var(--blk4);
}
#gFooter .fBox .innerBox {
  margin-bottom: 9.1rem;
}
#gFooter .fBox .innerBox .fNaviBox {
  width: 51rem;
}
#gFooter .fBox .innerBox .fNaviBox .lBox {
  width: 26rem;
}
#gFooter .fBox .innerBox .fNaviBox .lBox .navLink {
  max-width: 14rem;
}
#gFooter .fBox .innerBox .fNaviBox .rBox {
  width: 20.7rem;
}
#gFooter .fBox .innerBox .fNaviBox .navLink a {
  font-size: 1.4rem;
  font-weight: 350;
  line-height: 2.4;
  letter-spacing: 0.14rem;
}
#gFooter .fBox .innerBox .fNaviBox .navLink a:hover {
  opacity: 0.65;
}
#gFooter .fBox .innerBox .fNaviBox .subLink {
  margin-top: 1.3rem;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
#gFooter .fBox .innerBox .fNaviBox .subLink li {
  min-width: 10.5rem;
}
#gFooter .fBox .innerBox .fNaviBox .subLink li a {
  padding-left: 0.6rem;
  position: relative;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.33;
  letter-spacing: 0.144rem;
}
#gFooter .fBox .innerBox .fNaviBox .subLink li a::after {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.3rem;
  height: 1px;
  content: "";
  z-index: 1;
  background-color: var(--blue);
}
#gFooter .fBox .innerBox .text {
  margin-top: 0.3rem;
  width: calc(100% - 60rem);
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.072rem;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
#gFooter address {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.18rem;
}
@media all and (max-width: 896px) {
  #gFooter {
    padding: 8rem 0 1.2rem;
  }
  #gFooter .fLogo {
    margin-bottom: 2.2rem;
    width: 18rem;
  }
  #gFooter .title {
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: 0.22rem;
  }
  #gFooter .comContact {
    padding: 3.6rem 0 5rem;
  }
  #gFooter .comContact .comInfo {
    margin-bottom: 4rem;
  }
  #gFooter .comContact .comInfo .btnList li.reserve a .sub {
    padding: 0 0 0.2rem 3.7rem;
    font-size: 2.2rem;
  }
  #gFooter .comContact .comInfo .btnList li.reserve a .sub .large {
    font-size: 2.6rem;
  }
  #gFooter .fBox {
    padding-top: 3rem;
    display: block;
  }
  #gFooter .fBox .innerBox {
    margin-bottom: 5.6rem;
    display: block;
  }
  #gFooter .fBox .innerBox .fNaviBox {
    margin-bottom: 4rem;
    width: auto;
  }
  #gFooter .fBox .innerBox .fNaviBox a {
    display: block;
  }
  #gFooter .fBox .innerBox .fNaviBox .lBox {
    width: 48.2%;
    display: block;
  }
  #gFooter .fBox .innerBox .fNaviBox .lBox .navLink {
    max-width: 100%;
  }
  #gFooter .fBox .innerBox .fNaviBox .rBox {
    width: 51.8%;
  }
  #gFooter .fBox .innerBox .fNaviBox .subLink {
    margin-top: 1.3rem;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  #gFooter .fBox .innerBox .fNaviBox .subLink li {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  #gFooter .fBox .innerBox .fNaviBox .subLink li a::after {
    top: 1.5rem;
  }
  #gFooter .fBox .innerBox .text {
    margin-top: 0.3rem;
    width: auto;
    font-size: 1.1rem;
    letter-spacing: 0.066rem;
  }
  #gFooter address {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */