/* styles.css */
body{
  background-color: #F8F4E6;
}
header, body,  h1, h2 ,h3 ,h4 ,a, ul{
  margin:0;
  padding:0;
  color: #C89932;
}
ul {
  list-style-type: none;
}
*{
  margin: 0;
  padding: 0;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 5vw;
  background-color: #f8f4e665;
  border-radius: 0 0 2vw 2vw;
}
.fadeInUp_1 {
  opacity: 0;
  transform: translateY(120px);
}
@keyframes fadeIn {
  0% {}

  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
ruby rt {
  font-size: 0.5em;
  top: 0vw;
  position: relative;
}

/*高さを100%にして描画エリアをとる*/
/* html,body{
	height: 100%;
} */

/*ハンバーガーメニューここから*/
.menu-btn {
  position: fixed;
  top: 1vw;
  right: 1vw;
  display: flex;
  height: 3vw;
  width: 3vw;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #96514D;
  border-radius: 25%;
}
.menu-btn img{
  width: 65%;
  height: 65%;
}
.menu-btn-open{
  display: block;
}
.menu-btn-close{
  display: none;
}
#menu-btn-check:checked ~ .menu-btn .menu-btn-open{
  display: none;
}
#menu-btn-check:checked ~ .menu-btn .menu-btn-close{
  display: block;
}

#menu-btn-check{
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 0;
  z-index: 80;
}
.menu-content ul {
  padding: 2.5vw 1vw 2.5vw;
}
.menu-content ul li {
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color:#C89932;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 25%;
  height: 50%;
  position: fixed;
  line-height: 3vw;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #F8F4E6;
  transition: all 0.5s;/*アニメーション設定*/
  text-align: center;
  font-size: 1.5vw;
  border-radius: 2.5vw 0vw 2.5vw 2.5vw;
}
#menu-btn-check:checked ~ .menu-content {
  left: 75%;/*メニューを画面内へ*/
}
.search-btn{
  width: 2.5vw;
}

/* header */
.header__menu__ul{
  line-height: 2vw;
  font-size: 1.5vw;
  margin-top: -7vw;
  margin-bottom: 2vw;
}
@media (max-width: 768px) {
  .header__menu__ul {
      margin-top: -14vh; /* 小さい画面向けに調整 */
      margin-bottom: 4vh; /* 小さい画面向けに調整 */
  }
}

.header__menu__ul li{
  border-bottom: 0px solid #fff !important;
}

.header__menu__ul li a::before{
  content: "";
  width: 0px !important;
  height: 0px !important;
  border: 0px !important;
}


.view{
  display: block;
}

.hide{
  display: none;
}
/*ハンバーガーメニューここまで*/

#particles-js{ 
	position:fixed;/*描画固定*/
	z-index:-1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
}

#wrapper{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
}

/*ページ内をスムーズにスクロールする*/
html {
  scroll-behavior: smooth;
}
h3 {
  scroll-margin-top: 3vw;
}

/*メニューやに触ったさいの指定*/
a:hover{
  color: #96514D;
}
.menu-content li a:hover {
  color: #96514D;
}
a.prefecture:hover{
  color: inherit;
}

.webfont {
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
}
li{
  list-style-type: none;
}
a{
  text-decoration: none;
}

.navi{
  font-size: 1.5vw;
  display:flex;
  width:100%;
  position: fixed;
  z-index: 1;
  margin-top: 1vw;
}
.menu{
  width:50%;
  display: flex;
  margin-left: 10vw;
  gap: 0.5vw;
}
.search{
  text-align:right;
  width:15%;
  margin-left: 15vw;
}
.sear{
  display: flex;
}
.textbox{
  font-size: 1.5vw;
  background-color: rgba(255, 255, 255, 0);
  border: 0px;
  border-bottom: 1px solid #C89932;
  width: 15vw;
}
.textbox:focus{
  outline: 0;
}

.title{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
  position: absolute;
  z-index: 2;
  width: 20%;
  margin-left: 40%;
  margin-top: 10%;
}
h1{
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3vw;
}
.title_item{
  width: 22.5%;
  height: auto;
}
.pagetop {
    position: fixed;
    right: 1vw;
    bottom: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3vw;
    height: 3vw;
    transition: .3s;
    background: #96514D;
    opacity: 0;
    border-radius: 25%;
  }
  .pagetop img{
    width: 70%;
  }

  h4{
    font-size: 2.2vw;
    text-align: center;
    align-items: center;
    margin-bottom: 5%;
  }
  .border{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 3vw;
    border-top: 1.5px solid#C89932;
  }
  footer{
    /* margin-top: 10vw; */
    margin-bottom: 10vw;
    z-index: 2;
  }
  .f_item{
    display: flex;
    justify-content: center;
    font-size: 1.5vw;
    z-index: 2;
  }
  .f_about{
    width: 25%;
    z-index: 2;
    text-align: center;
  }
  .f_about p{
    margin-bottom: 2vw;
  }
  .f_pre{
    width: 25%;
    z-index: 2;
    text-align: center;
  }
  .f_pre p{
    margin-bottom: 2vw;
  }
  .link{
    width: 25%;
    z-index: 2;
  }
  .link p{
    margin-bottom: 2vw;
    text-align: center;
  }


