@charset "UTF-8";
* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Playfair Display", serif;
}

#loading {
  width: 100vw;
  height: 100vh;
  background-color: #9f2f2f;
  position: fixed;
  top: 0px;
  z-index: 9999;
}
#loading img {
  display: block;
  width: 50%;
  height: auto;
  margin-top: 300px;
  margin-right: auto;
  margin-left: auto;
}

.delay-fade-3 {
  animation: fade 5s;
  -webkit-animation: fade 5s;
}

.delay-fade-7 {
  animation: fade 7s;
  -webkit-animation: fade 7s;
}

.delay-fade-10 {
  animation: fade 10s;
  -webkit-animation: fade 10s;
}

html {
  width: 100%;
  /*hoverした際の移動*/
}
html .max-width {
  max-width: 1200px;
}
html body {
  width: 100%;
  margin: 0px;
  background-image: url("../img/background.png");
  background-size: cover;
}
html a {
  color: #f7f7f7;
  text-decoration: none;
}
html .open-btn {
  position: absolute;
  right: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
html .close-btn {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
html .right-btn {
  position: relative;
  font-size: 10px;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #9f2f2f;
  color: #fff;
  padding: 5px 20px 5px 15px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
html .right-btn:hover {
  background: #9c6262;
}
html .btnarrow1::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
html .btnarrow1:hover::after {
  right: 11px;
}
html .slick01 {
  width: 77%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  html .slick01 {
    display: none !important;
  }
}
html .slick01 li {
  width: 77%;
}
html .slick01 li img {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
}
html .humburger {
  display: none;
  width: 50px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #9f2f2f;
  border: #f7f7f7 1px solid;
}
html .humburger .line {
  text-align: center;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  height: 1px;
  background-color: white;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
html .humburger .line:nth-child(1) {
  position: absolute;
  top: 6px;
  left: 5px;
}
html .humburger .line:nth-child(2) {
  position: absolute;
  top: 14px;
  left: 5px;
}
html .humburger .line:nth-child(3) {
  position: absolute;
  bottom: 6px;
  left: 5px;
}
@media screen and (max-width: 769px) {
  html .humburger {
    display: block;
  }
}
html .open {
  border: none;
}
html .open .line:nth-child(1) {
  width: 26px;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
html .open .line:nth-child(2) {
  opacity: 0;
}
html .open .line:nth-child(3) {
  width: 26px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
html .menu {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
  top: 0px;
  left: 5000px;
  background-color: #9f2f2f;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
html .menu ul {
  margin-top: 200px;
}
html .menu ul a {
  text-decoration: none;
}
html .menu ul a li {
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-top: 30px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #f7f7f7;
}
html .menu ul a li:hover {
  border-bottom: #f7f7f7 1px solid;
}
@media screen and (max-width: 768px) {
  html .menu ul a li {
    font-size: 14px;
  }
}
html .slide {
  left: 0px;
}
html .fade-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
}
html .fade-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}
html .fade-bottom {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transition: opacity 1s, visibility 1s, transform 1s;
  -moz-transition: opacity 1s, visibility 1s, transform 1s;
  -ms-transition: opacity 1s, visibility 1s, transform 1s;
  -o-transition: opacity 1s, visibility 1s, transform 1s;
}
html .is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
html .modal {
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #9f2f2f;
  position: fixed;
  top: 0px;
  z-index: -200;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
html .modal .modal-inner {
  width: 70%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  background-color: white;
  color: black;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  html .modal .modal-inner {
    width: 90% !important;
  }
}
html .modal .modal-inner .modal-img {
  width: 70%;
  height: 50%;
  height: auto;
  max-height: 500px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: scroll;
  overflow: hidden;
  margin-top: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  html .modal .modal-inner .modal-img {
    width: 90% !important;
  }
}
html .modal .modal-inner .modal-img img {
  width: 100%;
  height: auto;
}
html .modal .modal-inner .modal-top {
  margin-top: 20px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  html .modal .modal-inner .modal-top {
    font-size: 16px;
  }
}
html .modal .modal-inner .modal-text {
  margin-top: 40px;
  margin-bottom: 30px;
  width: 90%;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  html .modal .modal-inner .modal-text {
    margin-top: 70px;
    font-size: 14px;
    overflow-y: unset;
  }
}
html .modal .close-btn {
  text-align: center;
  color: #f7f7f7;
  text-align: center;
  margin-top: 30px;
  border-bottom: 1px none #f7f7f7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
html .modal .close-btn:hover {
  border-bottom: 1px solid #f7f7f7;
}
html .modal-open {
  opacity: 1;
  z-index: 200;
}
html .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  color: #f7f7f7;
  background-color: black;
  opacity: 0;
  font-size: 36px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html .modal-bg p:hover {
  border-bottom: 1px solid #f7f7f7;
}
html .modal-bg:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  html .modal-bg p {
    font-size: 14px;
  }
}
html .bg {
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  opacity: 0.7;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  html .bg {
    padding-bottom: 30px;
  }
}
html .more-btn {
  width: 200px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  background-color: #4d4d4d;
  color: #f7f7f7;
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  html .more-btn {
    font-size: 14px;
    width: 150px;
    height: 35px;
    padding-top: 8px;
  }
}
html .top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  html .top {
    padding-top: 30px;
  }
}
html .top img {
  width: 22px;
  height: auto;
}
html .top .top-head {
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Playfair Display", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html .top .top-head {
    font-size: 20px;
  }
}
html .event-header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
html .event-header-bg img {
  width: 100%;
  height: auto;
}
html .event-header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
html .event-header-bg img {
  width: 100%;
  height: auto;
}
html .grave-header {
  position: absolute;
  top: 0px;
  width: 100%;
  height: auto;
}
html .grave-header img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
html .grave-header {
  background-image: url("../img/第二祖霊社.JPG");
  background-size: cover;
  background-position: 20%;
}
html .contact-header {
  background-image: url("../img/本殿彫刻.JPG");
  background-size: cover;
  background-position: center;
}
html header,
html .grave-header,
html .contact-header {
  width: 100%;
  height: 800px;
  min-height: 800px;
  position: relative;
  overflow-y: hidden;
}
html header .header-text,
html .grave-header .header-text,
html .contact-header .header-text {
  color: #f7f7f7;
  position: absolute;
  top: 300px;
  z-index: 5;
  right: 150px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  html header .header-text,
html .grave-header .header-text,
html .contact-header .header-text {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    right: 0px;
  }
}
@media screen and (max-width: 1000px) {
  html header .header-text,
html .grave-header .header-text,
html .contact-header .header-text {
    width: 70%;
  }
  html header .header-text .header-top,
html .grave-header .header-text .header-top,
html .contact-header .header-text .header-top {
    width: 100%;
    height: auto;
  }
  html header .header-text .header-top img,
html .grave-header .header-text .header-top img,
html .contact-header .header-text .header-top img {
    display: block;
    width: 100%;
    height: auto;
  }
}
html header .header-text p,
html .grave-header .header-text p,
html .contact-header .header-text p {
  font: 300 40px "Playfair Display", "serif";
  font-family: "Montserrat", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Playfair Display", serif;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
@media screen and (max-width: 945px) {
  html header .header-text p,
html .grave-header .header-text p,
html .contact-header .header-text p {
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  html header .header-text p,
html .grave-header .header-text p,
html .contact-header .header-text p {
    font-size: 16px;
  }
}
html .slider-wrap {
  display: block;
  position: absolute !important;
  top: 0px;
  z-index: -10;
  height: 800px;
  width: 100%;
  overflow: hidden;
}
html .slider-wrap .slide-item {
  height: 800px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
html .slider-wrap .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .slider-wrap .slide-item:nth-child(2) {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}
html .fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
html .header-nav {
  position: sticky;
  z-index: 100;
  top: 0px;
  top: 0px;
  width: 100%;
  height: 120px;
  background-color: #9f2f2f;
}
@media screen and (max-width: 768px) {
  html .header-nav {
    display: none;
  }
}
html .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 47px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
html .header-nav ul a {
  text-decoration: none;
}
html .header-nav ul a li {
  color: #f7f7f7;
  list-style: none;
  font: 100 25px, "serif";
  font-family: "Montserrat", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Playfair Display", serif;
  padding-bottom: 2px;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  border-bottom: none;
}
html .header-nav ul a li:hover {
  border-bottom: 1px solid #f7f7f7;
}
html .about {
  margin-top: 50px;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 70px;
}
html .about .text {
  width: 77%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  color: black;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  html .about .text {
    font-size: 14px;
  }
}
html .about .photo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 50px auto auto auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 100px;
}
html .about .photo .photo1,
html .about .photo .photo2,
html .about .photo .photo3 {
  width: 100%;
  height: auto;
}
html .about .photo .photo1 img,
html .about .photo .photo2 img,
html .about .photo .photo3 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  html .about .photo {
    display: none;
  }
}
html .about .bg {
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  opacity: 0.7;
  z-index: -10;
}
html .highlight {
  margin-top: 150px;
  height: auto;
}
html .highlight .monument {
  width: 77%;
  height: auto;
  display: grid;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 2%;
  grid-template-areas: "areaA areaA areaA areaB" "areaA areaA areaA areaC" "areaD areaE areaF areaF";
}
@media screen and (max-width: 768px) {
  html .highlight .monument {
    margin-top: 50px;
  }
}
html .highlight .monument .itemA {
  grid-area: areaA;
  position: relative;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemA img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .monument .itemB {
  grid-area: areaB;
  display: table;
  width: 100%;
  height: auto;
  position: relative;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemB .modal-bg {
  font-size: 30px;
}
html .highlight .monument .itemB img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .monument .itemC {
  grid-area: areaC;
  width: 100%;
  height: auto;
  position: relative;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemC .modal-bg {
  font-size: 30px;
}
html .highlight .monument .itemC img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .monument .itemD {
  position: relative;
  grid-area: areaD;
  width: 100%;
  height: auto;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemD .modal-bg {
  font-size: 30px;
}
html .highlight .monument .itemD img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .monument .itemE {
  position: relative;
  grid-area: areaE;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemE .modal-bg {
  font-size: 30px;
}
html .highlight .monument .itemE img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .monument .itemF {
  position: relative;
  grid-area: areaF;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .highlight .monument .itemF .modal-bg {
  font-size: 30px;
}
html .highlight .monument .itemF img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html .highlight .more-btn {
  margin-top: 60px;
}
html .history {
  position: relative;
  height: auto;
  margin-top: 150px;
  padding-bottom: 70px;
}
html .history .history-inner {
  width: 77%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
html .history .history-inner .inner-twin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
html .history .history-inner .inner-twin .inner-left {
  width: 40%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html .history .history-inner .inner-twin .inner-left img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin .inner-left {
    width: 77%;
    margin-right: auto;
    margin-left: auto;
  }
}
html .history .history-inner .inner-twin .inner-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin .inner-right {
    width: 77%;
    max-width: 77%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
}
html .history .history-inner .inner-twin .inner-right .history-top {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin .inner-right .history-top {
    font-size: 16px;
  }
}
html .history .history-inner .inner-twin .inner-right .history-text {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin .inner-right .history-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  html .history .history-inner .inner-twin {
    display: block;
  }
}
html .history .history-inner .more-btn {
  margin-top: 70px;
}
html .history .bg {
  width: 77%;
  margin-right: auto;
  margin-left: auto;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
html .event {
  margin-top: 150px;
  position: relative;
  padding-bottom: 70px;
}
html .event .event-inner {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
html .event .event-inner .event-twin {
  width: 100%;
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  html .event .event-inner .event-twin {
    padding-left: 20px;
    padding-right: 20px;
  }
}
html .event .event-inner .event-twin .left {
  width: 100px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html .event .event-inner .event-twin .left img {
  width: 100%;
  height: auto;
}
html .event .event-inner .event-twin .right {
  padding-top: 10px;
  width: 100%;
}
html .event .event-inner .event-twin .right .right-top {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html .event .event-inner .event-twin .right .right-top {
    font-size: 16px;
  }
}
html .event .event-inner .event-twin .right .right-text {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  html .event .event-inner .event-twin .right .right-text {
    margin-top: 10px;
    font-size: 14px;
  }
}
html .event .more-btn {
  margin-top: 70px;
}
html .event .bg {
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
html .grave {
  position: relative;
  margin-top: 150px;
  padding-bottom: 70px;
}
html .grave .grave-inner {
  width: 77%;
  margin-right: auto;
  margin-left: auto;
}
html .grave .grave-inner .grave-img {
  width: 77%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
html .grave .grave-inner .grave-img img {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}
html .grave .grave-inner .grave-text {
  width: 77%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  html .grave .grave-inner .grave-text {
    font-size: 14px;
    width: 100%;
  }
}
html .grave .more-btn {
  margin-top: 70px;
}
html .grave .bg {
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
html .contact {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 150px;
  padding-bottom: 70px;
}
html .contact .contact-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
html .contact .contact-inner .contact-twin {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-right: 50px;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin {
    display: block;
    margin-right: 20px;
    margin-left: 20px;
  }
}
html .contact .contact-inner .contact-twin .left {
  width: 50%;
  height: auto;
}
html .contact .contact-inner .contact-twin .left iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin .left {
    width: 90%;
    height: 200px;
    margin: 30px auto 30px auto;
  }
}
html .contact .contact-inner .contact-twin .right {
  text-align: left;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin .right {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
html .contact .contact-inner .contact-twin .right .contact-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: solid 1px #4d4d4d;
  padding-top: 10px;
  padding-bottom: 10px;
}
html .contact .contact-inner .contact-twin .right .contact-top .head {
  font-weight: bold;
}
html .contact .contact-inner .contact-twin .right .contact-top .text {
  position: absolute;
  left: 80px;
  font-size: 14px;
  color: #4d4d4d;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin .right .contact-top .text {
    font-size: 12px;
  }
}
html .contact .contact-inner .contact-twin .right .contact-top:first-child {
  border-top: #4d4d4d solid 1px;
}
html .contact .contact-inner .contact-twin .right .sns-top .head {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}
html .contact .contact-inner .contact-twin .right .sns-top a img {
  width: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin .right .sns-top a img {
    width: 30px;
  }
}
html .contact .contact-inner .contact-twin .right .sns-top .text {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  html .contact .contact-inner .contact-twin .right .sns-top .text {
    font-size: 14px;
  }
}
html .contact .more-btn {
  margin-top: 70px;
}
html footer {
  margin-top: 70px;
  width: 100%;
  height: 300px;
  background-color: #4d4d4d;
  color: #f7f7f7;
  text-align: center;
}
html footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  html footer .footer-top {
    gap: 5px;
  }
}
html footer .footer-top img {
  width: 24px;
}
html footer .footer-top p {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  html footer .footer-top p {
    font-size: 18px;
  }
}
html footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-decoration: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 20px;
  margin-left: 20px;
}
html footer ul li {
  color: #f7f7f7;
  text-decoration: none;
  list-style: none;
  margin-top: 50px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
html footer ul li:hover {
  border-bottom: 1px solid #f7f7f7;
}
html footer .copy-right {
  margin-top: 60px;
}
html .about-header {
  background-image: url("../img/本殿header.jpg");
  background-size: cover;
  background-position: center;
}
html .history-header {
  background-image: url("../img/鐘楼2.JPG");
  background-size: cover;
  background-position: center;
}
html .highlight-header-pc {
  background-image: url("../img/桜井神社伊勢えび彫刻2.JPG");
  background-size: cover;
  background-position: center;
  display: block;
}
@media screen and (max-width: 768px) {
  html .highlight-header-pc {
    display: none;
  }
}
html .highlight-header-sp {
  background-image: url("../img/遊歩道2縦.JPG");
  background-size: cover;
  background-position: center;
  display: none;
}
@media screen and (max-width: 768px) {
  html .highlight-header-sp {
    display: block;
  }
}
html .about-page .about-inner {
  margin-top: 150px;
  position: relative;
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  html .about-page .about-inner {
    width: 90%;
  }
}
html .about-page .about-inner .inner-head {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 77%;
}
html .about-page .about-inner .about-topic .top .top-head {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  html .about-page .about-inner .about-topic .top .top-head {
    font-size: 16px;
  }
}
html .about-page .about-inner .about-topic .topic-contents {
  width: 77%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  html .about-page .about-inner .about-topic .topic-contents {
    font-size: 14px;
  }
}
html .about-page .about-inner .about-topic .topic-contents .topic-img {
  width: 40%;
  height: auto;
}
html .about-page .about-inner .about-topic .topic-contents .topic-img img {
  width: 100%;
  height: auto;
}
html .about-page .about-inner .about-topic .topic-contents .topic-text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  html .about-page .about-inner .about-topic .topic-contents .topic-text {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  html .about-page .about-inner .about-topic .topic-contents {
    display: block;
    width: 90%;
  }
  html .about-page .about-inner .about-topic .topic-contents .topic-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  html .about-page .about-inner .about-topic .topic-contents .topic-text {
    width: 77%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  html .about-page .about-inner .about-topic .topic-contents .topic-text {
    font-size: 14px;
    width: 90%;
  }
}
html .about-page .about-inner .white-bg {
  z-index: -10;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  opacity: 0.9;
}
html .griditem {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 2%;
  height: 120vw;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "area1 area1 area1 area1" "area1 area1 area1 area1" "area2 area4 area5 area6" "area3 area4 area5 area6" "area7 area8 area8 area9" "area10 area10 area11 area11";
}
html .griditem .item1 {
  grid-area: area1;
  width: 100%;
  height: auto;
  background-image: url("../img/桜井神社2.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item2 {
  grid-area: area2;
  width: 100%;
  height: auto;
  background-image: url("../img/結びの木2.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item3 {
  grid-area: area3;
  width: 100%;
  height: auto;
  background-image: url("../img/結びの木看板.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item4 {
  grid-area: area4;
  width: 100%;
  height: auto;
  background-image: url("../img/仁王像左.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item5 {
  grid-area: area5;
  width: 100%;
  height: auto;
  background-image: url("../img/仁王像右.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item6 {
  grid-area: area6;
  width: 100%;
  height: auto;
  background-image: url("../img/遊歩道2縦.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item7 {
  grid-area: area7;
  width: 100%;
  height: auto;
  background-image: url("../img/ソテツ庭園.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item8 {
  grid-area: area8;
  width: 100%;
  height: auto;
  background-image: url("../img/末社3社.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item9 {
  grid-area: area9;
  width: 100%;
  height: auto;
  background-image: url("../img/桜井神社伊勢えび彫刻2.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item10 {
  grid-area: area10;
  width: 100%;
  height: auto;
  background-image: url("../img/宝物館内2.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .griditem .item11 {
  grid-area: area11;
  width: 100%;
  height: auto;
  background-image: url("../img/宝物館.JPG");
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
html .description {
  position: absolute;
  width: 120px;
  height: 30px;
  background-color: #4d4d4d;
  color: #f7f7f7;
  top: 0px;
  text-align: center;
  padding-top: 3px;
  opacity: 0.8;
  display: block;
}
@media screen and (max-width: 768px) {
  html .description {
    font-size: 10px;
    width: 70px;
    height: 20px;
  }
}
@media screen and (max-width: 400px) {
  html .description {
    font-size: 8px !important;
    width: 70px;
    height: 20px;
  }
}
html .history-page .inner {
  width: 80%;
  height: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  html .history-page .inner {
    width: 90%;
  }
}
html .history-page .inner .top {
  margin-bottom: 30px;
}
html .history-page .inner .top .top-logo {
  width: 30px;
}
html .history-page .inner p {
  text-align: center;
  font-weight: bolder;
}
html .history-page .inner .text {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
html .history-page .inner .list {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4d4d4d;
}
html .history-page .inner .list .list-head {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}
html .history-page .inner .list .list-head .history-top {
  width: 25px;
  padding-top: 3px;
}
html .history-page .inner .list .list-head .history-top img {
  width: 100%;
  height: auto;
}
html .history-page .inner .list .list-head .history-date {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html .history-page .inner .list .list-head .history-date {
    font-size: 12px;
  }
}
html .history-page .inner .list .list-head .history-head {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  html .history-page .inner .list .list-head .history-head {
    font-size: 12px;
  }
}
html .history-page .inner .list .list-hidden {
  width: 90%;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  display: none;
}
html .history-page .inner .list .list-hidden .list-text {
  width: 100%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  html .history-page .inner .list .list-hidden .list-text {
    gap: 15px;
  }
}
html .history-page .inner .list .list-hidden .list-text .text {
  text-align: left;
  width: 100%;
  max-height: 100px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  html .history-page .inner .list .list-hidden .list-text .text {
    font-size: 10px;
  }
}
html .history-page .inner .list .list-hidden .list-text .text .history-head {
  font-size: 20px;
}
html .history-page .inner .list .list-hidden .list-text .img {
  width: clamp(150px, 100%, 250px);
}
html .history-page .inner .list .list-hidden .list-text .img img {
  width: 100%;
}
html .event-page header {
  background-image: url("../img/参道.JPG");
  background-size: cover;
  background-position: center;
}
html .event-page .event .event-inner .top .top-logo {
  width: 40px;
}
html .event-page .event .event-inner .event-list {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  border-bottom: #4d4d4d 1px solid;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html .event-page .event .event-inner .event-list {
    padding-left: 5px;
    padding-right: 5px;
  }
}
html .event-page .event .event-inner .event-list .open-btn {
  top: 10px;
}
html .event-page .event .event-inner .event-list .month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html .event-page .event .event-inner .event-list .month .month-img {
  width: 30px;
}
html .event-page .event .event-inner .event-list .month .month-img img {
  width: 100%;
}
html .event-page .event .event-inner .event-list .month .month-text {
  font-size: 20px;
  font-weight: bold;
}
html .event-page .event .event-inner .event-list .month .month-text:after {
  content: "~睦月~";
  font-size: 18px;
  color: #9f2f2f;
  margin-left: 10px;
}
html .event-page .event .event-inner .event-list .list-hidden {
  display: none;
}
html .event-page .event .event-inner .event-list .list-hidden .month-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
html .event-page .event .event-inner .event-list .list-hidden .month-list .left {
  width: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 50%;
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  html .event-page .event .event-inner .event-list .list-hidden .month-list .left {
    margin-left: 10px;
  }
}
html .event-page .event .event-inner .event-list .list-hidden .month-list .left p {
  width: 133px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  html .event-page .event .event-inner .event-list .list-hidden .month-list .left p {
    font-size: 12px;
  }
}
html .event-page .event .event-inner .event-list .list-hidden .month-list .left .right-btn {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #9f2f2f;
  color: #fff;
  padding: 5px 20px 5px 15px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
html .event-page .event .event-inner .event-list .list-hidden .month-list .left .right-btn:hover {
  background: #a36363;
}
@media screen and (max-width: 768px) {
  html .event-page .event .event-inner .event-list .list-hidden .month-list .left .right-btn {
    font-size: 10px;
    padding: 3px 15px 1px 13px;
  }
}
html .event-page .event .event-inner .event-list .list-hidden .month-list .right {
  width: 40%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow-y: hidden;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (max-width: 768px) {
  html .event-page .event .event-inner .event-list .list-hidden .month-list .right {
    font-size: 12px;
    height: 50px;
    overflow-y: scroll;
  }
}
html .feb:after {
  content: "~如月~" !important;
}
html .mar:after {
  content: "~弥生~" !important;
}
html .apr:after {
  content: "~卯月~" !important;
}
html .may:after {
  content: "~皐月~" !important;
}
html .may:after {
  content: "~皐月~" !important;
}
html .jun:after {
  content: "~水無月~" !important;
}
html .jul:after {
  content: "~文月~" !important;
}
html .aug:after {
  content: "~葉月~" !important;
}
html .sep:after {
  content: "~長月~" !important;
}
html .oct:after {
  content: "~神無月~" !important;
}
html .nov:after {
  content: "~霜月~" !important;
}
html .sep:after {
  content: "~師走~" !important;
}
html .slide-up {
  opacity: 1 !important;
  transform: translateY(0px) !important;
  -webkit-transform: translateY(0px) !important;
  -moz-transform: translateY(0px) !important;
  -ms-transform: translateY(0px) !important;
  -o-transform: translateY(0px) !important;
}
html .sns-inner a .more-btn {
  margin-top: 30px;
}
html .post-text {
  font-size: 14px;
  font-weight: bold;
  margin-top: 60px;
  text-align: center;
}
html .contact-header-bg {
  position: absolute;
  top: 0px;
}
html .contact-header-bg img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
html .post {
  margin-top: 30px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
html .btnarrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
html .btnarrow:hover::after {
  right: 11px;
}
@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
html .slick-animation {
  -webkit-animation: fadezoom 5s 0s forwards;
          animation: fadezoom 5s 0s forwards;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.space {
  width: 80%;
  max-width: 1440px;
  height: 50vw;
  max-height: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 200px;
  margin-bottom: 650px;
}
.space .ttl {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.space p {
  margin-top: 30px;
  font-size: 20px;
  margin-bottom: 100px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .space p {
    font-size: 14px;
    margin-bottom: 50px;
  }
}
.space .space-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.space .space-inner .img1,
.space .space-inner .img2,
.space .space-inner .img3,
.space .space-inner .img4 {
  position: absolute;
  width: 40%;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.space .space-inner .img1 img,
.space .space-inner .img2 img,
.space .space-inner .img3 img,
.space .space-inner .img4 img {
  width: 100%;
  height: auto;
  display: block;
}
.space .space-inner .img1 {
  left: 80px;
}
.space .space-inner .img2 {
  right: 5%;
  top: 10%;
}
.space .space-inner .img3 {
  bottom: 0%;
  left: 0px;
}
.space .space-inner .img4 {
  bottom: -35%;
  right: 30%;
}/*# sourceMappingURL=style.css.map */