/* =============================================
  共通
============================================= */

html, body {
  margin: 0;
  padding: 0;
  color: #3e3a39;
}
@media screen and (max-width:768px) {
  body.modal-open {
    overflow-y: hidden;
  }
}

#header a:hover, #header a img:hover,
#footer a:hover, #footer a img:hover {
  opacity: 1 !important;
}

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

/* =============================================
  フォント
============================================= */
@font-face {
  font-family: 'Allura';
  src: url(../fonts/Allura-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'ZenKakuGothicAntique-Regular';
  src: url(../fonts/ZenKakuGothicAntique-Regular.ttf);
}

/* =============================================
  画像サイズ
============================================= */
.navbar-brand {
  display: flex;
}
.navbar-brand img {
  height: 24px;
}
.hamburger-menu-brand img {
  height: 24px;
}
.hall-logo img {
  height: 24px;
}
@media screen and (max-width:768px) {
  .navbar-brand img {
    height: 16px;
  }
  .hamburger-menu-brand img {
    height: 16px;
  }
  .hall-logo img {
    width: 200px;
    height: auto;
  }
}


/* =============================================
  ヘッダー(header.tpl)
============================================= */

/* ナビバー */
.navbar {
  width: 100%;
  height: 100px;
  padding: 0 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width:768px) {
  .navbar {
    height: 80px;
    padding: 0 20px;
  }
}

/* ナビバー 右側 */
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-fair-btn {
  height: 46px;
  padding: 0 36px;
  margin-right: 50px;
  font-size: 22px;
  line-height: 46px;
  color: #f8f5f1;
  background-color: #b59067;
}
@media screen and (max-width:768px) {
  .navbar-fair-btn {
    height: 36px;
    padding: 0 15px;
    margin-right: 15px;
    font-size: 13px;
    line-height: 36px;
    color: #b59067;
    background-color: #fff;
    border: 1px solid #b59067;
  }
}

/* トグルボタン */
.navbar-toggler {
  width: 32px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: none;
  cursor: pointer;
  z-index: 1000;
}
.navbar-toggler .bar {
  width: 32px;
  height: 3px;
  background-color: #b59067;
  transition: transform 0.3s ease;
}
/* トグルボタン バツ */
.navbar-toggler.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  width: 500px;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -500px;
  transition: right 0.3s;
  overflow-y: auto;
}
.hamburger-menu.open {
  right: 0;
}
@media screen and (max-width:768px) {
  .hamburger-menu {
    width: 100vw;
    right: -100vw;
  }
}
/* ハンバーガーメニュー トップ部分 */
.hamburger-menu-top {
  height: 100px;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
@media screen and (max-width:768px) {
  .hamburger-menu-top {
    height: 80px;
    padding-left: 20px;
  }
}
/* ハンバーガーメニュー 電話番号部分 */
.hamburger-menu-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
dl.tel-contact {
  text-align: center;
  margin: 20px 0;
}
dl.tel-contact dt {
  font-size: 14px;
}
dl.tel-contact dd.tel-number {
  font-size: 22px;
}
dl.tel-contact dd.tel-number .tel-icon {
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  margin-bottom: .3rem;
}
dl.tel-contact dd.tel-number a {
  color: #3e3a39;
}
dl.tel-contact dd.business-hours {
  font-size: 12px;
}
@media screen and (min-width:769px) {
  dl.tel-contact dd.tel-number a {
    pointer-events: none;
  }
}
@media screen and (max-width:768px) {
  dl.tel-contact {
    margin: 15px 0;
  }
}
/* ハンバーガーメニュー btnデザインlink部分 */
.btn-design-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.btn-design-link a {
  width: 230px;
  height: 36px;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  color: #b59067;
  background-color: #fff;
  border: 1px solid #3e3a39;
  margin-bottom: 10px;
}
.btn-design-link a:last-child {
  margin-bottom: 0;
}
.btn-design-link a.color-text {
  color: #ae3846;
}
.btn-design-link a.color-btn {
  color: #f8f5f1;
  background-color: #b59067;
}
@media screen and (max-width:768px) {
  .btn-design-link {
    margin: 15px 0;
  }
}
/* ハンバーガーメニュー linkリスト部分 */
.link-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
}
.link-list ul li {
  width: 250px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-bottom: 1px solid #3e3a39;
}
@media screen and (max-width:768px) {
  .link-list ul li {
    width: 50vw;
  }
}
.link-list ul li:nth-child(1),
.link-list ul li:nth-child(2) {
  border-top: 1px solid #3e3a39;
}
.link-list ul li:nth-child(odd) {
  border-right: 1px solid #3e3a39;
}
.link-list ul li a {
  color: #3e3a39;
  font-size: 14px;
}
/* ハンバーガーメニュー ボトム部分 */
.hamburger-menu-bottom {
  width: 500px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-top: 1px solid #3e3a39;
}
.hamburger-menu-bottom a.sns-link {
  margin-right: 10px;
}
.hamburger-menu-bottom a.sns-link:last-child {
  margin-right: 0;
}
.hamburger-menu-bottom a.sns-link .sns-icon {
  width: 50px;
  height: 30px;
}
@media screen and (max-width:768px) {
  .hamburger-menu-bottom {
    width: 100vw;
  }
}

