*{
    box-sizing: border-box;
    min-height:0;
    min-width : 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    letter-spacing: .05em;
    color: #707070;
    font-family: YuMincho,    /* Mac用 */
	'Yu Mincho', /* Windows用 */
	serif;
    line-height: 1.7;
}

img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    height: auto;
    box-sizing: border-box;
    object-fit: cover;
    object-position: 50% 50%;
}

a {
    text-decoration: none;
}



/*      スマホ用のcss 600px以下      */
@media screen and (max-width:600px){
.br-pc {
    display: none;
}
.pcHeader {
    display: none;
}
.pc-nav {
    display: none;
}

/*      ヘッダー         */
.site-header{
}

.site-header.fixed{
    position: fixed;
    top: 0;
}
.site-logo img{
    height: 60px;
    width: auto;
    display: block;
    margin: auto;
}

.gnav img {
    height: 60px;
    width: auto;
}

.gnav__menu{
    display: flex;
}
.gnav__menu__item{
}
.gnav__menu__item a{
    color: #333;
    text-decoration: none;
}
.hero{
    width: auto;
    height: 100vh;
    overflow: hidden;
    position: relative;
} 
.heroTitle{
    height: auto;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
    }
.heroTitle img {
    height: auto;
    width: 100%;
}
.slide-item {
    width: auto;
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-color: black;
}
.slide-item img {
    left: 50%;
    height: 100vh;
    width: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}
.header-change{
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: fixed;
    top: -60px;
    transition: .5s;
    width: 100%;
    height: 60px;
    z-index: 99;
}
.header-change.show{
    top: 0;
}
.header-change .gnav__menu__item a{
    color: #fff;
    text-decoration: none;
}
.pc-nav {
    display: none;
}
.sp-nav {
    display: flex;
    width: 45%;
    justify-content: space-between;
    z-index: 99;
}
.top-bottun {
    width: 100%;
    height: 50px;
    color: white;
    line-height: 60px;
    display: block;
    text-align: center;
    z-index: 99;
    padding-left: 20px;
}
.scrolldown4{
    position:absolute;
    bottom:20px;
    right:50%;
    animation: arrowmove 1s ease-in-out infinite;
}
  
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
}

/*Scrollテキストの描写*/
.scrolldown4 span{
  position: absolute;
  left:-20px;
  bottom:50px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
} 
/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 50px;
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}

.scrolldown4:after{
    content:"";
    /*描画位置*/
    position: absolute;
    bottom:50px;
    right:0;
    /*矢印の形状*/
    width:2px;
    height: 60px;
    background:#eee;
}
  

/*      ここからハンバーガーメニュー         */
.menu-btn {
    position: fixed;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-color: white;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #333;
    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;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: rgba(255,255,255,0.9);
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #518665;
    list-style: none;
    width: 90%;
    margin: auto;
}
.menu-content ul li:nth-of-type(1) {
    border-top: solid 1px #518665;
}
.menu-content ul li a {
    display: block;
    width: 90%;
    font-size: 15px;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding:10px;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #518665;
    border-right: solid 2px #518665;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 17px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.phone {
    color: #518665;
    display: block;
    width: 200px;
    margin:0 auto;
    font-size: 25px;
}
.phone i {
    margin-right: 20px;
}
.contact-bottun {
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #89B59A;
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    margin: 10px auto;
    text-align: center;
}
.fa-envelope {
    margin-right: 10px;
}
.header-sns {
    display: flex;
    width: 70%;
    margin: 30px auto 0;
    justify-content: space-around;
}
.border-radius {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    align-items: center;
}
.border-radius img {
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    margin: auto;
    opacity: 1;
}

.header-info {
    width: 90%;
    margin:20px auto 10px;
    text-align: center;
}
.header-infoTemple {
    font-size: 22px;
}
.headerMessage {
    font-size: 12px;
    margin: 30px auto;
    text-align: center;
}
/*      ここまでハンバーガーメニュー */


/* 　共通CSS */

main {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.8;
}

section {
    width: 100%;   
    padding: 60px 0 0 0; 
}

.container {
    width: 95%;
    margin: auto;
    text-align: center;
}

.Eng-title{
    font-size: 14px;
    color: #89B59A;
    opacity: .8;
}
.sec-title {
    font-size: 25px;
    color: #333;
    font-weight: 400;
}
.titleContainer {
    text-align: center;
}
hr {
    width: 55px;
    height: 5px;
    margin-top: 15px;
}
.secMessage {
    margin: 30px auto;
    color: #333;
    width: 90%;
}

.more-bottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #89B59A;
    display: block;
    width: 300px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}

/*矢印と下線の形状*/
.more-bottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#fff;
}

.more-bottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#fff;
    transform: rotate(35deg);
}
/*      トップページ　お知らせ   */

/* archive.phpと共通 */
.newsList {
    width: 90%;
    margin: auto;
    text-align: left;
}
.newsitem {
    align-items: center;
    border-bottom: 1px solid #666;
    padding: 10px 20px;
    position: relative;
}
.newsitem:nth-of-type(1) {
    border-top:1px solid #666;
}
.newsitem p {
    display: block;
    font-size: 16px;
    color: #707070;
}
.newsTitle {
    display: block;
    color: #707070;
}

