@charset "UTF-8";
body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  min-width: 980px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.fade:hover {
  opacity: .6;
}
header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
header .logo {
  padding: 40px;
}
main {
  padding: 112px 0 0;
}
nav {
  background: rgba(245, 235, 220, 0.9);
  height: 100%;
  padding: 112px 100px 50px 50px;
  position: fixed;
  right: -500px;
  text-align: right;
  z-index: 1001;
  opacity: 0;
  transition: .5s ease-in-out;
}
nav a {
  color: #16100F;
  font-size: .875rem;
}
nav .links .link {
  margin: 0 0 15px;
}
.nav-btn.active+nav {
  opacity: 1;
  right: 0;
}
footer {
  padding: 80px 0 0;
}
footer aside {
  background: #D7A060;
}
footer aside .logo {
  padding: 40px 0;
}
footer aside .copyrights {
  font-family: 'Lora', serif;
  font-size: .6875rem;
  letter-spacing: .1em;
  position: absolute;
  bottom: 40px;
  right: 0;
}
footer .btn-lead {
  margin: 0 0 20px;
  text-align: center;
}
footer .btn-contact {
  background: rgba(215,160,96,1);
  margin: 0 auto 70px;
  height: 85px;
  width: 350px;
}
footer .btn-contact:hover{
  background: rgba(215,160,96,.8);
}

