@charset "utf-8";

/* =============================================
  共通
============================================= */
:root {
    --font-color: #383b42;
    --button-color: #9079ad;
    --line-color: #9079ad;
    --back-color: #fff;
}

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

header {
  position: relative;
  z-index: 1000;
}
#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;
  }
}


/* =============================================
  画像サイズ
============================================= */
header .navbar-brand img {
  height: 100px;
}
.hamburger-menu-brand img {
  height: 80px;
}
@media screen and (max-width:768px) {
  header .navbar-brand img {
    height: 45px;
  }
  .hamburger-menu-brand img {
    height: 60px;
  }
}


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

/* ナビバー */
.navbar {
  width: 100%;
  height: 100px;
  padding: 0 60px;
  background-color: var(--back-color);
  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-link-list ul {
  display: flex;
}
.navbar-link-list ul li a {
  margin: 0 10px;
  font-size: 14px;
  color: #fff;
}
.navbar-link-btn {
  width: 180px;
  height: 46px;
  margin: 0 20px;
  font-size: 22px;
  line-height: 46px;
  text-align: center;
  color: var(--button-color);
  background-color: var(--back-color);
  border: 1px solid var(--line-color);
}
@media screen and (max-width:768px) {
  .navbar-link-btn {
    width: auto;
    height: 36px;
    padding: 0 20px;
    margin-left: 0;
    margin-right: 15px;
    font-size: 16px;
    line-height: 36px;
  }
}

/* トグルボタン */
.navbar-toggler {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}
.navbar-toggler .bar {
  width: 32px;
  height: 3px;
  background-color: var(--font-color);
  transition: transform 0.3s ease;
}
.navbar-toggler .menu-label {
  font-size: 10px;
  color: var(--font-color);
  text-align: center;
}
/* トグルボタン バツ */
.navbar-toggler.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar-toggler.active .menu-label {
  display: none;
}

/* トグルボタン Fix */
#navbar-btn-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 20px;
  display: none;
}

/* ハンバーガーメニュー */
.hamburger-menu {
  width: 500px;
  background-color: var(--back-color);
  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;
    height: 100%;
    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;
}
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 a {
  color: #3e3e3e;
}
dl.tel-contact dd.tel-number .tel-icon {
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  margin-bottom: .3rem;
}
dl.tel-contact dd.business-hours {
  display: flex;
  font-size: 12px;
}
dl.tel-contact dd.business-hours span {
  text-align: left;
}
@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(--button-color);
  background-color: var(--back-color);
  border: 1px solid var(--button-color);
  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: var(--back-color);
  background-color: var(--button-color);
}
@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 20px;
}
.link-list ul li ,.link-list p{
  width: 250px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-bottom: 1px solid var(--line-color);
}
.link-list01 ul li {
  width: 250px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .link-list ul li {
    width: 50vw;
  }
    .link-list01 ul li {
    width: 100vw;
  }
}
.link-list ul li:nth-child(1),
.link-list ul li:nth-child(2) {
  border-top: 1px solid var(--line-color);
}
.link-list ul li:nth-child(odd) {
  border-right: 1px solid var(--line-color);
}
.link-list ul li a,.link-list01 ul li a,.link-list p a {
  color: var(--font-color);
  font-size: 14px;
}
.link-list p{
    display: block;
    width: 100%;
}
/* ハンバーガーメニュー ボトム部分 */
.hamburger-menu-bottom {
  width: 500px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--back-color);
  border-top: 1px solid var(--line-color)
}
.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: 34px;
  height: 34px;
}
@media screen and (max-width:768px) {
  .hamburger-menu-bottom {
    width: 100vw;
  }
}

/* ページタイトル */
.page-title {
  width: 100%;
  text-align: center;
  margin-top: 100px;
}
.page-title h1 {
  color: rgb(158, 142, 99) !important;
  text-align: center !important;
  letter-spacing: 4px !important;
  font-size: 36px !important;
  font-weight: normal;
  padding: 40px 0;
}
.page-title p {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 25px;
}
.sub-title {
  color: var(--font-color);
  letter-spacing: 2px !important;
  font-size: 14px !important;
  font-weight: normal;
  display: block;
}
@media screen and (max-width:768px) {
  .page-title {
    margin-top: 80px;
  }
  .page-title h1 {
    font-size: 28px !important;
  }
  .sub-title {
    font-size: 14px !important;
  }
}