/*以下ページ内容*/
h2{
  text-align: center;
  gap: 1vw;
  /* width: 40%;
  margin-left: 30%; */
  margin-top: 15%;
  font-size: 3vw;
}

/* 施設紹介 */
.name-kana{
  text-align: center;
  gap: 1vw;
  /* width: 30%;
  margin-left: 35%; */
  margin-top: -5.5%;
  margin-bottom: 3.5%;
  font-size: 1.2vw;
}
.build-01{
  border-radius: 2.5vw;
  width: 50%;
  height: 25vw;
  margin-left: 2%;
  margin-top: 3%;
  object-fit: cover;
}
.build-02{
  border-radius: 2.5vw;
  width: 55%;
  height: 10vw;
  margin-left: 7%;
  margin-top: 3%;
  margin-bottom: -10%;
  object-fit: cover;
}
.build-03{
  border-radius: 2.5vw 0 0 2.5vw;
  width: 35%;
  /* height: 30vw; */
  margin-left: 65%;
  margin-top: -45%;
  object-fit: cover;
}
.build-04{
  border-radius: 2.5vw;
  width: 70%;
  height: 35vw;
  margin-left: 15%;
  margin-top: 3%;
  object-fit: cover;
}
.build-05{
  border-radius: 2.5vw;
  width: 32%;
  /* height: 30vw; */
  margin-left: 65%;
  margin-top: -20%;
  object-fit: cover;
}
.build-06{
  border-radius: 2.5vw;
  width: 45%;
  height: 25vw;
  margin-left: 17%;
  margin-top: -17%;
  object-fit: cover;
}


h3{
  text-align: center;
  width: 30%;
  margin-left: 35%;
  margin-top: 10%;
  margin-bottom: 0%;
  font-size: 2.5vw;
  color: #C89932;
}
.point-item{
  width: 4%;
  margin-left: 48%;
  margin-top: 1.5%;
  margin-bottom: 1.5%;
}
.build{
  display: flex;
  gap: 7%;
  font-size: 1.5vw;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15%;
}
.build-about{
  width: 50%;
}
.build-detail{
  width: 50%;
}

.point-item-s{
  width: 20%;
  margin-left: 40%;
  margin-top: 1.5%;
  margin-bottom: 1.5%;
}
.sword{
  display: flex;
  gap: 7%;
  line-height: 10vw;
  font-size: 1.5vw;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15%;

}
.sword-about-01{
  width: 30%;
}
.sword-about-02{
  width: 30%;
}
.sword-name{
  display: flex;
  gap: 3vw;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.info-container{
  background-color: #3f3f3f;
}
.sns{
  width: 100%;
  font-size: 1.5vw;
  display: flex;
  margin-top: 5%;
}
.sns-container{
  width: 35%;
  margin-left: 7.5%;
}
.sns-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15%;
  margin-top: 5%;
}
.sns-icon a{
  display: inline-block;
  width: 15%;
}
.sns-icon img{
  width: 100%;
  height: auto;
  display: block;
}
h4{
  text-align: center;
  width: 100%;
  margin-top: 5%;
  font-size: 2.5vw;
  margin-bottom: 2.5%;
}
.cloud_g_l{
  width: 25%;
  margin-top: -15%;
  margin-bottom: -15%;
}
.cloud_g_r{
  width: 20%;
  margin-left: 80%;
  margin-bottom: -50%;
}
.access{
  width: 30%;
  margin-left: 10%;
  font-size: 1.5vw;
}
h5{
  text-align: center;
  margin-top: 5%;
  font-size: 2.5vw;
  margin-bottom: 2.5%;
  width: 100%;
}
.map{
  width: 45%;
  margin-top: 5%;
  margin-left: 5%;
  margin-bottom: 10%;
}
.info{
  display: flex;
}

/* 刀剣詳細 */
.sword-pic{
  width: 55%;
  border-radius: 2.5vw;
  margin-left: 35%;
  margin-top: 3%;
}
.attention{
  font-size: 1vw;
  margin-right: 10%;
  justify-content: end;
  display: flex;
}
.sword-info{
  display: flex;
  line-height: 1.5vw;
  font-size: 1.2vw;
  width: 50%;
  margin-bottom: 15%;
  margin-left: 10%;
  margin-top: 3%;
  background-color: #96514D;
  border-radius: 2.5vw;
  color: #ffe9b0;
  padding: 0.5% 2% 0.5% 2%;
}
.sword-info-01{
  width: 50%;
  justify-content: end;
  display: flex;
  margin-right: 5%;
}
.sword-info-02{
  width: 52%;
  justify-content: start;
  display: flex;
}
.s-title{
  width: 25%;
}
.s-info{
  margin-left: 5%;
  width: 70%;
}

.about-01{
  margin-top: 3%;
  margin-left: 10%;
  width: 35%;
}
.about-02{
  margin-top: -10%;
  margin-left: 55%;
  width: 35%;
}
.about-03{
  margin-top: 7%;
  margin-left: 20%;
  width: 60%;
  margin-bottom: 5%;
}
.about-contents{
  width: 100%;
  font-size: 1.5vw;
  margin-top: -1vw;
  line-height: 2.5vw;
  z-index: 2;
}
.toumon{
  width: 75%;
  height: auto;
  opacity: 10%;
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: -1;
}

.back{
  width: 35%;
  margin-left: 15%;
}