@charset "UTF-8";
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: 'Times-Sans-Serif';
  src: url("../fonts/Times-Sans-Serif.ttf.woff") format("woff"), url("../fonts/Times-Sans-Serif.ttf.svg#Times-Sans-Serif") format("svg"), url("../fonts/Times-Sans-Serif.ttf.eot"), url("../fonts/Times-Sans-Serif.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

.table {
  color: #575757;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mincho {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 2.4rem;
}

h2 {
  font-size: 30px;
  font-weight: 300;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1030px;
  }
}

.font-size-big {
  font-size: 2.4rem;
}

.header {
  background: url(../images/main.jpg) no-repeat;
  background-size: cover;
  padding-bottom: 3rem;
}

.bg-inverse {
  background-color: #b01f24;
}

.text-red {
  color: #b01f24;
}

.menu-vertical {
  background: url(../images/navbar_bg.png) no-repeat bottom;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 360px;
  min-height: 700px;
}

.menu-vertical .logo {
  padding: 3rem 0 1.5rem;
  margin-bottom: 0;
}

.navbar ul {
  width: 100%;
}

.navbar ul li:not(:last-child):after {
  content: '';
  width: 100%;
  height: 15px;
  background: url(../images/divisor.png) no-repeat center center;
  display: block;
}

.navbar ul li a {
  display: block;
  padding: 15px 0;
  width: 100%;
}

.navbar ul li a:hover,
.navbar ul li.active a {
  background: url(../images/hover_bg.png) no-repeat center center;
}

#menu-contact li {
  width: auto;
  background: none;
}

#menu-contact li:not(:last-child):after {
  display: none;
}

#menu-contact li a {
  padding: 0;
  width: auto;
}

#menu-contact li:first-child a:after {
  content: '/';
  color: #b01f24;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

#menu-contact li:first-child a img {
  vertical-align: bottom;
}

#menu-contact li a:hover {
  background: none;
}

.navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  z-index: 4;
}

@media print, screen and (min-width: 769px) {
  .navbar-fixed-top .logo {
    -webkit-transition: .2s opacity ease-in;
    transition: .2s opacity ease-in;
  }
  .navbar-fixed-top .logo:hover {
    opacity: .6;
  }
}

.navbar-fixed-top li.menu-5 a img {
  vertical-align: bottom;
}

.navbar-fixed-top li.menu-6 a img {
  vertical-align: middle;
}

.navbar-fixed-top li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 25px 15px;
  -webkit-transition: all .25s linear;
  transition: all .25s linear;
}

