@charset "utf-8";

/********************************************
first view
********************************************/
#main__view__area{
    position: relative;
    width: 100%;
    height: 100vh;
    color: #FFF;
}
.main__view__headline{
    position: absolute;
    bottom: 100px;
    left: 75px;
    z-index: 1;
    font-size: 24px;
}
.main__view__headline h2{
    font-weight: normal;
    font-size: 46px;
    margin-bottom: 20px;
}
#main__view__area video{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
}
@media (max-width: 750px) {
    #main__view__area::before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        width: 100%;
        height: 100%;
        background:#000;
        opacity: .12;
    }

    #main__view__area{
        height: 65vh;
    }

    .main__view__headline{
        bottom: 35px;
        left: 35px;
        z-index: 2;
        font-size: 14px;
    }
    .main__view__headline h2{
        font-size: 26px;
        margin-bottom: 15px;
    }
    #main__view__area video{
        z-index: 1;
    }
}

/********************************************
about
********************************************/
#about__area{
    padding: 170px 0 390px;
    position: relative;
    text-align: center;
}
.about__headline h2{
    display: inline-block;
    margin: 80px auto 65px;
    text-align: left;
    font-weight: normal;
    font-size: 30px;
}
.about__logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.about__logo span.bar{
	display: block;
	position: relative;
    width: 54px;
    height: 54px;
    margin: 0 40px;
}
.about__logo span.bar:before,
.about__logo span.bar:after{
	content: "";
	display: block;
	width:100%;
	height: 1px;
	background: #000;
	position: absolute;
	top:50%;
	right:0;
	transition : all 0.3s ease;
	transform:translateY(-50%) rotate(-45deg);
}
.about__logo span.bar:after{
	transform:translateY(-50%) rotate(45deg);
}
.about__logo .logo__image{
    position: absolute;
    top: -65px;
    right: 40px;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.about__text{
    font-size: 18px;
    line-height: 2.5;
    text-align: center;
    margin-bottom: 5px;
}
.about__text p{
    padding-bottom: 65px;
}
@media (max-width: 750px) {
    #about__area{
        padding: 32vw 5% 36vw;
    }
    #about__area .btn a{
        background-color: #FFF;
    }
    .about__logo{
        display: block;
        text-align: center;
    }
    .about__logo img{
        width: auto;
        height: 48px;
    }
    .about__logo span.bar{
        width: 32px;
        height: 32px;
        margin: 22px auto;
    }
    .about__headline h2{
        display: block;
        margin: 55px 0 35px;
        font-size: 26px;
        line-height: 1.6;
    }
    .about__text{
        font-size: 16px;
        text-align: left;
        margin-bottom: 10px;
    }
    .about__text p{
        padding-bottom: 40px;
        line-height: 2;
    }
}

