@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
:root {
  --secondary: #191C24;
  --black: #000;
  --white: #fff;
  --dark: #595757;
  /* Fonts */
  --font-default: "Shippori Mincho", serif;
}

body {
  background: #001927;
  margin: 0;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 300;
  line-height: 2.1rem;
  color: #001927;
}
@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 1.8rem;
  }
}

p {
  font-weight: 400;
}

.navbar {
  width: 100%;
  position: fixed;
  margin-top: 0px;
  height: 70px;
  background: #001927;
  z-index: 5;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 575px) {
  .navbar {
    height: 55px;
  }
}

header {
  /* headerを画面上部に固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  /* ロゴとナビゲーションを横並びにする */
  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;
  /* スクロールしても他のコンテンツの下にならないようにする */
  z-index: 10;
  /* 背景色を黒にする */
  background: none;
  /* アニメーションの変化時間 */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 575px) {
  header {
    height: 55px;
  }
}

header.scroll-nav {
  /* 背景を白にする */
  background: #001927;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 10px;
  font-size: 25px;
  z-index: 99;
  color: #A3926B;
}
@media screen and (max-width: 575px) {
  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}

.main {
  position: relative;
}
.main .main-logo {
  position: absolute;
  width: 43%;
  max-width: 700px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  display: block;
  text-align: center;
  z-index: 1;
}
.main .main-logo img {
  -webkit-filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.9));
          filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 991px) {
  .main .main-logo {
    width: 50%;
    height: 160px;
  }
}
@media screen and (max-width: 575px) {
  .main .main-logo {
    width: 78%;
    height: 65px;
  }
}
.main p {
  position: absolute;
  left: 10%;
  top: 150px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .main p {
    left: 5%;
    top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .main p {
    top: 70px;
  }
}
@media screen and (max-width: 575px) {
  .main p {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.4rem;
  }
}

.bg-1 {
  background: #001927;
}

.bg-2 {
  background: #D6CFBE;
}

.bg-3 {
  background: #F6F3EF;
}

h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8rem;
}
h2 span {
  color: #A3926B;
  font-size: 55px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  h2 span {
    font-size: 30px;
  }
}

.h2-2 {
  color: #001927;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8rem;
}
.h2-2 span {
  color: #A3926B;
  font-size: 55px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .h2-2 span {
    font-size: 30px;
  }
}

.mt-160 {
  margin-top: 160px;
}
@media screen and (max-width: 575px) {
  .mt-160 {
    margin-top: 80px;
  }
}

.m-100 {
  margin: 160px 0 100px;
}
@media screen and (max-width: 575px) {
  .m-100 {
    margin: 80px 0 50px;
  }
}

.n-mt {
  margin: 70px 0 50px;
}
@media screen and (max-width: 991px) {
  .n-mt {
    margin: 0 0 30px;
  }
}

