@charset "UTF-8";
/* Reset default styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
body.no-scroll {
  overflow: hidden;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .container {
    width: 90%;
  }
}

.btn {
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover {
  opacity: 0.8;
}
.btn.btn-blue {
  background: #0D7ED5;
}
.btn.btn-green {
  background: #16A816;
}
.btn.btn-border {
  border: 1px solid #E1DDD9;
  color: #393026;
}
.btn.btn-arrow {
  position: relative;
}
.btn.btn-arrow:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #C0A476;
  border-right: 1px solid #C0A476;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  margin-left: 1em;
  top: -4px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-arrow:hover:after {
  left: 4px;
}
.btn.btn-excel {
  position: relative;
}
.btn.btn-excel:before {
  content: "";
  background: url(../img/icon-excel.svg) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 1em;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bg-gradient {
  background: url(../img/bg_gradient.png) repeat-x top center;
  padding-top: 8em;
}
@media screen and (max-width: 1199px) {
  .bg-gradient {
    padding-top: 6em;
  }
}
@media screen and (max-width: 767px) {
  .bg-gradient {
    padding-top: 3em;
  }
}
.bg-gradient.bg-none {
  background-image: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.hidden {
  top: -104px;
  opacity: 0;
}
header .header-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #393026;
  background: linear-gradient(45deg, #2f2518 20%, #393026);
  color: #fff;
}
header .header-inner .header-logo {
  width: 180px;
  background: #fff;
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-inner .header-logo img {
  height: 80px;
}
header .header-inner .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header-inner .header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-inner .header-btns .btn {
  margin-left: 12px;
  padding: 12px 24px;
}
header .header-inner .header-nav {
  margin-right: 16px;
}
header .header-inner .hamburger-btn {
  display: none;
}
header .header-inner .header-nav {
  position: relative;
}
header .header-inner .header-nav .nav-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-inner .header-nav .nav-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 4em;
}
header .header-inner .header-nav .nav-list li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header-inner .header-nav .nav-list li a:hover {
  opacity: 0.8;
}
header .header-inner .header-nav .nav-list li:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C0A476;
  position: absolute;
  right: calc(-2em - 4px);
  top: calc(50% - 2px);
}
header .header-inner .header-nav .nav-list li:last-child {
  margin-right: 1em;
}
header .header-inner .header-nav .nav-list li:last-child:after {
  display: none;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  background: #C0A476;
  color: #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu li {
  display: block;
  margin-right: 2em;
  text-align: center;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu li:last-child {
  margin-right: 0;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu li:after {
  display: none;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu li a {
  font-size: 1.4rem;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu li a img {
  border: 1px solid #393026;
  display: block;
  width: 240px;
  height: 172px;
  margin-bottom: 6px;
}
header .header-inner .header-nav .nav-list li.menu-item .submenu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1199px) {
  header .header-inner .header-logo {
    padding: 8px;
    width: 90px;
  }
  header .header-inner .header-logo img {
    height: 44px;
  }
  header .header-inner .header-right {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  header .header-inner .header-nav {
    display: none;
  }
  header .header-inner .header-btns {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  header .header-inner .header-btns .btn {
    font-size: 1.2rem;
    padding: 8px;
  }
  header .header-inner .hamburger-btn {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 110;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 16px;
  }
  header .header-inner .hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .header-inner .hamburger-btn span:nth-child(1) {
    top: 4px;
  }
  header .header-inner .hamburger-btn span:nth-child(2) {
    top: 18px;
  }
  header .header-inner .hamburger-btn span:nth-child(3) {
    bottom: 4px;
  }
  header .header-inner .hamburger-btn.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .header-inner .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  header .header-inner .hamburger-btn.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .header-inner .header-nav {
    display: block;
    position: fixed;
    top: 60px;
    right: -100%;
    opacity: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #C0A476;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 105;
    margin-right: 0;
    overflow-y: auto;
  }
  header .header-inner .header-nav.active {
    opacity: 1;
    right: 0;
  }
  header .header-inner .header-nav .nav-list {
    padding: 1.2em 0 6em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header-inner .header-nav .nav-list li {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header-inner .header-nav .nav-list li:after {
    display: none;
  }
  header .header-inner .header-nav .nav-list li:last-child {
    margin: auto;
  }
  header .header-inner .header-nav .nav-list li:last-child > a {
    border-bottom: 1px solid #393026;
  }
  header .header-inner .header-nav .nav-list li > a {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    display: block;
    color: #393026;
    border-top: 1px solid #393026;
    padding: 1.2em 0;
  }
  header .header-inner .header-nav .nav-list li:first-child > a {
    border-top: none;
  }
  header .header-inner .header-nav .nav-list li.menu-item .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0.4em 0 1.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .header-inner .header-nav .nav-list li.menu-item .submenu li {
    width: 50%;
    margin: 0 0 1em;
    padding: 0 0.5em;
  }
  header .header-inner .header-nav .nav-list li.menu-item .submenu li:last-child a {
    border-bottom: none;
  }
  header .header-inner .header-nav .nav-list li.menu-item .submenu li a {
    padding: 0;
    border-top: none;
  }
  header .header-inner .header-nav .nav-list li.menu-item .submenu li a img {
    width: 100%;
    height: auto;
  }
}

main {
  margin: 6.5em auto 8em;
}
@media screen and (max-width: 1199px) {
  main {
    margin: 3.75em auto 6em;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin: 3.75em auto 4em;
  }
}

footer {
  position: relative;
}
footer .contact {
  background-color: #F2F0EE;
  text-align: center;
  padding: 6em 0;
}
footer .contact h5 {
  line-height: 1.2;
  font-size: 1.8rem;
  font-family: "Times New Roman", Times, serif;
  color: #C0A476;
  font-weight: 500;
}
footer .contact h5 span {
  display: block;
  font-size: 4rem;
  color: #393026;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
footer .contact p {
  font-size: 1.6rem;
  list-height: 1.5;
  margin: 1.6em auto 2.8em;
}
footer .contact .btns {
  margin: 1.2em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .contact .btns li {
  margin-right: 1.5em;
}
footer .contact .btns li:last-child {
  margin-right: 0;
}
footer .contact .btns li a.btn {
  font-size: 1.8rem;
  padding: 20px 4em;
  border-radius: 100px;
}
footer .contact .tel {
  margin: 3em auto 0;
  border: 1px solid #393026;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em 0;
  color: #393026;
  width: 80%;
}
footer .contact .tel p {
  margin: 0;
}
footer .contact .tel .number {
  font-size: 4.4rem;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .contact .tel .number:before {
  content: "";
  left: 0;
  top: 0;
  background: url(../img/icon-freedial.svg) no-repeat center center/contain;
  width: 80px;
  height: 24px;
  display: inline-block;
}
footer .contact .tel .note {
  font-size: 1.4rem;
  margin-left: 2.5em;
  font-weight: 400;
}
footer .page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 98;
}
footer .page-top p a {
  position: relative;
  top: 0;
  width: 54px;
  height: 54px;
  background: #C0A476;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
footer .page-top p a:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 4px;
}
footer .page-top p a:hover {
  opacity: 1;
  background: #b08d53;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
footer .footer-info {
  padding: 6em 0;
}
footer .footer-info .footer-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-info .footer-info__text .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-info .footer-info__text .name .photo {
  margin-right: 2em;
}
footer .footer-info .footer-info__text .name .address h3 img {
  width: 140px;
}
footer .footer-info .footer-info__text .name .address p {
  margin-top: 1.2em;
  font-size: 1.6rem;
  line-height: 1.5;
}
footer .footer-info .footer-info__text .access h5 {
  font-size: 1.6rem;
  font-weight: 600;
}
footer .footer-info .footer-info__text .access p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
footer .footer-info .footer-info__map {
  margin-top: 4em;
}
footer .footer-info .footer-info__map #iframe {
  width: 100%;
  height: 400px;
  position: relative;
}
footer .footer-info .footer-info__map #iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
footer .footer-link {
  background: #393026;
  color: #fff;
  padding: 0.8em 0 1em;
}
footer .footer-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
footer .footer-link ul li {
  margin-right: 1.5em;
}
footer .footer-link ul li:last-child {
  margin-right: 0;
}
footer .footer-link ul li a {
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  padding-left: 1.2em;
}
footer .footer-link ul li a:before, footer .footer-link ul li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  width: 4px;
  height: 1px;
  background: #C0A476;
}
footer .footer-link ul li a:before {
  margin-top: -1px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
footer .footer-link ul li a:after {
  margin-top: 1px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
footer .footer-link ul li a:hover {
  text-decoration: underline;
}
footer .copyright {
  padding: 1em 0;
}
footer .copyright .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .copyright .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .copyright .link ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.5em;
  border-right: 1px solid #C0A476;
  padding-right: 1.2em;
}
footer .copyright .link ul li:last-child {
  border-right: none;
  margin-right: 0;
}
footer .copyright .link ul li a {
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
}
footer .copyright .link ul li a:hover {
  text-decoration: underline;
}
footer .copyright p {
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}
@media screen and (max-width: 1199px) {
  footer .contact {
    padding: 4em 0;
  }
  footer .contact h5 {
    font-size: 1.4rem;
  }
  footer .contact h5 span {
    font-size: 3.2rem;
  }
  footer .contact p {
    font-size: 1.4rem;
    margin: 1em auto 1.6em;
  }
  footer .contact .btns {
    margin: 1em auto 0;
  }
  footer .contact .tel {
    margin: 2em auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.2em 0 0.8em;
  }
  footer .contact .tel .number {
    font-size: 3.5rem;
  }
  footer .contact .tel .number:before {
    width: 64px;
    height: 20px;
  }
  footer .contact .tel .note {
    margin-left: 0;
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
  footer .page-top {
    right: 20px;
    bottom: 20px;
  }
  footer .footer-info {
    padding: 4em 0;
  }
  footer .footer-info .footer-info__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  footer .footer-info .footer-info__text .name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-info .footer-info__text .name .photo {
    margin-right: 0;
    margin-bottom: 1.4em;
  }
  footer .footer-info .footer-info__text .name .address {
    margin: 1em 0 2em;
  }
  footer .footer-info .footer-info__map {
    margin-top: 2em;
  }
  footer .footer-link ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  footer .contact {
    padding: 3em 0;
  }
  footer .contact h5 {
    font-size: 1.4rem;
  }
  footer .contact h5 span {
    font-size: 2.6rem;
  }
  footer .contact p {
    font-size: 1.4rem;
    margin: 1em auto;
  }
  footer .contact .btns {
    margin: 1em auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .contact .btns li {
    margin-right: 0;
    margin-bottom: 1em;
  }
  footer .contact .btns li a.btn {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 16px 2em;
  }
  footer .contact .tel {
    margin: 1em auto 0;
  }
  footer .contact .tel .number {
    font-size: 3rem;
  }
  footer .contact .tel .note {
    font-size: 1.1rem;
  }
  footer .page-top {
    right: 16px;
    bottom: 16px;
  }
  footer .page-top p a {
    width: 40px;
    height: 40px;
  }
  footer .footer-info {
    padding: 2em 0;
  }
  footer .footer-info .footer-info__text .name .address {
    margin: 0 0 1em;
  }
  footer .footer-info .footer-info__map {
    margin-top: 2em;
  }
  footer .footer-info .footer-info__map #iframe {
    height: 200px;
  }
  footer .footer-link ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-link ul li {
    margin-right: 0;
    margin-bottom: 0.2em;
  }
  footer .footer-link ul li:last-child {
    margin-bottom: 0;
  }
  footer .copyright .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  footer .copyright .container p {
    margin-top: 1em;
  }
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2em;
}
.breadcrumb ul li {
  padding: 1em;
  font-size: 1.2rem;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-right: 2em;
}
.breadcrumb ul li:not(:last-child):before, .breadcrumb ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1px;
  background: #C0A476;
  margin: 0 0.5em;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.breadcrumb ul li:not(:last-child):before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 0.5em;
  margin-top: -1px;
}
.breadcrumb ul li:not(:last-child):after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: 0.5em;
  margin-top: 1px;
}
.breadcrumb ul li:first-child {
  padding-left: 1.6em;
  background: url(../img/icon-home.svg) left center no-repeat;
  background-size: 12px 12px;
}
.breadcrumb ul li a {
  color: #393026;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul {
    margin-left: 0.5em;
  }
  .breadcrumb ul li {
    font-size: 1rem;
  }
}

.pageTitle {
  position: relative;
}
.pageTitle .container {
  position: relative;
}
.pageTitle .container .bg-txt {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  font-size: 14rem;
  opacity: 0.2;
  letter-spacing: -2px;
  color: #C0A476;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
.pageTitle .container .pageTitle-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pageTitle .container .pageTitle-inner .title {
  position: relative;
  top: -30px;
}
.pageTitle .container .pageTitle-inner .title h2 {
  margin-bottom: 0.2em;
  color: #C0A476;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.pageTitle .container .pageTitle-inner .title h1 {
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.pageTitle .container .pageTitle-inner .label {
  position: relative;
  top: -10px;
}
.pageTitle .container .pageTitle-inner .label h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  background: #393026;
  color: #fff;
  padding: 0.2em 1em;
}
.pageTitle .container .pageTitle-inner.title-center {
  display: block;
  text-align: center;
  padding: 2em 0;
}
@media screen and (max-width: 1199px) {
  .pageTitle .container .bg-txt {
    font-size: 10rem;
  }
  .pageTitle .container .pageTitle-inner .title h2 {
    font-size: 1.4rem;
  }
  .pageTitle .container .pageTitle-inner .title h1 {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pageTitle .container .bg-txt {
    font-size: 6rem;
  }
  .pageTitle .container .pageTitle-inner .title h2 {
    font-size: 1.2rem;
  }
  .pageTitle .container .pageTitle-inner .title h1 {
    font-size: 3.2rem;
  }
  .pageTitle .container .pageTitle-inner .label {
    top: -22px;
  }
  .pageTitle .container .pageTitle-inner .label h3 {
    font-size: 1.2rem;
  }
  .pageTitle .container .pageTitle-inner.title-center {
    padding: 2em 0 1em;
  }
}

/*  Hall ---------------------------------------------------- */
main.hall {
  margin-bottom: 0 !important;
}
main.hall .gallery {
  position: relative;
  padding-top: 20px;
}
main.hall .gallery .gallery-slider {
  position: relative;
}
main.hall .gallery .slick-slide img {
  width: 100% !important;
}
main.hall .gallery .gallery-thumb {
  position: relative;
  z-index: 2;
  bottom: 30px;
  text-align: right;
  padding: 0 10px;
  font-size: 0;
}
main.hall .gallery .gallery-thumb li {
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}
main.hall .gallery .gallery-thumb li img {
  width: 100px;
  border: 2px solid transparent;
}
main.hall .gallery .gallery-thumb li.slick-current img {
  border: 2px solid #393026;
}
@media screen and (max-width: 1199px) {
  main.hall .gallery {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main.hall .gallery .gallery-thumb {
    padding: 0;
    bottom: -10px;
  }
  main.hall .gallery .gallery-thumb li {
    margin: 0;
  }
  main.hall .gallery .gallery-thumb li img {
    width: 60px;
  }
}
main.hall .type {
  margin: 4em auto;
}
main.hall .type ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.hall .type ul li {
  width: 31%;
  padding: 0 10px;
  text-align: center;
}
main.hall .type ul li h6 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.8rem;
  font-style: italic;
  color: #C0A476;
  font-weight: 500;
}
main.hall .type ul li .icon {
  margin: 1em auto 0.5em;
}
main.hall .type ul li .icon img {
  height: 40px;
  width: auto;
}
main.hall .type ul li h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
main.hall .type ul li h4 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0.2em auto 1em;
}
main.hall .type ul li h5 {
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #393026;
  display: inline-block;
  padding: 0.2em 0.5em;
  line-height: 1.2;
  margin-bottom: 1em;
}
main.hall .type ul li .drawing a {
  display: block;
  border: 1px solid #E1DDD9;
}
main.hall .type ul li .drawing a img {
  margin: 1em auto;
  width: 90%;
}
@media screen and (max-width: 1199px) {
  main.hall .type {
    margin: 2em auto;
  }
  main.hall .type ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.hall .type ul li {
    margin-bottom: 2em;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main.hall .type ul li > div {
    width: 45%;
  }
  main.hall .type ul li .drawing {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  main.hall .type {
    margin: 2em auto 0;
  }
  main.hall .type ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.8em;
  }
  main.hall .type ul li > div {
    width: 100%;
    margin-bottom: 0.5em;
  }
  main.hall .type ul li > div h3 {
    font-size: 2.8rem;
  }
  main.hall .type ul li > div h4 {
    font-size: 1.2rem;
  }
  main.hall .type ul li > div h5 {
    font-size: 1.4rem;
  }
  main.hall .type ul li .drawing {
    width: 100%;
  }
}
main.hall .application {
  text-align: center;
  margin: 4em auto 0;
}
main.hall .application a.btn {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 1.4em 4em;
  border-radius: 44px;
}
@media screen and (max-width: 767px) {
  main.hall .application a.btn {
    font-size: 1.4rem;
    padding: 1.5em 0;
    width: 100%;
    margin: 0 auto;
  }
}
main.hall .info {
  margin: 9em auto 6em;
}
main.hall .info h4 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1em;
}
main.hall .info dl {
  border-top: 1px solid #E1DDD9;
  padding: 2em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.5rem;
}
main.hall .info dl dt {
  width: 12%;
  font-weight: 500;
}
main.hall .info dl dd {
  line-height: 1.4;
  margin-left: 1em;
}
main.hall .info dl:last-child {
  border-bottom: 1px solid #E1DDD9;
}
@media screen and (max-width: 1199px) {
  main.hall .info {
    margin: 4em auto;
  }
  main.hall .info dl {
    padding: 1em 0.6em;
  }
}
@media screen and (max-width: 767px) {
  main.hall .info {
    margin: 2em auto;
  }
  main.hall .info h4 {
    font-size: 2.4rem;
  }
  main.hall .info dl {
    padding: 1em 0.6em;
    font-size: 1.3rem;
    display: block;
  }
  main.hall .info dl dt, main.hall .info dl dd {
    width: 100%;
  }
  main.hall .info dl dd {
    margin-left: 0;
  }
}
main.hall .hall_body {
  margin: 6em auto;
}
main.hall .hall_body h4 {
  margin-bottom: 2em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}