/*    トップページ 　about     */
.about {
    text-align: center
}

.infomationList {
    width: 100%;
}
.infomationItem {
    width: 100%;
    max-width: 600px;
    margin: auto;
    height: 600px;
    position: relative;
    color: #fff;
}

.infomationItem-bg {
    background-color: rgba(0,0,0,0.6);
    height: 600px;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.info-tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 25px;
}
.info-Eng {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 18px;
    display: block;
    width: 100%;
}
.info-mess {
    display: block;
    width: 100%;
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -70%);
    -webkit-transform: translate(-50%, -70%);
    -ms-transform: translate(-50%, -70%);
    font-size: 16px;
}
.about-bottun {
    width: 300px;
    border: 3px solid #fff;
    display: block;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    -webkit-transform: translate(-50%, -90%);
    -ms-transform: translate(-50%, -90%);
    font-size: 18px;
    transition: .3s;
}
.infomationItem:nth-of-type(1) {
    background-image: url(../img/about-1.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(2) {
    background-image: url(../img/about-2.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(3) {
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(4) {
    background-image: url(../img/about-4.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
/*    トップページ　インフォメーション　 */
.accessBox {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.access-left {
    width: 100%;
    text-align: center;
    order: 2;
}
.access-right {
    width: 90%;
    margin: 0 auto 30px;
    order: 1;
}
.access-right iframe{
    width: 100%;
    height: 200px;

}
.jiin-name {
    font-size: 24px;
    margin-bottom: 30px;
}

/*      フッター         */
.footer {
    width: 100%;
    height: 400px;
    background-color: #F2EFD4;
    padding: 50px 0 30px;
}
.footerLogo {
    width: 300px;
    height: auto;
    margin: auto;
}
.sns-icons {
    width: 250px;
    display: flex;
    margin: 30px auto;
    justify-content: space-between;
}
.footerInfo {
    text-align: center;
    margin-bottom: 20px;
}
.copyright-2021 {
    font-size: 14px;
    color: #000;
    text-align: center;
}
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius: 50%;
    border: 2px solid #333;
    width: 75px;
    height: 75px;
    color: #333;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
}
  
  #page-top a:hover{
    background: #333;
    border: #fff 2px solid;
    color: #fff;
}
  
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:20px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#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);
  }
}
/*   page-about.php  */

.eyecatch{
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-image: url(../img/eyecatch.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
} 
.pageTitle{
    text-align: center;
    height: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
    }
.pageTitle p {
    font-size: 30px;
    color: #fff;
}
.boxTitle {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.boxTypeA {
    width: 100%;
    margin: 50px auto;
}
.boxTypeA-image {
    width: 90%;
    max-width: 400px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeA-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeA-mess {
    width: 85%;
    margin: auto;
    max-width: 500px;
}
.boxTypeB {
    width: 100%;
    margin: 50px auto;
}
.boxTypeB-image {
    width: 90%;
    max-width: 400px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeB-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeB-mess {
    width: 85%;
    margin: auto;
}
.boxTypeC {
    width: 100%;
    margin: 50px auto;
}
.boxTypeC-image {
    width: 90%;
    max-width: 400px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeC-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeC-mess {
    width:85%;
    margin: auto;
}
.jushoku-sign {
    width: 200px;
    margin: -20px auto 70px;
}
.window {
    width: 100%;
    height: 200px;
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*      境内を歩く　page-walking.php       */

.mapList {
    width: 100%;
    margin: 50px auto;
}

.mapItem {
    width: 100%;
    margin:0 auto 50px;
    display: flex;
    flex-direction: column;
}
.mapTitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
    text-align: center;
}
.mapDesc {
    width: 85%;
    margin: auto;
}
.mapImage {
    width: 90%;
    height: 30vh;
    margin:0 auto 20px;
    overflow: hidden;
}

.eventMess {
    text-align: center;
}

.tableEvent-PC {
   display: none;
}
.tableEvent-SP {
    width: 95%;
    max-width: 500px;
    margin: auto;
}
tr {
    width: 100%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.month {
    width: 20%;
    text-align: center;
    font-size: 18px;
}
.eventName {
    font-size: 20px;
    width: 80%;
    text-align: left;
    padding: 15px;
}
.eventDesc {
    font-size: 16px;
    width: 100%;
    line-height: 1.6;
    margin-top: 10px;
}
.eventMess {
    margin-top: 30px;
}
#center {
    text-align: center;
}
.slider {
    width: 300px;
    height: 180px;
    margin: 50px auto 0;
}
.gallery-item{
    width: 300px;
    height: 180px;
    margin: auto;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.thumbnail {
    width: 80%;
    margin:  10px auto 100px;
}
.thumbnail-img {
    width: 30%;
    height: 50px;
    margin: 1%;
    background: #000;
    overflow: hidden;
}
.thumbnail-img img {
    width: 100%;
    height: 100%;
}
.thumbnail-img img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.thumbnail-img.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.slider .slick-prev:before {
    display: none;
}
.slider .slick-next:before {
    display: none;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.boxTitle img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.houyou-flow {
    margin-bottom: 150px;
}

.houyouFlow-title {
    padding-top: 30px;
}

.houyouBox {
    align-items: center;
    text-align: center;
    width:90%;
    margin: auto;
}
.houyouBox p {
    text-align: center;
}
.houyou {
    margin-bottom: 50px;
}
#flowImage {
    margin: 0 auto;
}
.houyouFlow-title {
    margin: 0;
}
.houyouFlow {
    width: 100%;
    margin: 30px auto;
}
.Vertical-line {
    height: 30px;
    width: 3px;
    margin: auto;
    background-color: #B5B5B5;
}

.mapBox {
    width: 90%;
    margin: 30px auto;
}
.accessMap {
    width: 100%;
    height: 200px;
    margin: auto;
}
.accessInfo {
    text-align: center;
    margin-bottom: 50px;
}
.accessName {
    font-size: 24px;
    margin-bottom: 10px;
}
.accessMetho {
    text-align: center;
    margin-bottom: 100px;
}
.accessMetho h4 {
    border: 1px solid #707070;
    width: 90%;
    margin: auto;
    display: inline-block;
    padding: 15px 30px;
    margin-top: 40px;
    font-size: 20px;
}
.accessMetho p {
    margin-top: 20px;
}

.archive {
    margin-bottom: 30px;
}

.page_navi {
    text-align: center;
    font-size: 16px;
	 margin-bottom:50px;
	font-weight:bold;
}

.page_navi li {
    display: inline;
    list-style: none;
	margin:0 5px;
}

.page_navi li.current span {
	text-align:center;
    background: #89B59A;
    color: #fff;
    display: inline-block;
    height:45px;
    width: 45px;
    line-height: 45px;
}

.page_navi li a {
    border: solid 1px #89B59A;
    color: #89B59A;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-decoration: none;
    transition: 0.5s;
	text-align:center;
}

.page_navi li a:hover {
    opacity: 0.5;
	background-color:#89B59A;
	color:#fff;
}

.singleBox {
    width: 90%;
    margin: auto;
}
.singleDaily {
    text-align: center;
    font-size: 15px;
    margin-top: 50px;
    margin-bottom: 10px;
}
.singleBox h3 {
    text-align: center;
    font-size: 20px;
    color: black;
}
.singleMess {
    width: 100%;
    margin: 30px auto 0;
}
.singleBottun {
    width: 90%;
    margin: 0 auto 50px;
    display: flex;
}

.prevBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 150px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    margin: 50px auto;
    text-align: center;
}
.prevBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.prevBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:10%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}

.prevBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    left:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(-35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.nextBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 150px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    margin: 50px auto;
    text-align: center;
}
.nextBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.nextBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}

.nextBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

.contactNumber {
    font-size: 24px;
    color: black;
    text-align: center;
}
.contactForm {
		width:85%;
		margin:auto;
	padding-top:30px;
}
	.contactForm input{
		width:100%;
		height:60px;
		background:#EAEAEA;
		border:none;
		margin:10px auto 30px;
		padding:3px 20px;
	}
	.contactForm textarea {
		width:100%;
		margin:10px auto 30px;
		background:#EAEAEA;
		border:none;
		padding:10px 20px;
	}
	.wpcf7-submit {
		width:300px !important;
		margin:0px auto 50px !important;
		background:#333333 !important;
		border:none;
		color:white;
		display:block !important;
	}
}

/*      タブレット　width 601px ~ 1023px */
@media screen and (min-width:601px) and (max-width:1023px) {
.spHeader {
    display: none;
}
.pc-nav {
    display: none;
}
/*      ヘッダー         */
.site-header{
    display: none;
}
  
.site-header.fixed{
    position: fixed;
    top: 0;
    }
.site-logo {
    width: 20%;
}
.site-logo img{
    height: 40px;
    width: auto;
    padding-left:20px;
    display: block;
    margin: auto;
    }
.gnav{
    width: 80%;
    display: flex;
    margin-left:15px;
    font-size: 15px;
    padding-right: 20px;
    padding-left: 30px;
    justify-content: space-between;
}
.gnav a{
    color: #333;
    text-decoration: none;
    margin-left: 20px;
}
.hero{
    width: auto;
    height: 100vh;
    overflow: hidden;
    position: relative;
} 
.heroTitle{
    height: auto;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
}
.heroTitle img {
    height: auto;
    width: 100%;
}
.slide-item {
    width: auto;
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-color: black;
}
.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.4;
}
.sns-icons {
    display: none;
}
.border-radius {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    align-items: center;
}
.border-radius img {
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    margin: auto;
    opacity: 1;
}
.header-change{
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: fixed;
    top: -80px;
    transition: .5s;
    width: 100%;
    height: 80px;
    z-index: 99;
}
.header-change.show{
    top: 0;
}
.header-change .gnav__menu__item a{
    color: #fff;
    text-decoration: none;
}
.pc-nav {
    display: none;
}
.sp-nav {
    display: flex;
    background-color: #fff;
    width: 45%;
    justify-content: space-between;
    z-index: 99;
}
.top-bottun {
    width: 200px;
    height: 80px;
    color: white;
    line-height: 60px;
    display: block;
    text-align: center;
    z-index: 99;
    padding-left: 50px;
}
.top-bottun img {
    height: 60px;
    width: auto;
}
/*      ここからハンバーガーメニュー         */
.menu-btn {
    position: fixed;
    right: 30px;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-color: white;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #333;
    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;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: rgba(255,255,255,0.9);
    transition: all 0.5s;/*アニメーション設定*/
    padding-top: 100px;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 2px #518665;
    list-style: none;
    width: 80%;
    margin: auto;
}
.menu-content ul li:nth-of-type(1) {
    border-top: solid 2px #518665;
}
.menu-content ul li a {
    display: block;
    width: 80%;
    font-size: 16px;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding:15px;
    padding-left: 30px;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #518665;
    border-right: solid 2px #518665;
    transform: rotate(45deg);
    position: absolute;
    right: -30px;
    top: 23px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.phone {
    color: #518665;
    display: block;
    width: 500px;
    margin:0 auto;
    font-size: 35px;
    text-align: center;
}
.phone i {
    margin-right: 20px;
}
.contact-bottun {
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #89B59A;
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    margin: 10px auto;
    text-align: center;
}
.fa-envelope {
    margin-right: 10px;
}
.header-sns {
    display: flex;
    width: 60%;
    margin: 50px auto 0;
    justify-content: space-around;
}
.border-radius {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    align-items: center;
}
.border-radius img {
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    margin: auto;
    opacity: 1;
}
    
.header-info {
    width: 90%;
    margin:50px auto 20px;
    text-align: center;
}
.header-infoTemple {
    font-size: 26px;
}
.headerMessage {
    font-size: 15px;
    margin: 30px auto;
    text-align: center;
}

/*      ここまでハンバーガーメニュー */

/* 　共通CSS */
.scrolldown4{
    position:absolute;
    bottom:100px;
    right:50%;
    animation: arrowmove 1s ease-in-out infinite;
}
      
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
     0%{bottom:1%;}
     50%{bottom:3%;}
    100%{bottom:1%;}
}

/*Scrollテキストの描写*/
.scrolldown4 span{
    position: absolute;
    left:-20px;
    bottom:100px;
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
} 
/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    position: absolute;
    bottom: 100px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}
      
.scrolldown4:after{
    content:"";
    /*描画位置*/
    position: absolute;
    bottom:100px;
    right:0;
    /*矢印の形状*/
    width:2px;
    height: 70px;
    background:#eee;
}
      
/* 　共通CSS */
main {
    overflow: hidden;
}
    
section {
    width: 100%;   
    padding: 100px 0 0 0; 
}
    
.container {
    width: 100%;
    margin: auto;
    text-align: center;
}
.titleContainer {
    text-align: center;
}
.Eng-title{
    font-size: 20px;
    color: #89B59A;
    opacity: .8;
}
.sec-title {
    font-size: 35px;
    color: #333;
    font-weight: 400;
}
hr {
    width: 55px;
    height: 5px;
    margin-top: 15px;
}
.secMessage {
    margin: 30px auto 50px;
    color: #333;
    width: 600px;
}
.br-sp {
    display: none;
}
.more-bottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #89B59A;
    display: block;
    width: 300px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}
  
/*矢印と下線の形状*/
.more-bottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
}
  
.more-bottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#fff;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.more-bottun:hover {
    opacity: .7;
}

.more-bottun:hover::before{
    left:25%;
    background-color: #fff;
}

.more-bottun:hover::after{
    right:5%;
    background-color: #fff;
}

/*      トップページ　お知らせ */

.newsList {
    width: 80%;
    margin: auto;
}
.newsitem {
    height: 62px;
    border-bottom: 1px solid #666;
    padding: 0 30px;
}
.newsitem:nth-of-type(1) {
    border-top:1px solid #666;
}
.newsitem a {
    display: flex;
    align-items: center;
    line-height: 62px;
    color: #707070;
}
.newsitem a:hover {
    opacity: .7;
}
.newsitem p {
    display: block;
    margin-right: 50px;
    font-size: 18px;
    text-align: left;
}
.daily {
    width: 15%;
    color: #707070;
}
.newsTitle {
    width: 85%;
    display: block;
    color: #707070;
}

/*    トップページ　インフォメーション　 */

.about {
    width: 100%;
    text-align: center;
}

.infomationList {
    width: 100%;
}
.infomationItem {
    width: 100%;
    max-width: 2000px;
    margin: auto;
    height: 600px;
    position: relative;
    color: #fff;
    font-size: 30px;
}

.infomationItem-bg {
    background-color: rgba(0,0,0,0.4);
    height: 600px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    transition: 0.5s;
}
.infomationItem-bg:hover {
    background-color: rgba(0,0,0,0.7);
    transition: 0.5s;
}

.info-tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.info-Eng {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 24px;
}
.info-mess {
    width: 90%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
    -webkit-transform: translate(-50%, -70%);
    -ms-transform: translate(-50%, -70%);
    font-size: 22px;
}
.about-bottun {
    width: 300px;
    border: 3px solid #fff;
    display: block;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(255,255,255,0.3);
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    -webkit-transform: translate(-50%, -90%);
    -ms-transform: translate(-50%, -90%);
    font-size: 18px;
    transition: .3s;
}


.infomationItem:nth-of-type(1) {
    background-image: url(../img/about-1.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(2) {
    background-image: url(../img/about-2.jpg);
    background-position: center;
    background-repeat: repeat;
      background-size: cover;
}
.infomationItem:nth-of-type(3) {
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(4) {
    background-image: url(../img/about-4.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/*    トップページ　インフォメーション　 */
.accessBox {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.access-left {
    width: 100%;
    text-align: center;
    order: 2;
}
.access-right {
    width: 90%;
    margin: 0 auto 30px;
    order: 1;
}
.access-right iframe{
    width: 600px;
    height: 250px;

}
.jiin-name {
    font-size: 24px;
    margin-bottom: 30px;
}
  
/*      フッター         */
.footer {
    width: 100%;
    height: 400px;
    background-color: #F2EFD4;
    padding: 50px 0 30px;
}
.footerLogo {
    width: 300px;
    height: auto;
    margin: auto;
}
.sns-icons {
    width: 200px;
    display: flex;
    margin: 30px auto;
    justify-content: space-between;
}
.footerInfo {
    text-align: center;
    margin-bottom: 20px;
}
.copyright-2021 {
    font-size: 14px;
    color: #000;
    text-align: center;
}
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius: 50%;
    border: 2px solid #333;
    width: 100px;
    height: 100px;
    color: #333;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
}
  
#page-top a:hover{
    background: #333;
    border: #fff 2px solid;
    color: #fff;
}
  
/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom:20px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}
    
/*　上に上がる動き　*/

#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);
  }
}
  
/*   page-about.php  */

.eyecatch{
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-image: url(../img/eyecatch.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
} 
.pageTitle{
    text-align: center;
    height: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
    }
.pageTitle p {
    font-size: 30px;
    color: #fff;
}
.boxTitle {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.boxTypeA {
    width: 100%;
    margin: 50px auto;
}
.boxTypeA-image {
    width: 600px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeA-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeA-mess {
    margin: auto;
    width: 600px;
}
.boxTypeB {
    width: 100%;
    margin: 50px auto;
}
.boxTypeB-image {
    width: 600px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeB-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeB-mess {
    width: 600px;
    margin: auto;
}
.boxTypeC {
    width: 100%;
    margin: 50px auto;
}
.boxTypeC-image {
    width: 600px;
    height: 30vh;
    margin:0 auto 30px;
    overflow: hidden;
}
.boxTypeC-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeC-mess {
    width:600px;
    margin: auto;
}
.jushoku-sign {
    width: 300px;
    margin: -20px auto 70px;
}
.window {
    width: 100%;
    height: 300px;
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*      境内を歩く　page-walking.php       */

.mapList {
    width: 100%;
    margin: 50px auto;
}

.mapItem {
    width: 100%;
    margin:0 auto 70px;
    display: flex;
    flex-direction: column;
}
.mapTitle {
    font-size: 26px;
    margin-bottom: 20px;
    color: black;
    text-align: center;
}
.mapDesc {
    width: 600px;
    margin: auto;
}
.mapImage {
    width: 600px;
    height: 30vh;
    margin:0 auto 20px;
    overflow: hidden;
}
.eventMess {
    text-align: center;
}

.eventMess {
    text-align: center;
}

.tableEvent-PC {
   display: none;
}
.tableEvent-SP {
    width: 600px;
    margin: auto;
}
tr {
    width: 100%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.month {
    width: 20%;
    text-align: center;
    font-size: 18px;
}
.eventName {
    font-size: 20px;
    width: 80%;
    text-align: left;
    padding: 15px;
}
.eventDesc {
    font-size: 16px;
    width: 100%;
    line-height: 1.6;
    margin-top: 10px;
}
.eventMess {
    margin-top: 30px;
}
#center {
    text-align: center;
}
.slider {
    width: 600px;
    height: 300px;
    margin: 50px auto 0;
}
.gallery-item{
    width: 600px;
    height: 300px;
    margin: auto;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.thumbnail {
    width: 600px;
    margin: 30px auto 100px;
}
.thumbnail-img {
    width: 50px;
    height: 50px;
    margin: 10px;
    background: #000;
    overflow: hidden;
}
.thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;

}
.thumbnail-img img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.thumbnail-img.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.slider .slick-prev:before {
    display: none;
}
.slider .slick-next:before {
    display: none;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}


.boxTitle img {
    width: 40px;
    height: auto;
    margin-right: 20px;
}

.houyou-flow {
    margin-bottom: 150px;
}

.houyouFlow-title {
    padding-top: 30px;
    font-size: 24px;
}

.houyouBox {
    align-items: center;
}
.houyouBox p {
    display: block;
    margin:30px auto;
}
.houyou {
    margin-bottom: 50px;
}
.houyouFlow {
    width: 400px;
    margin: auto;
}
.Vertical-line {
    height: 50px;
    width: 3px;
    margin: auto;
    background-color: #B5B5B5;
}
  
.mapBox {
    width: 900px;
    margin: 50px auto;
}
.accessMap {
    width: 900px;
    height: 400px;
    margin: auto;
}
.accessInfo {
    text-align: center;
    margin-bottom: 50px;
}
.accessName {
    font-size: 26px;
}
.accessMetho {
    text-align: center;
    margin-bottom: 100px;
}
.accessMetho h4 {
    border: 1px solid #707070;
    width: auto;
    display: inline-block;
    padding: 15px 100px;
    margin-top: 40px;
    font-size: 20px;
}
.accessMetho p {
    margin-top: 20px;
}
  
.archive {
    margin-bottom: 30px;
}
.page_navi {
    text-align: center;
    font-size: 16px;
	 margin-bottom:50px;
	font-weight:bold;
}

.page_navi li {
    display: inline;
    list-style: none;
	margin:0 5px;
}

.page_navi li.current span {
	text-align:center;
    background: #89B59A;
    color: #fff;
    display: inline-block;
    height:45px;
    width: 45px;
    line-height: 45px;
}

.page_navi li a {
    border: solid 1px #89B59A;
    color: #89B59A;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-decoration: none;
    transition: 0.5s;
	text-align:center;
}

.page_navi li a:hover {
    opacity: 0.5;
	background-color:#89B59A;
	color:#fff;
}

  
.singleBox {
    width: 600px;
    margin: auto;
}
.singleDaily {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.singleBox h3 {
    text-align: center;
    font-size: 26px;
    color: black;
}
.singleMess {
    width: 600px;
    margin: 50px auto 0;
}
.singleBottun {
    width: 600px;
    margin: 0 auto 100px;
    display: flex;
}
  
.prevBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 200px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}
.prevBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.prevBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:10%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}
  
.prevBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    left:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(-35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.nextBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 200px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}
.nextBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.nextBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}
  
.nextBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
  
.contactNumber {
    font-size: 30px;
    color: black;
    text-align: center;
}
.contactForm {
		width:500px;
		margin:auto;
	padding-top:30px;
}
	.contactForm input{
		width:100%;
		height:60px;
		background:#EAEAEA;
		border:none;
		margin:10px auto 30px;
		padding:3px 20px;
	}
	.contactForm textarea {
		width:100%;
		margin:10px auto 30px;
		background:#EAEAEA;
		border:none;
		padding:10px 20px;
	}
	.wpcf7-submit {
		width:300px !important;
		margin:0px auto 50px !important;
		background:#333333 !important;
		border:none;
		color:white;
		display:block !important;
	}	
	

}

/*      PC用のcss 1025px以上 */
@media screen and (min-width:1024px){

    /* ヘッダー */
.site-header{
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 60px;
    z-index: 99;
    margin-bottom: 100px;
}
  
.site-header.fixed{
    position: fixed;
    top: 0;
    }
.site-logo:hover {
    opacity: .7;
}
.site-logo img{
    height: 40px;
    width: auto;
    padding-left:50px;
    display: block;
    margin: auto;
    }
.gnav{
    display: flex;
    width: 800px;
    margin-left:20px;
    padding-right: 50px;
}
.gnav a{
    color: #333;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
}
.hero{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
} 
.heroTitle{
    height: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
    }
.heroTitle img {
    height: auto;
    width: 100%;
}
.slide-item {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-color: black;
}
.slide-item img {
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}
.border-radius {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    align-items: center;
  }
.border-radius img {
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
    margin: auto;
    opacity: 1;
}
.header-change{
    background: #F2EFD4;
    padding: 0;
    position: fixed;
    top: -60px;
    transition: .5s;
    width: 100%;
    height: 60px;
    z-index: 99;
    align-items: center;
    color: #333;
    }
 .pc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}     
.header-change.show{
    top: 0;
}
.header-change .gnav a{
    color: #333;
    text-decoration: none;
}
.header-change .gnav a:hover{
    opacity: .7;
} 
    
.spHeader {
    display: none;
}
.sp-nav {
    display: none;
}
.scrolldown4{
    position:absolute;
    bottom:50px;
    right:50%;
    animation: arrowmove 1s ease-in-out infinite;
}
    
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
     0%{bottom:1%;}
     50%{bottom:3%;}
    100%{bottom:1%;}
}

/*Scrollテキストの描写*/
.scrolldown4 span{
    position: absolute;
    left:-20px;
    bottom:50px;
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
} 
/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    position: absolute;
    bottom: 50px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}
    
.scrolldown4:after{
    content:"";
    /*描画位置*/
    position: absolute;
    bottom:50px;
    right:0;
    /*矢印の形状*/
    width:2px;
    height: 70px;
    background:#eee;
}
    
    
   /* 　共通CSS */
main {
    overflow: hidden;
}
    
section {
    width: 100%;   
    padding: 100px 0 0 0; 
}
    
.container {
    width: 1000px;
    margin: auto;
    text-align: center;
}
.titleContainer {
    text-align: center;
}
.Eng-title{
    font-size: 20px;
    color: #89B59A;
    opacity: .8;
}
.sec-title {
    font-size: 35px;
    color: #333;
    font-weight: 400;
}
hr {
    width: 55px;
    height: 5px;
    margin-top: 15px;
}
.secMessage {
    margin: 30px auto 50px;
    color: #333;
}
.br-sp {
    display: none;
}
.more-bottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
    background-color: #89B59A;
    display: block;
    width: 300px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}

/*矢印と下線の形状*/
.more-bottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
}

.more-bottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#fff;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.more-bottun:hover {
    opacity: .7;
}
.more-bottun:hover::before{
    left:25%;
   background-color: #fff;
}
.more-bottun:hover::after{
    right:5%;
    background-color: #fff;
}

