@charset "utf-8";
/*------------------------------ 全体 ------------------------------*/
html {
  font-family: "Shippori Mincho B1", serif;
  color: #EEEEEE;
  align-items: center;
  text-align: center;
  font-size: 12px;
}
*{
	margin:0;
	padding: 0;
}
.shippori-mincho-b1-regular {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}
body{
  height: 100vh;
  background-image: url("../img/bg.jpeg");
  background-size: 100vw;
  background-repeat:repeat;
  overflow-x: hidden;
  box-sizing : border-box;
}
body::after{
  content: "";
  background-image: url("../img/bg.jpeg");
  opacity: 0.3;
}
ul, nav {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.9;
}
a:hover {
  opacity: 1;
}
.link{
 border-bottom: solid 1px #333;
}
.link-gld{
 border-bottom: solid 1px #CCAA6B;
}

h2 {
  font-size: 3em;
  font-weight: normal;
  color: #AF812A;
  line-height: 2em;
}
h3 {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5em;
}
p{
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.4em;
  margin-top: 20px;
}
.text-l{
	width: 80%;
	text-align: left;
	padding: 20px;
	margin: auto;
}
.text-s{
    font-size: 0.7em;
	text-align: left;
	margin: auto;
}
.fcgld {
  color: #CCAA6B;
}
.fcblk {
  color: #111111;
}
.fcred {
  color: #7E0F0F;
}
#container{
	max-width:960px; 
	margin: 0 auto;
}
section{
	margin: 20px auto;
}
li{
	padding-left: 0; 
	margin-left: 0;
}
/*------------------------------ ヘッダー ------------------------------*/
.header {
  position: relative;
  width: 100%;
  height: 100vh;
padding-bottom: 40px;
}
.header-sub {
  position: relative;
  width: 100%;
}
@media screen and (max-width:768px) {
.header, .header:before {
  position: relative;
    height: 100vh;
padding-bottom: 60px;
  }
}
.main-logo {
  width: 30%;
}
@media (max-width: 599px) {
  .main-logo {
    margin: 1% 0;
    width: 60%;
  }
}
/*------------------------------ 通常メニュー ------------------------------*/
nav{
text-align: center;
margin: 20px auto;
}
@media screen and (max-width:768px) {
.header, .header:before {
text-align: center;
margin: 0px auto;
  }
}
nav ul{
margin: 0 ;
padding: 0 ;
}
nav li{
list-style: none;
display: inline-block;
-webkit-transform: skewX(150deg);
-moz-transform: skewX(150deg);
transform: skewX(150deg);
}
nav li:not(:last-child){
border-right:1px solid #CECECE;
}
nav li a{
display:block;
transform: skewX(-150deg);
padding:0 15px;
}
nav a{
text-decoration: none;
color: #fff;
}
nav a.current{
color: #CCAA6B;
}
nav a:hover{
color:#CCAA6B;
}
/*------------------------------ ハンバーガーメニュー ------------------------------*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 0px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
/*------------------------------ スライドショー ------------------------------*/
.img-frame {
  position: relative;
  width: 80%;
  height: 500px;
  overflow: hidden;
  margin: 5% auto;
  box-sizing: border-box;
}
.img-01, .img-02, .img-03, .img-04, .img-05 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.img-01 {
  background-image: url('../img/main01.jpg');
  animation: slide-animation-01 24s infinite;
}
.img-02 {
  background-image: url('../img/main02.jpg');
  animation: slide-animation-02 24s infinite;
}
.img-03 {
  background-image: url('../img/main03.jpg');
  animation: slide-animation-03 24s infinite;
}
.img-04 {
  background-image: url('../img/main04.jpg');
  animation: slide-animation-04 24s infinite;
}
.img-05 {
  background-image: url('../img/main05.jpg');
  animation: slide-animation-05 24s infinite;
}
@media screen and (max-width: 768px) {
.img-frame {
  position: relative;
  width: 90%;
  overflow: hidden;
  margin: 5% auto;
  box-sizing: border-box;
}
.img-01, .img-02, .img-03, .img-04, .img-05 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.img-01 {
  background-image: url('../img/main01_sp.jpg');
  animation: slide-animation-03 24s infinite;
}
.img-02 {
  background-image: url('../img/main02_sp.jpg');
  animation: slide-animation-01 24s infinite;
}
.img-03 {
  background-image: url('../img/main03_sp.jpg');
  animation: slide-animation-04 24s infinite;
}
.img-04 {
  background-image: url('../img/main04_sp.jpg');
  animation: slide-animation-02 24s infinite;
}
.img-05 {
  background-image: url('../img/main05_sp.jpg');
  animation: slide-animation-05 24s infinite;
}
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1.0);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1.0);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes slide-animation-04 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1.0);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes slide-animation-05 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1.0);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.img-copyrights{
  position: absolute;/*絶対配置*/
  color: whitesmoke;
  bottom: 5px;
  right: 5px;
  font-size: 0.8em; 
  text-align: right;
  }

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #ffffff;
}
.menu-content ul {
    padding: 70px 10px 20px;
}
.menu-content ul li {
    border-bottom: solid 1px #CCAA6B;
    list-style: none;
	width: 80%;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 2em;
    box-sizing: border-box;
    color:#333333;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
/*.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #CCAA6B;
    border-right: solid 2px #CCAA6B;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #D2D2D2;
    transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
.menu-sns img{
	width: 26px;
	margin: auto
}

/*------------------------------ スクロールダウン ------------------------------*/
.scrolldown { /*描画位置*/
  position: absolute;
  margine-top:50px;
  left: 50%;
}
.scrolldown span { /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #CCAA6B;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCAA6B;
  animation:
    circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 50px;
  background: #CCAA6B;
}
/*---------- NEWS ----------*/
#news {
  position: relative;
  width: 80%;
  margin: 0px auto 50px;
}
/*@media screen and (max-width: 767px) {
#news{
	padding-top:80px;
}
}*/

