@charset "UTF-8";
/*	font */
@font-face {
  font-family: "MPLUS";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MPLUSRounded1c-Medium.woff2");
  font-display: swap;
}
@font-face {
  font-family: "MPLUS";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/MPLUSRounded1c-Bold.woff2");
  font-display: swap;
}
@font-face {
  font-family: "MPLUS";
  font-weight: 900;
  src: url("../fonts/MPLUSRounded1c-ExtraBold.woff2");
  font-display: swap;
}
body {
  color: #926223;
  background: url("../img/common/bg.jpg") repeat top left;
  font-size: 16px;
  font-family: "MPLUS", "Noto Sans", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", sans-serif;
  position: relative;
  line-height: 1.75em;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

/*	Windowsフォントアンチエイリアス */
#footer_inner a {
  display: block;
}

h4, p, #footer_inner a, #gnavi li a {
  transform: rotate(0.05deg);
}

a {
  color: #926223;
  text-decoration: none;
}

.wrapper {
  min-width: 1088px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    min-width: 100%;
  }
}
.wrapper img {
  width: 100%;
}

/*	共通info */
#cheader_wrap {
  min-width: 1088px;
}
@media screen and (max-width: 768px) {
  #cheader_wrap {
    width: 100%;
    min-width: 100%;
  }
}
#cheader_wrap #cheader {
  background: #062540;
}
@media screen and (max-width: 768px) {
  #cheader_wrap #cheader {
    width: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cheader_wrap #cheader .logo {
    top: 11px;
    left: 6px;
    width: 21%;
  }
  #cheader_wrap #cheader .top_tel {
    top: 9px;
    right: 6px;
    width: 39%;
  }
}
@media screen and (max-width: 480px) {
  #cheader_wrap #cheader .logo {
    top: 11px;
    left: 6px;
    width: 35%;
  }
  #cheader_wrap #cheader .top_tel {
    top: 9px;
    right: 6px;
    width: 57%;
  }
}

#cinfo_wrap {
  overflow: hidden;
  min-width: 1088px;
}
@media screen and (max-width: 768px) {
  #cinfo_wrap {
    width: 100%;
    min-width: 100%;
  }
}
#cinfo_wrap #cinfo {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #cinfo_wrap #cinfo {
    width: 100%;
    min-width: 100%;
  }
}
#cinfo_wrap #cinfo li {
  margin: 0;
}
#cinfo_wrap #cinfo li span {
  width: 100%;
  font-size: 0.8em;
}

/*---------------- パーツ ----------------*/
/* アイコン */
.ico {
  width: 17px;
  height: 23px;
  display: inline-block;
  background-position: top left;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .ico {
    width: 15px;
    height: 21px;
  }
}
.ico.loc {
  background-image: url(../img/common/ico_location.svg);
}
.ico.tel {
  background-image: url(../img/common/ico_phone.svg);
}
.ico.fax {
  background-image: url(../img/common/ico_fax.svg);
}

/* ボタン */
.btn_detail {
  background-image: url(../img/common/btn_detail_bg.gif);
  background-repeat: repeat;
  background-size: 100%;
  border-radius: 32px;
  display: inline-block;
  padding: 20px;
  min-width: 385px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn_detail {
    min-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .btn_detail {
    min-width: 100%;
  }
}
.btn_detail:hover {
  -webkit-animation: bnr_hover 0.4s;
  animation: bnr_hover 0.4s;
}
.btn_detail span {
  color: #fff;
  font-size: 1.13em;
}
@media screen and (max-width: 480px) {
  .btn_detail span {
    font-size: 0.98em;
  }
}
.btn_detail:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 13px;
  height: 15px;
  background-image: url(../img/common/btn_detail_arrow.gif);
  background-repeat: no-repeat;
  background-size: 100%;
}

/* ボタン、リンクホバーアニメ */
@-webkit-keyframes txt_link_zoom {
  50% {
    -webkit-transform: scale(1.05);
  }
}
@keyframes txt_link_zoom {
  50% {
    transform: scale(1.05);
  }
}
/* バナーホバーアニメ */
@-webkit-keyframes bnr_hover {
  0% {
    -webkit-transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-5px);
    -webkit-animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-2px);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bnr_hover {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-2px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
  }
}
/*---------------- header ----------------*/
header {
  position: relative;
}
header #header_logo {
  width: 360px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 90;
  display: block;
}
@media screen and (max-width: 768px) {
  header #header_logo {
    width: 35%;
    left: 5px;
    top: 3px;
  }
}
@media screen and (max-width: 480px) {
  header #header_logo {
    width: 48%;
  }
}

/* グロナビ */
#gnavi {
  width: 780px;
  height: 100%;
  padding-top: 40px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  transform: translate(780px);
  transition: all 0.6s;
  background: url(../img/common/bg.jpg) repeat top left;
  text-align: center;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  #gnavi {
    width: 90%;
    transform: translate(100%);
    transition: all 0.6s;
  }
}
#gnavi ul {
  line-height: 1.923em;
}
#gnavi ul:first-child {
  font-size: 1.875em;
  line-height: 63.07px;
  background-image: url(../img/common/gnavi_deco.png);
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #gnavi ul:first-child {
    background-size: 40px;
    padding: 140px 5% 0;
    font-size: 1.4em;
    line-height: 1.4em;
    background-position: center 50px;
  }
}
@media screen and (max-width: 768px) {
  #gnavi ul li {
    margin-bottom: 1em;
  }
}
#gnavi ul li:hover {
  -webkit-animation: txt_link_zoom 0.3s;
  animation: txt_link_zoom 0.3s;
}
#gnavi #sub_navi {
  font-size: 1.625em;
  padding: 35px 0 100px;
}
@media screen and (max-width: 768px) {
  #gnavi #sub_navi {
    padding: 25px 5% 50px;
    font-size: 1.2em;
    line-height: 1.3em;
  }
}
#gnavi a {
  color: #ae8249;
  position: relative;
}
#gnavi.open {
  transform: translateZ(0);
}

