@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");

/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
  --color-prime: #c7a97f;
  --color-bg: #f6f5f1;
  --font-oswald: "Oswald", sans-serif;
}
body {
  color: #5f5148;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.9;
  }
}

main a:not(.more) {
  color: #8c7a6b;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 169, 127, 0.35);
  transition: 0.3s;
}

main a:not(.more):hover {
  color: #6f5f52;
  border-bottom-color: rgba(199, 169, 127, 0.8);
}

/* ヘッダー・ナビ・画像リンクには下線を出さない */
header a,
.gnav a,
.gnav-menu a,
#navArea a,
main a:has(img) {
  border-bottom: none;
  padding-bottom: 0;
  color: #64564d;
}

ul.gnav-menu a:hover {
  color: #6f5f52;
}

/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
  font-size: 0.833vw;
  -webkit-text-size-adjust: 100%;
  　text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.303vw;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 1.851vw;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 2.415vw;
  }
}
@media screen and (min-width: 1401px) {
  html {
    font-size: 0.714vw;
  }
}

/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 1.6rem 8rem;
  box-sizing: border-box;

  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.is-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 18px rgba(111, 98, 92, 0.08);
  padding: 1.6rem 8rem;
}

header h1 {
  width: 260px;
  margin: 0;
}

header h1 img {
  width: 100%;
  height: auto;
  display: block;
}

header .gnav {
  margin-left: auto;
}

header .gnav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

header .gnav-menu li {
  list-style: none;
}

header.low {
  position: relative;
}

@media screen and (max-width: 768px) {
  header,
  header.is-scroll {
    padding: 0;
    height: 6rem;
  }

  header h1 {
    width: 205px;
    margin: 0 auto;
  }
}

/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
  display: flex;
  align-items: center;
}
ul.gnav-menu > li {
  font-weight: bold;
  white-space: nowrap;
}
ul.gnav-menu > li:not(:first-child) {
  margin-left: 4rem;
}
ul.gnav-menu > li > a {
  display: flex;
  align-items: center;
  position: relative;
}
ul.gnav-menu > li > a::after {
  position: absolute;
  background: #8c7a6b;
  bottom: -1.2rem;
  content: "";
  height: 0.2rem;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}
ul.gnav-menu > li > a:hover::after {
  transform: scale(1, 1);
}
ul.gnav-menu > li > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
  background: #8c7a6b;
  color: #fff;
  padding: 6rem 12rem 4rem 12rem;
}
footer a {
  color: #fff;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
footer .logo {
  width: 20rem;
}
footer nav ul {
  display: flex;
}
footer nav ul li:not(:last-child) {
  margin-right: 3rem;
}
footer small {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 6rem 3rem;
  }
  footer .wrap {
    display: block;
    margin-bottom: 5rem;
  }
  footer .logo {
    width: 20rem;
    margin: 0 auto 5rem auto;
  }
  footer nav ul {
    display: block;
  }
  footer nav ul li {
    text-align: center;
  }
  footer nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  footer small {
    text-align: center;
  }
}

/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
  background: url(https://s3.ap-northeast-1.amazonaws.com/hpr.ravenhp.com/1a18f5f96f8/images/fa2a3090408089cb831ce88505cd23b94b04f667)
    no-repeat;
  background-size: cover;
  background-position: 82% 64%;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.page-ttl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 51, 38, 0.28);
  z-index: 1;
}

.page-ttl > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.page-ttl h2 {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.15em;
}
.page-ttl h2 span {
  display: block;
  font-family: var(--font-oswald);
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-ttl > div {
    height: 20rem;
  }
  .page-ttl h2 span {
    font-size: 3.6rem;
  }
}

/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* ttl */
.ttl {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}
.ttl:after {
  border-bottom: solid 4px var(--color-prime);
  bottom: -4px;
  content: " ";
  display: block;
  position: absolute;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .ttl:after {
    width: 40%;
  }
}
/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
}
dl.detail dt {
  font-weight: bold;
  padding: 1.5rem;
  width: 25%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 0.12rem #333;
}
dl.detail dd {
  padding: 1.5rem;
  width: 75%;
  border-bottom: solid 0.12rem #d9d9d9;
}
dl.detail dt:first-of-type {
  border-top: solid 0.12rem #333;
}
dl.detail dd:first-of-type {
  border-top: solid 0.12rem #d9d9d9;
}
@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    width: 100%;
    justify-content: flex-start;
    padding: 1.2rem 2rem;
    background: #fafafa;
  }
  dl.detail dd {
    width: 100%;
    padding: 1.2rem 2rem;
    border-bottom: solid 0.12rem #333;
  }
  dl.detail dd:first-of-type {
    border-top: solid 0.12rem #333;
  }
}

/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background: #fff;
}
.gnav-sp .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gnav-sp-menu li {
  text-align: center;
}
.gnav-sp-menu li a {
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1.5rem 0;
  white-space: nowrap;
}
/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background: var(--color-prime);
}
.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  transition: all 0.4s;
}
.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}
/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}
.open .toggle-btn span {
  background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
  margin: 8rem auto 10rem auto;
  width: 88rem;
}
.container .wrap {
  display: flex;
  justify-content: space-between;
}
.container .wrap.reverse {
  flex-direction: row-reverse;
}
.container .wrap > figure {
  width: 35%;
}
.container .wrap > div {
  width: 60%;
}
.container h4 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .container {
    margin: 6rem 3rem 8rem 3rem;
    width: auto;
  }
  .container .wrap {
    display: block;
  }
  .container .wrap > figure {
    width: 100%;
    margin-bottom: 2rem;
  }
  .container .wrap > div {
    width: 100%;
  }
  .container h4 {
    font-size: 1.8rem;
  }
}

/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top a {
  background: #c7a97f;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-oswald);
  height: 6rem;
  color: #fff;
}
#page-top a i {
  font-size: 1.6rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}
#page-top a:hover {
  opacity: 1;
  background: #b89566;
}

/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a.line {
  text-decoration: underline;
}
a:hover.line {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* position */
.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  z-index: 99;
}
/* map */
.gmap iframe {
  width: 100%;
  height: 40rem;
}
/* margin */
.mb-10 {
  margin-bottom: 1rem !important;
}
.mb-15 {
  margin-bottom: 1.5rem !important;
}
.mb-20 {
  margin-bottom: 2rem !important;
}
.mb-25 {
  margin-bottom: 2.5rem !important;
}
.mb-30 {
  margin-bottom: 3rem !important;
}
.mb-35 {
  margin-bottom: 3.5rem !important;
}
.mb-40 {
  margin-bottom: 4rem !important;
}
.mb-45 {
  margin-bottom: 4.5rem !important;
}
.mb-50 {
  margin-bottom: 5rem !important;
}
.mb-55 {
  margin-bottom: 5.5rem !important;
}
.mb-60 {
  margin-bottom: 6rem !important;
}
.mb-65 {
  margin-bottom: 6.5rem !important;
}
.mb-70 {
  margin-bottom: 7rem !important;
}
.mb-75 {
  margin-bottom: 7.5rem !important;
}
.mb-80 {
  margin-bottom: 8rem !important;
}
.mb-85 {
  margin-bottom: 8.5rem !important;
}
.mb-90 {
  margin-bottom: 9rem !important;
}
.mb-95 {
  margin-bottom: 9.5rem !important;
}
.mb-100 {
  margin-bottom: 10rem !important;
}

/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation: fadeInUp 0.6s ease;
  animation: fadeInUp 0.6s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fade {
  opacity: 0;
}
.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}
.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}
.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}
.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}