/********************************************
howto
********************************************/
#howto__area{
    padding: 39vw 0 0;
    background: #F2F0EC;
    position: relative;
    z-index: 0;
}
#howto__area::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0.8;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 5% 80%, rgba(255, 255, 255, 0));
}
.howto__box{
    max-width: 1120px;
    margin: 0 auto 25px;
    padding: 70px 50px 60px;
    background: #FFF;
    box-shadow: 0 1px 2px 3px rgba(0, 0, 0, 0.02);
}
.howto__box:last-child{
    margin-bottom: 0;
}
.howto__box .box__title{
    text-align: center;
    margin-bottom: 50px;
}
.howto__box .box__title dt{
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 22px;
}
.howto__box .box__title dd span{
    display: inline-block;
    background: #EFEFEF;
    padding: 7px 18px 5px;
}
.howto__box .box__list{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}
.howto__box .box__list dl{
    width: 22.06%;
    text-align: center;
    position: relative;
}
.howto__box .box__list dt{
    border-radius: 5px;
    overflow: hidden;
}
.howto__box .box__list dt img{
    width: 100%;
    height: auto;
}
.howto__box .box__list dd{
    margin-top: 25px;
}
.howto__box .box__list .num{
    position: absolute;
    top: -12px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: #EFEFEF;
    /* border: 1px #000 solid; */
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    line-height: 1;
}
@media (max-width: 750px) {
    #howto__area{
        padding: 74vw 5% 0;
    }
    #howto__area::before{
        height: 360px;
    }
    .howto__box{
        margin: 0 auto 15px;
        padding: 10% 5%;
    }
    .howto__box .box__title{
        margin-bottom: 20px;
    }
    .howto__box .box__title dt{
        font-size: 26px;
        margin-bottom: 15px; 
    }
    .howto__box .box__title dd span{
        font-size: 15px;
        padding: 3% 2%;
        display: block;
    }
    .howto__box .box__list{
        display: block;
        padding: 0; 
    }
    .howto__box .box__list dl{
        width: 100%;
        padding-bottom: 35px;
    }
    .howto__box .box__list dd{
        margin-top: 15px;
        font-size: 18px;
    }
    .howto__box .box__list .num{
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/********************************************
pack
********************************************/
#pack__area{
    padding: 100px 0 90px;
    background: #F2F0EC;
}
.pack__list{
    display: flex;
    justify-content: space-between;
    padding:10px 0 90px;
}
.pack__list dl{
    width: 31.429%;
    position: relative;
}
.pack__list dt{
    border-radius: 5px;
    overflow: hidden;
}
.pack__list dt img{
    width: 100%;
    height: auto;
}
.pack__list dd{
    overflow: hidden;
}
.pack__list dd a{
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pack__caution{
    border: 1px #242424 solid;
    padding: 30px;
    margin-top: 80px;
}
.pack__caution small{
    margin-top: 10px;
    font-size: 14px;
    display: block;
}
@media (min-width: 751px) {
    .pack__list dd a{
        background-image: linear-gradient(180deg,#242424,#242424);
    }
}
@media (max-width: 750px) {
    #pack__area{
        padding: 60px 5% 40px; 
    }
    .pack__headline h3{
        font-size: 26px;
    }
    .pack__list{
        display: block;
        padding: 0 0 20px;
    }
    .pack__list dl{
        width: 100%;
        padding-bottom: 20px;
    }
    .pack__list dd a{
        padding-top: 10px;
    }
    .pack__caution{
        padding: 5%;
        margin-top: 40px;
    }
}

/********************************************
pilgrimage
********************************************/
.pilgrimage__head{
    position: relative;
    width: 100%;
    height: 620px;
    background-image: url(../images/top/photo_pilgrimage.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pilgrimage__head__text{
    max-width: 1120px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    color: #FFF;
}
.pilgrimage__head__text p{
    font-size: 24px;
    width: 100%;
}
.pilgrimage__head__text h3{
    font-weight: normal;
    font-size: 38px;
    width: 100%;
    padding: 15px 0 45px;
}
.pilgrimage__head__text .btn{
    width: 277px;
    margin: 0;
}

.pilgrimage__item{
    background-image: url(../images/back_pilgrimage.png);
    background-position: center;
    color: #FFF;
    padding: 108px 0;
}

.pilgrimage__list{
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
}
.pilgrimage__list a{
    color: #FFF;
}
.pilgrimage__list dl{
    width:22.858%;
    text-align: center;
    position: relative;
}
.pilgrimage__list dt img{
    width: 100%;
    height: auto;
}
.pilgrimage__list dd{
    margin-top: 20px;
}
@media (max-width: 750px) {
    .pilgrimage__head{
        height: auto;
        position: static;
        background-size: auto 320px;
        background-position: center top;
        background-image: url(../images/top/photo_pilgrimage_sp.jpg);
    }
    .pilgrimage__head__text{
        padding-left: 10%;
        padding-top: 360px;
        padding-bottom: 45px;
        align-content: flex-start;
        color: #1C1C1C;
    }

   .pilgrimage__head .btn.btn__white a{
    color: #000;
    background-image: url(../images/arrow.svg);

   }

   .pilgrimage__head .btn.btn__white{
    border: 1px #000 solid;

   }

    .pilgrimage__head__text p{
        font-size: 18px;
    }
    .pilgrimage__head__text h3{
        font-size: 34px;
        padding: 10px 0 20px 0;
    }
    .pilgrimage__head__text .btn.btn_white{
        border-color: #000;
        width: 90%;
    }
    .pilgrimage__head__text .btn.btn_white a{
        color: #1C1C1C;
        background-image: url(../images/arrow.svg);
    }
    .pilgrimage__item{
        padding: 50px 5%;
    }
    .pilgrimage__list{
        padding-top: 0px;
        flex-wrap: wrap;
    }
    .pilgrimage__list dl{
        width: 48%;
        padding-bottom: 15px;
    }
    .pilgrimage__list dd{
        margin-top: 5px;
    }
}

/********************************************
ainotera
********************************************/
#ainotera__area{ 
    padding: 28px 28px 250px;
    background-image: url(../images/back_about_01.png),url(../images/back_about_04.png);
    background-repeat: no-repeat;
    background-position: 0 -50px,right bottom;
    position: relative;
    text-align: center;
    color: #FFF;
}
.ainotera__inner{
    width: 100%;
    background-image: url(../images/top/about_temple.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 125px 0 90px;
    text-align: center;
}
.ainotera__headline span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ainotera__headline span::before,
.ainotera__headline span::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #FFF;
    margin: 0 20px;
}
.ainotera__headline h3{
    font-weight: normal;
    font-size: 30px;
    line-height: 1.7;
    margin-top: 20px;
}
.ainotera__inner .video__area{
    max-width: 928px;
    margin: 60px auto 75px;
    position: relative;
}
.ainotera__inner video{
    width: 100%;
}
.ainotera__inner #video__start{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/top/ainotera__video__start.jpg);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
@media (max-width: 750px) {
    #ainotera__area{
        padding: 0 0 40vw;
        background-image: url(../images/back_about_03.png);
        background-size: 100%;
        background-position:bottom;
    }
    .ainotera__inner{
        padding: 60px 5% 10%;
    }
    .ainotera__headline{
        display: flex;
        flex-direction: column-reverse;
    }
    .ainotera__headline span::before{
        margin: 0 10px 0 0;
    }
    .ainotera__headline span::after{
        margin: 0 0 0 10px;
    }
    .ainotera__headline h3{
        font-size: 24px;
        margin: 0 0 30px;
    }
    .ainotera__inner .video__area{
        margin: 35px 0 30px;
        width: 100%;
    }
}

/********************************************
gengen
********************************************/
#gengen__area{ 
    margin-top: -140px;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}