main.hall .hall_body p {
  margin-bottom: 1em;
}
@media screen and (max-width: 1199px) {
  main.hall .hall_body {
    margin: 4em auto;
  }
  main.hall .hall_body h4 {
    line-height: 1.6;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main.hall .hall_body {
    margin: 2em auto;
  }
  main.hall .hall_body h4 {
    line-height: 1.4;
    font-size: 1.8rem;
  }
}
main.hall .example {
  padding: 3em 0 6em;
}
main.hall .example h4 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1em;
}
main.hall .example .example-slider {
  padding: 1em 0 2em;
}
main.hall .example .example-slider .slick-list {
  width: 90%;
  margin: auto;
}
main.hall .example .example-slider .slick-prev, main.hall .example .example-slider .slick-next {
  width: 46px;
  height: 46px;
  z-index: 1;
  background: #393026;
  opacity: 1;
  top: 46%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main.hall .example .example-slider .slick-prev:before, main.hall .example .example-slider .slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
main.hall .example .example-slider .slick-prev:hover, main.hall .example .example-slider .slick-next:hover {
  opacity: 0.7;
}
main.hall .example .example-slider .slick-prev.slick-disabled, main.hall .example .example-slider .slick-next.slick-disabled {
  background: #E1DDD9;
}
main.hall .example .example-slider .slick-prev {
  left: 0;
}
main.hall .example .example-slider .slick-prev:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  left: 52%;
}
main.hall .example .example-slider .slick-next {
  right: 0;
}
main.hall .example .example-slider .slick-next:before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  left: 48%;
}
main.hall .example .example-slider .slick-dots li button:before {
  font-size: 8px;
  color: #C0A476;
  opacity: 0.5;
}
main.hall .example .example-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
main.hall .example .example-item {
  padding: 0 1.5em;
  text-align: center;
}
main.hall .example .example-item .example-item__img img {
  width: 100%;
}
main.hall .example .example-item p {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.2;
}
main.hall .example .example-item p.client {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  main.hall .example {
    padding: 2em 0 4em;
  }
  main.hall .example h4 {
    font-size: 2.4rem;
  }
  main.hall .example .example-slider {
    padding: 0 0 1em;
  }
  main.hall .example .example-slider .slick-list {
    width: 80%;
  }
  main.hall .example .example-slider .slick-prev, main.hall .example .example-slider .slick-next {
    width: 40px;
    height: 40px;
  }
  main.hall .example .example-slider .example-item .example-item__img {
    margin-bottom: 0.5em;
  }
  main.hall .example .example-slider .example-item p {
    margin-top: 0.5em;
  }
  main.hall .example .example-slider .slick-dots li {
    margin: 0 2px;
  }
  main.hall .example .example-slider .slick-dots li button:before {
    font-size: 6px;
  }
}
@media screen and (max-width: 767px) {
  main.hall .example {
    padding: 2em 0;
  }
  main.hall .example h4 {
    font-size: 2.4rem;
  }
  main.hall .example .example-slider .example-item p {
    font-size: 1.4rem;
    margin-top: 0.2em;
  }
}
main.hall .price {
  padding: 6em 0;
  background: #393026;
  color: #fff;
}
main.hall .price h5 {
  color: #C0A476;
  font-size: 1.8rem;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5em;
}
main.hall .price h4 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1em;
}
main.hall .price .price-table {
  margin-top: 4em;
}
main.hall .price .price-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
main.hall .price .price-table table th, main.hall .price .price-table table td {
  border: 1px solid #393026;
  padding: 1em;
  text-align: center;
}
main.hall .price .price-table table th {
  background: #C0A476;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 400;
  color: #393026;
}
main.hall .price .price-table table th em {
  display: block;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.2em;
}
main.hall .price .price-table table td {
  color: #fff;
  width: 17%;
  background: #483d30;
}
main.hall .price .price-table table thead th {
  background: #cbc4bd;
  font-weight: 500;
}
main.hall .price .price-table table tbody tr th {
  font-weight: 600;
  font-size: 1.5rem;
}
main.hall .price .price-table table tbody tr:nth-child(2n) th {
  background: #b08d53;
}
main.hall .price .price-table table tbody tr:nth-child(2n) td {
  background: #2a231c;
}
main.hall .price .note {
  margin-top: 1em;
}
main.hall .price .note li {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
main.hall .price .note li:before {
  content: "※";
  display: inline-block;
  margin-right: 0.5em;
}
@media screen and (max-width: 1199px) {
  main.hall .price {
    padding: 3em 0;
  }
  main.hall .price h5 {
    font-size: 1.4rem;
  }
  main.hall .price h4 {
    margin-bottom: 0.5em;
    font-size: 3.4rem;
    font-weight: 400;
  }
  main.hall .price .price-table {
    margin-top: 2em;
  }
  main.hall .price .price-table table thead th {
    font-size: 1.2rem;
  }
  main.hall .price .price-table table thead th em {
    font-size: 1.2rem;
  }
  main.hall .price .price-table table tbody tr th {
    font-size: 1.2rem;
  }
  main.hall .price .price-table table tbody tr td {
    font-size: 1.4rem;
  }
  main.hall .price .note {
    margin-top: 0.5em;
  }
  main.hall .price .note li {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  main.hall .price {
    padding: 2em 0;
  }
  main.hall .price h5 {
    font-size: 1.2rem;
  }
  main.hall .price h4 {
    font-size: 2.4rem;
  }
  main.hall .price .price-table {
    margin-top: 1em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  main.hall .price .price-table table {
    white-space: nowrap;
  }
  main.hall .price .price-table table thead th {
    font-size: 1.1rem;
    padding: 0.6em;
  }
  main.hall .price .price-table table thead th em {
    font-size: 1.1rem;
  }
  main.hall .price .price-table table tbody tr th {
    font-size: 1.1rem;
    padding: 0.6em;
    position: sticky;
    left: 0;
    z-index: 1;
  }
  main.hall .price .price-table table tbody tr td {
    font-size: 1.2rem;
    padding: 0.6em;
  }
  main.hall .price .note {
    margin-top: 0.5em;
  }
  main.hall .price .note li {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
main.hall .kizuna {
  margin: 6em auto;
}
main.hall .kizuna ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main.hall .kizuna ul li {
  width: 31%;
  text-align: center;
}
main.hall .kizuna ul li h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  color: #393026;
  font-weight: 600;
  line-height: 1.4;
  margin: 1em auto 0.4em;
  text-align: center;
}
main.hall .kizuna ul li .seat {
  text-align: center;
  border: 1px solid #393026;
  color: #393026;
  display: inline-block;
  padding: 0.2em;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0.2em auto 1.5em;
}
main.hall .kizuna ul li .spec {
  margin: 0.5em auto;
}
main.hall .kizuna ul li .spec dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 0.4em;
}
main.hall .kizuna ul li .spec dl dt {
  width: 90px;
  font-weight: 500;
  text-align: left;
}
main.hall .kizuna ul li .spec dl dd {
  text-align: left;
  word-wrap: break-word;
}
main.hall .kizuna ul li .spec p {
  text-align: left;
  color: #C0A476;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 0.4em;
}
@media screen and (max-width: 1199px) {
  main.hall .kizuna ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.hall .kizuna ul li {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  main.hall .kizuna {
    margin: 2em auto;
  }
  main.hall .kizuna ul {
    display: block;
  }
  main.hall .kizuna ul li {
    width: 100%;
    padding-bottom: 1em;
    border-bottom: 1px solid #E1DDD9;
  }
  main.hall .kizuna ul li:last-child {
    border-bottom: none;
  }
  main.hall .kizuna ul li figure img {
    width: 60%;
    margin: 0 auto;
  }
  main.hall .kizuna ul li .spec {
    width: 80%;
    margin: 0.5em auto;
  }
  main.hall .kizuna ul li .spec dl {
    display: block;
  }
  main.hall .kizuna ul li .spec dl dt {
    width: 100%;
  }
  main.hall .kizuna ul li .spec dl dd {
    width: 100%;
  }
}

/*  Price ---------------------------------------------------- */
main.price .attention {
  border: 1px solid #C0A476;
  padding: 2em;
  text-align: center;
}
main.price .attention .btns {
  margin-top: 1em;
  font-size: 1.75rem;
}
main.price .attention .btns .btn {
  border-radius: 40px;
  padding: 1.2em 3em 1.2em 5em;
}
main.price .price-table {
  margin: 6em auto;
}
main.price .price-table h4 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.2em;
}
main.price .price-table .table-wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
main.price .price-table .table-wrap table th, main.price .price-table .table-wrap table td {
  border: 1px solid #fff;
  padding: 0.8em;
  text-align: center;
}
main.price .price-table .table-wrap table th {
  background: #d8c7aa;
  color: #393026;
}
main.price .price-table .table-wrap table td {
  color: #fff;
  width: 17%;
  background: #F2F0EE;
}
main.price .price-table .table-wrap table thead th {
  color: #fff;
  background: #393026;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 400;
}
main.price .price-table .table-wrap table thead th em {
  font-style: normal;
  display: block;
  font-weight: 500;
}
main.price .price-table .table-wrap table tbody tr th {
  width: 12%;
  font-weight: 600;
}
main.price .price-table .table-wrap table tbody tr th.kizuna {
  background: #e8decd;
}
main.price .price-table .table-wrap table tbody tr td {
  background: #fff;
  color: #000;
  width: 12%;
}
main.price .price-table .table-wrap table tbody tr td:nth-child(2) {
  width: 6%;
}
main.price .price-table .table-wrap table tbody tr:nth-child(2n) th {
  background: #b08d53;
}
main.price .price-table .table-wrap table tbody tr:nth-child(2n) td {
  background: #F2F0EE;
}
main.price .price-table .table-wrap table.option-table th, main.price .price-table .table-wrap table.option-table td {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 1em 1.5em;
}
main.price .price-table .table-wrap table.option-table thead th {
  background: #393026;
}
main.price .price-table .table-wrap table.option-table tbody tr th {
  font-weight: 500;
  text-align: left;
  width: 40%;
  background: #d1cac3;
}
main.price .price-table .table-wrap table.option-table tbody tr td:nth-child(2) {
  text-align: left;
  width: 50%;
}
main.price .price-table .table-wrap table.option-table tbody tr td:nth-child(3) {
  width: 10%;
}
main.price .price-table .note {
  margin-top: 0.5em;
}
main.price .price-table .note li {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
main.price .price-table .note li:before {
  content: "※";
  display: inline-block;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  main.price .attention {
    padding: 1em;
  }
  main.price .attention p {
    font-size: 1.3rem;
  }
  main.price .attention .btns .btn {
    padding: 1em 2em 1em 4em;
    width: 100%;
    display: block;
    font-size: 1.4rem;
  }
  main.price .price-table {
    margin: 2em auto;
  }
  main.price .price-table h4 {
    font-size: 2.4rem;
    margin-bottom: 0.5em;
  }
  main.price .price-table .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  main.price .price-table .table-wrap table {
    white-space: nowrap;
  }
  main.price .price-table .table-wrap table th, main.price .price-table .table-wrap table td {
    font-size: 1.2rem;
  }
  main.price .price-table .table-wrap table thead th {
    padding: 0.6em;
    font-size: 1.1rem;
  }
  main.price .price-table .table-wrap table thead th em {
    font-size: 1.1rem;
  }
  main.price .price-table .table-wrap table tbody th:first-child {
    position: sticky;
    width: 90px;
    left: 0;
    z-index: 1;
    border-right: none !important;
  }
  main.price .price-table .table-wrap table tbody td.fixed {
    position: sticky;
    left: 88px;
    z-index: 2;
    border-left: none !important;
  }
  main.price .price-table .table-wrap table.option-table th, main.price .price-table .table-wrap table.option-table td {
    font-size: 1.2rem;
  }
  main.price .price-table .table-wrap table.option-table tbody tr th:first-child {
    position: relative;
    width: 120px;
  }
  main.price .price-table .note li {
    font-size: 1.1rem;
  }
}

/* FAQ ------------------------------------------------------- */
main.faq .faq-list {
  margin: 4em auto;
}
main.faq .faq-list dl {
  border-top: 1px solid #C0A476;
  position: relative;
}
main.faq .faq-list dl:last-child {
  border-bottom: 1px solid #C0A476;
}
main.faq .faq-list dl:before {
  font-family: "Times New Roman", Times, serif;
  position: absolute;
  top: 1em;
  left: 0.5em;
  display: inline-block;
  content: "Q";
  font-size: 3.6rem;
  line-height: 1;
  color: #C0A476;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.faq .faq-list dl dt {
  font-size: 1.6rem;
  padding: 1.5em 4em 1.5em 4em;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
main.faq .faq-list dl dt::before, main.faq .faq-list dl dt::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #C0A476;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
main.faq .faq-list dl dt::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
main.faq .faq-list dl dd {
  font-size: 1.6rem;
  padding-left: 4.4em;
  padding-right: 2.8em;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
}
main.faq .faq-list dl dd a {
  text-decoration: underline;
}
main.faq .faq-list dl dd a:hover {
  opacity: 0.7;
}
main.faq .faq-list dl.open dt::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
main.faq .faq-list dl.open dd {
  padding-bottom: 1.5em;
  max-height: 1000px;
}
@media screen and (max-width: 767px) {
  main.faq .faq-list {
    margin-top: 0;
  }
  main.faq .faq-list dl dt, main.faq .faq-list dl dd {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  main.faq .faq-list dl:before {
    font-size: 2.4rem;
    left: 0.5em;
    top: 1.2em;
  }
  main.faq .faq-list dl dt {
    padding: 1.5em 4em 1.5em 2.8em;
  }
  main.faq .faq-list dl dd {
    padding-left: 2.4em;
    padding-right: 1.4em;
  }
}

/*  Access ---------------------------------------------------- */
main.access .access-list {
  margin: 2em auto 0;
}
main.access .access-list .address {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 500;
}
main.access .access-list .gmap {
  margin: 2em auto;
}
main.access .access-list .gmap iframe {
  width: 100%;
  height: 450px;
}
main.access .access-list .access-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 2em;
}
main.access .access-list .access-info ul li {
  margin-bottom: 1em;
}
main.access .access-list .access-info ul li h5 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
}
main.access .access-list .access-info ul li p {
  line-height: 1.4;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 1199px) {
  main.access .access-list {
    margin-top: 0;
  }
  main.access .access-info ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  main.access .access-list .address {
    font-size: 1.4rem;
  }
  main.access .access-list .gmap iframe {
    height: 300px;
  }
  main.access .access-list .access-info ul li {
    margin-bottom: 0.6em;
  }
  main.access .access-list .access-info ul li h5 {
    font-size: 1.4rem;
  }
  main.access .access-list .access-info ul li p {
    font-size: 1.3rem;
  }
}

main.terms .terms-list dl dt {
  margin: 2em auto 0.2em;
  font-size: 1.75rem;
  font-weight: 500;
  position: relative;
}
main.terms .terms-list dl dd p {
  margin-bottom: 1em;
}
main.terms .number-list li {
  list-style: decimal;
  margin-left: 1em;
}
main.terms .disc-list li {
  list-style: disc;
  margin-left: 1em;
}
main.terms .download {
  text-align: center;
  margin-top: 4em;
}
main.terms .download a {
  background: #fff;
  border: 1px solid #393026;
  color: #393026;
  font-size: 1.6rem;
  padding: 1em 4em;
}

main.information .archive dl {
  border-bottom: 1px solid #E1DDD9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em 0.5em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main.information .archive dl:first-child {
  border-top: 1px solid #E1DDD9;
}
main.information .archive dl dt {
  width: 120px;
  font-size: 1.4rem;
  color: #C0A476;
  font-weight: 500;
}
main.information .archive dl dd {
  width: calc(100% - 120px);
}
main.information .archive dl dd a {
  font-size: 1.4rem;
}
main.information .archive .pager {
  text-align: center;
  margin-top: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.information .archive .pager a, main.information .archive .pager span {
  border: none !important;
  font-size: 1.4rem;
  margin: 0 0.2em;
  display: inline-block;
  padding: 0.5em 1em;
  background: #E1DDD9;
}
main.information .archive .pager a.current, main.information .archive .pager span.current {
  background: #393026;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main.information .archive dl {
    display: block;
  }
  main.information .archive dl dt {
    width: 100px;
    font-size: 1.3rem;
  }
  main.information .archive dl dd {
    width: 100%;
  }
  main.information .archive dl dd a {
    line-height: 1.2;
    font-size: 1.3rem;
  }
  main.information .archive .pager a, main.information .archive .pager span {
    font-size: 1.2rem;
  }
}
main.information .single {
  padding: 2em 0;
}
main.information .single .date {
  font-size: 1.4rem;
  color: #C0A476;
}
main.information .single h1 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #E1DDD9;
}
main.information .single .single-body {
  font-size: 1.6rem;
}
main.information .single .single-body p {
  margin-bottom: 1em;
}
main.information .single .single-back {
  margin: 6em auto 0;
  text-align: center;
}
main.information .single .single-back a {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  main.information .single .date {
    font-size: 1.2rem;
  }
  main.information .single h1 {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    font-size: 2rem;
  }
  main.information .single .single-body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  main.information .single .date {
    font-size: 1.2rem;
  }
  main.information .single h1 {
    font-size: 1.8rem;
  }
  main.information .single .single-body {
    font-size: 1.2rem;
  }
}

main.contact {
  border-bottom: 1px solid #E1DDD9;
  margin-bottom: 0;
  padding-bottom: 4em;
}
main.contact .wpcf7-form {
  max-width: 800px;
  margin: auto;
}
main.contact .wpcf7-form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1em 0.5em;
}
main.contact .wpcf7-form dl dt {
  width: 150px;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  top: 5px;
}
main.contact .wpcf7-form dl dt span {
  color: #cc0000;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 0.5em;
}
main.contact .wpcf7-form dl dd {
  width: calc(100% - 150px);
}
main.contact .wpcf7-form dl dd input, main.contact .wpcf7-form dl dd textarea {
  border: 1px solid #cbc4bd;
  padding: 0.5em;
  font-size: 1.4rem;
  line-height: 1.4;
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
main.contact .wpcf7-form dl dd input {
  width: 50%;
}
main.contact .wpcf7-form dl dd textarea {
  width: 100%;
}
main.contact .wpcf7-form .submit {
  text-align: center;
  margin-top: 2em;
}
main.contact .wpcf7-form .submit .wpcf7-submit {
  border-radius: 6px;
  padding: 1em 4em;
  background: #16A816;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
main.contact .wpcf7-form .submit .wpcf7-submit:hover {
  opacity: 0.8;
}
main.contact .wpcf7-form .submit .wpcf7-spinner {
  display: block;
}
main.contact .wpcf7-form .submit .wpcf7-response-output {
  text-align: center;
}
@media screen and (max-width: 767px) {
  main.contact {
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  main.contact .wpcf7-form dl {
    padding: 0 0.5em 0.5em;
    display: block;
  }
  main.contact .wpcf7-form dl dt, main.contact .wpcf7-form dl dd {
    width: 100%;
  }
  main.contact .wpcf7-form dl dt {
    margin-bottom: 10px;
  }
  main.contact .wpcf7-form dl dd input, main.contact .wpcf7-form dl dd textarea {
    font-size: 16px;
  }
  main.contact .wpcf7-form dl dd input {
    width: 100%;
  }
  main.contact .wpcf7-form .submit .wpcf7-submit {
    width: 60%;
    padding: 1.2em 0;
  }
}/*# sourceMappingURL=pages.css.map */