/* メイン画像 */
.main-img-wrapper {
  width: 100%;
  height: calc(100% - 100px);
}
.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:768px) {
  .main-img-wrapper {
    height: calc(100% - 80px);
    margin-top: 80px;
  }
  .main-img {
    height: auto;
  }
}

/* スペーサー */
.header-spacer {
  padding-top: 100px;
}
@media screen and (max-width:768px) {
  .header-spacer {
    padding-top: 80px;
  }
}

/* パンくずリスト */
.breadcrumb {
  width: 100%;
  padding: 3px 14px;
  margin-top: 20px;
  font-family: 'ZenKakuGothicAntique-Regular';
}
.breadcrumb-item {
  width: 100%;
}
.breadcrumb-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 12px;
  list-style: none;
}
.breadcrumb-list-item {
  text-align: center;
  position: relative;
  padding: 0 14px 0 0;
  margin: 0 5px 0 0;
}
.breadcrumb-list-item:not(:last-child):after {
  content: "＞";
  font-size: 11px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.breadcrumb-link {
  color: #333;
  font-family: 'ZenKakuGothicAntique-Regular';
  text-decoration: none;
  cursor: pointer;
}
.breadcrumb-text {
  white-space: nowrap;
}
@media screen and (max-width:768px) {
  .breadcrumb {
    width: 100vw;
    min-width: 100vw;
  }
}

/* ページタイトル */
.page-title {
  width: 100%;
  text-align: center;
}
.page-title .heading {
  color: #3e3a39;
  padding: 40px 0;
}
.page-title .heading .en-font {
  font-size: 80px;
}
.sub-title {
  color: #3e3a39;
  font-size: 16px;
  display: block;
}
@media screen and (max-width:768px) {
  .page-title .heading .en-font {
    font-size: 50px;
  }
  .sub-title {
    font-size: 16px;
  }
}


/* =============================================
  フッター(footer.tpl)
============================================= */

/* フッター上部 */
.footer-top {
  width: 100%;
  padding: 50px 0;
  background-color: #c4beb8;
}
.footer-top ul {
  display: flex;
  justify-content: center;
}
.footer-top ul.link-list-top {
  margin-bottom: 40px;
}
.footer-top ul li {
  padding: 0 20px;
  border-right: 1px solid #fff;
}
.footer-top ul li:last-child {
  border-right: none;
}
.footer-top ul li a {
  color: #f8f5f1;
}
@media screen and (max-width:768px) {
  .footer-top {
    padding: 40px 20px;
  }
  .footer-top ul {
    justify-content: space-around;
  }
  .footer-top ul li {
    padding: 15px 0;
    border: none;
    text-align: center;
  }
  .footer-top ul.three_items li {
    width: calc(100% / 3);
  }
  .footer-top ul.two_items li {
    width: calc(100% / 2);
  }
}

/* フッター下部 */
.footer-bottom {
  width: 100%;
  background-color: #fff;
}
/* ロゴ・式場名・住所部分 */
.logo-and-info {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}
.logo-and-info a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hall-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}
.footer-hall-name {
  font-size: 18px;
}
.footer-address {
  font-size: 14px;
}
@media screen and (max-width:768px) {
  .logo-and-info a {
    margin-bottom: 10px;
  }
  .hall-info {
    margin: 0;
  }
  .logo-and-info {
    flex-direction: column;
    text-align: center;
  }
}

