@charset "UTF-8";

/* ---------ボタン１----------*/
.button1{
    width: 200px;
    color: #000;
    font-size: 9pt;
    display:block;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    border : solid 1px #ccc;
    position: relative;
    z-index: 1;
}

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


/* ----------ボタン２---------- */
.button2{
    width: 200px;
    color: #fff;
    font-size: 9pt;
    display:inline-block;
    padding: 10px 0;
    text-align: center;
    border : solid 1px #bbb;
    position: relative;
    z-index: 1;
}

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

/* ----------ボタン３----------- */
.button3{
    width: 200px;
    color: #000;
    font-size: 9pt;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    border : solid 1px #ccc;
    position: relative;
    z-index: 1;
}

/* -----------外部リンク--------- */
.link:hover{
    border-bottom: 1px solid #333;
}

/* -----------見出し1------------ */
.heading1{
    position: relative;
    padding: 1.5rem;
    text-align: center;
} 

.heading1:before {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 30px);
    width: 60px;
    height: 1px;
    content: '';
    background: #000;
}


/* 　コンテンツボックスー寺　*/
.list{
    width:280px;
    background-color:#fff;
    box-shadow: 3px 5px 5px 0px rgba(150,150,150, 0.3);
    overflow: hidden;
    margin : 20px 10px;
}

.list_img{
    height:200px;
    object-fit: cover;
    overflow: hidden;
}

.list img{
    height: 200px;
    object-fit: cover;
}

.list img:hover{
    transform:scale(1.2,1.2);
    transition:0.5s all;
    opacity : 0.8;
}

.list p{
    font-size: 9pt;
}

.list_text{
    margin: 20px 30px;
    letter-spacing: 2px;

}
.list_text p{
    font-size:9pt;
    margin : 0 0 10px;
}

#temple_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#temple_title p{
    font-size : 6pt;
    border: 1px solid #bbb;
    letter-spacing: 1px;
    margin: 0;
    padding: 2px 10px;
}