/*      トップページ　お知らせ */

.newsList {
    width: 800px;
    margin: auto;
}
.newsitem {
    height: 62px;
    border-bottom: 1px solid #666;
    padding: 0 30px;
}
.newsitem:nth-of-type(1) {
    border-top:1px solid #666;
}
.newsitem a {
    display: flex;
    align-items: center;
    line-height: 62px;
    color: #707070;
}
.newsitem a:hover {
    opacity: .7;
}
.newsitem p {
    display: block;
    margin-right: 50px;
    font-size: 18px;
    text-align: left;
}
.daily {
    width: 15%;
    color: #707070;
}
.newsTitle {
    width: 85%;
    display: block;
    color: #707070;
}

/*    トップページ　インフォメーション　 */

.about {
    width: 100%;
    text-align: center;
}

.infomationList {
    width: 100%;
}
.infomationItem {
    width: 100%;
    max-width: 2000px;
    margin: auto;
    height: 600px;
    position: relative;
    color: #fff;
    font-size: 30px;
}

.infomationItem-bg {
    background-color: rgba(0,0,0,0.4);
    height: 600px;
    width: 100%;
    max-width: 2000px;
    margin: auto;
    transition: 0.5s;
}
.infomationItem-bg:hover {
    background-color: rgba(0,0,0,0.7);
    transition: 0.5s;
}

