/*  variables.scss
---------------------------------------------- */
/*  color
---------------------------------------------- */
/*  breakpoint
---------------------------------------------- */
/*  mixins.scss
---------------------------------------------- */
/*  media
---------------------------------------------- */
/*  font-up-on-mobile
---------------------------------------------- */
html {
  font-size: 0.0732064422vw;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16rem;
  font-weight: 400;
  color: #000;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.1333333333vw;
  }
  body {
    font-size: 32rem;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default;
  }
}
.pcIn {
  display: inline;
}

@media screen and (max-width: 768px) {
  .pcIn {
    display: none;
  }
}
/* ------------------------------
    header
------------------------------ */
header {
  position: fixed;
  z-index: calc(infinity);
  top: 0;
  width: 100%;
  padding-inline: 35rem 15rem;
  transition: all 0.3s;
}
header.white {
  background: rgba(255, 255, 255, 0.9333333333);
}
header .hdInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20rem;
}
header .hdInner .hdLogo {
  width: 245rem;
  line-height: 1;
}
header .hdInner #gnav ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 35rem;
       column-gap: 35rem;
}
header .hdInner #gnav ul .hdMenu:nth-of-type(1) {
  width: 66rem;
}
header .hdInner #gnav ul .hdMenu:nth-of-type(2) {
  width: 67rem;
}
header .hdInner #gnav ul .hdMenu:nth-of-type(3) {
  width: 101rem;
}
header .hdInner #gnav ul .hdMenu:nth-of-type(4) {
  width: 202rem;
}
header .hdInner #gnav ul .hdMenu:nth-of-type(5) {
  width: 98rem;
}
header .hdInner #gnav ul .hdButton a {
  font-size: 15rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 189rem;
  padding: 15rem 8rem 15rem 13rem;
  background-image: linear-gradient(45deg, #dc9576 0%, #bb5535 100%);
}
header .hdInner #gnav ul .hdButton a .hdButtonArrow {
  display: block;
  width: 30rem;
}
header .hdInner #gnav ul .hdButton a .hdButtonArrow .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
}
@media screen and (min-width: 769px) {
  header .hdInner #gnav ul .hdButton a .hdButtonArrow {
    transition: all 0.3s;
  }
  header .hdInner #gnav ul .hdButton a:hover .hdButtonArrow {
    transform: translateX(5rem);
  }
}
header .hdInner .navButton {
  display: none;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  header a img {
    transition: opacity 0.3s;
  }
  header a:hover img {
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding-inline: 50rem;
  }
  header .hdInner {
    padding-block: 30rem;
  }
  header .hdInner .hdLogo {
    width: 367.5rem;
  }
  header .hdInner #gnav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 200rem;
    background: #fff;
    z-index: -1;
    overflow-y: scroll;
  }
  header .hdInner #gnav ul {
    flex-wrap: wrap;
    row-gap: 40rem;
    width: 90%;
    margin-inline: auto;
  }
  header .hdInner #gnav ul li {
    width: 100% !important;
  }
  header .hdInner #gnav ul .hdMenu {
    text-align: center;
  }
  header .hdInner #gnav ul .hdMenu:nth-of-type(1) img {
    width: 132rem;
  }
  header .hdInner #gnav ul .hdMenu:nth-of-type(2) img {
    width: 134rem;
  }
  header .hdInner #gnav ul .hdMenu:nth-of-type(3) img {
    width: 202rem;
  }
  header .hdInner #gnav ul .hdMenu:nth-of-type(4) img {
    width: 404rem;
  }
  header .hdInner #gnav ul .hdMenu:nth-of-type(5) img {
    width: 196rem;
  }
  header .hdInner #gnav ul .hdButton a {
    font-size: 28rem;
    width: 500rem;
    margin-inline: auto;
    padding: 30rem 15rem;
  }
  header .hdInner #gnav ul .hdButton a .hdButtonArrow {
    width: 50rem;
  }
  header .hdInner .navButton {
    display: block;
    position: relative;
    width: 70rem;
    aspect-ratio: 1/1;
    pointer-events: all;
    cursor: pointer;
  }
  header .hdInner .navButton span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    left: 0;
    transition: all 0.3s;
  }
  header .hdInner .navButton span:nth-of-type(1) {
    top: 15%;
  }
  header .hdInner .navButton span:nth-of-type(2) {
    top: 40%;
  }
  header .hdInner .navButton::after {
    position: absolute;
    content: "MENU";
    font-size: 24rem;
    font-weight: 500;
    line-height: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  header .hdInner .navButton.active span:nth-of-type(1) {
    top: 27.5%;
    transform: rotate(30deg);
  }
  header .hdInner .navButton.active span:nth-of-type(2) {
    top: 27.5%;
    transform: rotate(-30deg);
  }
  header .hdInner .navButton.active::after {
    content: "CLOSE";
  }
}
/* ------------------------------
    footer
------------------------------ */
footer {
  width: 100%;
}
footer .footInner {
  width: 1100rem;
  margin-inline: auto;
}
footer .footInner h2 {
  font-size: 30rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 50rem;
}
footer .footInner address {
  font-size: 15rem;
  line-height: 2.4;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer .footInner address a {
    transition: all 0.3s;
  }
  footer .footInner address a:hover {
    opacity: 0.5;
  }
}
footer .footInner .-tel {
  font-size: 20rem;
}
footer .footInner .-tel span {
  font-size: 36rem;
}
footer .footInner .footMenu {
  margin-block: 80rem 60rem;
  padding-top: 115rem;
  border-top: 1px solid #898989;
}
footer .footInner .footMenu ul {
  display: flex;
}
footer .footInner .footMenu ul li {
  text-align: center;
  width: 16.6666666667%;
  padding-block: 7.5rem;
  border-inline: 1px solid #898989;
}
footer .footInner .footMenu ul li:nth-of-type(n + 2) {
  width: calc(16.6666666667% + 1px);
  margin-left: -1px;
}
footer .footInner .footMenu ul li:nth-of-type(1) img {
  width: 54rem;
}
footer .footInner .footMenu ul li:nth-of-type(2) img {
  width: 55rem;
}
footer .footInner .footMenu ul li:nth-of-type(3) img {
  width: 83rem;
}
footer .footInner .footMenu ul li:nth-of-type(4) img {
  width: 166rem;
}
footer .footInner .footMenu ul li:nth-of-type(5) img {
  width: 81rem;
}
footer .footInner .footMenu ul li:nth-of-type(6) img {
  width: 137rem;
}
@media screen and (min-width: 769px) {
  footer .footInner .footMenu ul li a {
    transition: all 0.3s;
  }
  footer .footInner .footMenu ul li a:hover {
    opacity: 0.5;
  }
}
footer .footInner .policylink {
  font-size: 12rem;
  text-align: center;
}
footer .footInner .policylink a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
footer .footInner .policylink svg {
  display: inline-block;
  width: 12rem;
}
@media screen and (min-width: 769px) {
  footer .footInner .policylink a {
    transition: all 0.3s;
  }
  footer .footInner .policylink a:hover {
    opacity: 0.5;
  }
}
footer .copy {
  font-size: 11rem;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 80rem;
  padding-block: 10rem;
  background-image: linear-gradient(90deg, #dc9576 0%, #bb5535 100%);
}
footer .pagetop {
  position: fixed;
  bottom: 55rem;
  right: 12rem;
  z-index: 999;
  display: none;
  cursor: pointer;
}
footer .pagetop span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  margin: 0 auto 10rem;
  border-radius: 40rem;
  background: #000;
}
footer .pagetop span::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
footer .pagetop p {
  font-size: 13rem;
}