.mt-100 {
  margin: 160px 0 0;
}
@media screen and (max-width: 575px) {
  .mt-100 {
    margin: 80px 0 0;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media screen and (max-width: 575px) {
  .pt-100 {
    padding-top: 60px;
  }
}

.pt-200 {
  padding-top: 200px;
}
@media screen and (max-width: 575px) {
  .pt-200 {
    padding-top: 160px;
  }
}

.wine-bg1 {
  background-color: #001927;
  width: 100%;
  background: url(../images/index/bg1.png) no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.wine-bg1 .top-wine img {
  width: 70%;
  margin: 0 auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 575px) {
  .wine-bg1 .top-wine img {
    width: 85%;
  }
}

p.text-white {
  color: #fff;
}

.li-4 {
  line-height: 4rem;
}
@media screen and (max-width: 575px) {
  .li-4 {
    line-height: 2.6rem;
  }
}

.wine-bg2 {
  padding: 60px 0 200px;
  background-color: #001927;
  width: 100%;
  background: url(../images/index/bg2.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 575px) {
  .wine-bg2 {
    padding: 60px 0 120px;
  }
}

.btn-main {
  padding: 20px 40px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  color: #A3926B;
  text-decoration: none;
}
.btn-main img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 60px;
  margin-left: 10px;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
@media screen and (max-width: 575px) {
  .btn-main img {
    width: 45px;
  }
}
.btn-main:after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #A3926B;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.btn-main:before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #A3926B;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
}
.btn-main:hover {
  color: #A3926B;
}
.btn-main:hover:after {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-main:hover:before {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-main:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 575px) {
  .btn-main {
    padding: 20px 30px;
    letter-spacing: 1px;
  }
}

.btn-sub {
  padding: 20px 40px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  color: #001927;
  text-decoration: none;
}
.btn-sub img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 60px;
  margin-left: 10px;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
@media screen and (max-width: 575px) {
  .btn-sub img {
    width: 45px;
  }
}
.btn-sub:after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #001927;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.btn-sub:before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #001927;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
}
.btn-sub:hover {
  color: #001927;
}
.btn-sub:hover:after {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-sub:hover:before {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-sub:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 575px) {
  .btn-sub {
    padding: 20px 30px;
    letter-spacing: 1px;
  }
}

.btn-news {
  padding: 20px 40px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  color: #001927;
  text-decoration: none;
}
.btn-news img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 60px;
  margin-left: 10px;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
@media screen and (max-width: 575px) {
  .btn-news img {
    width: 45px;
  }
}
.btn-news:after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #001927;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.btn-news:before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #001927;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
}
.btn-news:hover {
  color: #001927;
}
.btn-news:hover:after {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-news:hover:before {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.btn-news:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 575px) {
  .btn-news {
    padding: 20px 30px;
    letter-spacing: 1px;
  }
}

.btn-mini {
  font-weight: 400;
}
.btn-mini img {
  width: 60px;
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
.btn-mini:hover {
  color: #A3926B;
}
.btn-mini:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.btn-c {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  padding: 20px 40px;
  background: #A3926B;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
}
.btn-c img {
  width: 60px;
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
.btn-c:hover {
  background: #001927;
  color: #fff;
}
.btn-c:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 575px) {
  .btn-c {
    padding: 20px 30px;
  }
}

.btn-f {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  padding: 20px 40px;
  background: #A3926B;
  font-weight: 500;
  color: #001927;
  border-radius: 0;
}
.btn-f img {
  width: 60px;
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
.btn-f:hover {
  background: #fff;
  color: #001927;
}
.btn-f:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 575px) {
  .btn-f {
    margin: 0 auto;
    display: block;
  }
}

.btn-navy {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  padding: 20px 40px;
  background: #001927;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
}
.btn-navy img {
  width: 60px;
  margin-left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
.btn-navy:hover {
  background: #A3926B;
  color: #fff;
}
.btn-navy:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.shop-bg {
  position: relative;
  width: 100%;
  height: auto;
  background: url(../images/index/shop.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shop-bg:after {
  content: "";
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.shop-bg:before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 48%;
  bottom: 116px;
  z-index: 2;
  background: url(../images/index/arrow3.svg) no-repeat;
}
@media screen and (max-width: 575px) {
  .shop-bg:before {
    left: 43%;
  }
}
.shop-bg:hover:after {
  background: rgba(0, 0, 0, 0);
}
.shop-bg .shop-box {
  z-index: 2;
  position: relative;
}
.shop-bg .shop-box a h2 {
  margin-bottom: 0;
  padding: 120px 0 190px;
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}
.shop-bg .shop-box a h2 span {
  color: #A3926B;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .shop-bg .shop-box a h2 {
    font-size: 28px;
  }
}

.acc-bg {
  position: relative;
  width: 100%;
  height: auto;
  background: url(../images/index/access.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.acc-bg:after {
  content: "";
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.acc-bg:before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 48%;
  bottom: 116px;
  z-index: 2;
  background: url(../images/index/arrow3.svg) no-repeat;
}
@media screen and (max-width: 575px) {
  .acc-bg:before {
    left: 43%;
  }
}
.acc-bg:hover:after {
  background: rgba(0, 0, 0, 0);
}
.acc-bg .acc-box {
  z-index: 2;
  position: relative;
}
.acc-bg .acc-box a h2 {
  padding: 120px 0 190px;
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
}
.acc-bg .acc-box a h2 span {
  color: #A3926B;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .acc-bg .acc-box a h2 {
    font-size: 28px;
  }
}

a.td-none {
  text-decoration: none;
}

.re-img {
  padding-bottom: 80px;
}
.re-img img {
  width: 60%;
}
@media screen and (max-width: 991px) {
  .re-img img {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .re-img {
    padding-bottom: 0;
  }
}

.re-text {
  margin-top: 70px;
  background: #A3926B;
  position: absolute;
  display: block;
  right: 0;
  width: 48%;
  top: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 30px 50px;
  line-height: 4rem;
}
@media screen and (max-width: 1199px) {
  .re-text {
    line-height: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .re-text {
    line-height: 2.6rem;
    margin-top: 0;
    position: relative;
    width: 100%;
    padding: 25px 30px;
  }
}

.p-re {
  position: relative;
}

.br-s {
  display: block;
}
@media screen and (max-width: 1199px) {
  .br-s {
    display: none;
  }
}

.br-s2 {
  display: none;
}
@media screen and (max-width: 575px) {
  .br-s2 {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media screen and (max-width: 1199px) {
  .pb-150 {
    padding-bottom: 90px;
  }
}

.pb-200 {
  padding-bottom: 200px;
}
@media screen and (max-width: 1199px) {
  .pb-200 {
    padding-bottom: 150px;
  }
}

.p-60 {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-60 {
    padding: 35px 0;
  }
}

.news-box ul {
  padding-left: 0;
}
.news-box ul li {
  border-bottom: 1px solid #D6CFBE;
  list-style: none;
  line-height: 1.5rem;
}
.news-box ul li a {
  padding: 25px 20px;
  text-decoration: none;
  color: #001927;
  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;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.news-box ul li a span.n-date {
  font-size: 14px;
  color: #8B959A;
  font-weight: 400;
  margin: 0 15px 0 10px;
}
.news-box ul li a span.n-text {
  font-size: 16px;
  font-weight: 400;
}
.news-box ul li a span.n-text2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.news-box ul li a span.n-text2 h4 {
  margin-top: 15px;
  font-size: 21px;
}
@media screen and (max-width: 575px) {
  .news-box ul li a span.n-text2 h4 {
    font-size: 18px;
  }
}
.news-box ul li a span.n-text2 p {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .news-box ul li a span.n-text2 p {
    font-size: 14px;
  }
}
.news-box ul li a:hover {
  background: #ECE9E1;
  color: #A3926B;
}
.news-box ul li.flag1 a:before {
  content: "お知らせ";
  -ms-flex-preferred-size: 65px;
      flex-basis: 65px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  background: #A3926B;
  color: #fff;
}
.news-box ul li.flag2 a:before {
  content: "新発売";
  -ms-flex-preferred-size: 65px;
      flex-basis: 65px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  background: #1B6065;
  color: #fff;
}
.news-box ul li.flag3 a:before {
  content: "完売";
  -ms-flex-preferred-size: 65px;
      flex-basis: 65px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  background: #A36065;
  color: #fff;
}

.news-bg {
  background: #fff;
  padding: 80px;
}
.news-bg .news-flag1:before {
  content: "お知らせ";
  width: 75px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  background: #A3926B;
  color: #fff;
}
.news-bg .news-flag2:before {
  content: "新発売";
  width: 75px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  background: #1B6065;
  color: #fff;
}
.news-bg .news-flag3:before {
  content: "完売";
  width: 75px;
  display: inline-block;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  background: #A36065;
  color: #fff;
}
.news-bg h3.h3-news {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0 50px;
  border-bottom: 1px solid #A3926B;
  padding-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .news-bg h3.h3-news {
    font-size: 20px;
    margin: 15px 0 35px;
  }
}
.news-bg p {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .news-bg p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .news-bg {
    padding: 30px;
  }
}

span.news-date {
  font-size: 16px;
  margin-left: 6px;
  color: #8B959A;
  font-weight: 400;
}

.ct-bg {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ECE9E1), color-stop(50%, #D6CFBE));
  background: linear-gradient(90deg, #ECE9E1 50%, #D6CFBE 50%);
}
.ct-bg .flexbox {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ct-bg .flexbox .c-bg {
  text-align: center;
  background: #ECE9E1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: none;
}
@media screen and (max-width: 767px) {
  .ct-bg .flexbox .c-bg {
    padding-bottom: 50px;
  }
}
.ct-bg .flexbox .c-bg p.sub-ti2 {
  margin: 20px 0 0;
  font-size: 15px;
}
.ct-bg .flexbox .t-bg {
  text-align: center;
  background: #D6CFBE;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: none;
}
.ct-bg .flexbox .t-bg p.sub-ti {
  margin: 20px 0 0;
  font-size: 15px;
}
.ct-bg .flexbox .t-bg p.tel-font {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #A3926B;
}
.ct-bg .flexbox .t-bg p.tel-font img {
  width: 25px;
  padding-bottom: 5px;
}
@media screen and (max-width: 575px) {
  .ct-bg .flexbox .t-bg p.tel-font img {
    width: 26px;
  }
}
.ct-bg .flexbox .t-bg p.tel-font a {
  color: #A3926B;
  text-decoration: none;
}
.ct-bg .flexbox .t-bg p.time-font {
  margin-bottom: 0;
  color: #697271;
  font-weight: 400;
  line-height: 1.6rem;
}
@media screen and (max-width: 767px) {
  .ct-bg .flexbox .t-bg {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .ct-bg .flexbox {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ct-bg {
    padding: 50px 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ECE9E1), color-stop(50%, #D6CFBE));
    background: linear-gradient(0deg, #ECE9E1 50%, #D6CFBE 50%);
  }
}

footer {
  margin-top: 100px;
  font-weight: 400;
}

.f-title {
  color: #fff;
  font-size: 17px;
  margin-bottom: 0;
}

.f-text {
  color: #fff;
}

.f-cap {
  color: #8B959A;
  font-size: 12px;
  line-height: 1.6rem;
}

.f-cap2 {
  color: #fff;
  font-size: 12px;
  line-height: 1.6rem;
  margin: 15px 0 6px;
  font-weight: 400;
}

i.f-icon {
  font-size: 27px;
  color: #4D5E68;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
i.f-icon:hover {
  color: #fff;
}

dl.dl-footer {
  border-bottom: 1px solid #fff;
  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;
  padding: 20px 0;
  margin-bottom: 0;
}
dl.dl-footer dt {
  -ms-flex-preferred-size: 120px;
      flex-basis: 120px;
  margin-right: 20px;
  color: #fff;
  font-weight: 400;
}
dl.dl-footer dd {
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
@media screen and (max-width: 575px) {
  dl.dl-footer {
    display: block;
  }
}

.b-white {
  border-bottom: 1px solid #fff;
}

.b-navy {
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #001927;
}

.f-nav ul {
  padding-left: 0;
}
.f-nav ul li a {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  color: #A3926B;
  text-decoration: none;
}
.f-nav ul li a:hover {
  color: #fff;
}

.b-hours dl {
  border-bottom: 1px solid #001927;
  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;
  padding: 20px 0;
  margin-bottom: 0;
}
.b-hours dl dt {
  -ms-flex-preferred-size: 70px;
      flex-basis: 70px;
  margin-right: 20px;
  color: #001927;
  font-weight: 400;
}
.b-hours dl dd {
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #001927;
}
@media screen and (max-width: 575px) {
  .b-hours dl {
    display: block;
  }
}

span.icon-f {
  color: #001927;
  font-size: 10px;
  font-weight: 600;
  bottom: 5px;
  position: absolute;
  left: 19px;
}
@media screen and (max-width: 575px) {
  span.icon-f {
    left: 12px;
    bottom: 0;
  }
}

/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 70px;
  height: 70px;
  border: none;
  background: #D6CFBE;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .hamburger-overlay {
    width: 55px;
    height: 55px;
  }
}

.hamburger-overlay__line {
  position: absolute;
  left: 22px;
  width: 26px;
  height: 2px;
  background-color: #001927;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 575px) {
  .hamburger-overlay__line {
    left: 15px;
  }
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
@media screen and (max-width: 575px) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 10px;
  }
}

.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
@media screen and (max-width: 575px) {
  .hamburger-overlay__line:nth-of-type(2) {
    top: 18px;
  }
}

.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}
@media screen and (max-width: 575px) {
  .hamburger-overlay__line:nth-of-type(3) {
    top: 28px;
  }
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #001927;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 25, 39, 0.95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.nav-overlay__link {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 400;
}
.nav-overlay__link span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #A3926B;
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .nav-overlay__link span {
    font-size: 23px;
  }
}
.nav-overlay__link:hover {
  color: #D6CFBE;
}
.nav-overlay__link:hover span {
  color: #D6CFBE;
}
@media screen and (max-width: 575px) {
  .nav-overlay__link {
    padding: 10px;
  }
}

.cart {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  position: fixed;
  top: 0;
  right: 70px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  border: none;
  background: #A3926B;
  cursor: pointer;
}
.cart a .cart-f {
  color: #fff;
  font-size: 25px;
  top: 16px;
  position: relative;
  left: 21px;
}
@media screen and (max-width: 575px) {
  .cart a .cart-f {
    font-size: 21px;
    top: 11px;
    left: 17px;
  }
}
.cart:hover {
  background: #857B63;
}
@media screen and (max-width: 575px) {
  .cart {
    right: 55px;
    width: 55px;
    height: 55px;
  }
}

h1 {
  position: absolute;
}
h1 img {
  position: fixed;
  width: 130px;
  top: 23px;
  left: 24px;
  z-index: 999;
}
@media screen and (max-width: 575px) {
  h1 img {
    width: 100px;
    top: 18px;
    left: 18px;
  }
}

h3 {
  color: #001927;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8rem;
}
h3 span {
  color: #A3926B;
  font-size: 55px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  h3 span {
    font-size: 35px;
  }
}

.w-img1 img {
  width: 45%;
}

.w-img2 {
  margin-top: 30px;
}
.w-img2 img {
  width: 60%;
}

.w-img3 {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}
.w-img3 img {
  width: 88%;
}

.w-img4 {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}
.w-img4 img {
  width: 88%;
}
@media screen and (max-width: 767px) {
  .w-img4 img {
    width: 75%;
    margin: 30px auto 0;
    display: block;
  }
}

.w-img5 {
  position: relative;
  z-index: 2;
  margin-top: 70px;
}
.w-img5 img {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .w-img5 img {
    width: 57%;
  }
}
@media screen and (max-width: 767px) {
  .w-img5 {
    margin-top: 30px;
  }
}

.w-img6 {
  position: relative;
  z-index: 2;
  margin-top: 150px;
}
.w-img6 img {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .w-img6 img {
    position: absolute;
    right: 0;
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .w-img6 {
    margin-top: 30px;
    padding-bottom: 150px;
  }
}

.w-img7 {
  position: relative;
  z-index: 2;
  margin-top: 120px;
}
.w-img7 img {
  width: 85%;
}
@media screen and (max-width: 991px) {
  .w-img7 img {
    width: 57%;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .w-img7 {
    margin-top: 30px;
  }
}

.w-img8 {
  position: relative;
  z-index: 2;
  margin-top: 0;
}
.w-img8 img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .w-img8 img {
    width: 57%;
  }
}
@media screen and (max-width: 991px) {
  .w-img8 {
    margin-top: 30px;
  }
}

.illust1 {
  position: relative;
}
.illust1 img {
  position: absolute;
  width: 150px;
  right: 10px;
  top: -50px;
}
@media screen and (max-width: 575px) {
  .illust1 img {
    width: 100px;
  }
}

.illust2 {
  position: relative;
}
.illust2 img {
  position: absolute;
  z-index: 2;
  width: 300px;
  left: 10%;
  top: 0;
}
@media screen and (max-width: 575px) {
  .illust2 img {
    width: 200px;
    left: 7px;
  }
}

.illust3 {
  position: relative;
}
.illust3 img {
  position: absolute;
  width: 150px;
  right: 10px;
  top: -50px;
}
@media screen and (max-width: 575px) {
  .illust3 img {
    width: 100px;
  }
}

.illust4 {
  position: relative;
}
.illust4 img {
  position: absolute;
  z-index: 2;
  width: 300px;
  right: 10px;
  bottom: 0;
}
@media screen and (max-width: 575px) {
  .illust4 img {
    right: 0;
    width: 230px;
  }
}

.illust5 {
  position: relative;
}
.illust5 img {
  position: absolute;
  z-index: 2;
  width: 150px;
  left: 12%;
  bottom: 0;
}
@media screen and (max-width: 575px) {
  .illust5 img {
    width: 115px;
    left: 10px;
  }
}

.illust6 {
  position: relative;
}
.illust6 img {
  position: absolute;
  width: 150px;
  right: 20px;
  bottom: -150px;
}
@media screen and (max-width: 575px) {
  .illust6 img {
    width: 100px;
    right: 0;
    bottom: 0;
  }
}

.illust7 {
  position: relative;
}
.illust7 img {
  position: absolute;
  z-index: 2;
  width: 250px;
  left: 0;
  bottom: -100px;
}
@media screen and (max-width: 575px) {
  .illust7 img {
    width: 150px;
    bottom: 0;
  }
}

.illust8 {
  position: relative;
}
.illust8 img {
  position: absolute;
  width: 170px;
  right: 20px;
  bottom: -150px;
}
@media screen and (max-width: 575px) {
  .illust8 img {
    width: 100px;
    right: 0;
    bottom: 0;
  }
}

.illust9 {
  position: relative;
}
.illust9 img {
  position: absolute;
  z-index: 2;
  width: 300px;
  left: 10%;
  top: 0;
}
@media screen and (max-width: 575px) {
  .illust9 img {
    width: 180px;
    left: 7px;
    top: -25px;
  }
}

.illust10 {
  position: relative;
}
.illust10 img {
  position: absolute;
  width: 150px;
  right: 10px;
  top: -50px;
}
@media screen and (max-width: 575px) {
  .illust10 img {
    width: 88px;
    right: 3px;
    top: -120px;
  }
}

.w-bg1 {
  position: relative;
}
.w-bg1:before {
  background: #DED8C8;
  content: " ";
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 300px;
  height: 350px;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .w-bg1:before {
    width: 200px;
    height: 200px;
  }
}

.w-bg2 {
  position: relative;
}
.w-bg2:before {
  background: #DED8C8;
  content: " ";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 35%;
  height: 300px;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .w-bg2:before {
    width: 300px;
    height: 200px;
  }
}

.w-bg3 {
  position: relative;
}
.w-bg3:before {
  background: #DED8C8;
  content: " ";
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 35%;
  height: 550px;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .w-bg3:before {
    width: 54%;
    height: 300px;
    bottom: 200px;
  }
}

.w-bg4 {
  position: relative;
}
.w-bg4:before {
  background: #DED8C8;
  content: " ";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 31%;
  height: 400px;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .w-bg4:before {
    width: 300px;
    height: 200px;
  }
}

.w-bg5 {
  position: relative;
}
.w-bg5:before {
  background: #DED8C8;
  content: " ";
  position: absolute;
  bottom: -33px;
  right: 10%;
  width: 27%;
  height: 300px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .w-bg5:before {
    width: 57%;
    height: 230px;
    bottom: 100px;
  }
}

.img-90 {
  position: relative;
  z-index: 2;
}
.img-90 img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

.cap {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4rem;
}

.menu-box {
  background: #fff;
  padding: 80px;
}
.menu-box h4 {
  text-align: center;
  color: #001927;
  font-size: 15px;
  font-weight: 600;
}
.menu-box h4 span {
  color: #A3926B;
  font-size: 55px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .menu-box h4 span {
    font-size: 35px;
  }
}
.menu-box .f-20 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .menu-box .f-20 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.menu-box .menu-list dl {
  border-bottom: 1px solid #A3926B;
  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;
  padding: 20px 10px;
  margin-bottom: 0;
}
.menu-box .menu-list dl dt {
  -ms-flex-preferred-size: 220px;
      flex-basis: 220px;
  margin-right: 20px;
  color: #001927;
  font-weight: 400;
  text-align: left;
}
.menu-box .menu-list dl dt i {
  font-size: 10px;
  color: #A3926B;
}
.menu-box .menu-list dl dd {
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #001927;
  text-align: right;
}
.menu-box .menu-list dl dd span {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .menu-box .menu-list dl {
    display: block;
  }
}
.menu-box .menu-list2 dl {
  border-bottom: 1px solid #A3926B;
  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;
  padding: 10px 10px 20px;
  margin-bottom: 0;
}
.menu-box .menu-list2 dl dt {
  -ms-flex-preferred-size: 230px;
      flex-basis: 230px;
  margin-right: 0;
  color: #001927;
  font-weight: 400;
  text-align: left;
}
.menu-box .menu-list2 dl dt i {
  font-size: 10px;
  color: #A3926B;
}
.menu-box .menu-list2 dl dt i:before {
  vertical-align: 0;
}
.menu-box .menu-list2 dl dd {
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #001927;
  text-align: right;
}
.menu-box .menu-list2 dl dd span {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .menu-box .menu-list2 dl {
    display: block;
  }
}
.menu-box .drink-list .d-ti {
  border-bottom: 1px solid #A3926B;
}
.menu-box .drink-list dl {
  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;
  padding: 5px;
  margin-bottom: 0;
}
.menu-box .drink-list dl dt {
  -ms-flex-preferred-size: 230px;
      flex-basis: 230px;
  margin-right: 0;
  color: #001927;
  font-weight: 400;
  text-align: left;
}
.menu-box .drink-list dl dd {
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #001927;
  text-align: right;
}
.menu-box .drink-list dl dd span {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .menu-box .drink-list dl {
    display: block;
  }
}
.menu-box .course {
  background: #F6F3EF;
  padding: 20px 10px;
  margin-left: 15px;
}
.menu-box .course .c-ti {
  text-align: center;
  color: #A3926B;
  margin-bottom: 5px;
  line-height: 1.4rem;
}
.menu-box .course ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.menu-box .course ul li {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .menu-box .course {
    margin-left: 0;
  }
}
.menu-box .other {
  background: #F6F3EF;
  padding: 30px 50px 40px;
}
.menu-box .other .c-ti {
  text-align: center;
  color: #A3926B;
  margin-bottom: 5px;
  line-height: 1.4rem;
}
.menu-box .other ul {
  color: #A3926B;
  padding: 15px 0 15px 15px;
  margin-bottom: 0;
  border-bottom: 1px solid #A3926B;
}
.menu-box .other ul li span {
  color: #001927;
}
@media screen and (max-width: 991px) {
  .menu-box .other {
    margin-left: 0;
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .menu-box .other {
    margin-left: 0;
    padding: 30px 20px;
  }
}
.menu-box .b-icon span {
  background: #A3926B;
  color: #fff;
  font-size: 13px;
  padding: 2px 10px;
  line-height: 1.4rem;
}
.menu-box .c-cap {
  margin-left: 15px;
  font-weight: 600;
  line-height: 1.8rem;
}
@media screen and (max-width: 991px) {
  .menu-box .c-cap {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.menu-box .c-cap2 {
  margin: 20px 0 0 15px;
  font-weight: 400;
  line-height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .menu-box .c-cap2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .menu-box {
    padding: 30px;
  }
}

.acc-text h4 {
  font-size: 18px;
  margin-bottom: 30px;
}
.acc-text img.flow1 {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .acc-text img.flow1 {
    margin-bottom: 50px;
  }
}
.acc-text img.flow2 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .acc-text img.flow2 {
    width: 100%;
  }
}

img.map {
  border: 15px solid #fff;
  margin-top: 50px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  img.map {
    border: 10px solid #fff;
  }
}

a.page-link {
  background: none;
  border: none;
  color: #001927;
}
a.page-link:hover {
  background: none;
  color: #A3926B;
}

span.hissu {
  color: #C44005;
  margin-left: 3px;
}

.form-control::-webkit-input-placeholder {
  color: rgba(208, 212, 216, 0.75);
}

.form-control::-moz-placeholder {
  color: rgba(208, 212, 216, 0.75);
}

.form-control:-ms-input-placeholder {
  color: rgba(208, 212, 216, 0.75);
}

.form-control::-ms-input-placeholder {
  color: rgba(208, 212, 216, 0.75);
}

.form-control::placeholder {
  color: rgba(208, 212, 216, 0.75);
}

.form-check .form-check-input {
  margin-top: 10px;
}

.pd-0 {
  padding: 0;
}

ul.pl-1 {
  padding-left: 1rem;
}

iframe.top-calendar {
  border: 1px solid #adadad;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 575px) {
  iframe.top-calendar {
    height: 400px;
  }
}

.bg-list {
  background: #A3926B;
  padding: 40px 0;
}
.bg-list ul {
  padding-left: 0;
  margin: 0;
}
.bg-list ul li {
  display: inline-block;
  padding: 0 40px;
  border-left: 1px solid #fff;
  margin: 0;
}
.bg-list ul li a {
  -webkit-transition: 0.35s;
  transition: 0.35s;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.bg-list ul li a:hover {
  color: #001927;
}
@media screen and (max-width: 575px) {
  .bg-list ul li {
    padding: 0 35px;
  }
}
.bg-list ul li.b-ri {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 575px) {
  .bg-list ul li.b-ri {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .bg-list ul li.b-ri-s {
    border-right: 1px solid #fff;
  }
}

.banner h3 {
  line-height: 2.5rem;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .banner h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .banner h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.banner a img {
  width: 60%;
  margin: 0 auto;
  display: block;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.banner a img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .banner a img {
    width: 100%;
  }
}

h3.h3-title {
  color: #A3926B;
  font-size: 32px;
  font-weight: 600;
  line-height: 2rem;
}
h3.h3-title span {
  color: #C2B59F;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  h3.h3-title {
    font-size: 24px;
    line-height: 1.6rem;
  }
}

.h2-title {
  color: #001927;
  font-size: 36px;
  font-weight: 600;
  line-height: 2rem;
}
.h2-title span {
  color: #A3926B;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .h2-title {
    font-size: 28px;
    line-height: 1.6rem;
  }
}

.h2-title2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 2rem;
}
.h2-title2 span {
  color: #A3926B;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .h2-title2 {
    font-size: 28px;
    line-height: 1.6rem;
  }
}

.h2-title3 {
  color: #001927;
  font-size: 26px;
  font-weight: 600;
  line-height: 2rem;
}
.h2-title3 span {
  color: #A3926B;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .h2-title3 {
    font-size: 21px;
    line-height: 1.6rem;
  }
}