@charset "UTF-8";
/* base
==================================*/
h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, li, ol, dl, dd, tr {
  font-size: 16px;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

.md {
  display: none !important;
}
@media (max-width: 900px) {
  .md {
    display: block !important;
  }
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
a.tel {
  pointer-events: none;
  cursor: default;
}

img {
  max-width: 100%;
  height: auto;
}

/* header
==================================*/
header {
  position: fixed;
  top: -81px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 80px;
  transition: 0.5s ease;
}
header.show {
  top: 0;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
@media (max-width: 900px) {
  header .header_inner {
    padding: 0 25px;
  }
}
header .header_inner .logo {
  width: 173px;
}
header .header_inner nav ul {
  display: flex;
  align-items: center;
}
header .header_inner nav ul li {
  margin-left: 35px;
}
header .header_inner nav ul li a {
  font-weight: 500;
}
header .header_inner nav ul li a:hover, header .header_inner nav ul li a.here {
  opacity: 0.6;
}
header .header_inner nav ul li.icon a {
  display: block;
  width: 19px;
  height: 19px;
}
header .header_inner nav ul li.icon a img {
  vertical-align: baseline;
}

#under_head {
  position: relative;
  padding: 58px 3%;
}
#under_head .logo {
  width: 127px;
  margin: auto;
  padding-left: 41px;
}
#under_head nav {
  position: absolute;
  right: 80px;
  top: 33.5%;
}
#under_head nav ul {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
#under_head nav ul li {
  width: 28px;
  padding-top: 24px;
  margin: 0 11px;
}
#under_head nav ul li a {
  position: relative;
  writing-mode: vertical-rl;
  font-weight: 500;
  letter-spacing: 0.2em;
}
#under_head nav ul li a::before {
  content: "";
  position: absolute;
  top: -23px;
  right: 50%;
  background: #c6c6c6;
  width: 1px;
  height: 7px;
  transition: 0.3s ease;
}
#under_head nav ul li a:hover {
  color: #878787;
}
#under_head nav ul li a:hover::before {
  background: #000;
  top: -38px;
  height: 22px;
}
#under_head nav ul li a.here {
  color: #878787;
  pointer-events: none;
}

#under_headImg {
  background: url(../assets/images/about/headImg.webp) no-repeat center/cover;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 138px;
}
@media (max-width: 900px) {
  #under_headImg {
    height: 380px;
  }
}
#under_headImg h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
}

