@charset "UTF-8";
/* stylelint-disable selector-list-comma-newline-after */
main#event .event-image {
  background-size: cover;
  background-position: center;
}
main#event .event-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  main#event .event__inner {
    flex-direction: column-reverse;
  }
}

.blog-header {
  line-height: 1;
  border-bottom: 1px solid #e5e5e5;
}

.blog-header-logo {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
}

.blog-header-logo:hover {
  text-decoration: none;
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}
.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
}

.card-img-right {
  height: 100%;
  border-radius: 0 3px 3px 0;
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 {
  height: 250px;
}

@media (min-width: 768px) {
  .h-md-250 {
    height: 250px;
  }
}
/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

.blog-pagination > .btn {
  border-radius: 2rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 4rem;
}

.blog-post-title {
  margin-bottom: 0.25rem;
  font-size: 2.5rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #727272;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}
.cp_box *, .cp_box *:before, .cp_box *:after {
  box-sizing: border-box;
}

.cp_box {
  position: relative;
}

.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

.cp_box input:checked + label {
  background: inherit;
  /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 16rem;
  font-family: FontAwesome;
  content: "\f13a" " 続きをよむ";
  transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 20px;
  background-color: #5ABFCA;
}

.cp_box input {
  display: none;
}

.cp_box .cp_container {
  overflow: hidden;
  height: 250px;
  /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}

.cp_box input:checked + label:after {
  font-family: FontAwesome;
  content: "\f139" " 閉じる";
}

.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px;
  /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

.sns {
  z-index: 20;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  gap: 5px;
}
.sns .ln,
.sns .tw {
  height: 15px;
}

/*
 * Footer
 */
.blog-footer {
  padding: 2.5rem 0;
  color: #727272;
  text-align: center;
  background-color: #f9f9f9;
  border-top: 0.05rem solid #e5e5e5;
}
.blog-footer p:last-child {
  margin-bottom: 0;
}
.blog-footer img {
  max-width: 195px;
}

.text-primary {
  color: #5ABFCA !important;
}

.bg-primary {
  background-color: #5ABFCA !important;
}

.border-primary {
  border-color: #5ABFCA !important;
}

h4#special {
  position: relative;
  display: inline-block;
  margin: 50px 0;
}
h4#special:before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}

.carousel-indicators {
  bottom: -50px;
}

.bnr img {
  width: 100%;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bnr.col-3 {
  position: relative;
}
.bnr.col-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.bnr.col-3 .bnr__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 5;
}
@media (max-width: 450px) {
  .bnr.col-3 {
    font-size: 0.8em;
    width: 30%;
  }
}

#bnr a {
  height: 100%;
  color: #fff;
  font-size: 1.5em;
  display: block;
}
@media (max-width: 450px) {
  #bnr a {
    font-size: 1em;
    width: 30%;
  }
}
#bnr a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
#bnr a div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
#bnr a img {
  width: 100%;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-primary {
  background-color: #5ABFCA;
  border-color: #5ABFCA;
}
.btn-primary:hover {
  background-color: #5ABFCA;
  border-color: #5ABFCA;
}

.btn-outline-primary {
  color: #5ABFCA;
  border-color: #5ABFCA;
}
.btn-outline-primary:hover {
  background-color: #5ABFCA;
  border-color: #5ABFCA;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}
main#main {
  background: url(../images/main_top.webp);
  background-size: 200%;
  background-position: top;
}
@media (min-width: 415px) {
  main#main {
    background-position: top center;
    background-size: contain;
  }
}

.pimg img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
@media (max-width: 769px) {
  .pimg img {
    width: 150px;
    height: 150px;
  }
}
.pimg.p1 {
  bottom: -100px;
  right: 15%;
  z-index: 5;
}
@media (max-width: 769px) {
  .pimg.p1 {
    right: 5%;
  }
}
.pimg.p2 {
  display: none;
  right: 7%;
  top: 19%;
}

#top-main {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: relative;
}

.items img {
  height: 225px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.items .icon-new {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  background: red;
  font-size: 0.7em;
  padding: 5px 10px;
}

.footer img {
  max-width: 195px;
}

.sponsored .col-auto.d-none.d-lg-block img {
  width: 200px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*

  info

*/
.info h1 {
  letter-spacing: 2px;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 830px) {
  .info h1 {
    flex-direction: row;
    gap: 0;
  }
}
.info h1:nth-child(1) {
  line-height: 0.7;
}

.info__title {
  padding: 0.2rem 1rem;
  border-left: 4px solid #5ABFCA;
}

ul.list-tab {
  justify-content: center;
}
@media (min-width: 830px) {
  ul.list-tab {
    justify-content: unset;
  }
}
ul.list-tab li {
  border: 1px solid lightgrey;
  width: 170px;
}
ul.list-tab li.active {
  background: #5ABFCA;
  color: #fff;
}

.right-innr {
  text-align: center;
}
@media (min-width: 830px) {
  .right-innr {
    text-align: end;
  }
}
.right-innr-city {
  display: block;
  margin-top: 15px;
}
@media (min-width: 830px) {
  .right-innr-city {
    display: inline;
    margin-top: 0;
  }
}
.right-innr span img {
  width: 13%;
}
@media (min-width: 830px) {
  .right-innr span img {
    width: 7%;
  }
}

#carouselTemples {
  width: 100%;
}

#temples .carousel-inner {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 830px) {
  #temples .carousel-inner {
    height: 600px;
  }
}

.info__inner-ttl {
  background: linear-gradient(transparent 60%, #e7e7e7 95%);
  font-size: 0.9em;
  white-space: nowrap;
}

.info__inner-ttl2 {
  background: linear-gradient(transparent 60%, #f3ea6f 95%);
}

.fortel {
  width: 95%;
  height: 400px;
  border-radius: 21px 21px 0 0;
}
@media (min-width: 830px) {
  .fortel {
    height: 300px;
    width: 80%;
  }
}
.fortel h5 {
  border-radius: 21px 21px 0 0;
}

.ent-img {
  height: 110vh;
}

h4.plan {
  width: 80%;
  background: #fff;
  padding: 20px 0;
  text-align: center;
  margin: auto;
  top: -40px;
  left: 0;
  right: 0;
}

h5.ttlh5 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}
h5.ttlh5::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #5ABFCA;
}

.fs-xs {
  font-size: 0.8em;
}

.table-bordered > :not(caption) > * > * {
  white-space: nowrap;
}

.cfree {
  width: 60px;
  height: 60px;
  display: grid;
  align-items: center;
  line-height: 20px;
}

.num__tel {
  font-size: 25px;
}
@media (min-width: 830px) {
  .num__tel {
    font-size: 30px;
  }
}

.must__tel {
  font-size: 17px;
}
@media (min-width: 830px) {
  .must__tel {
    font-size: 27px;
  }
}

.md {
  display: block;
}
@media (min-width: 830px) {
  .md {
    display: none;
  }
}

.accordion_plan {
  width: 100%;
}
@media (min-width: 830px) {
  .accordion_plan {
    width: 75%;
  }
}
.accordion_plan .accordion-button .col-12 img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}

.c_icon .col-4 img {
  width: 100%;
}
@media (min-width: 830px) {
  .c_icon .col-4 img {
    width: 80%;
  }
}

.accordion-button::after {
  margin-left: -30px;
}
/*# sourceMappingURL=style.css.map */