@media screen and (max-width: 768px) {
  footer .footInner {
    width: 90%;
  }
  footer .footInner h2 {
    font-size: 36rem;
  }
  footer .footInner address {
    font-size: 22rem;
  }
  footer .footInner address span {
    font-size: 28rem;
  }
  footer .footInner .-tel {
    font-size: 28rem;
  }
  footer .footInner .-tel span {
    font-size: 40rem;
  }
  footer .footInner .footMenu ul {
    flex-wrap: wrap;
  }
  footer .footInner .footMenu ul li {
    padding-block: 20rem;
    border-inline: none;
  }
  footer .footInner .footMenu ul li:nth-of-type(n + 1) {
    width: 100%;
  }
  footer .footInner .footMenu ul li:nth-of-type(1) img {
    width: 108rem;
  }
  footer .footInner .footMenu ul li:nth-of-type(2) img {
    width: 110rem;
  }
  footer .footInner .footMenu ul li:nth-of-type(3) img {
    width: 166rem;
  }
  footer .footInner .footMenu ul li:nth-of-type(4) img {
    width: 332rem;
  }
  footer .footInner .footMenu ul li:nth-of-type(5) img {
    width: 162rem;
  }
  footer .footInner .footMenu ul li:nth-of-type(6) img {
    width: 274rem;
  }
  footer .footInner .policylink {
    font-size: 22rem;
  }
  footer .copy {
    font-size: 24rem;
    padding-block: 25rem;
  }
  footer .pagetop span {
    width: 60rem;
    height: 60rem;
    margin: 0 auto 15rem;
    border-radius: 60rem;
  }
  footer .pagetop span::before {
    width: 15rem;
    height: 15rem;
  }
  footer .pagetop p {
    font-size: 20rem;
  }
}/*# sourceMappingURL=common.css.map */