/* footer
==================================*/
footer {
  background: linear-gradient(90deg, #1b1b1b 36%, #111 36%);
  padding: 100px 3% 50px;
}
footer *, footer a:visited, footer a:active {
  color: #fff;
}
@media (max-width: 900px) {
  footer {
    background: linear-gradient(90deg, #1b1b1b 42%, #111 42%);
  }
}
footer .footer_inner {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
}
footer .footer_inner .lBox {
  padding: 15px 0 45px;
}
footer .footer_inner .lBox a.logo {
  display: block;
  width: 243px;
  margin-bottom: 85px;
}
footer .footer_inner .lBox ul li {
  font-size: 15px;
  line-height: 1.92;
}
footer .footer_inner .rBox nav ul {
  display: flex;
  flex-direction: row-reverse;
}
footer .footer_inner .rBox nav ul li {
  width: 27px;
  margin: 0 12px 0 5px;
}
footer .footer_inner .rBox nav ul li a {
  font-size: 15px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
footer .footer_inner .rBox nav ul li a:hover {
  color: #fff;
  opacity: 0.6;
}
footer .footer_inner .rBox nav ul li.icon {
  width: 20px;
  margin-right: 30px;
}
footer .footer_inner .rBox nav ul li.icon a {
  width: 20px;
}
footer .footer_inner .rBox nav ul li.icon a img {
  vertical-align: top;
}
footer .footer_inner .rBox .copy {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* common
==================================*/
.section_inner {
  max-width: 1240px;
  margin: auto;
}

.c-bgPattern {
  background: url(../assets/images/bg_pattern.jpg) repeat;
  background-size: 320px auto;
}

.c-moreBtn a {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.c-moreBtn a .c-btnIcon {
  position: relative;
  margin-left: 13px;
  padding-left: 20px;
}
.c-moreBtn a .c-btnIcon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #4b2566;
  width: 30px;
  height: 1px;
  transition: 0.3s ease;
}
.c-moreBtn a .c-btnIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  background: #fff;
  width: 8px;
  height: 1px;
}
.c-moreBtn a .c-btnIcon svg {
  width: 24px;
  height: 13px;
}
.c-moreBtn a .c-btnIcon svg path {
  fill-rule: evenodd;
  transition: 0.3s ease;
}
.c-moreBtn a .c-btnIcon svg .cls-1 {
  fill: #4b2566;
}
.c-moreBtn a .c-btnIcon svg .cls-2 {
  fill: #759b6c;
}
.c-moreBtn a:hover {
  color: #585858;
}
.c-moreBtn a:hover .c-btnIcon::before {
  left: 10px;
  width: 15px;
}
.c-moreBtn a:hover .c-btnIcon svg .cls-1 {
  fill: #759b6c;
}
.c-moreBtn a:hover .c-btnIcon svg .cls-2 {
  fill: #4b2566;
}

a.c-moreBtn2 {
  position: relative;
  box-sizing: border-box;
  display: block;
  color: #fff;
  height: 215px;
  padding-top: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
  writing-mode: vertical-rl;
  line-height: 52px;
}
a.c-moreBtn2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  background: #fff;
  width: 1px;
  height: 23px;
  transition: 0.3s ease;
}
a.c-moreBtn2:hover::after {
  bottom: -10px;
}

a.c-moreBtn3 {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 230px;
  padding-right: 8px;
  border: 1px solid #d7d7d7;
  font-weight: 500;
  line-height: 52px;
  text-align: center;
}
a.c-moreBtn3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: #d7d7d7;
  width: 23px;
  height: 1px;
  transition: 0.3s ease;
}
a.c-moreBtn3:hover::after {
  right: -10px;
}

.c-h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.c-h4 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.c-h3-vertical {
  margin-left: 60px;
  writing-mode: vertical-rl;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.96;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .c-h3-vertical {
    margin-left: 20px;
  }
}

.c-h3-vertical2 {
  margin-left: 35px;
}
@media (max-width: 900px) {
  .c-h3-vertical2 {
    margin-left: 0;
  }
}

.c-line {
  padding: 0 25px;
}
.c-line span {
  display: block;
  background: #dcdcdc;
  width: 100%;
  max-width: 1290px;
  height: 1px;
  margin: auto;
}

/* layout
==================================*/
.l-phRight {
  display: grid;
  grid-template-columns: 49.8387096774% 44.3548387097%;
  grid-template-rows: auto 1fr;
  grid-column-gap: 5.8064516129%;
  margin-bottom: 90px;
  padding: 0 25px;
}
.l-phRight h4 {
  grid-area: 1/1/2/2;
  margin: 35px 0 20px;
}
.l-phRight .ph {
  grid-area: 1/2/3/3;
  transform: translateX(25px);
}
.l-phRight p {
  grid-area: 2/1/3/2;
  line-height: 2.4;
}
.l-phRight .txt01 {
  margin-bottom: 30px;
}

.l-largePhoto {
  max-width: 1240px;
  margin: 0 auto 110px;
  padding: 0 25px;
}
.l-largePhoto .ph {
  width: 93.5483870968%;
  transform: translateX(-25px);
}

.l-largePhoto.l-twoPhotos {
  display: flex;
}
.l-largePhoto.l-twoPhotos .ph {
  width: 46.5725806452%;
  transform: translateX(-25px);
}
.l-largePhoto.l-twoPhotos .ph01 {
  margin-right: 5px;
}

ol.l-newsList li a {
  position: relative;
  display: block;
  margin-top: 30px;
  padding: 25px 0;
  border-bottom: 1px solid #d7d7d7;
}
ol.l-newsList li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  width: 0;
  height: 1px;
  transition: 0.5s ease;
}
ol.l-newsList li a:hover::after {
  width: 100%;
}
ol.l-newsList li a dl {
  display: flex;
}
ol.l-newsList li a dl dt {
  min-width: 250px;
}
ol.l-newsList li a dl dt span {
  display: inline-block;
  width: 76px;
  margin: 0 45px 0 8px;
  border: 1px solid #000;
  border-radius: 50px;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}
@media (max-width: 1150px) {
  ol.l-newsList li a dl {
    display: block;
  }
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-fade,
.c-anim-fade01,
.c-anim-fade02,
.c-anim-fade03,
.c-anim-load,
.c-anim-load02 {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.72, 0.1, 0.47, 1);
}
.c-anim-fade--show,
.c-anim-fade01--show,
.c-anim-fade02--show,
.c-anim-fade03--show,
.c-anim-load--show,
.c-anim-load02--show {
  opacity: 1;
}