.navbar-fixed-top li a:hover,
.navbar-fixed-top li.active a {
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(153, 129, 41, 0.2)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(153, 129, 41, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#998129",GradientType=1);
}

.toggle-menu {
  position: fixed;
  width: 45px;
  height: 38px;
  display: none;
  right: 10px;
  top: 10px;
  padding: 8px;
}

.toggle-menu .icon-bar {
  width: 100%;
  height: 2px;
  background-color: #998129;
}

.toggle-menu .icon-bar + .icon-bar {
  margin-top: 6px;
}

@media (min-width: 1200px) {
  .navbar-fixed-top {
    width: 100%;
    height: 70px;
  }
}

@media (max-width: 992px) {
  .toggle-menu {
    display: block;
  }
  .navbar-fixed-top .logo {
    width: 180px;
    display: block;
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-fixed-top ul {
    padding-bottom: 1rem;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: none;
    z-index: 100;
  }
  .navbar-fixed-top li {
    padding-left: 0;
  }
  .navbar-fixed-top li a {
    padding: 10px;
    text-align: center;
  }
  .navbar-fixed-top ul.is-open {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
}

.page-home .navbar-fixed-top {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.page-home .navbar-fixed-top.show {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* ANIMATION */
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sec-wave {
  padding: 3rem 0 2.5rem;
  position: relative;
}

.sec-wave .container {
  position: relative;
  z-index: 3;
}

.sec-wave .wave {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.sec-wave .wave + .wave {
  z-index: 2;
}

.page-home .title-box {
  width: 300px;
  height: 300px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1;
}

.page-home .title-box .inner {
  border: 1px solid #998129;
  width: 100%;
  height: 100%;
}

.page-home .sec-item {
  background: url(../images/bg.png) no-repeat top;
  background-size: cover;
}

.contact {
  color: #998129;
  padding: 3rem 0;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact h3 {
  margin-bottom: 2.4rem;
}

.contact p + p {
  margin-top: 2rem;
}

@media print, screen and (min-width: 641px) {
  .contact {
    padding: 5rem 0 6rem;
  }
}

@media print, screen and (max-width: 640px) {
  .contact #mail-contact {
    margin-top: 3rem;
    padding: 0;
  }
}

.contact .content-box {
  color: #b01f24;
  position: relative;
  z-index: 3;
  margin-top: 2.4rem;
}

.contact .content-box:before {
  content: '';
  width: 1px;
  height: 80%;
  background-color: #998129;
  position: absolute;
  left: 50%;
  top: 10px;
}

.contact #mail-contact .btn-large {
  min-width: 330px;
  margin-top: 5px;
}

@media print, screen and (max-width: 640px) {
  .contact #mail-contact .btn-large {
    min-width: 300px;
  }
}

.footer {
  padding-top: 120px;
  padding-bottom: 3rem;
}

.footer .page-top {
  position: fixed;
  right: 30px;
  bottom: 330px;
  width: 55px;
  height: 55px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all .25s linear;
  transition: all .25s linear;
}

.footer .page-top:focus,
.footer .page-top a:focus {
  outline: 0;
}

.footer .page-top .btn {
  width: 55px;
  height: 55px;
  padding: 12px;
  min-width: auto;
  border-radius: 50%;
  line-height: 1.5;
}

.footer .page-top .btn span {
  padding: 0;
}

.footer .foo-logo, .footer .copyright {
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .footer .foo-logo {
    -webkit-transition: .2s opacity ease-in;
    transition: .2s opacity ease-in;
  }
  .footer .foo-logo:hover {
    opacity: .6;
  }
}

.footer .foo-wave {
  position: absolute;
  top: -50px;
  width: 100%;
  bottom: 0;
  pointer-events: none;
}

@media print, screen and (min-width: 641px) {
  .footer {
    padding-top: 150px;
    padding-bottom: 3rem;
  }
}

.main-header img {
  width: 100%;
  max-width: none;
}

.page-child h2 > span {
  margin-top: 15px;
}

.page-child h2:after {
  content: '';
  background: url(../images/after_title.png) no-repeat;
  width: 118px;
  height: 22px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.page-child .contact h2:after {
  display: none;
}

.page-child .table td,
.page-child .table th {
  border-top: 1px solid #998129;
  padding: 20px .75rem;
}

.page-child .table-striped {
  border-bottom: 1px solid #998129;
}

.page-child .table-striped tbody tr:nth-of-type(odd) {
  background-color: #efebdd;
}

.page-child .map iframe {
  width: 100%;
  height: 365px;
  display: block;
}

.page-child h3 {
  font-size: 30px;
  font-weight: bold;
  color: #b01f24;
  letter-spacing: 2px;
}

@media print, screen and (max-width: 640px) {
  .page-child h3 {
    font-size: 22px;
  }
}

/* SLIDER */
.slider-content {
  margin-bottom: 30px;
  overflow: hidden;
}

.slider-nav {
  background-color: #c2b37e;
  padding: 15px 50px;
}

.slider-nav .item {
  padding: 0 5px;
  -webkit-transition: all .25s linear;
  transition: all .25s linear;
}

.slider-nav .item:hover {
  cursor: pointer;
  opacity: 0.75;
}

.slider-content .slider-nav .slick-current {
  opacity: 0.5;
}

.slider-content .slick-prev,
.slider-content .slick-next {
  position: absolute;
  width: 15px;
  height: 25px;
  background: url("../images/icon_control.png") no-repeat center center;
  border: none;
  text-indent: -9999px;
  top: calc(50% - 15px);
}

.slider-content .slick-prev:focus,
.slider-content .slick-next:focus {
  outline: 0;
}

.slider-content .slick-prev {
  left: 20px;
}

.slider-content .slick-next {
  right: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider-content .slick-slide img {
  display: inline-block;
}

.slick-carousel .carousel-item {
  padding: 0 10px;
}

@media (min-width: 1200px) {
  .slick-carousel {
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 575px) {
  .slider-nav {
    padding: 15px 25px;
  }
  .slider-content .slick-prev {
    left: 5px;
  }
  .slider-content .slick-next {
    right: 5px;
  }
}

.info-data {
  margin-top: 80px;
}

/* PANEL */
.panel-body {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 0 0 6px 6px;
}

@media print, screen and (max-width: 640px) {
  .panel-body {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.panel-body table {
  border-bottom: 1px solid #afafaf !important;
  margin-bottom: 0;
  color: #575757;
}

.panel-body table th {
  background-color: #eaeaea;
  font-weight: normal;
}

.panel-body table td,
.panel-body table th {
  border-top: 1px solid #afafaf !important;
  padding: 15px 0.75rem !important;
}

/* monselaton */
.page-mons .mons-red-text {
  font-size: 35px;
  color: #b01f24;
}

.page-mons .gothic,
.page-hotel .gothic {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
}

.page-mons .btn-large,
.page-hotel .btn-large {
  min-width: 350px;
  min-height: 70px;
  padding: 25px 10px;
  font-size: 16px;
  border-radius: 35px;
}

@media print, screen and (max-width: 640px) {
  .page-mons .btn-large,
  .page-hotel .btn-large {
    min-width: 300px;
  }
}

.page-mons .btn-large .fas,
.page-hotel .btn-large .fas {
  font-size: 2.0rem;
}

.page-parking .panel {
  margin-bottom: 40px;
}

.page-parking .panel-header {
  background-color: #b01f24;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  letter-spacing: 4px;
  border-radius: 6px 6px 0 0;
}

@media print, screen and (max-width: 640px) {
  .page-parking .panel-header {
    font-size: 18px;
  }
}

.page-parking .panel-body table th {
  width: 140px;
}

.page-parking .footer,
.page-business .footer,
.page-company .footer,
.page-contact .footer {
  background-color: #fff;
}

.page-business .bg-dark {
  background-color: #dad2b4 !important;
}

.page-business h4 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

@media print, screen and (max-width: 640px) {
  .page-business h4 {
    font-size: 18px;
  }
}

.page-business .panel-body {
  border-radius: 6px;
}

.page-business .panel-body table th {
  width: 170px;
}

@media print, screen and (max-width: 640px) {
  .page-business .panel-body .table {
    table-layout: fixed;
  }
  .page-business .panel-body .table th {
    width: 45%;
  }
}

.page-company .table td,
.page-company .table th,
.page-contact .table td,
.page-contact .table th {
  border-top: 0;
  border-bottom: 1px solid #fff;
}

.page-contact .table tr:last-child td,
.page-contact .table tr:last-child th {
  border-bottom: 0;
}

.page-contact .table tr:not(:last-child) td,
.page-contact .table tr:not(:last-child) th {
  vertical-align: middle;
}

.page-contact .table th {
  font-weight: normal;
  width: 200px;
}

.page-contact .table th > span {
  background-color: #998129;
  color: #fff;
  padding: 1px 5px;
  margin-left: 10px;
  font-size: 90%;
}

.page-contact .table td label {
  display: block;
  margin: 0;
}

.page-contact .table td input {
  border: 0;
  height: 40px;
  border-radius: 6px;
  padding: 8px 10px;
}

.page-contact .table td textarea {
  border: 0;
  height: 170px;
  border-radius: 6px;
  padding: 8px 10px;
  resize: none;
}

.page-contact .table td input,
.page-contact .table td textarea {
  -webkit-transition: all .25s linear;
  transition: all .25s linear;
  background-color: #fff;
}

.page-contact .table td input:focus,
.page-contact .table td textarea:focus {
  outline: 0;
  background-color: #F1F1F1;
}

.page-contact input::-webkit-input-placeholder {
  color: #979797;
}

.page-contact input:-ms-input-placeholder {
  color: #979797;
}

.page-contact input::-ms-input-placeholder {
  color: #979797;
}

.page-contact input::placeholder {
  color: #979797;
}

.page-contact input[type=checkbox], .page-contact input[type=radio] {
  vertical-align: middle;
}

.page-contact .agreement label {
  background-color: #e6c8c9;
  border-radius: 6px;
  padding: 10px;
}

.page-contact .btn-submit input {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  background: none;
  color: #fff;
  border: 0;
}

.page-contact #error-msg {
  font-size: 120%;
}

.page-contact h3 {
  font-size: 20px;
  color: #998129;
  font-weight: normal;
}

.page-contact .policy-content {
  border: 1px solid #ebe6d4;
  border-radius: 6px;
  padding: 30px;
}

.page-contact .policy-content ul li {
  border-bottom: 1px solid #d5d5d5;
  padding: 15px 0;
}

.page-contact .policy-content ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #998129;
  border-radius: 6px;
  display: inline-block;
  top: -3px;
  position: relative;
}

@media (min-width: 768px) {
  .page-child .main-content {
    padding-top: 90px !important;
  }
  .page-company .company-info,
  .page-contact .contact-form {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
  }
  .map {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact .content-box:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .footer .page-top {
    bottom: 250px;
  }
  .page-child h2:after {
    margin-top: 30px;
  }
  .page-child .panel .col-img {
    margin-top: 20px;
    text-align: center;
  }
  .info-data {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .page-contact .table td,
  .page-contact .table th {
    display: block;
    width: 100%;
  }
  .page-contact .table th {
    padding-bottom: 0;
    border-bottom: none;
  }
  .page-contact .table td {
    padding-top: 1rem;
  }
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: 'Times-Sans-Serif';
  src: url("../fonts/Times-Sans-Serif.ttf.woff") format("woff"), url("../fonts/Times-Sans-Serif.ttf.svg#Times-Sans-Serif") format("svg"), url("../fonts/Times-Sans-Serif.ttf.eot"), url("../fonts/Times-Sans-Serif.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

.top-intro {
  background-color: #ebe6d4;
  position: relative;
  width: 100%;
}

.top-intro-cont {
  position: relative;
  z-index: 3;
  padding: 3rem 0 4rem;
}

.top-intro-cont p {
  margin: 3rem auto 6rem;
}

.top-wave {
  position: absolute;
  left: 0;
  top: -150px;
  width: 100%;
  bottom: 0;
  pointer-events: none;
}

@media print, screen and (min-width: 641px) {
  .top-kv {
    height: 730px;
  }
}

.top-nav {
  background: url(../images/theme/gnav-bg.png) center bottom no-repeat;
  width: 360px;
  height: 700px;
  padding: 5.8rem 1rem 0;
  margin: 0 auto;
}

.top-nav h1 {
  text-align: center;
}

.top-nav-list {
  margin: 4.5rem auto;
}

.top-nav-item a {
  display: block;
  text-align: center;
  padding: 1rem;
}

.top-nav-item a:hover {
  background: url(../images/theme/gnav-hover.png) center center no-repeat;
}

.top-nav-item + li::before {
  display: block;
  content: url(../images/theme/gnav-deco.png);
  margin: 5px auto;
  text-align: center;
}

@media print, screen and (max-width: 640px) {
  .top-nav {
    width: 300px;
    background-size: cover;
    padding: 2rem 1rem;
    height: 580px;
  }
  .top-nav-list {
    margin: 2rem auto;
  }
}

.top-nav-contact {
  color: #b01f24;
  font-size: 1.6rem;
  text-align: center;
}

.top-main .container {
  max-width: 1430px;
}

@media print, screen and (max-width: 768px) {
  .top-main .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media print, screen and (min-width: 769px) {
  .top-sec1 {
    padding-top: 50px;
    margin-bottom: 65px;
  }
  .top-sec1-row {
    width: 100%;
    position: relative;
    padding-top: 39.42857%;
    min-height: 400px;
  }
  .top-sec1-fig1 {
    width: 50%;
    left: 50%;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .top-sec1-fig2 {
    position: absolute;
    z-index: 1;
    right: 50%;
    margin-right: 240px;
    bottom: 2.53623%;
    z-index: 1;
  }
  .top-sec1-text {
    position: absolute;
    top: 4.71014%;
    right: 50%;
    margin-right: 28px;
    z-index: 3;
  }
}

@media print, screen and (max-width: 768px) {
  .top-sec1-row {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .top-sec1-fig1 {
    width: 80%;
    position: relative;
    margin-left: auto;
  }
  .top-sec1-fig2 {
    width: 60%;
    position: relative;
    margin-right: auto;
  }
  .top-sec1-text {
    position: relative;
    z-index: 3;
    margin: -50px auto;
  }
}

@media print, screen and (min-width: 769px) {
  .top-sec2 {
    margin-bottom: 70px;
  }
  .top-sec2-row {
    width: 100%;
    min-height: 400px;
    position: relative;
    padding-top: 39.42857%;
  }
  .top-sec2-fig1 {
    width: 31.42857%;
    left: 5%;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .top-sec2-fig2 {
    position: absolute;
    z-index: 1;
    width: 34.28571%;
    right: 25%;
    top: 19.56522%;
    z-index: 1;
  }
  .top-sec2-fig3 {
    position: absolute;
    z-index: 1;
    right: 2.14286%;
    top: 0;
    z-index: 1;
  }
  .top-sec2-text {
    position: absolute;
    top: 4.34783%;
    right: 14.28571%;
    z-index: 3;
  }
}

@media print, screen and (max-width: 768px) {
  .top-sec2-row {
    text-align: center;
    margin-bottom: 30px;
  }
  .top-sec2-fig1 {
    width: 70%;
    position: relative;
    margin-right: auto;
  }
  .top-sec2-fig2 {
    width: 60%;
    position: relative;
    margin-left: auto;
    margin-right: 30px;
    margin-top: -40px;
  }
  .top-sec2-fig3 {
    width: 60%;
    position: relative;
    margin-left: auto;
  }
  .top-sec2-text {
    position: relative;
    z-index: 3;
    margin: -50px auto;
  }
}

@media print, screen and (min-width: 769px) {
  .top-sec3 {
    margin-bottom: 60px;
  }
  .top-sec3-row {
    width: 100%;
    position: relative;
    padding-top: 40%;
    min-height: 400px;
  }
  .top-sec3-fig1 {
    width: 45.71429%;
    left: 29.28571%;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .top-sec3-fig2 {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .top-sec3-text {
    position: absolute;
    top: 6.42857%;
    left: 14.28571%;
    z-index: 3;
  }
}

@media print, screen and (max-width: 768px) {
  .top-sec3-row {
    text-align: center;
    margin-bottom: 30px;
  }
  .top-sec3-fig1 {
    width: 80%;
    position: relative;
    margin-left: auto;
  }
  .top-sec3-fig2 {
    width: 70%;
    position: relative;
    margin-right: auto;
  }
  .top-sec3-text {
    position: relative;
    z-index: 3;
    margin: -50px auto;
  }
}

@media print, screen and (min-width: 769px) {
  .top-sec4 {
    margin-bottom: 120px;
  }
  .top-sec4-row {
    width: 100%;
    position: relative;
    padding-top: 32.57143%;
    min-height: 400px;
  }
  .top-sec4-fig1 {
    width: 36.57143%;
    left: 50%;
    margin-left: 150px;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .top-sec4-fig2 {
    width: 36.57143%;
    position: absolute;
    z-index: 1;
    right: 50%;
    margin-right: 150px;
    bottom: 0;
    z-index: 2;
  }
  .top-sec4-text {
    position: absolute;
    top: 17.54386%;
    left: 50%;
    margin-left: -150px;
    z-index: 3;
  }
}

@media print, screen and (max-width: 768px) {
  .top-sec4-row {
    text-align: center;
    margin-bottom: 30px;
  }
  .top-sec4-fig1 {
    width: 80%;
    position: relative;
    margin-right: auto;
  }
  .top-sec4-fig2 {
    width: 80%;
    position: relative;
    margin-left: auto;
  }
  .top-sec4-text {
    position: relative;
    z-index: 3;
    margin: -50px auto;
  }
}

.top-box {
  background: #fff;
  height: 300px;
  width: 300px;
  padding: 1rem;
}

.top-box-inner {
  width: 100%;
  height: 100%;
  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;
  border: 1px #998129 solid;
}

.top-box-title {
  margin-bottom: 2rem;
}