.info-tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.info-Eng {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 24px;
}
.info-mess {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
    -webkit-transform: translate(-50%, -70%);
    -ms-transform: translate(-50%, -70%);
    font-size: 22px;
}
.about-bottun {
    width: 300px;
    border: 3px solid #fff;
    display: block;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(255,255,255,0.3);
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    -webkit-transform: translate(-50%, -90%);
    -ms-transform: translate(-50%, -90%);
    font-size: 18px;
    transition: .3s;
}

.about-bottun::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .4s;
  }
  .about-bottun:hover {
    color: #333;
  }
  .about-bottun:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }


.infomationItem:nth-of-type(1) {
    background-image: url(../img/about-1.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(2) {
    background-image: url(../img/about-2.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(3) {
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.infomationItem:nth-of-type(4) {
    background-image: url(../img/about-4.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/*    トップページ　インフォメーション　 */
.accessBox {
    display: flex;
    width: 800px;
    justify-content: space-between;
    margin: auto;
}
.access-left {
    width: 300px;
    text-align: left;
}
.access-right {
    width: 500px;
    float: right;

}
.jiin-name {
    font-size: 26px;
    margin-bottom: 30px;
}
.jiinInfo {
    font-size: 20px;
}
.locate {
    width: 450px;
    height: 250px;
    margin: auto;
}

/*      フッター         */
.footer {
    width: 100%;
    height: 400px;
    background-color: #F2EFD4;
    padding: 50px 0 30px;
}
.footerLogo {
    width: 300px;
    height: auto;
    margin: auto;
}
.sns-icons {
    width: 200px;
    display: flex;
    margin: 30px auto;
    justify-content: space-between;
}
.footerInfo {
    text-align: center;
    margin-bottom: 20px;
}
.copyright-2021 {
    font-size: 14px;
    color: #000;
    text-align: center;
}
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius: 50%;
    border: 2px solid #333;
    width: 100px;
    height: 100px;
    color: #333;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  
#page-top a:hover{
    background: #333;
    border: #fff 2px solid;
    color: #fff;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 30px;
    bottom:20px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}
  
  /*　上に上がる動き　*/
  
#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);
  }
}

/*   page-about.php  */

.eyecatch{
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background-image: url(../img/eyecatch.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
} 
.pageTitle{
    text-align: center;
    height: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 91;
}
.pageTitle p {
    font-size: 35px;
    color: #fff;
}
.boxTitle {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.boxTypeA {
    width: 1000px;
    margin: 70px auto;
}
.boxTypeA-image {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    overflow: hidden;
}
.boxTypeA-image img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.boxTypeA-mess {
    padding: 0 20px;
}
.boxTypeB {
    width: 1000px;
    margin: 70px auto;
}
.boxTypeB-flex {
    width: 1000px;
    display: flex;
    justify-content: space-around;
}
.boxTypeB-image {
    width: 46%;
    height: 300px;
    margin-bottom: 30px;
}
.boxTypeB-image img {
    width: 100%;
    height: 300px;
}
.boxTypeB-mess {
    width: 48%;
}
.boxTypeC {
    width: 1000px;
    margin: 70px auto;
    display: flex;
    justify-content: space-around;
}
.boxTypeC-image {
    width: 45%;
    height: 300px;
}
.boxTypeC-image img{
    width: 100%;
    height: 300px;
}
.boxTypeC-mess {
    width: 50%;
}
.order1 {
    order: 1;
}
.order2 {
    order: 2;
}
.order3 {
    order: 3;
}
.jushoku-sign {
    width: 300px;
    margin: 0 auto 70px;
}
.window {
    width: 100%;
    height: 400px;
    background-image: url(../img/about-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*      境内を歩く　page-walking.php       */

.mapList {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin:  70px auto;
    justify-content: space-between;
}

.mapItem {
    width: 46%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.mapTitle {
    font-size: 24px;
    margin-bottom: 20px;
}
.mapDesc {

}
.mapImage {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}
.mapImage img {
    width: 100%;
    height: 300px;
}


.eventMess {
    text-align: center;
}

.tableEvent-PC {
    width: 1000px;
    border: 1px solid #707070;
    margin-bottom: 50px;
}
.tableEvent-SP {
    display: none;
}

.month {
    width: 10%;
    height: 100px;
    text-align: center;
    border: 1px solid #707070;
}
.eventName {
    width: 20%;
    text-align: center;
    border: 1px solid #707070;
}
.eventDesc {
    width: 70%;
    text-align: left;
    padding: 20px 25px;
    border: 1px solid #707070;
}
#center {
    text-align: center;
}
.slider {
    width: 750px;
    height: 350px;
    margin: 50px auto 0;
}
.gallery-item{
    width: 750px;
    height: 350px;
    margin: auto;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.thumbnail {
    width: 1000px;
    margin:  30px auto 100px;
}
.thumbnail-img {
    width: 150px;
    height: 90px;
    margin: 10px;
    background: #000;
    overflow: hidden;
}
.thumbnail-img img {
    width: 100%;
    height: 100%;
    

}
.thumbnail-img img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.thumbnail-img.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.boxTitle img {
    width: 40px;
    height: auto;
    margin-right: 20px;
}

.houyou-flow {
    margin-bottom: 150px;
}

.houyouFlow-title {
    padding-top: 30px;
}

.houyouBox {
    align-items: center;
}
.houyouBox p {
    display: block;
    margin:30px auto;
}
.houyou {
    margin-bottom: 50px;
}
.houyouFlow {
    width: 400px;
    margin: auto;
}
.Vertical-line {
    height: 50px;
    width: 3px;
    margin: auto;
    background-color: #B5B5B5;
}

.mapBox {
    width: 900px;
    margin: 50px auto;
}
.accessMap {
    width: 900px;
    height: 400px;
    margin: auto;
}
.accessInfo {
    text-align: center;
    margin-bottom: 50px;
}
.accessName {
    font-size: 26px;
}
.accessMetho {
    text-align: center;
    margin-bottom: 100px;
}
.accessMetho h4 {
    border: 1px solid #707070;
    width: auto;
    display: inline-block;
    padding: 15px 100px;
    margin-top: 40px;
    font-size: 20px;
}
.accessMetho p {
    margin-top: 20px;
}

.archive {
    margin-bottom: 50px;
}
.page_navi {
    text-align: center;
    font-size: 16px;
	 margin-bottom:50px;
	font-weight:bold;
}

.page_navi li {
    display: inline;
    list-style: none;
	margin:0 5px;
}

.page_navi li.current span {
	text-align:center;
    background: #89B59A;
    color: #fff;
    display: inline-block;
    height:45px;
    width: 45px;
    line-height: 45px;
}

.page_navi li a {
    border: solid 1px #89B59A;
    color: #89B59A;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-decoration: none;
    transition: 0.5s;
	text-align:center;
}

.page_navi li a:hover {
    opacity: 0.5;
	background-color:#89B59A;
	color:#fff;
}

.singleBox {
    width: 1000px;
    margin: auto;
}
.singleDaily {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.singleBox h3 {
    text-align: center;
    font-size: 26px;
    color: black;
}
.singleMess {
    width: 600px;
    margin: 50px auto 0;
}
.singleBottun {
    width: 1000px;
    margin: 0 auto 100px;
    display: flex;
}

.prevBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 200px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}
.prevBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.prevBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:10%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}

.prevBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    left:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(-35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
.nextBottun{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #707070;
    text-decoration: none;
    outline: none;
    display: block;
    width: 200px;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    margin: 50px auto;
    text-align: center;
}
.nextBottun:hover {
    opacity: .7;
}
/*矢印と下線の形状*/
.nextBottun::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:8px;
    left:20%;
    /*下線の形状*/    
    width: 70%;
    height: 1px;
    background:#707070;
    /*アニメーションの指定*/
    transition: all .3s;
}

.nextBottun::after{
    content: '';
    /*矢印の位置*/
    position: absolute;
    bottom:12px;
    right:10%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
    background:#707070;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

.contactNumber {
    font-size: 30px;
    color: black;
    text-align: center;
}
.contactForm {
		width:700px;
		margin:auto;
	padding-top:30px;
}
	.contactForm input{
		width:100%;
		height:60px;
		background:#EAEAEA;
		border:none;
		margin:10px auto 30px;
		padding:3px 20px;
	}
	.contactForm textarea {
		width:100%;
		margin:10px auto 30px;
		background:#EAEAEA;
		border:none;
		padding:10px 20px;
	}
	.wpcf7-submit {
		width:300px !important;
		margin:0px auto 50px !important;
		background:#333333 !important;
		border:none;
		color:white;
		display:block !important;
	}.wpcf7-submit:hover {
		background:#fff !important;
		color:#333 !important;
		border: 2px solid #333;
	}

}