/*==================================
  Top
==================================*/
#Top .section_inner h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
#Top .mainVisual {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 150px;
}
@media (max-width: 900px) {
  #Top .mainVisual {
    margin-bottom: 50px;
  }
}
#Top .mainVisual #js-setMainVisual {
  width: 68.2142857143%;
  margin: 0;
}
#Top .mainVisual #js-setMainVisual .swiper-dots {
  position: absolute;
  left: 9.4%;
  bottom: 39px;
  z-index: 3;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button {
  position: relative;
  width: 17px;
  height: 17px;
  margin: 0 18px 0 0;
  opacity: 1;
  background: none;
  cursor: pointer;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button .swiper-dot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #fff;
  width: 7px;
  height: 7px;
  margin: auto;
  border-radius: 50%;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button .swiper-circle {
  display: block;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button .swiper-circle svg .cls-1 {
  fill: none;
  stroke: #fff;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button .swiper-circle svg .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-dasharray: 54;
  stroke-dashoffset: 54;
  transform-origin: center;
  transform: rotate(-90deg);
}
#Top .mainVisual #js-setMainVisual .swiper-dots button.swiper-pagination-bullet-active {
  background: none;
  pointer-events: none;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button.swiper-pagination-bullet-active .swiper-circle svg .cls-1 {
  fill: #fff;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button.swiper-pagination-bullet-active .swiper-circle svg .cls-2 {
  animation: pathMove 6.5s ease-out forwards;
}
#Top .mainVisual #js-setMainVisual .swiper-dots button.swiper-pagination-bullet-active .swiper-circle svg .cls-2.first-load {
  animation: pathMove 4s ease-out forwards !important;
}
@keyframes pathMove {
  0% {
    stroke-dashoffset: 54;
  }
  95% {
    stroke-dashoffset: 0;
    transform: rotate(-90deg);
  }
  100% {
    stroke-dashoffset: 54;
    transform: rotate(270deg);
  }
}
#Top .mainVisual .rBox {
  width: 31.7857142857%;
}
#Top .mainVisual .rBox .logo {
  width: 32.1348314607%;
  margin: 39.6% auto 19.8%;
}
#Top .mainVisual .rBox nav ul {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
#Top .mainVisual .rBox nav ul li {
  width: 28px;
  padding-top: 24px;
  margin: 0 11px;
}
#Top .mainVisual .rBox nav ul li a {
  position: relative;
  writing-mode: vertical-rl;
  font-weight: 500;
  letter-spacing: 0.2em;
}
#Top .mainVisual .rBox nav ul li a::before {
  content: "";
  position: absolute;
  top: -23px;
  right: 50%;
  background: #c6c6c6;
  width: 1px;
  height: 7px;
  transition: 0.3s ease;
}
#Top .mainVisual .rBox nav ul li a:hover {
  color: #878787;
}
#Top .mainVisual .rBox nav ul li a:hover::before {
  background: #000;
  top: -38px;
  height: 22px;
}
#Top .leadSection {
  padding-left: 3%;
  margin-bottom: 156px;
}
@media (max-width: 900px) {
  #Top .leadSection {
    margin-bottom: 80px;
  }
}
#Top .leadSection .section_inner {
  max-width: none;
  position: relative;
}
#Top .leadSection .section_inner .lBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1240px;
  margin: auto;
  padding: 45px 0;
}
@media (max-width: 1150px) {
  #Top .leadSection .section_inner .lBox {
    position: static;
  }
}
#Top .leadSection .section_inner .lBox h3 {
  max-width: 52.4193548387%;
  margin-bottom: 1.3em;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 1150px) {
  #Top .leadSection .section_inner .lBox h3 {
    max-width: none;
  }
}
#Top .leadSection .section_inner .lBox p {
  max-width: 52.4193548387%;
  line-height: 2.4;
  text-align: justify;
}
@media (max-width: 1150px) {
  #Top .leadSection .section_inner .lBox p {
    max-width: 72%;
  }
}
#Top .leadSection .section_inner .phBox {
  display: flex;
  justify-content: space-between;
  width: 41.8928571429%;
  margin: 0 0 0 auto;
}
@media (max-width: 1150px) {
  #Top .leadSection .section_inner .phBox {
    width: 50%;
  }
}
#Top .leadSection .section_inner .phBox .ph01 {
  width: 63.9386189258%;
}
#Top .leadSection .section_inner .phBox .ph02 {
  width: 35.2088661552%;
}
#Top .newsSection {
  padding: 105px 3% 125px;
}
#Top .newsSection .section_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#Top .newsSection .section_inner #getNewsList {
  width: 72.5806451613%;
}
#Top .newsSection .section_inner .c-moreBtn {
  position: absolute;
  left: 0;
  bottom: 0;
}
#Top .aboutSection {
  background: url(../assets/images/top/about_bg.webp) no-repeat center/cover;
  padding: 70px 3% 80px;
  margin-bottom: 138px;
}
#Top .aboutSection .section_inner {
  max-width: 1103px;
  margin: auto;
}
#Top .aboutSection .section_inner .textBox {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  background: rgba(0, 0, 0, 0.45);
  width: 342px;
  margin: 0 0 0 auto;
  padding: 50px 67px 34px 0;
}
#Top .aboutSection .section_inner .textBox h2 {
  color: #fff;
  margin-left: 1em;
  writing-mode: vertical-rl;
}
#Top .aboutSection .section_inner .textBox p {
  color: #fff;
  padding-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  writing-mode: vertical-rl;
  line-height: 2.4;
}
#Top .aboutSection .section_inner .textBox a {
  position: absolute;
  left: -26px;
  bottom: -15px;
}
#Top .eventSection {
  margin-bottom: 130px;
  padding: 0 3%;
}
@media (max-width: 900px) {
  #Top .eventSection {
    margin-bottom: 80px;
  }
}
#Top .eventSection .section_inner h2 {
  margin-bottom: 53px;
  text-align: center;
}
#Top .eventSection .section_inner ol {
  display: flex;
  justify-content: center;
  margin-bottom: 78px;
}
#Top .eventSection .section_inner ol li {
  position: relative;
  width: 18.5483870968%;
  margin-right: 1.814516129%;
}
#Top .eventSection .section_inner ol li .ph {
  position: relative;
  box-sizing: border-box;
  background: url(../assets/images/bg_pattern.jpg) repeat;
  background-size: 320px auto;
  width: 100%;
  padding: 8.3%;
  border-radius: 50%;
}
#Top .eventSection .section_inner ol li .ph::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9.5%;
  transform: translateY(-50%);
  background: url(../assets/images/icon_square.svg) no-repeat center/contain;
  width: 19px;
  height: 10px;
}
#Top .eventSection .section_inner ol li:last-child {
  margin-right: 0;
}
#Top .eventSection .section_inner ol li:last-child .ph::after {
  content: none;
}
#Top .eventSection .section_inner ol li p {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
#Top .eventSection .section_inner ol li p .medium {
  font-size: 16px;
}
#Top .eventSection .section_inner ol li p .large {
  font-size: 23px;
}
#Top .eventSection .section_inner ol li p small {
  font-size: 14px;
}
@media (max-width: 1150px) {
  #Top .eventSection .section_inner ol {
    flex-wrap: wrap;
  }
  #Top .eventSection .section_inner ol li {
    width: 29.435483871%;
    margin-right: 3.2258064516%;
    margin-bottom: 12px;
  }
  #Top .eventSection .section_inner ol li:nth-child(3) {
    margin-right: 0;
  }
  #Top .eventSection .section_inner ol li:nth-child(3) .ph::after {
    content: none;
  }
  #Top .eventSection .section_inner ol li:nth-child(n+4) {
    margin-bottom: 0;
  }
}
#Top .eventSection .section_inner a.c-moreBtn3 {
  margin: auto;
}
#Top .flowersSection {
  padding-right: 3%;
  margin-bottom: 135px;
}
@media (max-width: 1150px) {
  #Top .flowersSection {
    padding-left: 3%;
    padding-right: 0;
  }
}
#Top .flowersSection .section_inner {
  max-width: none;
  position: relative;
}
@media (max-width: 1150px) {
  #Top .flowersSection .section_inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
#Top .flowersSection .section_inner .lBox {
  max-width: 1240px;
  margin: auto;
}
#Top .flowersSection .section_inner .lBox .lBox_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 53.2258064516%;
  margin: 50px 0 0 auto;
}
@media (max-width: 1150px) {
  #Top .flowersSection .section_inner .lBox .lBox_inner {
    position: static;
    max-width: 70%;
    width: auto;
    margin: 0;
  }
}
#Top .flowersSection .section_inner .lBox h3 {
  margin-bottom: 0.7em;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.7;
}
#Top .flowersSection .section_inner .lBox p {
  margin-bottom: 40px;
  line-height: 2.4;
  text-align: justify;
}
#Top .flowersSection .section_inner .phBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 41.1071428571%;
}
@media (max-width: 1150px) {
  #Top .flowersSection .section_inner .phBox {
    width: 50%;
    margin: 0 0 0 auto;
  }
}
#Top .flowersSection .section_inner .phBox .ph01 {
  width: 54.8218940052%;
}
#Top .flowersSection .section_inner .phBox .ph02 {
  width: 44.3092962641%;
}
#Top .worshipSection {
  padding: 120px 3% 100px;
}
#Top .worshipSection .section_inner h2 {
  margin-bottom: 65px;
  text-align: center;
}
#Top .worshipSection .section_inner ul {
  display: flex;
  justify-content: space-between;
}
#Top .worshipSection .section_inner ul li {
  position: relative;
  width: 29.8387096774%;
}
#Top .worshipSection .section_inner ul li .phBox {
  position: relative;
  margin-bottom: 18px;
}
#Top .worshipSection .section_inner ul li .phBox p {
  position: absolute;
  top: -13px;
  left: 31px;
  background: #fff;
  height: 150px;
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.15em;
  text-align: center;
  writing-mode: vertical-rl;
}
#Top .worshipSection .section_inner ul li .textBox p {
  margin-bottom: 20px;
  text-align: justify;
}
#Top .worshipSection .section_inner ul li .c-moreBtn {
  position: absolute;
  top: 100%;
  left: 0;
}
#Top .worshipSection .section_inner ul li .c-moreBtn a .c-btnIcon::before, #Top .worshipSection .section_inner ul li .c-moreBtn a .c-btnIcon::after {
  top: 48%;
}
#Top .anotherSection {
  padding: 0 3% 108px;
  margin-bottom: 124px;
}
#Top .anotherSection .section_inner .boxWrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background: #fff;
  height: 440px;
  border: 1px solid #e8e8e8;
}
#Top .anotherSection .section_inner .boxWrap .textBox {
  box-sizing: border-box;
  width: 58.75%;
  padding-left: 5.5%;
  padding-right: 6.1%;
}
#Top .anotherSection .section_inner .boxWrap .textBox h3 {
  padding: 50px 0 18px;
  margin-bottom: 17px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 19px;
  font-weight: 500;
}
#Top .anotherSection .section_inner .boxWrap .textBox h3 span {
  font-size: 24px;
}
#Top .anotherSection .section_inner .boxWrap .textBox p {
  margin-bottom: 35px;
}
#Top .anotherSection .section_inner .boxWrap .phBox {
  background: url(../assets/images/top/another_ph.webp) no-repeat right 14% center/cover;
  width: 41.25%;
  height: 100%;
}
#Top .gallerySection {
  margin-bottom: 150px;
  padding: 0 3%;
}
#Top .gallerySection .section_inner {
  position: relative;
}
#Top .gallerySection .section_inner h2 {
  text-align: center;
  margin-bottom: 50px;
}
#Top .gallerySection .section_inner ul {
  display: flex;
  flex-wrap: wrap;
}
#Top .gallerySection .section_inner ul li {
  position: relative;
  background: #000;
  width: 19.3548387097%;
  height: 240px;
  margin-right: 0.8064516129%;
  margin-bottom: 10px;
  overflow: hidden;
}
#Top .gallerySection .section_inner ul li:nth-child(5n) {
  margin-right: 0;
}
#Top .gallerySection .section_inner ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
#Top .gallerySection .section_inner ul li a img, #Top .gallerySection .section_inner ul li a video {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: 50% 50%;
}
#Top .gallerySection .section_inner ul li a:hover {
  opacity: 0.6;
}
#Top .gallerySection .section_inner a.instaIcon {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 1;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}
#Top .gallerySection .section_inner a.instaIcon:hover {
  opacity: 0.5;
}

