@charset "UTF-8";
@font-face {
  font-family: "utsukushi";
  src: url("../fonts/UtsukushiMincho.woff") format("woff");
}

/*======================
/*設定項目
/*====================*/
/* ----------------------------------------------
default
------------------------------------------------- */
body {
  color: #2c2c2c;
  font-size: 15px;
  line-height: 1.4;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #735e1c;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, system-ui, sans-serif;
  font-weight: bold;
}

strong {
  color: #b09d60;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, system-ui, sans-serif;
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  background: #fff;
}

#header .btn-access {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1;
}

#header .btn-access a {
  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;
  color: #000;
  font-family: "utsukushi", serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#header .btn-access a:hover {
  opacity: 0.6;
}

#header .btn-access a img {
  margin-right: 12px;
}

#header .logo {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 236px;
  margin: 0 auto;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#header .logo:hover {
  opacity: 0.6;
}

#header .gnav-wrapper {
  position: relative;
  padding: 60px 10px 0;
}

@media (max-width: 767px) {
  #header > .btn-access {
    display: none;
  }
  #header .logo {
    position: relative;
    top: 0;
    width: 180px;
  }
  #header .gnav-wrapper {
    padding: 0;
  }
}

#gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#gnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 100px);
}

#gnav > ul:last-child > li {
  background-position: right top;
}

#gnav > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 61px;
  background: url(../images/gnav-line.png) no-repeat left top;
}

#gnav > ul > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 2px;
  color: #000;
  font-family: "utsukushi", serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav > ul > li > a::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 4px;
  background: #b09d60;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav > ul > li > a::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 4px;
  left: 0;
  right: 0;
  z-index: 0;
  width: 21px;
  height: 27px;
  margin: 0 auto;
  background: url(../images/gnav-current.png) no-repeat center bottom;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav > ul > li.current > a::before, #gnav > ul > li.current > a::after,
#gnav > ul > li:hover > a::before,
#gnav > ul > li:hover > a::after {
  opacity: 1;
}

#gnav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

#gnav > ul .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 24px 10px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
}

#gnav > ul .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#gnav > ul .submenu li {
  margin-right: 40px;
}

#gnav > ul .submenu a {
  display: inline-block;
  min-height: 17px;
  padding-right: 28px;
  background: url(../images/gnav-arrow.png) no-repeat right 1px center;
  color: #735e1c;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#gnav > ul .submenu a:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  #gnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #gnav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
  #gnav > ul + ul {
    margin-top: 20px;
  }
  #gnav > ul > li {
    display: block;
    background: none;
  }
  #gnav > ul > li.current > a::before, #gnav > ul > li.current > a::after,
  #gnav > ul > li:hover > a::before,
  #gnav > ul > li:hover > a::after {
    opacity: 0;
  }
  #gnav > ul > li .submenu {
    position: relative;
    top: 0;
    padding: 0;
    background: none;
    opacity: 1;
    visibility: visible;
  }
  #gnav > ul > li .submenu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #gnav > ul > li .submenu li {
    margin-right: 0;
    margin-top: 10px;
  }
  #gnav > ul > li .submenu li + li {
    margin-top: 10px;
  }
  #gnav .btn-access {
    position: relative;
    top: 0;
    right: auto;
    margin-top: 20px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  padding: 90px 10px 100px;
  background: url(../images/footer-tl.png) no-repeat right calc(50vw + 506px) top, url(../images/footer-tr.png) no-repeat left calc(50vw + 505px) top;
}

#footer .logo {
  text-align: center;
}

#footer .logo a {
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#footer .contents .right .text {
  color: #000;
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.075em;
}

@media (max-width: 1399px) {
  #footer {
    background-position: right 86.14vw top, left 86.07vw top;
    background-size: 17.21vw;
  }
}

@media (max-width: 767px) {
  #footer {
    padding-bottom: 20px;
  }
  #footer .contents {
    -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;
  }
  #footer .contents .left {
    margin-bottom: 30px;
  }
  #footer .contents .right .text {
    font-size: 14px;
  }
}

#pagetop {
  width: 100%;
  max-width: 1240px;
  margin: -10px auto 9px;
  text-align: right;
}

#pagetop a {
  display: inline-block;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#pagetop a:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  #pagetop img {
    width: 45px;
  }
}

#fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7px;
}

#fnav ul {
  margin-right: 77px;
}

#fnav li + li {
  margin-top: 17px;
}

#fnav a {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#fnav a:hover {
  opacity: 0.6;
}

@media (max-width: 999px) {
  #fnav ul {
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  #fnav ul {
    margin-right: 20px;
  }
  #fnav a {
    font-size: 14px;
    letter-spacing: 0;
  }
}

#copyright {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.075em;
}
/*# sourceMappingURL=style.css.map */