@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@500;800&family=Noto+Sans+JP:wght@400;600&family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
  --brwon: #211815;
  --orange: #edac2c;
  --red: #d42c25;
}
body,
html {
  overflow-x: hidden;
}
body {
  background: url(../img/texture-1.jpg) center top;
  background-size: auto;
  color: #000000;
  font-size: 1.3rem;
  line-height: 1.6;
  font-family: "M PLUS 1", sans-serif;
  letter-spacing: 0.06em;

  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
a {
  color: #000000;
}

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

font-size

----------------------------------------------------------  */
html {
  font-size: 0.833vw;
}
@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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(540 / 1920 * 100%);
  height: 70rem;
  padding: 6rem 0 6rem 0;
}
header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 100%;
  background: url(../img/decoration-1.png) no-repeat center / cover;
  content: "";
}
header h1 {
  width: 27rem;
  line-height: 1;
}
header dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2.5rem 0;
  background: var(--orange);
}
header dl dt {
  margin-bottom: 0.5rem;
  text-align: center;
}
header dl dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
}
header dl dd a img {
  width: 2.5rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: center;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 6rem;
    padding: 0;
  }
  header::before {
    width: 3.2rem;
  }
  header h1 {
    width: 10rem;
  }
}

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

nav

----------------------------------------------------------  */
.gnav {
  display: flex;
  justify-content: center;
}
ul.gnav-menu {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-left: 2em;
}
ul.gnav-menu > li {
  font-weight: bold;
  font-size: 1.8rem;
  white-space: nowrap;
}
ul.gnav-menu > li:last-child a {
  display: flex;
  justify-content: center;
  color: var(--red);
  font-size: 2.8rem;
  text-align: center;
}
ul.gnav-menu > li:not(:last-child) {
  margin-bottom: 2.5rem;
}
ul.gnav-menu > li:not(:last-child) a {
  display: flex;
  align-items: center;
}
ul.gnav-menu > li:not(:last-child) a::before {
  width: 0;
  height: 0;
  margin-top: 0.2rem;
  margin-right: 1.5rem;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid #a99155;
  content: "";
  transition: all 0.3s;
}
ul.gnav-menu > li:not(:last-child) a:hover {
  opacity: 1;
}
ul.gnav-menu > li:not(:last-child) a:hover::before {
  opacity: 1;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid var(--red);
}

.gnav-menu > li a img {
  width: 6rem;
  height: 6rem;
}
@media (max-width: 768px) {
  .gnav-menu > li a img {
    width: 4rem;
    height: 4rem;
  }
}
/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
  padding: 8rem 0 5rem;
  background: url(../img/footer-bg.png) no-repeat top center / cover;
  color: #ffffff;
}
footer a {
  color: #ffffff;
}
footer .logo {
  width: 27rem;
  margin: 0 auto;
}

footer nav {
  margin-bottom: 3rem;
}
footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  font-weight: bold;
  line-height: 1;
}
footer nav ul li {
  padding: 0 3rem;
  position: relative;
}

footer nav ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: #fff;
}

footer nav ul li a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

footer nav ul li a img {
  width: 4rem;
}

footer small {
  display: block;
  margin-top: 5rem;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 6rem 0;
  }
  footer .logo {
    width: 20rem;
    margin: 0 auto;
  }
  footer nav {
    margin-bottom: 6rem;
  }
  footer nav ul {
    display: block;
  }
  footer nav ul li {
    padding: 0;
    border-left: none;
    text-align: center;
  }
  footer nav ul li::before {
    content: none;
  }
  footer nav ul li:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

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

page-ttl

----------------------------------------------------------  */
.page-ttl {
  position: relative;
  margin-left: calc(540 / 1920 * 100%);
  background: url(../img/top-kv-1.jpg) no-repeat center / cover;
}
.page-ttl > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70rem;
  background: rgba(0, 0, 0, 0.4);
}
.page-ttl h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-ttl {
    margin-left: 0;
  }
  .page-ttl > div {
    height: 20rem;
  }
  .page-ttl h2 {
    font-size: 3.6rem;
  }
}

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

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
  margin-bottom: 4rem;
  line-height: 1;
  position: relative;
}
.heading-1::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  width: 40rem;
  height: 4rem;
  background: url(../img/decoration-2.png) no-repeat left center / contain; 
}
.heading-1 img {
  display: block;
  width: auto;
  height: 9rem;
}
@media screen and (max-width: 768px) {
  .heading-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
  }
  .heading-1::after {
    bottom: -3rem;
    left: 55%;
    transform: translateX(-50%);
    width: 20rem;
    height: 3rem;
  }
  .heading-1 img {
    height: 6rem;
  }
}

