@charset "UTF-8";

@font-face {
  font-family: "yasashisa";
  src: url("../font/07Yasashisa/07やさしさゴシック.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "yasashisabold";
  src: url("../font/07YasashisaBold/07やさしさゴシックボールド.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "anzu";
  src: url("../font/あんずもじ/APJapanesefont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=M+PLUS+1p:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* ヘッダー部品 */
.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 318px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 208px;
    padding: 20px 0;
  }
}

/* グローバルナビゲーション */
.header-nav {
  display: flex;
  position: relative;
  padding: 10px 0;
  align-items: center;
}

.header-nav::after {
  position: absolute;
  width: 2px;
  height: 100%;
  background: url(../common-images/fig-nav-border.png) no-repeat center
    center/2px 74px;
  content: "";
  top: 0;
  left: 0;
}

.header-nav li {
  position: relative;
  padding: 25px 30px;
  text-align: center;
}

.header-nav li::after {
  position: absolute;
  width: 2px;
  height: 100%;
  background: url(../common-images/fig-nav-border.png) no-repeat center
    center/2px 74px;
  content: "";
  top: 0;
  right: 0;
}

.header-nav li:hover {
  background: url(../common-images/nav_on.png) no-repeat center center/47px 35px;
}

.header-nav li:hover::before {
  position: absolute;
  width: 100%;
  height: 14px;
  background: #754c27;
  content: "";
  bottom: -10px;
  left: 0;
}

.header-nav li:nth-child(2) {
  padding: 15px 10px;
}

.header-nav li:nth-child(2) a {
  font-size: 2.2rem;
}

.header-nav a {
  width: 143px;
  font-size: 2.2rem;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
}

.drawer-icon {
  display: none;
  width: 50px;
}

.drawer-contents {
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 100px 35px;
  background: url(../common-images/bg-drawer.jpg) no-repeat center center/cover;
  top: 0;
  right: 0;
  box-shadow: 0 0 3px rgba(#000, 0.16);
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  z-index: 299;
}

.drawer-contents.is-active {
  transform: translateX(0);
}

.drawer-nav li {
  list-style: none;
  text-align: center;
}

.drawer-nav li:nth-child(n + 2) {
  margin-top: 32px;
}

.drawer-nav a {
  font-size: 3.1rem;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
}

.btn-close {
  margin: 62px auto 0;
}

@media screen and (max-width: 767px) {
  header nav {
    display: none;
  }

  .drawer-icon {
    display: block;
  }
}

/* サイドバー部品 */

/* フッター部品 */
footer {
  padding: 125px 0 10px;
  background: #efead7;
}

.footer-contents {
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: 148px;
}

.footer-map {
  max-width: 650px;
  padding-left: 50px;
}

.map-image {
  padding: 10px;
  background: #fff;
  border-radius: 50px;
}

.map-text {
  padding-top: 15px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0.15em;
}

footer nav {
  margin-top: 70px;
}

.footer-nav {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.footer-nav li {
  text-align: center;
  width: 23%;
}

.footer-nav li:nth-child(2) a {
  font-size: 2.2rem;
}

.footer-nav a {
  display: inline-block;
  font-size: 2.4rem;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
}

.copyright {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  padding-top: 68px;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 48px;
  }

  .footer-contents {
    display: block;
  }

  .footer-logo {
    width: 125px;
    margin: 0 auto;
  }

  .footer-map {
    padding-left: 0;
  }

  .map-image {
    margin-top: 40px;
    background: transparent;
  }

  .map-text {
    line-height: 1.28;
  }

  footer nav {
    display: none;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

/* 共通部品 */
/* パンくずリスト、ページングボタン、リード部品、先頭に戻るボタンなど */
* {
  box-sizing: border-box;
}

body {
  color: #603811;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
    "ＭＳ Ｐゴシック", "MS Pgothic", Arial, Helvetica, Verdana, sans-serif;
}

html {
  font-size: 62.5%;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.breadcrumbs {
  margin-top: 15px;
}

.breadcrumbs-list {
  display: flex;
}

.breadcrumbs-list li {
  color: #221e1f;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.9;
}

.breadcrumbs-list li img {
  width: 16px;
  vertical-align: middle;
}

.breadcrumbs-list li:first-child {
  color: #603811;
  font-weight: bold;
}

.breadcrumbs-list li:nth-child(2n) {
  padding: 0 8px;
}

.page-title {
  height: 450px;
}

.page-title-text {
  margin-left: auto;
  padding: 160px 0 120px;
  text-align: right;
}

.page-title-text img {
  width: 237px;
}

.page-title-text p {
  color: #fff;
  font-size: 4.3rem;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  text-align: right;
}

.section-title {
  font-size: 3rem;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  text-align: center;
}

.section-title span {
  position: relative;
  padding: 0 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title span::before {
  position: absolute;
  width: 3px;
  height: 30px;
  background: #603811;
  content: "";
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}

.section-title span::after {
  position: absolute;
  width: 3px;
  height: 30px;
  background: #603811;
  content: "";
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}

.section-title img {
  display: block;
  width: 78px;
  margin: 0 auto;
}

.more-link {
  display: inline-block;
  width: 180px;
  padding: 10px 0;
  border: 1px solid #754c27;
  background: #754c27;
  color: #fff;
  font-size: 1.6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
}

.more-link:hover {
  background: transparent;
  color: #754c27;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.4rem;
  }

  .section-title img {
    width: 56px;
  }

  .page-title {
    height: 120px;
  }

  .page-title-text {
    width: 160px;
    padding: 28px 0 25px;
  }

  .page-title-text img {
    width: 94px;
  }

  .page-title-text p {
    margin-top: -10px;
    font-size: 1.8rem;
    font-family: "Kiwi Maru", sans-serif;
    font-weight: 500;
    text-align: right;
  }

  .breadcrumbs {
    display: none;
  }
}

/* その他共通クラス */
/* <a>要素の疑似クラスや.clearfixなど */
img {
  width: 100%;
}

a {
  width: 100%;
  height: 100%;
  color: #603811;
  text-decoration: none;
}

.is-sp {
  display: none;
}

.top-link {
  position: fixed;
  width: 80px;
  bottom: 50px;
  right: 50px;
}

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

  .is-pc {
    display: none;
  }

  .top-link {
    position: fixed;
    width: 46px;
    bottom: 10px;
    right: 10px;
  }
}