/*==================================
  PC About
==================================*/
@media (max-width: 900px) {
  #About .Lead .section_inner .txtBox {
    width: 54.2%;
  }
}
#About .History {
  margin-bottom: 110px;
  padding: 110px 25px 105px;
}
#About .History .section_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#About .History .section_inner .illust01 {
  position: absolute;
  left: 50px;
  bottom: 0;
  width: 11.8951612903%;
}
#About .History .section_inner .illust02 {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 13.6693548387%;
}
#About .History .section_inner .wrap {
  display: flex;
  flex-direction: column-reverse;
  width: 80.4435483871%;
}
#About .History .section_inner .wrap .ph {
  width: 79.6992481203%;
}
#About .History .section_inner .wrap p {
  max-width: 840px;
  margin: 20px 0 50px 43px;
  line-height: 2.4;
}
#About .Greeting {
  margin-bottom: 135px;
  padding: 0 25px;
}
#About .Greeting .section_inner {
  display: flex;
  justify-content: space-between;
}
#About .Greeting .section_inner .ph {
  width: 29.8387096774%;
  margin-top: 24px;
}
#About .Greeting .section_inner p {
  width: 49%;
  margin-top: 55px;
  line-height: 2.4;
}
#About .Greeting .section_inner p span {
  display: inline-block;
  margin-top: 11px;
}
#About .Another {
  position: relative;
  padding: 110px 25px 135px;
}
#About .Another #anchor01 {
  position: absolute;
  top: -80px;
}
#About .Another .section_inner h3 {
  margin-bottom: 45px;
}
#About .Another .section_inner .boxWrap {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e8e8e8;
}
#About .Another .section_inner .boxWrap .txtBox {
  box-sizing: border-box;
  width: 51.2903225806%;
  padding: 43px 50px;
}
#About .Another .section_inner .boxWrap .txtBox p.name {
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 500;
}
#About .Another .section_inner .boxWrap .txtBox p.name span {
  font-size: 24px;
}
#About .Another .section_inner .boxWrap .txtBox > p:not(.name) {
  margin-top: 12px;
  line-height: 2.18;
}
#About .Another .section_inner .boxWrap .txtBox .contact {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}
#About .Another .section_inner .boxWrap .txtBox .contact a {
  font-size: 15px;
  font-weight: 500;
}
#About .Another .section_inner .boxWrap .txtBox .contact a span {
  font-size: 20px;
}
#About .Another .section_inner .boxWrap .txtBox .contact p {
  margin-top: 8px;
}
#About .Another .section_inner .boxWrap .map {
  width: 48.7096774194%;
}
#About .Another .section_inner .boxWrap .map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