.gnavi_btnarea {
  transition: all 0.6s;
  position: fixed;
  top: 150px;
  right: 40px;
  width: 60px;
  z-index: 1002;
}
@media screen and (max-width: 768px) {
  .gnavi_btnarea {
    right: 70px;
    width: 139px;
    top: 55px;
  }
}
@media screen and (max-width: 480px) {
  .gnavi_btnarea {
    right: 55px;
    width: 107px;
    top: 50px;
  }
}
.gnavi_btnarea li {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .gnavi_btnarea li {
    margin-bottom: 0;
    width: 60px;
    display: inline-block;
    margin-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  .gnavi_btnarea li {
    width: 45px;
  }
}
.gnavi_btnarea li a:hover img {
  -webkit-animation: txt_link_zoom 0.3s;
  animation: txt_link_zoom 0.3s;
}

/*	グロナビ開閉 */
.menu_trigger {
  transition: all 0.6s;
  width: 50px;
  height: 40px;
  cursor: pointer;
  position: fixed;
  top: 90px;
  right: 45px;
  z-index: 1002;
}
@media screen and (max-width: 768px) {
  .menu_trigger {
    top: 60px;
    right: 10px;
    width: 50px;
    height: 45px;
  }
}
@media screen and (max-width: 480px) {
  .menu_trigger {
    top: 55px;
    width: 40px;
    height: 35px;
  }
}
.menu_trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  transition: all 1s;
  background-color: #ae8249;
  border-radius: 3px;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 18px;
}
@media screen and (max-width: 768px) {
  .menu_trigger span:nth-of-type(2) {
    top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .menu_trigger span:nth-of-type(2) {
    top: 15px;
  }
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu_trigger.active span {
  background-color: #ae8249;
}
.menu_trigger.active span:nth-of-type(1) {
  transform: translateY(18px) rotate(-37deg);
}
@media screen and (max-width: 768px) {
  .menu_trigger.active span:nth-of-type(1) {
    transform: translateY(20px) rotate(-42deg);
  }
}
@media screen and (max-width: 480px) {
  .menu_trigger.active span:nth-of-type(1) {
    transform: translateY(15px) rotate(-40deg);
  }
}
.menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-16.5px) rotate(37deg);
}
@media screen and (max-width: 768px) {
  .menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-20px) rotate(42deg);
  }
}
@media screen and (max-width: 480px) {
  .menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-15px) rotate(40deg);
  }
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.7s;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

/*	グロナビオープン時イラスト */
#gnavi_giraffe {
  display: none;
  position: fixed;
  top: 480px;
  right: 621px;
  display: block;
  width: 447px;
  z-index: 2001;
  opacity: 0;
  transform: translate(0, 520px);
  transition: all 0.9s;
}
@media screen and (max-width: 768px) {
  #gnavi_giraffe {
    top: auto;
    right: 80%;
    width: 40%;
    transform: translate(0, 520px);
    bottom: -90px;
  }
}
#gnavi_giraffe.open {
  opacity: 1;
  transform: translate(0);
}

/*---------------- footer ----------------*/
#footer_inner {
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #footer_inner {
    width: 83%;
    margin-bottom: 40px;
  }
}
#footer_inner #sitemap {
  padding-bottom: 30px;
  background-image: url(../img/common/deco_line.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  font-size: 1.125em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #footer_inner ul {
    display: none;
  }
}
#footer_inner ul li {
  margin-right: 1.4em;
  display: inline-block;
}
#footer_inner ul li a {
  position: relative;
}
#footer_inner ul li a:hover {
  -webkit-animation: txt_link_zoom 0.3s;
  animation: txt_link_zoom 0.3s;
}

#footer_inner ul, #footer_copy {
  width: 1088px;
  margin: 0 auto 20px;
  text-align: left;
  color: #5f5f5f;
}
@media screen and (max-width: 768px) {
  #footer_inner ul, #footer_copy {
    width: 90%;
  }
}

/*---------------- link_go_top ----------------*/
#link_go_top {
  position: fixed;
  width: 97px;
  height: 138px;
  right: 31px;
  bottom: 20px;
  display: none;
  z-index: 54;
}
@media screen and (max-width: 480px) {
  #link_go_top {
    width: 81px;
    height: 95px;
    right: 0%;
  }
}
#link_go_top:hover {
  -webkit-animation: txt_link_zoom 0.3s;
  animation: txt_link_zoom 0.3s;
}

/*---------------- 出し分け用パーツ ----------------*/
@media screen and (min-width: 960px) {
  .pc_hide {
    display: none;
  }

  .sp_hide {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .pc_hide {
    display: inline;
  }

  .sp_hide {
    display: none;
  }
}
/*# sourceMappingURL=common.css.map */