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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    letter-spacing: .05em;
    color: #171717;
    font-family: "Hannari";
    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) {
.gnav {
    display: none;
}
.pcHeader {
    display: none;
}
.pc-nav {
    display: none;
}
/*      ヘッダー         */
.site-header.fixed{
    position: fixed;
    top: 0;
}
.site-logo img{
    height: 60px;
    width: 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: 100%;
    height:100vh;
    overflow: hidden;
    position: relative;
    background-image: url(../img/firstview_image_pc.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.heroTitle {
    width: 250px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateY(0%) translateX(-50%);
    -webkit-transform: translateY(0%) translateX(-50%);
}

.heroInfo {
    position: absolute;
    background-color: rgba(255, 255, 255, .7);
    bottom: 0;
    width: 100%;
    height: 250px;
    text-align: center;
}
.heroInfo h1 {
    width: 200px;
    display: block;
    margin:20px auto;
}
.free-dial {
    font-size: 30px;
    color: black;
}
.free-dial i{
    margin-right: 20px;   
}
.headerBottun {
    color: #333;
    font-size: 22px;
    text-decoration: none;
    margin-left: 30px;
    background-color: #F8D19C;
    width: 230px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    margin: 15px auto;
    display: block;
    text-align: center;
}
.sns-icons {
    width: 60%;
    margin: 15px auto 30px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.squeare {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    z-index: 1;
    align-items: center;
    background-color: #ECE8E1;
    border-radius: 10px;
    margin: auto;
    border: 2px solid #B2AEA9;
  }
.squeare i {
    font-size: 50px;
    color: black;
    font-weight: bold;
    display: block;
    margin: auto;
    padding: 15px;
}
.header-change{
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    position: fixed;
    top: -60px;
    transition: .5s;
    width: 100%;
    height: 60px;
}
.header-change.show{
    top: 0;
}
.header-change .gnav__menu__item a{
    color: #fff;
    text-decoration: 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;
}

/*      ここからハンバーガーメニュー         */
.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: 20px;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding:15px;
    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: 25px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.phone {
    color: #518665;
    display: block;
    width: 300px;
    margin:0 auto;
    font-size: 25px;
    text-align: center;
}
.phone i {
    margin-right: 20px;
}
.header-sns {
    display: flex;
    width: 90%;
    margin: 30px 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:30px auto 20px;
    text-align: center;
}
.header-infoTemple {
    font-size: 22px;
}
.headerMessage {
    font-size: 12px;
    margin: 30px auto;
    text-align: center;
}

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

   /* 　共通CSS */
main {
    overflow: hidden;
}

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

.container {
    width: 90%;
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.sectionTitle {
    margin: 0 auto 20px;
    font-size: 30px;
}

/* お寺についてセクション */
.about {
    padding: 50px 0 50px 0;
    background-color: #F2F4F7;
}
.aboutTitle {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.aboutBox {
    width: 100%;
    margin: 30px auto 15px;
}
.aboutImage {
    width: 90%;
    margin:auto;
    order: 2;
}
.aboutImage img {
    overflow: hidden;
}
.aboutMessage {
    width: 90%;
    margin: auto;
    text-align: left;
}

.greetingImage {
    margin-bottom: 30px;
}
.greetingMessage {
    width: 90%;
    margin: auto;
    text-align: left;
}

/*      境内を歩くセクション         */
.keidaiImage {
    width: 300px;
    margin: 50px auto 0;
}
.walkingBox {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}
.walking-list {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    margin-top: 50px;
}
.walking-item {
    width: 90%;
    margin: 0 auto 50px;
    text-align: left;
    display: flex;
  flex-direction: column;
}
.walkingTitle {
    display: flex;
    align-items: center;
}
.walkingTitle p{
    font-size: 25px;
}

.walking-item h5 {
    width: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 20px;
    text-align: center;
}
.walkingImage {
    width: 100%;
    height: auto;
    margin: auto;
}
.walkingMessage {
    width: 100%;
    margin: auto;
}

/*      つながるセクション       */

.snsArea {
    width: 100%;
    margin: auto;
}
.sns-item {
    width: 300px;
    margin: 50px auto 20px;
}
.twitter-timeline {
    width: 300px;
    height: 300px;
}
.facebook-PC {
    display: none;
}
.facebook {
    width: 300px;
    height: 300px;
}
.snsArea h4 {
    font-size: 35px;
    color: #518665;
    margin-bottom: 15px;
}
.accessTitle {
    font-size: 32px;
    color: #518665;
    margin-bottom: 15px;
    padding-top: 50px;
}
/*      アクセスセクション       */

.locate {
    width:300px; 
    height:200px; 
}
.accessTemple {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.traffic-list {
    width: 90%;
    margin: auto;
}
.traffic-item {
    width: 90%;
    margin: 30px auto;
}
.traffic-item h5 {
    border: 1px solid black;
    width: 300px;
    margin: 0 auto 10px;
    padding: 10px;
    font-size: 19px;
}

/*      ウィンドウ　 */
.windowimage {
    background-image: url(../img/window.png);
    background-position: center;
    background-size: cover;
    height: 200px;
    width: 100%;
}

/*      フッター         */
footer {
    height: 100px;
    background-color: #89B59A;
    color: white;
    text-align: center;
}
}

/*      タブレット用のcss 601~1024px */
@media screen and (min-width:601px) and (max-width:1023px) {
    .gnav {
        display: none;
    }
    .pcHeader {
        display: none;
    }
    .pc-nav {
        display: none;
    }
    /*      ヘッダー         */
    .site-header.fixed{
        position: fixed;
        top: 0;
    }
    .site-logo img{
        height: 60px;
        width: 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: 100%;
        height:100vh;
        overflow: hidden;
        position: relative;
        background-image: url(../img/firstview_image_pc.jpg);
        background-position: center;
        background-size: cover;
        position: relative;
    }
    
    .heroTitle {
        width: 250px;
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateY(0%) translateX(-50%);
        -webkit-transform: translateY(0%) translateX(-50%);
    }
    
    .heroInfo {
        position: absolute;
        background-color: rgba(255, 255, 255, .7);
        bottom: 0;
        width: 100%;
        height: 250px;
        text-align: center;
    }
    .heroInfo h1 {
        width: 200px;
        display: block;
        margin:20px auto;
    }
    .free-dial {
        font-size: 30px;
        color: black;
    }
    .free-dial i{
        margin-right: 20px;   
    }
    .headerBottun {
        color: #333;
        font-size: 22px;
        text-decoration: none;
        margin-left: 30px;
        background-color: #F8D19C;
        width: 300px;
        height: 80px;
        line-height: 80px;
        border-radius: 10px;
        margin: 15px auto;
        display: block;
        text-align: center;
    }
    .sns-icons {
        width: 60%;
        margin: 15px auto 30px;
        display: flex;
        justify-content: space-around;
        text-align: center;
    }
    .squeare {
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        z-index: 1;
        align-items: center;
        background-color: #ECE8E1;
        border-radius: 10px;
        margin: auto;
        border: 2px solid #B2AEA9;
      }
    .squeare i {
        font-size: 50px;
        color: black;
        font-weight: bold;
        display: block;
        margin: auto;
        padding: 15px;
    }
    .header-change{
        background: #fff;
        display: flex;
        justify-content: space-between;
        padding-left: 20px;
        position: fixed;
        top: -80px;
        transition: .5s;
        width: 100%;
        height: 80px;
    }
    .header-change.show{
        top: 0;
    }
    .header-change .gnav__menu__item a{
        color: #fff;
        text-decoration: none;
    }
    .sp-nav {
        display: flex;
        width: 45%;
        justify-content: space-between;
        z-index: 99;
    }
    .top-bottun {
        width: auto;
        height: 50px;
        color: white;
        line-height: 60px;
        display: block;
        text-align: center;
        z-index: 99;
    }
.top-bottun img {
    height: 60px;
    width: auto;
}
    /*      ここからハンバーガーメニュー         */
    .menu-btn {
        position: fixed;
        right: 10px;
        display: flex;
        height: 80px;
        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: 40px;
        border-radius: 3px;
        background-color: #333;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 15px;
    }
    .menu-btn span:after {
        top: 15px;
    }
    #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: 70%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background: rgba(255,255,255,0.9);
        transition: all 0.5s;/*アニメーション設定*/
        padding-top: 50px;
    }
    .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: 20px;
        box-sizing: border-box;
        color:#333;
        text-decoration: none;
        padding:15px;
        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: 25px;
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }
    
    .phone {
        color: #518665;
        display: block;
        width: 300px;
        margin:0 auto;
        font-size: 25px;
        text-align: center;
    }
    .phone i {
        margin-right: 20px;
    }
    .header-sns {
        display: flex;
        width: 90%;
        margin: 30px 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:30px auto 20px;
        text-align: center;
    }
    .header-infoTemple {
        font-size: 22px;
    }
    .headerMessage {
        font-size: 12px;
        margin: 30px auto;
        text-align: center;
    }
        /* ヘッダーここまで */
       /* 　共通CSS */
    main {
        overflow: hidden;
    }
    
    section {
        width: 100%;   
        padding: 90px 0 0 0; 
    }

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.sectionTitle {
font-size: 30px;
margin: 0 auto 20px;
}

/* お寺についてセクション */
.about {
    padding: 100px 0 50px 0;
    background-image: url(../img/about-back.png);
    background-size: cover;
    background-position: center;
}
.about h3 {
    font-size: 20px;
    margin-top: 30px;
}
.aboutBox {
    width: 100%;
    margin: 30px auto 50px;
}
.aboutImage {
    width: 90%;
    max-width: 500px;
    margin:30px auto;
    order: 2;
}
.aboutImage img {
    overflow: hidden;
}
.aboutTitle {
    font-size: 30px;
    margin-bottom: 30px;
}
.aboutMessage {
    width: 90%;
    margin: auto;
    text-align: left;
}

.greetingImage {
    margin: 30px auto;
    width: 90%;
    max-width: 600px;
}
.greetingMessage {
    width: 90%;
    margin: auto;
    text-align: left;
}

/*      境内を歩くセクション         */
.keidaiImage {
    width: 600px;
    margin: 50px auto 0;
}
.walkingBox {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}
.walking-list {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    margin-top: 50px;
}
.walking-item {
    width: 500px;
    margin: 0 auto 50px;
    text-align: left;
    display: flex;
  flex-direction: column;
}
.walkingTitle {
    display: flex;
    align-items: center;
}
.walkingTitle p{
    font-size: 25px;
}

.walking-item h5 {
    width: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 20px;
    text-align: center;
}
.walkingImage {
    width: 500px;
    height: auto;
    margin: auto;
}
.walkingMessage {
    width: 100%;
    margin: auto;
}

/*      つながるセクション       */

.snsArea {
    width: 100%;
    margin: auto;
}
.sns-item {
    width: 300px;
    margin: 50px auto 20px;
}
.twitter-timeline {
    width: 300px;
    height: 300px;
}
.facebook-PC {
    display: none;
}
.facebook {
    width: 300px;
    height: 300px;
}
.snsArea h4 {
    font-size: 35px;
    color: #518665;
    margin-bottom: 15px;
}
.accessTitle {
    font-size: 32px;
    color: #518665;
    margin-bottom: 15px;
    padding-top: 50px;
}
/*      アクセスセクション       */

.locate {
    width:600px; 
    height:300px; 
}
.accessTemple {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.traffic-list {
    width: 90%;
    margin: auto;
}
.traffic-item {
    width: 90%;
    margin: 30px auto;
}
.traffic-item h5 {
    border: 1px solid black;
    width: 300px;
    margin: 0 auto 10px;
    padding: 10px;
    font-size: 19px;
}

/*      ウィンドウ　 */
.windowimage {
    background-image: url(../img/window.png);
    background-position: center;
    background-size: cover;
    height: 300px;
    width: 100%;
}

/*      フッター         */
footer {
    height: 100px;
    background-color: #89B59A;
    color: white;
    text-align: center;
}
}

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

    /* ヘッダー */
.site-header{
    background: rgba(255, 255, 255, 1);
    align-items: center;
    width: 300px;
    z-index: 90;
    bottom: 0px;
    height: 100%;
    position: fixed;
    border-right: 4px solid #a3a3a3;
}
  
.site-header.fixed{
    position: fixed;
    top: 0;
    }
.site-logo {
    
}
.site-logo img{
    height: 40px;
    width: auto;
    padding-left:50px;
    display: block;
    margin: auto;
    }
    .sns-icons {
        width: 70%;
        margin: 0 auto 30px;
        display: flex;
        justify-content: space-around;
    }
    .squeare {
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        z-index: 1;
        align-items: center;
        background-color: #ECE8E1;
        border-radius: 10px;
        margin: auto;
      }
      .squeare:hover {
        opacity: .7;
        border: 2px black solid;
      }
    .squeare i {
        font-size: 50px;
        color: black;
        font-weight: bold;
        display: block;
        margin: auto;
        padding: 15px;
    }
    .gnav{
        z-index: 99;
        text-align: center;
        align-items: center;
    }
    .gnav h1 {
        height: auto;
        width: 200px;
        margin: 0 auto 30px;
        padding-top: 30px;
    }
    .gnav h1 img{
        width: 100%;
        height: auto;
    }
    .gnav_list {
        width: 100%;
        margin-bottom: 30px;
    }
    .headerBottun {
        color: #fff;
        font-size: 22px;
        text-decoration: none;
        margin-left: 30px;
        background-color: #89B59A;
        width: 230px;
        height: 60px;
        line-height: 60px;
        border-radius: 10px;
        margin: 15px auto;
        display: block;

    }
    .headerBottun:hover{
        opacity: .7;
    }
.headerMessage {
    border: 2px solid #89B59A;
    width: 90%;
    margin:0 auto 20px;
    color: #89B59A;
    font-size: 16px;
    border-radius: 10px;
}
.headerInfo {
    font-size: 13px;
}    

    .spHeader {
            display: none;
        }
      .sp-nav {
            display: none;
        }
    
.hero{
    width: 100%;
    height:100vh;
    overflow: hidden;
    position: relative;
    background-image: url(../img/firstview_image_pc.jpg);
    background-position: center;
    background-size: cover;
    }
.heroTitle{
    height: 400px;
    width: auto;
    position: absolute;
    top: 50px;
    right: 100px;
    z-index: 91;
    }
    .heroTitle img {
        height: 100%;
        width: auto;
    }

    /* ヘッダーここまで */
    
    
   /* 　共通CSS */
main {
        overflow: hidden;
       
    }
    
section {
    width: calc(100% - 300px);
    float: right; 
    padding: 100px 0 0 0; 
    }
    
.container {
        width: 90%;
        margin: auto;
        float: none;
    }
.sectionTitle {
    font-size: 40px;
    margin: 0 auto 20px;
    text-align: center;
}

/* お寺についてセクション */
.about {
    padding: 100px 0 50px 0;
    background-color: #F2F4F7;
    position: relative;
  height: 1200px;
}
.wave {
    position: absolute;
    height: 100px;
    width: 100%;
    background: #F2F4F7;
    bottom: 0;
  }
  
  .wave::before, .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
  }
  
  .wave::before {
    width: 55%;
    height: 109%;
    background-color: #fff;
    right: -1.5%;
    top: 60%;
  }
  .wave::after {
    width: 55%;
    height: 100%;
    background-color: #F2F4F7;
    left: -1.5%;
    top: 40%;
  }
  
.about h3 {
    font-size: 20px;
}
.aboutBox {
    width: 100%;
    display: flex;
    display: flex;
    margin: 30px auto;
}
.aboutImage {
    width: 400px;
    margin:auto;
}
.aboutImage img {
    width: 100%;
    height: auto;
}
.aboutTitle {
    text-align: center;
    font-size: 35px;
    margin: 50px auto
}
.aboutMessage {
    width: 90%;
    height: 450px;
    margin: auto;
    text-align: left;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  justify-content: space-between;
  display: flex;
}
.aboutMessage p {
    display: block;
    margin: auto;
}


/*      あいさつセクション       */
.greeting {
    padding:50px 0 50px 0;
    background-color: white;
    position: relative;
  height: 1100px;
  margin-top: 50px;
}
.wave2 {
    position: absolute;
    height: 100px;
    width: 100%;
    background: #fff;
    bottom: 0;
  }
  
  .wave2::before, .wave2::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
  }
  
  .wave2::before {
    width: 55%;
    height: 109%;
    background-color: #F2F4F7;
    right: -1.5%;
    top: 60%;
  }
  .wave2::after {
    width: 55%;
    height: 100%;
    background-color: #fff;
    left: -1.5%;
    top: 40%;
  } 

.greetingBox {
    display: flex;
    width: 100%;
    margin-top: 100px;
}
.greetingBox:nth-of-type(2) {
    margin-top: 50px;
}
.greetingImage {
    width: 60%;
    margin: 50px auto;
}
.greetingMessage {
    width: 80%;
    text-align: left;
    margin: 50px auto;
}
.sign {
    width: 400px;
    margin:30px auto 0;
}

/*      境内を歩くセクション         */
.walking {
    background-color: #F2F4F7;
    padding: 100px 0 50px 0;
    
}
.order1 {
    order: 1;
}
.order2 {
    order: 2;
}
.order3 {
    order: 3;
}
.order4 {
    order: 4;
}
.order5 {
    order: 5;
}
.order6 {
    order: 6;
}
.keidaiImage {
    width: 600px;
    height: 350px;
    margin: 50px auto 0;
    overflow: hidden;
}
.keidaiImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.walkingBox {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    margin-top: 50px;
}
.walking-list {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    margin-top: 50px;
}
.walking-item {
    width: 100%;
    margin: 0 auto 50px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.walking-item h5 {
    font-size: 25px;
    color: #89B59A;
    margin-top: 20px;
    margin-bottom: 10px;
}
.walkingTitle-number { 
    position: relative;
    width: 78px;
    height: 60px;
    background-image: url(../img/walking-number.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.walkingTitle-number p {
    color: white;
    display: block;
    width: 24px;
    height: 24px;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    -webkit-transform: translate(-50%, -30%);
    -ms-transform: translate(-50%, -30%);
    text-align: center;

}
.walkingImage {
    width: 48%;
    height: auto;
    margin: auto;
}
.walkingMessage {
    width: 48%;
    margin: auto;
    padding: 20px;
}
.walkingTitle {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.walkingP{
    font-size: 26px;
    margin-left: 20px;
}
/*      つながるセクション       */
.connect {
    
}
.snsArea {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.sns-item {
    width: 48%;
    max-width: 500px;
    margin: 50px auto 20px;
}
.twitter-timeline {
    width:400px;
    margin: auto;
}
.facebook {
    width: 400px;
    margin: auto;
}
.facebook-SP {
    display: none;
}
.snsArea h4 {
    font-size: 35px;
    color: #518665;
    margin-bottom: 15px;
}
.accessTitle {
    font-size: 30px;
    color: #518665;
    margin-bottom: 15px;
    padding-top: 80px;
}
/*      アクセスセクション       */
.access {
    text-align: center;
}
.locate {
    margin-top: 50px;
    width:700px; 
    height:400px; 
}
.accessInfo {
   
}

.accessTemple {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.traffic-list {
    width: 80%;
    display: flex;
    margin: auto;
}
.traffic-item {
    width: 45%;
    margin: 30px auto;
}
.traffic-item h5 {
    border: 1px solid black;
    width: 300px;
    margin: 0 auto 10px;
    padding: 10px;
    font-size: 19px;
    border-radius: 5px;
}

/*      ウィンドウ　 */
.windowimage {
    height: 400px;
    width: 100%;
   background-image: url(../img/window.png);
   background-position: center;
   background-size: cover;
}

/*      フッター         */
.footer {
    height: 100px;
    background-color: #89B59A;
    color: white;
    margin: auto;
}
.copyright-2021 {
    text-align: center;
    width: 200px;
    margin: auto;
}
}