/*==================================
  PC Worship
==================================*/
#Worship #under_headImg {
  background-image: url(../assets/images/worship/headImg.webp);
}
#Worship section {
  position: relative;
}
#Worship section > a {
  position: absolute;
  top: -100px;
}
#Worship .Info .section_inner {
  max-width: 1290px;
}
#Worship .Info .section_inner h3 {
  margin-bottom: 64px;
}
#Worship .Info .section_inner .ph {
  max-width: 1240px;
  margin: auto;
}
#Worship .Info .section_inner .flex-wrap {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 40px auto 75px;
  padding: 0 25px;
}
#Worship .Info .section_inner .flex-wrap h4 {
  margin-right: 50px;
  white-space: nowrap;
}
#Worship .Items,
#Worship .Places {
  margin-top: 100px;
}
#Worship .l-largePhoto {
  margin-bottom: 100px;
}
#Worship .Statues {
  margin: 100px 0 110px;
  padding: 0 25px;
}
#Worship .Statues .section_inner {
  display: flex;
  justify-content: space-between;
}
#Worship .Statues .section_inner > div {
  width: 47.5806451613%;
}
#Worship .Statues .section_inner > div .ph {
  margin-bottom: 35px;
}
#Worship .Statues .section_inner > div p {
  margin-top: 20px;
  line-height: 2;
}
#Worship .Goshuin {
  margin-bottom: 135px;
  padding: 95px 25px;
}
#Worship .Goshuin .section_inner {
  display: grid;
  grid-template-columns: 7.2580645161% 47.9838709677% 44.7580645161%;
}
#Worship .Goshuin .section_inner h3 {
  grid-area: 1/1/2/2;
  margin-top: 24px;
  line-height: 1;
}
#Worship .Goshuin .section_inner .ph {
  grid-area: 1/3/2/4;
  padding-left: 14.4144144144%;
}
#Worship .Goshuin .section_inner p {
  grid-area: 1/2/2/3;
  margin-top: 55px;
  padding-left: 11.7647058824%;
  line-height: 2.4;
}
#Worship .Access {
  margin: 125px 0 172px;
  padding: 0 25px;
}
#Worship .Access .section_inner h3 {
  margin-bottom: 75px;
}
#Worship .Access .section_inner .boxWrap {
  display: flex;
  justify-content: space-between;
}
#Worship .Access .section_inner .boxWrap .txtBox {
  box-sizing: border-box;
  width: 41.935483871%;
}
#Worship .Access .section_inner .boxWrap .txtBox p.name {
  margin: 25px 0 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 19px;
  font-weight: 500;
}
#Worship .Access .section_inner .boxWrap .txtBox p.name span {
  font-size: 23px;
}
#Worship .Access .section_inner .boxWrap .txtBox p.name2 {
  margin-top: 30px;
  font-size: 21px;
}
#Worship .Access .section_inner .boxWrap .txtBox > p:not(.name) {
  margin-top: 12px;
  line-height: 2.18;
}
#Worship .Access .section_inner .boxWrap .txtBox .contact a {
  font-size: 15px;
  font-weight: 500;
}
#Worship .Access .section_inner .boxWrap .txtBox .contact a span {
  font-size: 20px;
}
#Worship .Access .section_inner .boxWrap .txtBox .contact p {
  margin-top: 8px;
}
#Worship .Access .section_inner .boxWrap .txtBox p.dot {
  position: relative;
  padding-left: 1.4em;
}
#Worship .Access .section_inner .boxWrap .txtBox p.dot::before {
  content: "●";
  position: absolute;
  left: 0;
}
#Worship .Access .section_inner .boxWrap .txtBox p.dot a {
  text-decoration: underline;
}
#Worship .Access .section_inner .boxWrap .txtBox p.dot a:hover {
  opacity: 0.6;
}
#Worship .Access .section_inner .boxWrap .map {
  width: 52.4193548387%;
}
#Worship .Access .section_inner .boxWrap .map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