#news h2{
	  text-align: center;
	line-height: 3em;
}
#news div{
	  text-align: left;
}
#news ul{
	border-bottom:solid 1px #eeeeee;
}
#news ul, li {
  padding-inline-start: 0px;
  margin:10px auto;
}
/*---------- PF ----------*/ 

.box {
  position: relative;
  width: 80%;
  margin: 40px auto;
  padding-bottom: 30px;
  border: solid 1px #ccaa6b;
}
.box h2{
  position: relative;
  font-size: 3em;
  line-height: 3em;
  color: #AF812A;
}
.box-title {
  position: relative;
  display: inline-block;
  font-size: 2em;
  color: #EEEEEE;
}
.box p {
  margin: 10px 0;
  padding: 0;
  text-align: center;
  color: #EEEEEE;
  line-height: 1.5em;
}
.box p img{
	margin: 20px auto;
	width: 25%; 
}
@media screen and (max-width:768px) {
.box p img{
	margin: 20px auto;
	width: 70%; 
}
}
.box-line{
	width: 70%;
	margin: 20px auto;
	text-align: center;
	border-bottom:solid 1px #ccaa6b;
	opacity: 0.7;
}
/*---------- footer ----------*/
footer{
  position: relative;
	width: 80%;
  margin: 0 auto;
  padding: 0px 1em 30px;
}
#contact{
	text-align: center;
}
#mail{
	width: 34px;
	margin: 5px auto;
}
.sns-link {
	display:block;
}
.sns-link img{
width: 24px;
	padding: 0 20px;
	
}
#contact ul{
margin: 0 ;
padding: 0 ;
}
#contact li{
list-style: none;
display: inline-block;
}
#contact li:not(:last-child){
}
#contact li a{
padding:0 15px;
}
/*---------- copyright ----------*/
.inkan{
  margin: 5% 0 0;
}
.copyright {
  letter-spacing: 0.1em;
  font-size: 0.7em;
}
#page-top {
    position: fixed;
    right: 30px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #CCAA6B;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/*---------- 滑らかに出現 ----------*/
span.smoothText {
	overflow: hidden;
	display: block;
}

span.smoothTextTrigger{
	transition: .5s ease-in-out;
	transform: translate3d(0,100%,0) skewY(12deg);
	transform-origin: left;
	display: block;
}
span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}
/*------------------------------ 下層ページ ------------------------------*/

.exhibition{
	text-align: center;
	background: hsla(0,0%,100%,0.85);
	color: #333;
  position: relative;
  width: 80%;
  padding: 30px 1em 30px;
  border: solid 1px #ccaa6b;
  font-size: 1em;
  font-weight: normal;
}
.exhibition   h2 {
 font-size: 3em;
	line-height: 2em;
  }
.exhibition ul {
    display: flex;
    justify-content: center;
    width: 80%;
	margin: 0 auto;
    padding: 0 20px;
  }
.exhibition p {
 line-height: 1.5em;
  }
.exhibition img {

  }
  li {
    list-style: none;
  }
@media screen and (max-width:768px) {

.exhibition   ul {
    display:contents;
	margin: 0 auto;
  }
.exhibition   h2 {
 font-size: 2em;
	line-height: 1.5em;
  }
  li {
    list-style: none;
  }
  }