/* more */
.more {
  display: block;
  position: relative;
  width: 22rem;
  padding: 1.8rem 0 2rem 0;
  background: var(--brwon);
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.more::before {
  position: absolute;
  right: -0.6rem;
  bottom: -0.6rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: solid 0.14rem var(--red);
  content: "";
  transition: all 0.3s;
}
.more:hover {
  opacity: 1;
  background: var(--red);
}
.more:hover::before {
  border: solid 0.14rem var(--red);
}
.more.wt {
  background: #ffffff;
  color: var(--brwon);
}
.more.wt::before {
  border: solid 0.14rem #ffffff;
}
.more.wt:hover {
  background: var(--red);
  color: #ffffff;
}
.more.wt:hover::before {
  border: solid 0.14rem var(--red);
}
@media screen and (max-width: 768px) {
  .more {
    margin: 0 auto;
  }
}

/* ttl */
.ttl {
  position: relative;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  font-size: 2.2rem;
}
.ttl.wt {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.ttl:after {
  display: block;
  position: absolute;
  bottom: -4px;
  width: 25%;
  border-bottom: solid 4px var(--brwon);
  content: " ";
}
@media screen and (max-width: 768px) {
  .ttl:after {
    width: 40%;
  }
}

/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
}
dl.detail dt {
  width: 20%;
  padding: 3rem 2rem;
  white-space: nowrap;
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 600;
}
dl.detail dd {
  width: 80%;
  padding: 3rem 2rem;
  font-size: 1.6rem;
}
dl.bk dt,
dl.bk dd {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}
dl.wt dt,
dl.wt dd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    width: 100%;
    padding: 1.2rem 1.2rem 0 1.2rem;
  }
  dl.detail dd {
    width: 100%;
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
  dl.bk dt {
    border-bottom: none;
  }
  dl.wt dt {
    border-bottom: none;
  }
}

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

hamburger

----------------------------------------------------------  */
.gnav-sp {
  display: block;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: url(../img/texture-1.jpg) center top;
  background-size: cover;
  transition: all 0.5s;

  -webkit-overflow-scrolling: touch;
}
.gnav-sp .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gnav-sp-menu li {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
}
.gnav-menu--sub i {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .gnav-menu--sub i {
    margin-top: 4px;
    margin-bottom: 4rem;
  }
}
/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  width: 6rem;
  height: 6rem;
  background: var(--brwon);
  cursor: pointer;
  transition: all 0.5s;
}
.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #ffffff;
  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 {
  opacity: 1;
  top: 0;
  z-index: 99999;
}
.open .toggle-btn span {
  background-color: #ffffff;
}
.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);

  -webkit-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);

  -webkit-transform: translateY(-0.8rem) rotate(45deg);
}

.g-nav__icon {
  width: 2.8rem;
}

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

layout

----------------------------------------------------------  */
.container {
  width: 88rem;
  margin: 8rem auto 10rem auto;
}
.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 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.container h4::before {
  color: var(--red);
  content: "◆";
}
@media screen and (max-width: 768px) {
  .container {
    width: auto;
    margin: 6rem 3rem 8rem 3rem;
  }
  .container .wrap {
    display: block;
  }
  .container .wrap > figure {
    width: 100%;
    margin-bottom: 2rem;
  }
  .container .wrap > div {
    width: 100%;
  }
}

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

fixed btn

----------------------------------------------------------  */
.fixed-btn {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 999;
  transform: translate(0, -50%);
  width: 6rem;

  -webkit-transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;

    -webkit-transform: none;
  }
  .fixed-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.4rem;
    background: var(--brwon);
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    text-decoration: none !important;
  }
}

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

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 {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  padding-left: 0.1rem;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
}

#page-top a img {
  width: 2.5rem;
  height: 2.5rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 7.4rem;
  }

  
}

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

link

----------------------------------------------------------  */
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-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

----------------------------------------------------------  */
/* txt */
.txt-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .txt-vertical.not {
    white-space: normal;

    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}

/* prepare */
.prepare {
  padding: 8rem 0;
  font-size: 2rem;
  text-align: center;
}

/* 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);

    -webkit-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);

    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);

    -moz-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);

    -moz-transform: translateY(0);
  }
}
@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);

    -ms-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);

    -ms-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;

  -webkit-animation: fadeInUp 0.6s ease;
  -moz-animation: fadeInUp 0.6s ease;
  -ms-animation: fadeInUp 0.6s ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-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;
}
/* --------共有------------------------------- */
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-btn {
  display: flex;
  justify-content: center;
}

.tel-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.tel-btn img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
