/* 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;
  }
}

.kv {
  background: url(../img/top/kv_bg.png) no-repeat center center/cover;
  padding: 9em 0;
}
.kv .container {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kv .container .txt {
  font-family: "Noto Serif JP", serif;
}
.kv .container .txt h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
}
.kv .container .txt ul {
  margin: 1.5em auto 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kv .container .txt ul li {
  margin-right: 0.5em;
  border: 1px solid #C0A476;
  padding: 0.5em 1em;
  font-size: 1.8rem;
  font-weight: 600;
  color: #C0A476;
}
.kv .container .txt ul li:last-child {
  margin-right: 0;
}
.kv .container .txt h1 {
  font-size: 5.5rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}
.kv .container .btns {
  margin-top: 2em;
}
.kv .container .btns ul {
  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;
}
.kv .container .btns ul li {
  margin-right: 1em;
}
.kv .container .btns ul li:last-child {
  margin-right: 0;
}
.kv .container .btns ul li a.btn {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1em 3em;
}
.kv .container .badge {
  z-index: 2;
  position: absolute;
  bottom: -180px;
  right: 0;
}
.kv .container .badge ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kv .container .badge ul li {
  margin-right: 1.4em;
}
.kv .container .badge ul li:last-child {
  margin-right: 0;
}
.kv .container .badge ul li img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px) {
  .kv {
    padding: 4em 0 8em;
  }
  .kv .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kv .container .txt {
    text-align: center;
  }
  .kv .container .txt h2 {
    font-size: 2.2rem;
  }
  .kv .container .txt ul {
    margin: 1em auto 0.4em;
  }
  .kv .container .txt ul li {
    font-size: 1.4rem;
    padding: 0.4em 1em;
  }
  .kv .container .txt h1 {
    font-size: 3.5rem;
  }
  .kv .container .badge {
    right: auto;
    left: auto;
    bottom: -200px;
  }
  .kv .container .badge ul li img {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    padding: 3em 0 5em;
  }
  .kv .container .txt h2 {
    font-size: 2rem;
  }
  .kv .container .txt ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kv .container .txt ul li {
    font-size: 1.2rem;
    padding: 0.1em 0.2em;
  }
  .kv .container .txt h1 {
    font-size: 2.5rem;
  }
  .kv .container .btns {
    width: 100%;
    margin-top: 1em;
  }
  .kv .container .btns ul {
    width: 100%;
    display: block;
  }
  .kv .container .btns ul li {
    display: block;
    margin-right: 0;
    padding: 0.4em 0;
    width: 100%;
  }
  .kv .container .btns ul li a.btn {
    border-radius: 40px;
    display: block;
    width: 100%;
    padding: 1em 0;
    text-align: center;
  }
  .kv .container .badge {
    bottom: -130px;
  }
  .kv .container .badge ul li {
    margin-right: 10px;
  }
  .kv .container .badge ul li img {
    width: 110px;
    height: 110px;
  }
}

.information {
  padding: 8em 0 6em;
}
.information .container .title {
  color: #393026;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.information .container .title h3 {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
  display: inline-block;
  position: relative;
}
.information .container .title h3:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C0A476;
}
.information .container .title h4 {
  position: relative;
  top: 3px;
  margin-left: 2em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.information .container .information-list {
  margin: 4em;
}
.information .container .information-list dl {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.information .container .information-list dl dt {
  color: #C0A476;
  width: 120px;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
}
.information .container .information-list dl dt:after {
  position: absolute;
  top: 10%;
  right: -8px;
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: #C0A476;
}
.information .container .information-list dl dd {
  width: calc(100% - 120px);
  margin-left: 2.5em;
}
.information .container .information-list dl dd a {
  font-size: 1.6rem;
}
.information .container .readmore {
  margin-top: 4em;
  text-align: right;
}
.information .container .readmore a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1em 2em;
}
@media screen and (max-width: 1199px) {
  .information {
    padding: 8em 0 4em;
  }
  .information .container .title {
    display: block;
    text-align: center;
  }
  .information .container .title h3 {
    font-size: 3.5rem;
  }
  .information .container .title h4 {
    margin: 1em 0 0;
    font-size: 1rem;
  }
  .information .container .information-list {
    margin: 2em;
  }
  .information .container .readmore {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .information {
    padding: 6em 0 3em;
  }
  .information .container .title {
    margin-bottom: 2em;
  }
  .information .container .title h3 {
    font-size: 3rem;
  }
  .information .container .title h3:after {
    bottom: -4px;
  }
  .information .container .title h4 {
    margin-top: 0.4em;
  }
  .information .container .information-list {
    margin: 1em;
  }
  .information .container .information-list dl {
    border-bottom: 1px solid #E1DDD9;
    padding-bottom: 1em;
    margin-bottom: 1em;
    display: block;
  }
  .information .container .information-list dl dt, .information .container .information-list dl dd {
    line-height: 1.4;
    font-size: 1.4rem;
    width: 100%;
  }
  .information .container .information-list dl dt:after {
    display: none;
  }
  .information .container .information-list dl dd {
    margin-left: 0;
  }
  .information .container .information-list dl dd a {
    font-size: 1.4rem;
  }
  .information .container .readmore {
    margin-top: 2em;
  }
}

.hall-guide .container .title {
  text-align: center;
}
.hall-guide .container .title h5 {
  background: #393026;
  color: #fff;
  display: inline-block;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.1em 1em;
  position: relative;
}
.hall-guide .container .title h4 {
  margin-top: 0.4em;
  display: block;
  color: #393026;
  font-size: 4.8rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  position: relative;
}
.hall-guide .container .hall-list {
  margin: 4em auto 6em;
}
.hall-guide .container .hall-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hall-guide .container .hall-list ul li {
  position: relative;
  width: 49%;
  margin-bottom: 3.6em;
  text-align: center;
}
.hall-guide .container .hall-list ul li a {
  display: block;
  position: relative;
}
.hall-guide .container .banners {
  margin-top: 2em;
  text-align: center;
}
.hall-guide .container .banners ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hall-guide .container .banners ul li {
  width: 100%;
  margin-bottom: 3.6em;
}
.hall-guide .container .banners ul li.green-room {
  width: 35%;
}
.hall-guide .container .banners ul li.green-room a {
  display: block;
  height: 100%;
}
.hall-guide .container .banners ul li.green-room a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hall-guide .container .banners ul li.street-view {
  width: 60%;
}
.hall-guide .container .banners ul li.street-view iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .hall-guide .container .title h4 {
    font-size: 3.5rem;
  }
  .hall-guide .container .hall-list {
    margin: 3em auto 4em;
  }
  .hall-guide .container .hall-list ul li {
    margin-bottom: 2em;
  }
  .hall-guide .container .banners {
    margin-top: 1em;
  }
  .hall-guide .container .banners ul li {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 767px) {
  .hall-guide .container .title h5 {
    font-size: 1.6rem;
    padding: 0.1em 1em 0;
  }
  .hall-guide .container .title h4 {
    font-size: 3rem;
  }
  .hall-guide .container .hall-list {
    margin: 2em auto 0;
  }
  .hall-guide .container .hall-list ul li {
    width: 100%;
    margin-bottom: 1.6em;
  }
  .hall-guide .container .banners {
    width: 80%;
    margin: 1em auto;
  }
  .hall-guide .container .banners ul li.green-room {
    width: 100%;
  }
  .hall-guide .container .banners ul li.street-view {
    width: 100%;
  }
  .hall-guide .container .banners ul li.street-view iframe {
    height: 200px;
  }
}/*# sourceMappingURL=index.css.map */