/*==================================
  PC Events
==================================*/
#Events #under_headImg {
  background-image: url(../assets/images/events/headImg.webp);
}
#Events p.lead {
  margin-bottom: 65px;
  text-align: center;
}
#Events .MonthList {
  padding: 0 25px 140px;
}
#Events .MonthList .section_inner .box {
  display: flex;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid #dcdcdc;
}
#Events .MonthList .section_inner .box .month {
  box-sizing: border-box;
  width: 21.7741935484%;
  padding-right: 27px;
  text-align: center;
}
#Events .MonthList .section_inner .box .month .num {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
#Events .MonthList .section_inner .box .month .num span {
  font-size: 34px;
}
#Events .MonthList .section_inner .box .month .name {
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
#Events .MonthList .section_inner .box .month .name small {
  font-size: 14px;
}
#Events .MonthList .section_inner .box .ph {
  width: 23.3870967742%;
}
#Events .MonthList .section_inner .box > p {
  box-sizing: border-box;
  width: 54.8387096774%;
  padding: 0 20px 0 50px;
  line-height: 2.4;
}
#Events .MonthList .section_inner .box01 {
  border-top: 1px solid #dcdcdc;
}
#Events .MonthList .section_inner > p {
  margin-top: 50px;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
}
#Events .Flowers {
  position: relative;
  padding: 110px 25px 90px;
}
#Events .Flowers #flowers {
  position: absolute;
  top: -80px;
}
#Events .Flowers .section_inner h3 {
  margin-bottom: 60px;
}
#Events .Flowers .section_inner ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: 5.2419354839%;
  row-gap: 42px;
}
#Events .Flowers .section_inner ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 18px;
}
#Events .Flowers .section_inner ul li .ph {
  position: relative;
}
#Events .Flowers .section_inner ul li .ph .iconWrap {
  position: absolute;
  left: 20px;
  bottom: 19px;
  z-index: 1;
}
#Events .Flowers .section_inner ul li .ph .iconWrap img {
  width: 60px;
}
#Events .Flowers .section_inner ul li .ph .iconWrap.icon-2 img:nth-child(2) {
  position: relative;
  z-index: -1;
  margin-left: -17px;
}
#Events .Flowers .section_inner ul li > p {
  font-size: 18px;
  text-align: center;
}
#Events .Visit {
  margin: 110px 0 103px;
  padding: 0 25px;
}
#Events .Visit .section_inner {
  box-sizing: border-box;
  padding: 82px 25px 60px;
  border: 1px solid #dcdcdc;
}
#Events .Visit .section_inner h3 {
  width: 68.8306451613%;
  margin: 0 auto 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dcdcdc;
}
#Events .Visit .section_inner p {
  text-align: center;
  line-height: 2.18;
}
#Events .Tomb {
  margin-bottom: 143px;
  padding: 0 25px;
}
#Events .Tomb .section_inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#Events .Tomb .section_inner .ph {
  width: 44.3548387097%;
}
#Events .Tomb .section_inner .txtBox {
  width: 45.9677419355%;
}
#Events .Tomb .section_inner .txtBox h4 {
  margin: 35px 0 20px;
}
#Events .Tomb .section_inner .txtBox p {
  line-height: 2.4;
}