/* 電話番号・営業時間部分 */
.footer-tel-contact {
  text-align: center;
  margin: 36px 0;
}
.footer-tel-contact .tel-number {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-tel-contact .tel-number .tel-icon {
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  margin-bottom: .3rem;
}
.footer-tel-contact .tel-number a {
  color: #3e3a39;
}
.footer-tel-contact .business-hours {
  font-size: 12px;
}
/* btnデザインlink部分 */
.footer-btn-design-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.footer-btn-design-link a {
  width: 230px;
  height: 36px;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: #b59067;
  background-color: #fff;
  border: 1px solid #3e3a39;
  margin-right: 20px;
}
.footer-btn-design-link a:last-child {
  margin-right: 0;
}
.footer-btn-design-link a.color-text {
  color: #ae3846;
}
.footer-btn-design-link a.color-btn {
  color: #fff;
  background-color: #b59067;
}
@media screen and (min-width:769px) {
  .footer-tel-contact .tel-number a {
    pointer-events: none;
  }
}
@media screen and (max-width:768px) {
  .footer-btn-design-link {
    flex-direction: column;
  }
  .footer-btn-design-link a {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-btn-design-link a:last-child {
    margin-bottom: 0;
  }
}
/* SNSアイコン部分 */
.footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.footer-sns a.sns-link {
  margin-right: 10px;
}
.footer-sns a.sns-link:last-child {
  margin-right: 0;
}
.footer-sns a.sns-link .sns-icon {
  width: 50px;
  height: 30px;
}
/* copyright部分 */
small.copyright {
  display: inline-block;
  width: 100%;
  margin: 8px 0;
  text-align: center;
}


/* =============================================
  フェア用CSS
============================================= */
@media screen and (max-width:768px) {
  #fair.modal-open .bridal-fair-sel {
    display: none !important;
  }
  #fair #footer {
    padding-bottom: 88px;
  }
}
/* ===============================================
// フッターナビゲーションブロック
// =============================================== */

.footer-nav-container {
  --nav-gap: 15px;
  --nav-border-color: #208050;
  --nav-image-width: 120px;
  --nav-font-size: 24px;
  --nav-text-color: #333;
  --nav-arrow-color: #888;
  padding: 5px 150px 30px 230px
}

.footer-nav-list {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--nav-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  border: 1px solid #b59067;
  text-decoration: none;
  color: var(--nav-text-color);
  height: 82px;
  box-sizing: border-box;
  transition: background-color 0.3s;
  width: 250px;
}

.footer-nav-link:hover {
  background-color: #f9f9f9;
}

.footer-nav-image {
  width: var(--nav-image-width);
  flex-shrink: 0;
}

.footer-nav-image img {
  width: 100%;
  height: 80px;
  display: block;
  object-fit: cover;
}

.footer-nav-text {
  font-size: 16px;
  flex-grow: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.footer-nav-text::after {
  content: '〉';
  color: var(--nav-arrow-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left:113px
}

.footer-nav-container2 {
  --nav-gap: 15px;
  --nav-border-color: #208050;
  --nav-image-width: 120px;
  --nav-font-size: 24px;
  --nav-text-color: #333;
  --nav-arrow-color: #888;
  padding: 5px 230px 30px 230px
}

.footer-nav-list2 {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--nav-gap);
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.footer-nav-link2 {
  display: flex;
  align-items: center;
  border:1px solid #b59067;
  text-decoration: none;
  color: var(--nav-text-color);
  height: 100px;
  box-sizing: border-box;
  transition: background-color 0.3s;
  width: 500px;
  margin: 0 auto;
}

.footer-nav-image2 img {
  width: 100%;
  height: 100px;
  display: block;
  object-fit: cover;
}

.footer-nav-text2 {
  font-size: 18px;
  flex-grow: 1;
  text-align: center;
  padding: 0 1em;
  position: relative;
}

.footer-nav-text2::after {
  content: '〉';
  color: var(--nav-arrow-color);
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .footer-nav-image2 img {
  width: 100px;
  height: 100px;
  display: block;
}

  .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--nav-gap);
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-container {
    --nav-image-width: 100px;
    --nav-font-size: 1rem;
    padding: 30px 15px;
  }
  .footer-nav-link {
    width: 170px;
  }
  .footer-nav-text {
    font-size: 10px;
    flex-grow: 1;
    text-align: center;
    padding: 0 1em;
    position: relative;
  }
.footer-nav-text::after {
    content: '〉';
    color: var(--nav-arrow-color);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    }
  .footer-nav-container2 {
    --nav-image-width: 100px;
    --nav-font-size: 1rem;
    padding: 15px 15px;
  }
  .footer-nav-link2 {
    width: 300px;
  }
    .footer-nav-text2 {
    font-size: 12px;
    flex-grow: 1;
    text-align: center;
    padding: 0 1em;
    position: relative;
  }
  .footer-nav-text2::after {
    content: '〉';
    color: var(--nav-arrow-color);
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    }
  .footer-nav-image img {
    width: 90px;
    height: 80px;
    display: block;
    object-fit: cover;
  }
  .footer-nav-image {
    width: 90px;
    flex-shrink: 0;
}
}