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

@font-face {
  font-family: 'Tangerine';
  src: url('../fonts/Tangerine-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSerifJP-VariableFont_wght.ttf') format("truetype");
}

:root {
  --deep-green : #208050;
  --orange : #E6A15C;
  --menu-font-color: #3b2f22;
  --base-font-color: #37342e;
}
html, body {
	margin: 0;
	padding: 0;
}
@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;
  }
}


/* =============================================
  画像サイズ
============================================= */
.navbar-brand img {
  height: 60px;
}
.hamburger-menu-brand img {
  height: 36px;
}
.hall-logo img {
  height: 60px;
}
@media screen and (max-width:768px) {
  .navbar-brand img {
    height: 21px;
  }
  .hamburger-menu-brand img {
    height: 36px;
  }
  .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: #fff;
  background-color: #a0855b;
}
@media screen and (max-width:768px) {
  .navbar-fair-btn {
    height: 36px;
    padding: 0 20px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 36px;
    color: #a0855b;
    background-color: #fff;
    border: 1px solid #a0855b;
  }
}

/* トグルボタン */
.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: #a0855b;
  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;
  color: var(--menu-font-color);
}
.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: 60px;
}
@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: 90px;
}
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: 8px;
  margin-bottom: 4.8px;
}
dl.tel-contact dd.business-hours {
  font-size: 12px;
}
@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: var(--menu-font-color);
  background-color: #fff;
  border: 1px solid #3e3e3e;
  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: #fff;
  background-color: #a0855b;
}
@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 #3e3e3e;
}
@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 #3e3e3e;
}
.link-list ul li:nth-child(odd) {
  border-right: 1px solid #3e3e3e;
}
.link-list ul li a {
  color: var(--menu-font-color);
  font-size: 14px;
}
/* ハンバーガーメニュー ボトム部分 */
.hamburger-menu-bottom {
  width: 500px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid #3e3e3e;
}
.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: 25px;
  height: 25px;
}
@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;
  }
}

/* ページタイトル */
.page-title {
  width: 100%;
  text-align: center;
}
.page-title h1 {
  color: var(--menu-font-color);
  font-family: "Tangerine","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  padding: 40px 0;
}
.sub-title {
  color: var(--menu-font-color);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 18px;
  display: block;
}
@media screen and (max-width:768px) {
  .page-title {
    margin-top: 80px;
  }
  .page-title h1 {
    font-size: 32px;
  }
  .sub-title {
    font-size: 15px;
  }
}


/* =============================================
  フェア用CSS
============================================= */
@media screen and (max-width:768px) {
  #fair.modal-open .bridal-fair-sel {
    display: none !important;
  }
  #fair #footer {
    padding-bottom: 88px;
  }
}

@media screen and (min-width:769px) {
  div.nav_wrapp{
    margin-top: 100px;
    width: auto;
  }
  div.nav_wrapp div.inner{
    width: auto;
    background-color: #849c7d;
  }
  div.nav_wrapp div.inner nav{
    width: 1008px;
    margin: 0 auto;
  }
  div.nav_wrapp div.inner nav ul {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
  }
  div.nav_wrapp div.inner nav ul li {
    width: auto;
    position: relative;
  }
  div.nav_wrapp div.inner nav ul li a.parent {
    width: auto;
    display: inline-block;
    padding: 20px 0;
    font-size: 12px;
    letter-spacing: 0.075em;
    position: relative;
    transition: 0.2s;
    color: #fff;
  }
}

.tel-number a {
  color:inherit;
}