/*==================================
  PC News
==================================*/
#News #under_headImg {
  background-image: url(../assets/images/news/headImg.webp);
}
#News .cateWrap {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 490px;
  margin: 0 auto 50px;
}
#News .cateWrap::before, #News .cateWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../assets/images/icon_square.svg) no-repeat center/contain;
  width: 22px;
  height: 12px;
}
#News .cateWrap::after {
  left: auto;
  right: 0;
}
#News ul.cateList {
  position: relative;
  display: flex;
  justify-content: center;
}
#News ul.cateList li {
  font-size: 15px;
}
#News ul.cateList li a {
  font-size: 15px;
}
#News ul.cateList li:not(.tl) {
  position: relative;
  margin: 0 12px;
}
#News ul.cateList li:not(.tl)::after {
  content: "|";
  position: absolute;
  right: -14px;
}
#News ul.cateList li:not(.tl):last-child {
  margin-right: 0;
}
#News ul.cateList li:not(.tl):last-child::after {
  content: none;
}
#News ul.cateList li.current-cat a,
#News ul.cateList li a:hover {
  color: #b5b5b5;
}
#News section.newsArchive {
  padding: 0 25px;
  margin-bottom: 135px;
}
#News section.newsArchive #getNewsList {
  max-width: 1100px;
  margin: 0 auto 80px;
}
@media (max-width: 1150px) {
  #News section.newsArchive #getNewsList ol.l-newsList li a dl {
    display: flex;
  }
}
#News .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
#News .wp-pagenavi .page, #News .wp-pagenavi .current {
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 32px;
  margin: 0 10px;
  padding-bottom: 16px;
  text-align: center;
}
#News .wp-pagenavi .page:hover, #News .wp-pagenavi .current:hover {
  border-bottom: 1px solid #000;
}
#News .wp-pagenavi .current {
  border-bottom: 1px solid #000;
}
#News .wp-pagenavi .previouspostslink,
#News .wp-pagenavi .nextpostslink,
#News .wp-pagenavi .first,
#News .wp-pagenavi .last {
  margin: 0 30px;
  padding-bottom: 14px;
  font-size: 14px;
}
#News .wp-pagenavi .previouspostslink:hover,
#News .wp-pagenavi .nextpostslink:hover,
#News .wp-pagenavi .first:hover,
#News .wp-pagenavi .last:hover {
  color: #b5b5b5;
}