.gengen__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gengen__text__box{
    width: 44%;
}
.gengen__text__box p{
    padding: 55px 0;
    line-height: 2.5;
}
.genge__title h3{
    font-weight: normal;
    font-size: 40px;
}
.genge__title h4{
    font-weight: normal;
    font-size: 30px;
    margin-top: 10px;
}

.gengen__image{
    max-width: 544px;
    width: 52%;
}
.gengen__image p{
    border-radius: 5px;
    overflow: hidden;
}
.gengen__image img{
    width: 100%;
    height: auto;
}
@media (min-width: 751px) {
    .gengen__text__box .btn{
        margin: 0;
        width: 456px;
    }
}
@media (max-width: 750px) {
    #gengen__area{
        margin-top: -30vw;
        padding-bottom: 50px;
    }
    .gengen__inner{
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding: 0 5%;
    }
    .gengen__text__box{
        width: 100%;
        margin-top: 40px;
    }
    .genge__title h3{
        font-size: 34px;
        line-height: 1;
    }
    .genge__title h4{
        font-size: 25px;
    }
    .gengen__text__box p{
        padding: 25px 0 40px;
        line-height: 2;
    }
    .gengen__image{
        width: 100%;
    }
}

/********************************************
shopitem
********************************************/
@media (max-width: 750px) {
    #shopitem_area{
        border-top: 1px #EFEFEF solid;
        padding: 45px 5% 60px;
    }
    .shopitem__list{
        padding: 0 0 20px;
    }
    .shopitem__list dl{
        padding: 0 0 45px;
    }
    .shopitem__list dd a{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0 0;
    }
}




/* 動画埋め込み */

.movie iframe{
    height: 270px;
  width: 480px;
  margin-bottom: 3rem;
  margin-top: -1rem;

}


@media (max-width: 750px) {

    /* 動画埋め込み */

.movie iframe{
    height:230px;
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 0;

}

}
