@charset "UTF-8";


/* ---------------------------------------------------------
 * Common
** --------------------------------------------------------- */
body {
  color: #333;
  background-color: #fff;
  font-size: 15px;
  line-height: 2;
  /*font-family: "Arial", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  /*font-family: "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  /* font-familyについて : https://ics.media/entry/200317/ */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: justify;
  letter-spacing: 1px;
}

:root {
  --vw: 1vw;
}

.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
/* PCより小さい(タブレット) */
@media (max-width: 959px) {
}
/* タブレットより小さい(スマホランドスケープ) */
@media (max-width: 767px) {
}
/* スマホランドスケープより小さい(スマホポートレート) */
@media (max-width: 639px) {
}


/* ---------- btn ---------- */
.btn {
  position: relative;
  display: inline-block;
  border: 1px solid #ae9453;
  color: #ae9453;
  outline: none;
  transition: all ease 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #ae9453;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.btn span {
  position: relative;
  z-index: 3;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}


/* ---------- .underline ---------- */
/*.underline {
  background-repeat: no-repeat;
  background-position: 0 88%;
}
.underline.color1 {
  background-size: 100% 0.37em;
  background-image: -webkit-linear-gradient(to right, #c8f2d8 0%, #c8f2d8 100%);
  background-image: linear-gradient(to right, #c8f2d8 0%, #c8f2d8 100%);
}
.underline.color2 {
  background-size: 100% 0.6em;
  background-image: -webkit-linear-gradient(to right, #dbf5ee 0%, #dbf5ee 100%);
  background-image: linear-gradient(to right, #dbf5ee 0%, #dbf5ee 100%);
}
.underline.color3 {
  background-size: 100% 0.37em;
  background-image: -webkit-linear-gradient(to right, #d8ebee 0%, #d8ebee 100%);
  background-image: linear-gradient(to right, #d8ebee 0%, #d8ebee 100%);
}
@media (max-width: 1140px) {
}*/


/* ---------- .gra_border ---------- */
.gra_border {
  border-width: 3px;
  border-image: -webkit-linear-gradient(30deg, #c6a13b 0%, #9a6a00 65%, #c6a13b 100%) 1;
  border-image: linear-gradient(30deg, #c6a13b 0%, #9a6a00 65%, #c6a13b 100%) 1;
}




/* ---------------------------------------------------------
 * header
** --------------------------------------------------------- */
#header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
}
#header .logo {
  position: absolute;
  top: 14px;
  left: calc(calc(100% - 1200px) / 2);
}
#header .logo a {
  display: block;
}
#header .logo img {
  display: block;
}
#header .gnavi {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding-left: 30px;
  transition: all 0.3s ease;
}
#header.scrolled .gnavi {
  background-color: rgba(255, 255, 255, 0.5);
}
#header li {
}
#header li a {
  position: relative;
  display: block;
  height: 120px;
  padding: 0 30px;
  color: #644500;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 120px;
  transition: all 0.3s ease;
}
#header li:not(:last-child) a::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #644500;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
#header li:not(:last-child) a:hover::after {
  width: 80%;
}
#header.scrolled li a {
  height: 70px;
  line-height: 70px;
}
#header li:last-child {
  margin-left: 30px;
}
#header li:last-child a {
  padding: 0 40px;
  background-color: #ae9453;
  color: #fff;
}
#header li:last-child a:hover {
  background-color: #c4ad73;
}
#header li:last-child img {
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 1280px) {
  #header .logo {
    left: 20px;
  }
}
@media (max-width: 959px) {
  #header .gnavi {
    padding-left: 0;
  }
  #header li:last-child {
    margin-left: 0;
  }
  #header li a {
    padding: 0 20px;
  }
  #header li:last-child a {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  #header .gnavi {
    right: -270px;
    display: block;
    width: 270px;
    padding-top: 60px;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
  }
  #header .gnavi.active {
    right: 0;
    opacity: 1;
  }
  #header.scrolled .gnavi {
    background-color: #fff;
  }
  #header li a {
    width: 100%;
    height: 70px;
    padding: 0 30px;
    line-height: 70px;
  }
}
@media (max-width: 639px) {
}
/* gnavi_btn(sp only) */
.gnavi_btn {
  position: fixed;
  z-index: 130;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ae9453;
  transition: all 0.3s ease;
}
.gnavi_btn.open {
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s ease;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 28px;
  height: 20px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 9px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}




/* ---------------------------------------------------------
 * section parts
** --------------------------------------------------------- */
/* ---------- #fv_pages ---------- */
#fv_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#fv_pages h1 {
  color: #fff;
  font-size: 50px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-shadow: 0 0 14px rgba(30, 15, 0, 0.8);
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
  #fv_pages {
    height: 250px;
  }
  #fv_pages h1 {
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
  }
}




/* ---------------------------------------------------------
 * footer
** --------------------------------------------------------- */
#footer {
  padding: 20px 0;
}
#footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .logo {
  padding-top: 4px;
  margin-right: 60px;
}
#footer .logo img {
}
#footer .copy {
  margin-right: auto;
  font-size: 13px;
  color: #ae9453;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
#footer ul {
  display: flex;
}
#footer ul li {
}
#footer ul li:not(:first-child) {
  margin-left: 60px;
}
#footer ul a {
  display: inline-block;
  padding: 5px 0;
  color: #644500;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
#footer ul li:last-child a {
  position: relative;
  padding-right: 25px;
  border-bottom: 1px solid #644500;
}
#footer ul li:last-child a::before,
#footer ul li:last-child a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  transition: all 0.3s ease;
}
#footer ul li:last-child a::before {
  width: 9px;
  height: 9px;
  border-top: 1px solid #ae9453;
  border-right: 1px solid #ae9453;
}
#footer ul li:last-child a::after {
  top: 8px;
  width: 1px;
  height: 15px;
  background-color: #ae9453;
  transform-origin: right top;
  transform: rotate(45deg);
}
#footer ul li:last-child a:hover::before {
  transform: translate(10px, -10px);
}
#footer ul li:last-child a:hover::after {
  transform: translate(10px, -10px) rotate(45deg);
}
#footer .goto_top {
  margin-left: 60px;
}
#footer .goto_top a {
  position: relative;
  display: block;
  width: 57px;
  height: 33px;
  background-color: #ae9453;
}
#footer .goto_top a::before,
#footer .goto_top a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ae9453;
}
#footer .goto_top a::before {
  transform: rotate(60deg);
}
#footer .goto_top a::after {
  transform: rotate(-60deg);
}
#footer .goto_top a span {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform-origin: left top;
  transform: rotate(45deg);
}
@media (max-width: 1080px) {
  #footer .logo {
    margin-right: 40px;
  }
  #footer ul li:not(:first-child) {
    margin-left: 40px;
  }
  #footer .goto_top {
    margin-left: 40px;
  }
}
@media (max-width: 959px) {
  #footer ul {
    display: block;
  }
  #footer ul li:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
  #footer {
    padding-top: 50px;
  }
  #footer .wrapper {
    flex-direction: column;
    position: relative;
  }
  #footer .logo {
    margin-right: 0;
  }
  #footer .copy {
    order: 4;
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  #footer ul {
    margin-top: 30px;
  }
  #footer .goto_top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    margin-left: 0;
  }
}