footer .btn-contact a {
  color: #16100F;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 85px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
footer .btn-contact a::after {
  border-color: transparent transparent transparent #16100f;
  border-style: solid;
  border-width: 5.5px 0 5.5px 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 25px;
  top: 38px;
  width: 0;
}
footer .links {
  margin: 0 auto 30px;
  width: 980px;
  display: flex;
  flex-wrap: wrap;
}
footer .links .link {
  margin: 0 0px 10px;
  width: 160px;
}
footer .links .link:nth-child(1){
  width: 300px;
}
footer .links .link:nth-child(6){
  width: 300px;
}

footer .links .link a {
  color: #16100F;
  font-size: .875rem;
}
footer .links .link a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 6px 7px;
  border-color: transparent transparent transparent #000000;
  margin: 0 2px 0 0;
}
.menu {
  height: 30px;
  width: 40px;
  position: relative;
  margin: auto;
  border: 5px solid transparent;
  transition: .3s;
  cursor: pointer;
}
.bar {
  height: 2px;
  width: 30px;
  display: block;
  position: relative;
  background-color: #000;
  transition: .4s;
}
.nav-btn {
  position: fixed;
  top: 35px;
  right: 100px;
  z-index: 1002;
}
.nav-btn .bar {
  position: absolute;
}
.nav-btn .bar:nth-of-type(1) {
  top: 0px;
  transition: top .3s ease .3s, transform .3s ease-out .1s;
  animation: mrotr 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
}
.nav-btn .bar:nth-of-type(2) {
  animation: fade 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  transition: ease .3s .3s;
  top: 10px;
}
.nav-btn .bar:nth-of-type(3) {
  top: 20px;
  transition: top .3s ease .3s, transform .3s ease-out .1s;
  animation: mrotl 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
}
.nav-btn.active .menu .bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
  transition: top .3s ease .1s, transform .3s ease-out .5s;
}
.nav-btn.active .menu .bar:nth-of-type(2) {
  opacity: 0;
}
.nav-btn.active .menu .bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
  transition: top .3s ease .1s, transform .3s ease-out .5s;
}
.inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.page-back{
  position: absolute;
  top: -120px;
  right: 0;
}
.page-back:hover{
  opacity: .4;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  body {
    /* font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; */
    min-width: inherit;
    /* text-align: justify; */
    text-justify: inter-ideograph;
  }
  .fade:hover {
    opacity: .6;
  }
  header {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  header .logo {
    padding: 0;
    width: 180px;
    margin: 20px 15px;
  }
  main {
    padding: 70px 0 0;
  }
  nav {
    /* background: rgba(245, 235, 220, 0.9); */
    /* height: 100%; */
    padding: 80px 20px 50px 50px;
    /* position: fixed; */
    /* right: -500px; */
    /* text-align: right; */
    /* z-index: 1001; */
    /* opacity: 0; */
    /* transition: .5s ease-in-out; */
  }
  nav a {
    /* color: #16100F; */
    /* font-size: .875rem; */
    display: block;
    padding: 12px 0;
  }
  nav .links .link {
    margin: 0;
  }
  .nav-btn.active+nav {
    opacity: 1;
    right: 0;
  }
  footer {
    padding: 40px 0 0;
  }
  footer aside {
    /* background: #D7A060; */
  }
  footer aside .logo {
    padding: 20px 0 15px;
    width: 140px;
    margin: 0 auto;
  }
  footer aside .copyrights {
    /* font-family: 'Lora', serif; */
    font-size: .625rem;
    /* letter-spacing: .1em; */
    position: relative;
    bottom: 0;
    /* right: 0; */
    text-align: center;
    padding: 0 0 20px;
  }
  footer .btn-lead {
    margin: 0 0 20px;
    text-align: center;
  }
  footer .btn-contact {
    /* background: rgba(215,160,96,1); */
    margin: 0 20px 35px;
    height: 50px;
    width: auto;
  }
  footer .btn-contact:hover{
    background: rgba(215,160,96,.8);
  }

  footer .btn-contact a {
    /* color: #16100F; */
    /* display: block; */
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 50px;
    /* position: relative; */
    /* text-align: center; */
    /* text-decoration: none; */
  }
  footer .btn-contact a::after {
    /* border-color: transparent transparent transparent #16100f; */
    /* border-style: solid; */
    /* border-width: 5.5px 0 5.5px 8px; */
    /* content: ""; */
    /* display: block; */
    /* height: 0; */
    /* position: absolute; */
    right: 20px;
    top: 17px;
    /* width: 0; */
  }
  footer .links {
    /* margin: 0 auto 30px; */
    /* width: auto; */
    display: none;
    /* flex-wrap: wrap; */
  }
  footer .links .link {
    margin: 0 0px 10px;
    width: 160px;
  }
  footer .links .link:nth-child(1){
    width: 300px;
  }
  footer .links .link:nth-child(6){
    width: 300px;
  }

  footer .links .link a {
    color: #16100F;
    font-size: .875rem;
  }
  footer .links .link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 6px 7px;
    border-color: transparent transparent transparent #000000;
    margin: 0 2px 0 0;
  }
  .menu {
    height: 30px;
    width: 40px;
    position: relative;
    margin: auto;
    border: 5px solid transparent;
    transition: .3s;
    cursor: pointer;
  }
  .bar {
    height: 2px;
    width: 30px;
    display: block;
    position: relative;
    background-color: #000;
    transition: .4s;
  }
  .nav-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1002;
  }
  .nav-btn .bar {
    position: absolute;
  }
  .nav-btn .bar:nth-of-type(1) {
    top: 0px;
    transition: top .3s ease .3s, transform .3s ease-out .1s;
    animation: mrotr 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  }
  .nav-btn .bar:nth-of-type(2) {
    animation: fade 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    transition: ease .3s .3s;
    top: 10px;
  }
  .nav-btn .bar:nth-of-type(3) {
    top: 20px;
    transition: top .3s ease .3s, transform .3s ease-out .1s;
    animation: mrotl 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
  }
  .nav-btn.active .menu .bar:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
    transition: top .3s ease .1s, transform .3s ease-out .5s;
  }
  .nav-btn.active .menu .bar:nth-of-type(2) {
    opacity: 0;
  }
  .nav-btn.active .menu .bar:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
    transition: top .3s ease .1s, transform .3s ease-out .5s;
  }
  .inner {
    width: auto;
    /* margin: 0 auto; */
    /* position: relative; */
  }
  .page-back{
    position: absolute;
    top: -120px;
    right: 0;
  }
  .page-back:hover{
    opacity: .4;
  }
}



.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  /* opacity: 0; */
}
.a-delay-01 {-webkit-animation-delay: 0.1s;animation-delay: 0.1s;}
.a-delay-02 {-webkit-animation-delay: 0.2s;animation-delay: 0.2s;}
.a-delay-03 {-webkit-animation-delay: 0.3s;animation-delay: 0.3s;}
.a-delay-04 {-webkit-animation-delay: 0.4s;animation-delay: 0.4s;}
.a-delay-05 {-webkit-animation-delay: 0.5s;animation-delay: 0.5s;}
.a-delay-06 {-webkit-animation-delay: 0.6s;animation-delay: 0.6s;}
.a-delay-07 {-webkit-animation-delay: 0.7s;animation-delay: 0.7s;}
.a-delay-08 {-webkit-animation-delay: 0.8s;animation-delay: 0.8s;}
.a-delay-09 {-webkit-animation-delay: 0.9s;animation-delay: 0.9s;}
.a-delay-10 {-webkit-animation-delay: 1s;animation-delay: 1s;}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  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 fadeInUp {
  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);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
