@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Serif 4", serif;
  color: #685150;
  line-height: 1.6;
}

.beige {
  background: #F4F3EE;
}

.sedan-sc {
  font-family: "Sedan SC", serif;
  font-weight: 400;
  font-style: normal;
}

section {
  padding: 80px 0;
}
@media screen and (max-width:540px) {
  section {
    padding: 60px 0;
  }
}

img {
  width: 100%;
  display: block;
}

p {
  font-size: 18px;
}
@media screen and (max-width:540px) {
  p {
    font-size: 16px;
  }
}

a {
  display: block;
  text-decoration: none;
}

header {
  background-color: #F4F3EE;
}
header .fixed-bar {
  background-color: #F4F3EE;
  padding: 0 0 0 50px;
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
@media screen and (max-width:1024px) {
  header .fixed-bar {
    height: 60px;
    padding-left: 20px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar {
    height: 50px;
  }
}
header .fixed-bar a img {
  width: 410px;
}
@media screen and (max-width:540px) {
  header .fixed-bar a img {
    width: 200px;
  }
}
header .fixed-bar nav.menu {
  display: flex;
  align-items: center;
}
header .fixed-bar nav.menu a.tel-icon {
  width: 80px;
  height: 80px;
  background: #C58A3A;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .fixed-bar nav.menu a.tel-icon img {
  width: 32px;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu a.tel-icon img {
    width: 20px;
  }
}
@media screen and (max-width:1024px) {
  header .fixed-bar nav.menu a.tel-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu a.tel-icon {
    width: 50px;
    height: 50px;
  }
}
header .fixed-bar nav.menu .menu-bar {
  width: 80px;
}
@media screen and (max-width:1024px) {
  header .fixed-bar nav.menu .menu-bar {
    width: 60px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar {
    width: 50px;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar-open {
  background: #fff;
  padding: 16px 16px 12px;
  box-shadow: 0px -6px 15px rgba(0, 0, 0, 0.2);
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar-open__head--logo {
    width: 35%;
    height: auto;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__head--logo img {
  width: 160px;
  height: auto;
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click {
  border-radius: 100%;
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click span {
  position: relative;
  z-index: 999;
  display: block;
  content: "";
  width: 35px;
  height: 4px;
  border-radius: 10px;
  background: #C58A3A;
  margin: 8px auto;
  transition: 0.3s;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar-open__click span {
    width: 22px;
    height: 2px;
    margin: 5px auto;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open {
  margin: 0 auto;
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span {
  transition: 0.3s;
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span:first-child {
  transform: translateY(4px) rotate(45deg);
  margin: 0 auto;
  width: 48px;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span:first-child {
    width: 30px;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span:nth-child(2) {
  display: none;
}
header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span:nth-child(3) {
  margin: 0 auto;
  transform: rotate(-45deg);
  width: 48px;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar-open__click.open span:nth-child(3) {
    width: 30px;
    transform: rotate(-45deg) translate(-1px, 2px);
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar {
  background: #F4F3EE;
  padding: 30px 0 0 200px;
  height: calc(100vh - 80px);
  margin-top: 80px;
  position: relative;
  overflow: scroll;
}
@media screen and (max-width:1024px) {
  header .fixed-bar nav.menu .menu-bar .top-bar {
    height: calc(100vh - 60px);
    margin-top: 60px;
    padding-left: 80px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar {
    height: calc(100vh - 50px);
    margin-top: 50px;
    padding: 15px 20px;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar::after {
  position: absolute;
  content: "";
  width: 673px;
  height: 381px;
  background: url(../img/headmenu-gz.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar::after {
    content: none;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu {
  width: 85%;
  height: auto;
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu {
    margin-top: 30px;
    width: 100%;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul {
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li {
  width: 100%;
  max-width: 520px;
  list-style: none;
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a {
  display: block;
  padding: 10px 20px;
  border-bottom: 2px solid #C58A3A;
  color: #685150;
  font-size: 16px;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width:1024px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a {
    font-size: 12px;
    padding: 15px 20px 7px;
    border-bottom: 1px solid #C58A3A;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #685150;
  border-right: 2px solid #685150;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a::after {
    width: 5px;
    height: 5px;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a span {
  font-size: 35px;
  font-family: "Sedan SC", serif;
  padding-right: 20px;
}
@media screen and (max-width:1024px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a span {
    font-size: 30px;
  }
}
@media screen and (max-width:540px) {
  header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a span {
    font-size: 25px;
  }
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a:hover {
  background-color: #C58A3A;
  color: white;
  border-bottom-color: white;
}
header .fixed-bar nav.menu .menu-bar .top-bar__menu ul li a:hover::after {
  border-color: white;
}
header .fixed-bar nav.menu .menu-bar .close-menu {
  position: absolute;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transform: translateX(100%);
  transition: 0.4s;
}
header .fixed-bar nav.menu .menu-bar .close-menu .top-bar {
  opacity: 0;
  top: -100%;
}
header .fixed-bar nav.menu .menu-bar .close-menu.open {
  transform: translateX(0);
  transition: 0.4s;
  display: block;
}
header .fixed-bar nav.menu .menu-bar .close-menu.open .top-bar {
  opacity: 1;
}
header nav.breadcrumb {
  font-size: 16px;
  padding: 120px 0 0 44px;
}
@media screen and (max-width:540px) {
  header nav.breadcrumb {
    padding: 80px 18px 0px;
    font-size: 12px;
    overflow: hidden;
  }
}
header nav.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #685150;
}
@media screen and (max-width:540px) {
  header nav.breadcrumb ul {
    gap: 20px;
    margin-right: 10px;
    overflow: hidden;
  }
}
header nav.breadcrumb ul {
  white-space: nowrap;
}
header nav.breadcrumb ul li {
  list-style: none;
}
header nav.breadcrumb a {
  font-size: 16px;
  color: #685150;
  position: relative;
}
@media screen and (max-width:540px) {
  header nav.breadcrumb a {
    font-size: 12px;
  }
}
header nav.breadcrumb a::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #685150;
  border-right: 2px solid #685150;
  top: 50%;
  right: -18px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:540px) {
  header nav.breadcrumb a::before {
    border-top: 1px solid #685150;
    border-right: 1px solid #685150;
    top: 49%;
    right: -12px;
  }
}

footer {
  background: white;
}
footer .top-block {
  padding: 40px 0;
  max-width: 1040px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  footer .top-block {
    flex-wrap: wrap;
    max-width: 330px;
    gap: 20px;
    padding: 30px 0;
  }
}
footer .top-block img.logo {
  width: 403px;
}
@media screen and (max-width:540px) {
  footer .top-block img.logo {
    width: 236px;
  }
}
footer .top-block .profile p.address {
  font-size: 16px;
  margin-bottom: 35px;
}
@media screen and (max-width:540px) {
  footer .top-block .profile p.address {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
footer .top-block .profile .sns-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
}
footer .top-block .profile .sns-box a {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 1px solid #C58A3A;
  padding: 9px;
}
footer .bottom-block {
  border-top: 2px solid #685150;
  padding: 20px 0;
}
footer .bottom-block p {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width:540px) {
  footer .bottom-block p {
    font-size: 12px;
  }
}

main {
  min-height: calc(100vh - 301px);
}

.fixed__btn {
  position: fixed;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  right: 0;
  bottom: 0;
  z-index: 998;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}
@media screen and (max-width:1024px) {
  .fixed__btn {
    padding: 20px;
  }
}
@media screen and (max-width:540px) {
  .fixed__btn {
    gap: 7px;
  }
}
.fixed__btn a {
  display: block;
  width: 630px;
}
.fixed__btn a.cta-btn {
  max-width: none;
  margin: 0;
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #F8EDD7, 46%, #E8BC7A, 75%, #FFFFFF, #E7B875);
     border-image: linear-gradient(to right, #F8EDD7, 46%, #E8BC7A, 75%, #FFFFFF, #E7B875);
  padding: 20px 0;
  color: white;
  background: linear-gradient(to bottom, #C58A3A, 66%, #BB7E2A, #925B11);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width:540px) {
  .fixed__btn a.cta-btn {
    font-size: 16px;
    padding: 15px 0;
  }
}
.fixed__btn a.cta-btn::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:540px) {
  .fixed__btn a.cta-btn::after {
    content: none;
  }
}
.fixed__btn a.cta-btn:hover {
  background: linear-gradient(to bottom, #DFA85C, 66%, #B77820);
}
.fixed__btn a.line-btn {
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #F8EDD7, 46%, #E8BC7A, 75%, #FFFFFF, #E7B875);
     border-image: linear-gradient(to right, #F8EDD7, 46%, #E8BC7A, 75%, #FFFFFF, #E7B875);
  padding: 20px 0;
  color: white;
  background: linear-gradient(to bottom, #60B064, 66%, #59A45D, #38673B);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width:540px) {
  .fixed__btn a.line-btn {
    font-size: 16px;
    padding: 15px 0;
  }
}
.fixed__btn a.line-btn::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:540px) {
  .fixed__btn a.line-btn::after {
    content: none;
  }
}
.fixed__btn a.line-btn:hover {
  background: linear-gradient(to bottom, #6FC574, 66%, #487F4A);
}

.nopage p {
  text-align: center;
  font-size: 20px;
  padding-top: 70px;
}
@media screen and (max-width:540px) {
  .nopage p {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */