@charset "UTF-8";
/* CSS Document */
img{
  /* SPの長押し禁止 */
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
  pointer-events: none;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color:#403513;
  font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  font-size: 1.6em;
  line-height: 1.5;
  text-align: center;
}
h2 {
  font-family: "miller-banner", serif;
  font-weight: normal;
  color: #A67D03;
  letter-spacing: 0.02rem;
  line-height: 0.6;
}
.page-title >h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.0rem;
  margin-top: 55px;
  margin-bottom: 50px;
}
.gallery-page-title>h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.0rem;
  margin-top: 100px;

}
@media screen and (min-width: 48em) {
  .page-title >h2{
  font-size: 5.0rem;
  margin-top: 70px;
  margin-bottom: 90px;
  }
  .gallery-page-title>h2{
    font-size: 5.0rem;
    margin-top: 120px;
  }

}
@media screen and (min-width: 48em){
  .subtitle{
      margin-top: 80px;
    margin-bottom: 100px;}
  
  .gallerytitle{
    margin-bottom: 40px;
}}
/* インスタサイズ */
.fa-brands{
  font-size: 2.2rem;
}


h2 span{
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
a {
  text-decoration: none;
  color: #403513;
}

.none{
  display: none;
}

li{
  list-style: none;
}
.btn {
  display: inline-block;
  border: 1px solid;
  position: relative;
  background: #fff;
  color: #A67D03;
  border: 1px solid #A67D03;
  padding: 1.5rem 5.5rem 1.5rem 3.8rem;
  transition: all 1s;
}

.btn:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 1s;
  width: 7px;
  height: 18px;
  top: 50%;
  right: 2.5rem;
  
  border-top: solid 1px #A67D03;
  border-right: solid 1px #A67D03;
  transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
.btn:hover {
  background-color:#F2E8B6;
  
}
.btn:hover:after {
  right: 5px;
  height: 40px;
  
}
.miller-font{
  font-family:"miller-banner", serif;
}

/* footer */
.footer{
  padding: 60px 32px 15px;
  background-color: #F3ECE5;
}

.contact-button{
  width: 100%;
  margin: 0 auto 15px;
  max-width: 797px;
  border: #A67D03 solid 1px;
  padding: 30px 0;
  background-color: #fff;
  line-height: 0.8;
  transition: background-color 1s;
}

.contact-button:hover{
  background-color: #F2E8B6;
}

.contact{
  font-size: 4.0rem;
  margin-bottom:0 ;
  color: #A67D03;
  font-family: "miller-banner", serif;
  font-weight: normal;
}
.contact-button_come{
  font-size: 1.3rem;
  color: #A67D03;
}
@media screen and (min-width: 51em){
  .contact-button{
    padding-top: 40px;
    padding-bottom: 40px;
}
.contact{
  font-size: 6.0rem;
}}
/* footer */
.footer_note{
  font-size: 1.2rem;
}
small{
  font-size: 1.2rem;
  font-family: "miller-banner", serif;
  padding-bottom: 15px;
}

.fadeInUpTrigger,
.fadeInTrigger{
	opacity: 0;
}
#page-top {
  position: fixed;
  right: 20px;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  animation: arrowmove 1s ease-in-out infinite;
  white-space: nowrap;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  font-family: "miller-banner", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a67d03;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s;
  animation: arrowmove 1s ease-in-out infinite;
}
#page-top a:hover {
  color: #f4cd0b;
}

/*リンクを右下に固定*/
#page-top::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 1px;
  height: 60px;
  background: #a67d03;
}
#page-top::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 20px;
  width: 1px;
  height: 13px;
  background: #a67d03;
  transform: skewX(30deg);
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}