@charset "UTF-8";
.mincho-b1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #402C10;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  #screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 6.9%;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #site_title {
    width: min(64.5vw, 231px);
  }
}

h1.title {
  background: #999;
  padding: 20px 10px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  width: 100%;
  height: 89px;
  padding: 0 32px 0 47px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
header.scroll {
  background-color: #fff;
}
header .container {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 0 0 30px;
    height: 80px;
    overflow: visible;
  }
}

.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
    width: 43px;
    height: 43px;
    position: absolute;
    top: 18px;
    right: 23px;
    z-index: 2000;
  }
  .menu .icon {
    display: block;
    width: 43px;
    height: 1px;
    border-top: 1px solid #402C10;
    position: absolute;
    top: 50%;
    left: 0;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  .menu .icon::before, .menu .icon::after {
    content: "";
    width: 100%;
    border-top: 1px solid #402C10;
    position: absolute;
    transition: all 0.5s;
    left: 0;
  }
  .menu .icon::before {
    top: -10px;
  }
  .menu .icon::after {
    bottom: -9px;
  }
  .menu .icon.active {
    border-color: transparent;
  }
  .menu .icon.active::before {
    transform: rotate(25deg);
    top: -2px;
    right: 0;
  }
  .menu .icon.active::after {
    transform: rotate(-25deg);
    bottom: 0;
    right: 0;
  }
}

/* グローバルナビゲーション */
#gnav {
  display: flex;
  align-items: center;
  gap: 0 40px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #gnav {
    background: #fff;
    display: block !important;
    transition: 0.5s ease-in-out;
    float: none;
    width: 100%;
    height: 100dvh;
    max-height: none;
    padding: 0 40px;
    margin: 0;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    box-sizing: border-box;
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  #gnav.open {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#gnav .gnav_inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  #gnav .gnav_inner {
    display: flex;
    flex-direction: column;
    width: min(100%, 321px);
    height: auto;
    min-height: 100svh;
    padding: 120px 0 40px;
    margin: 0 auto;
  }
}
#gnav ul {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #gnav ul > li {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    text-indent: 0;
  }
  #gnav ul > li:not(:last-child) {
    margin-bottom: 54px;
  }
}
#gnav ul > li a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a::after {
    content: "";
    display: inline-block;
    background: url(../img/arrow_blue.svg) no-repeat center/100%;
    width: 6px;
    height: 13px;
    margin-left: 20px;
  }
}
#gnav ul > li a:hover {
  opacity: 1;
  color: #AA9C88;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
#gnav .logo {
  width: min(100%, 231px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #gnav .btn {
    margin-bottom: 52px;
  }
}

.tel_btn {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .tel_btn {
    width: min(100%, 360px);
    margin: auto auto 16px;
  }
}
.tel_btn a {
  background-color: #306E9A;
  border: 1px solid currentColor;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 7px 15px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  font-weight: normal;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
.tel_btn a span {
  font-size: 12px;
}
.tel_btn a .tel_number {
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
}
.tel_btn a .tel_hours {
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.tel_btn a:hover {
  opacity: 1;
  background-color: #8AB3D0;
}
@media screen and (max-width: 767px) {
  .tel_btn a {
    background-color: #306E9A;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 25px;
    background-size: auto;
    height: 71px;
    padding: 8px 20px;
    font-size: 20px;
  }
  .tel_btn a span {
    font-size: 19px;
  }
  .tel_btn a .tel_number {
    font-size: 22px;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .tel_btn a .tel_hours {
    font-size: 16px;
    line-height: 1.2;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

.btn {
  width: 298px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn {
    width: min(100%, 334px);
  }
}
.btn a {
  background-color: #402C10;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: auto;
  border: 1px solid currentColor;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 71px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
.btn a:hover {
  opacity: 1;
  background-color: #8C7C65;
}
.btn.blue a {
  background-color: #306E9A;
}
.btn.blue a:hover {
  background-color: #8AB3D0;
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
}
#path li {
  float: left;
}
#path li:not(:last-child):after {
  content: "〉";
  margin-left: 10px;
  color: #333;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  background: #543F23;
  padding: 55px 20px;
  clear: both;
  overflow: hidden;
}
footer .f_logo {
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 57px 20px;
  }
  footer .f_logo img {
    width: 206px;
  }
}

#footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    padding: 10px;
  }
}
.pagetop::after {
  content: "";
  width: 11px;
  height: 11px;
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 12px;
  color: #fff;
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 8vw 20px;
}
@media screen and (max-width: 767px) {
  #not_found {
    padding: 100px 20px 60px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 42px;
  font-family: "Arial", "メイリオ";
}
@media screen and (max-width: 767px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 39px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #not_found p.arial + p {
    font-size: 17px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #not_found p.txt {
    line-height: 1.6;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}