#News .single {
  padding: 0 20px;
}
#News .single article {
  max-width: 1090px;
  margin: 0 auto 75px;
}
#News .single article .info {
  margin-bottom: 30px;
}
#News .single article .info .day {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
#News .single article .info .day span {
  display: inline-block;
  height: 20px;
  margin: 0 45px 0 8px;
  padding: 0 10px;
  border: 1px solid #000;
  border-radius: 50px;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
}
#News .single article .info .head {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
#News .single article .wrap p {
  line-height: 2.4;
}
#News .single article .wrap p:has(*) {
  margin-bottom: 20px;
}
#News .single article .wrap .has-text-align-center {
  text-align: center;
}
#News .single article .wrap .has-text-align-right {
  text-align: right;
}
#News .single article .wrap .wp-block-heading {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
#News .single article .wrap a {
  text-decoration: underline;
}
#News .single article .wrap a:hover {
  opacity: 0.6;
}
#News .single article .wrap figure {
  width: fit-content;
  margin-bottom: 20px;
  text-align: center;
}
#News .single article .wrap figure img {
  width: auto;
  max-width: 100%;
}
#News .single article .wrap figure a {
  text-decoration: none;
}
#News .single article .wrap figure figcaption {
  color: #252525;
  margin-top: 10px;
  font-size: 14px;
}
#News .single article .wrap ul {
  margin-bottom: 20px;
}
#News .single article .wrap ul li {
  position: relative;
  padding-left: 1em;
}
#News .single article .wrap ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#News .single article .wrap .wp-block-quote {
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 3px solid #b5b5b5;
}
#News .single article .wrap .wp-block-pullquote {
  padding: 10px 0;
  border-top: 3px solid #b5b5b5;
  border-bottom: 3px solid #b5b5b5;
}
#News .single article .wrap table {
  width: 100%;
  border: 1px solid #b5b5b5;
}
#News .single article .wrap table th, #News .single article .wrap table td {
  border: 1px solid #b5b5b5;
}
#News .single article .wrap .wp-block-image.size-large {
  margin: auto;
}
#News .single article .wrap .wp-block-media-text {
  display: flex;
  align-items: center;
}
#News .single article .wrap .wp-block-media-text figure {
  width: 50%;
}
#News .single article .wrap .wp-block-media-text .wp-block-media-text__content {
  width: 47%;
  padding-left: 3%;
}
#News .single article .wrap .wp-block-details {
  margin-bottom: 20px;
}
#News .single article .wrap .wp-block-file {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#News .single article .wrap .wp-block-file a:not(.wp-block-file__button) {
  margin-right: 15px;
  pointer-events: none;
  text-decoration: none;
}
#News .single article .wrap .wp-block-file a.wp-block-file__button {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 230px;
  padding-right: 8px;
  border: 1px solid #d7d7d7;
  font-weight: 500;
  line-height: 52px;
  text-align: center;
  text-decoration: none;
}
#News .single article .wrap .wp-block-file a.wp-block-file__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: #d7d7d7;
  width: 23px;
  height: 1px;
  transition: 0.3s ease;
}
#News .single article .wrap .wp-block-file a.wp-block-file__button:hover::after {
  right: -10px;
}
#News .single article .wrap .wp-block-buttons {
  margin-bottom: 20px;
}
#News .single article .wrap .wp-block-buttons a.wp-block-button__link {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 68px 0 50px;
  border: 1px solid #d7d7d7;
  font-weight: 500;
  line-height: 52px;
  text-align: center;
  text-decoration: none;
}
#News .single article .wrap .wp-block-buttons a.wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: #d7d7d7;
  width: 23px;
  height: 1px;
  transition: 0.3s ease;
}
#News .single article .wrap .wp-block-buttons a.wp-block-button__link:hover::after {
  right: -10px;
}
#News .single .pager {
  max-width: 565px;
  margin: 0 auto 160px;
}
#News .single .pager .prev {
  float: left;
  line-height: 52px;
}
#News .single .pager .prev a:hover {
  opacity: 0.6;
}
#News .single .pager .next {
  float: right;
  line-height: 52px;
}
#News .single .pager .next a:hover {
  opacity: 0.6;
}
#News .single .pager a.back {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 230px;
  margin: auto;
  padding-right: 8px;
  border: 1px solid #d7d7d7;
  font-weight: 500;
  line-height: 52px;
  text-align: center;
}
#News .single .pager a.back::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: #d7d7d7;
  width: 23px;
  height: 1px;
  transition: 0.3s ease;
}
#News .single .pager a.back:hover::after {
  right: -10px;
}

/*==========================================
  Common
==========================================*/
/*==========================================
  Layout
==========================================*/