@charset "utf-8";
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,legend,input,label,textarea,p,blockquote,table,caption,tbody,tfoot,thead,th,td,option,figure,figcaption{
	margin:0;
	padding:0;}

table{
	border-collapse:collapse;
	border-spacing:0;}

fieldset,img,abbr,acronym{border:0;}

address,caption,cite,code,dfn,th,var,optgroup,strong,em,b,i{
	font-style:normal;
	font-weight:normal;}

ol,ul{list-style:none;}

caption,th{text-align:left;}

h1,h2,h3,h4,h5,h6{font-size:100%;}

a,ins,del{text-decoration: none;}

a{
  display: inline-block;
	cursor: pointer;
  transition: all .4s;
}
a,
a * {
	transition: all .4s;
}

img{
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	margin: 0;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;}

object,embed,th,td{vertical-align: top;}

input,textarea,select{font-size: 1em;}

picture,figure,audio{display: inline-block;}

audio {max-width: 100%;}
/***CLEAR FIX***/
.clf::after {
	content: "";
	display: block;
	clear: both;}
/***NO iOS STYLE***/
input[type="submit"],
input[type="button"],
input[type="reset"] {
-webkit-appearance: none;}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
	box-sizing: border-box;
	outline: none;
  font-family: 'Shippori Mincho', serif;
	font-size: 16px;
	font-weight:500;
	color: #333;
}
html,
body {
	overflow-x: hidden;
	overflow-y: auto;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
	opacity: 0;
	padding: 0;
  line-height: 1.75;
	position: relative;
}
body.show {
	opacity: 1;
	transition: 1s;
}
main{
  flex: 1;
}
.inner{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.contents_title,
.contents_title span {
  font-size: 24px;
}
.text,
.top_text {
  line-height: 2;
}
.pc {
  display: none;
}
/*================================
bottom access link
=================================*/
.bottom_access_link {
  width: 100%;
  height: 355px;
  margin-bottom: 140px;
}
.bottom_access_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url("../images/home/access/access_bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.bottom_access_link a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/home/access/access_bg_overlay.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all .4s;
}
.bottom_access_link a .text_access {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: lighten;
  opacity: .27;
}
.bottom_access_link .text_wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bottom_access_link .text_wrap .arrow {
  width: 77px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.bottom_access_link .text_wrap .arrow img {
  display: block;
}
.bottom_access_link a .text_wrap .link_text {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
@media all and (min-width:960px) {
  a[href^="tel:"] {
		pointer-events: none;
    border-bottom: none;
	}
  .mb {
    display: none;
  }
  .pc {
    display: block;
  }
  /*================================
  bottom access link
  =================================*/
  .bottom_access_link a .text_access {
    left: 36px;
  }
  .bottom_access_link a:hover::before {
    opacity: 0;
  }
  .bottom_access_link a:hover .text_wrap .arrow {
    right: 6px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			HEADER / FOOTER

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
header {
  width: 100%;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
}
header .header_logo {
  max-width: 100px;
}
header .header_navi {
  display: none;
}
/*================================
ハンバーガbtn
=================================*/
.btn_trigger_wrap {
  width: 34px;
  cursor: pointer;
}
.under .btn_trigger_wrap {
  top: 30px;
}
button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%); 
  margin: -1px;
}
.btn_trigger_wrap .line_wrap {
  width: 100%;
  height: 18px;
  position: relative;
}
.btn_trigger_wrap .line_wrap span {
  display: inline-block;
  height: 2px;
  background: #888;
  position: absolute;
  right: 0;
  transition: all .4s;
}
.btn_trigger_wrap .line_wrap span:nth-child(1) {
  width: 100%;
  top: 0;
}
.btn_trigger_wrap .line_wrap span:nth-child(2) {
  width: 80%;
  top: 50%;
  transform: translateY(-50%);
}
.btn_trigger_wrap .line_wrap span:nth-child(3) {
  width: 60%;
  bottom: 0;
}
/*ACTIVE*/
.open .btn_trigger_wrap .line_wrap span {
  width: 100%;
}
.open .btn_trigger_wrap .line_wrap span:nth-child(1) {
  top: 8px;
	-webkit-transform: translateY(0) rotate(35deg);
	transform: translateY(0) rotate(35deg);
}
.open .btn_trigger_wrap .line_wrap span:nth-child(2) {
  opacity: 0;
}
.open .btn_trigger_wrap .line_wrap span:nth-child(3) {
  bottom: 8px;
	-webkit-transform: translateY(0) rotate(-35deg);
	transform: translateY(0) rotate(-35deg);
}
/*================================
グローバルメニュー
=================================*/
.navi_open_wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navi_open_wrap::-webkit-scrollbar {
  display:none;
}
.navi_open_wrap .inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 800px;
  padding: 0 28px;
  background: #F4EDED;
  position: relative;
}
.navi_open_wrap nav .navi li {
  margin-bottom: 8px;
}
.navi_open_wrap nav .navi li:last-child {
  margin-bottom: 0;
}
.navi_open_wrap nav .navi li a {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 600;
}
.navi_open_wrap nav .sns_link {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.navi_open_wrap nav .sns_link li {
  width: 30px;
  margin-right: 60px;
}
.navi_open_wrap nav .sns_link li:last-child {
  margin-right: 0;
}
/*================================
footer
=================================*/
footer {
  text-align: center;
}
footer .footer_inner {
  max-width: 1206px;
  margin: 0 auto 25px auto;
}
footer .footer_contents {
  margin-bottom: 40px;
}
footer .footer_logo_wrap {
  margin-bottom: 45px;
}
footer .footer_logo_wrap .footer_logo {
  max-width: 182px;
  margin: 0 auto 32px;
}
footer .footer_logo_wrap .footer_address li {
  margin-bottom: 16px;
}
footer .footer_logo_wrap .footer_address li:last-child {
  margin-bottom: 0;
}
footer .footer_logo_wrap .footer_address li.tel a {
  border-bottom: 1px solid #333;
}
footer .footer_navi_wrap .footer_navi {
  margin-bottom: 60px;
}
footer .footer_navi_wrap .footer_navi li {
  margin-bottom: 32px;
}
footer .footer_navi_wrap .footer_navi li:last-child {
  margin-bottom: 0;
}
footer .footer_navi_wrap .footer_navi li a {
  font-size: 14px;
}
footer .footer_navi_wrap .footer_sns_link {
  display: flex;
  justify-content: center;
}
footer .footer_navi_wrap .footer_sns_link li {
  max-width: 30px;
  margin-right: 40px;
}
footer .footer_navi_wrap .footer_sns_link li:last-child {
  margin-right: 0;
}
footer .copyright {
  font-size: 10px;
  color: #919191;
}
@media all and (min-width:960px) {
  /*================================
  header
  =================================*/
  header {
    height: 80px;
  }
  #home header {
    transform: translateY(-80px);
    transition: all .3s;
  }
  #home.fixed header {
    transform: translateY(0);
  }
  header .header_logo {
    max-width: 140px;
  }
  header .header_navi {
    display: flex;
  }
  header .header_navi li {
    margin-right: 20px;
  }
  header .header_navi li:last-child {
    margin-right: 0;
  }
  header .header_navi li a:hover {
    color: #FF4114;
  }
  /*================================
  ハンバーガbtn
  =================================*/
  .btn_trigger_wrap {
    display: none;
  }
  /*================================
  footer
  =================================*/
  footer {
    padding: 0 16px;
    text-align: left;
  }
  footer .footer_inner {
    margin-bottom: 35px;
  }
  footer .footer_contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  footer .footer_logo_wrap {
    margin-bottom: 0;
  }
  footer .footer_logo_wrap .footer_logo {
    margin: 0 0 15px;
  }
  footer .footer_logo_wrap .footer_address li {
    margin-bottom: 8px;
  }
  footer .footer_logo_wrap .footer_address li.tel a {
    border: none;
  }
  footer .footer_navi_wrap {
    display: flex;
    align-items: flex-start;
  }
  footer .footer_navi_wrap .footer_navi {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 334px;
    margin-right: 90px;
  }
  footer .footer_navi_wrap .footer_navi {
    margin-bottom: 0;
  }
  footer .footer_navi_wrap .footer_navi li {
    margin-bottom: 0;
  }
  footer .footer_navi_wrap .footer_navi li:nth-child(1),
  footer .footer_navi_wrap .footer_navi li:nth-child(2),
  footer .footer_navi_wrap .footer_navi li:nth-child(3) {
    margin-bottom: 26px;
  }
  footer .footer_navi_wrap .footer_navi li:nth-child(1),
  footer .footer_navi_wrap .footer_navi li:nth-child(2),
  footer .footer_navi_wrap .footer_navi li:nth-child(4),
  footer .footer_navi_wrap .footer_navi li:nth-child(5),
  footer .footer_navi_wrap .footer_navi li:nth-child(6) {
    margin-right: 32px;
  }
  footer .footer_navi_wrap .footer_sns_link {
    display: block;
  }
  footer .footer_navi_wrap .footer_sns_link li {
    margin-bottom: 24px;
    margin-right: 0;
  }
  footer .footer_navi_wrap .footer_sns_link li:last-child {
    margin-bottom: 0;
  }
  footer .footer_logo_wrap .footer_address,
  footer .copyright {
    padding-left: 60px;
  }
}
@media all and (min-width:1200px) {
  /*================================
  header
  =================================*/
  header .header_inner {
    padding: 0 40px;
  }
  header .header_navi li {
    margin-right: 32px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			HOME

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
main visual
=================================*/
#home .main_visual_wrap {
	width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 100vh;
  margin-bottom: 20px;
  padding-top: 60px;
  position: relative;
}
#home .main_visual_wrap .mv_logo {
  width: 100%;
  max-width: 78px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
/*SLIDE*/
#home .main_visual_wrap .slide_wrap {
	width: 100%;
	height: 100%;
}
#home .main_visual_wrap .slide_wrap .swiper-slide {
	width: 100%;
	height: 100%;
}
#home .main_visual_wrap .slide_wrap .swiper-slide .image {
  width: 100%;
  height: 50%;
}
#home .main_visual_wrap .slide_wrap img,
#home .main_visual_wrap .slide_wrap picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*================================
about
=================================*/
#home .home_about_wrap {
  margin-bottom: 30px;
}
#home .home_about_wrap .inner {
  padding-top: 54px;
  position: relative;
}
#home .home_about_wrap .contents_title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#home .home_about_wrap .contents_title span {
  display: inline-block;
  padding: 7px 2px 4px 2px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  background: #fff;
}
#home .home_about_wrap a {
  width: 100%;
  height: calc(100vw * 354 / 390);
  position: relative;
  overflow: hidden;
}
#home .home_about_wrap a .bg_image,
#home .home_about_wrap a .bg_image img {
  width: 100%;
  height: 100%;
}
#home .home_about_wrap a .bg_image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(129, 81, 40, .45);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  z-index: 1;
}
#home .home_about_wrap a .bg_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*================================
kaguraoka
=================================*/
#home .home_kaguraoka_wrap {
  margin-bottom: 120px;
}
#home .home_kaguraoka_wrap .contents {
  margin-bottom: 120px;
}
#home .home_kaguraoka_wrap .contents .image,
#home .home_kaguraoka_wrap .contents .text_wrap {
  width: 100%;
}
#home .home_kaguraoka_wrap .contents .text_wrap {
  margin-bottom: 60px;
  padding: 0 16px;
}
#home .home_kaguraoka_wrap .contents .text_wrap .contents_title {
  margin-bottom: 36px;
  font-weight: 600;
}
#home .home_kaguraoka_wrap .contents .text_wrap .text {
  margin-bottom: 128px;
}
#home .home_kaguraoka_wrap .contents .text_wrap .link_btn {
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  text-align: center;
}
#home .home_kaguraoka_wrap .contents .text_wrap .link_btn a {
  width: 100%;
  padding: 22px 0 20px 0;
  line-height: 1;
  border: 1px solid #141414;
  position: relative;
}
#home .home_kaguraoka_wrap .contents .text_wrap .link_btn a .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#home .home_kaguraoka_wrap .contents .text_wrap .link_btn a .arrow img {
  display: block;
  width: 38px;
  height: 6px;
}
/*================================
festival
=================================*/
#home .home_festival_wrap {
  margin-bottom: 80px;
}
#home .home_festival_wrap .contents_title {
  margin-bottom: 28px;
  font-weight: 600;
  text-align: center;
}
#home .home_festival_wrap .contents {
  width: 100%;
  height: 373px;
  margin-bottom: 24px;
  overflow: hidden;
}
#home .home_festival_wrap .contents a {
  width: 100%;
  height: 100%;
  position: relative;
}
#home .home_festival_wrap .contents a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(129, 81, 40, .45);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .4s;
  z-index: 1;
}
#home .home_festival_wrap .contents a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s;
}
#home .home_festival_wrap .text_wrap {
  padding: 0 16px;
}
#home .home_festival_wrap .text_wrap .link_btn {
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  text-align: center;
}
#home .home_festival_wrap .text_wrap .link_btn a {
  width: 100%;
  padding: 22px 0 20px 0;
  line-height: 1;
  border: 1px solid #141414;
  position: relative;
}
#home .home_festival_wrap .text_wrap .link_btn a .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#home .home_festival_wrap .text_wrap .link_btn a .arrow img {
  display: block;
  width: 38px;
  height: 6px;
}
/*================================
prayer wedding link
=================================*/
#home .home_prayer_wedding_link {
  margin-bottom: 60px;
  padding: 0 16px;
}
#home .home_prayer_wedding_link .item {
  margin-bottom: 60px;
}
#home .home_prayer_wedding_link .item:last-child {
  margin-bottom: 0;
}
#home .home_prayer_wedding_link .item a {
  width: 100%;
  box-shadow: 0 3px 10px rgba(145, 145, 145, .16);
}
#home .home_prayer_wedding_link .item a .text {
  padding: 16px 14px 16px 14px;
  background: #fff;
  position: relative;
}
#home .home_prayer_wedding_link .item a .text .link_text {
  font-size: 16px;
  font-weight: 600;
}
#home .home_prayer_wedding_link .item a .text .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#home .home_prayer_wedding_link .item a .text .arrow img {
  display: block;
}
/*================================
introduction link
=================================*/
#home .home_introduction_link_wrap {
  margin-bottom: 160px;
  padding-top: calc(100vw * 18 / 390);
  position: relative;
}
#home .home_introduction_link_wrap .kamikawa_text .normal_text,
#home .home_introduction_link_wrap .kamikawa_text .transparent_text {
  width: calc(100vw * 230 / 390);
  position: absolute;
  right: 16px;
}
#home .home_introduction_link_wrap .kamikawa_text .normal_text {
  top: 0;
  z-index: -1;
}
#home .home_introduction_link_wrap .kamikawa_text .transparent_text {
  top: calc(-100vw * 18 / 390);
  mix-blend-mode: soft-light;
}
#home .home_introduction_link_wrap .inner {
  max-width: unset;
  margin: 0;
  padding: calc(100vw * 30 / 390) 0 calc(100vw * 40 / 390);
  position: relative;
  overflow: hidden;
}
#home .home_introduction_link_wrap .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/home/introduction_link/introduction_link_bg.jpg") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#home .home_introduction_link_wrap .item {
  width: calc(100vw * 264 / 390);
  margin-bottom: calc(100vw * 40 / 390);
  position: relative;
}
#home .home_introduction_link_wrap .item:nth-child(1) {
  margin-left: calc(100vw * 16 / 390);
}
#home .home_introduction_link_wrap .item:nth-child(2) {
  margin-left: calc(100vw * 56 / 390);
}
#home .home_introduction_link_wrap .item:last-child {
  margin-left: calc(100vw * 95 / 390);
  margin-bottom: 0;
}
#home .home_introduction_link_wrap .item .link_btn {
  text-align: center;
  background: #fff;
}
#home .home_introduction_link_wrap .item .link_btn a {
  width: 100%;
  padding: 19px 0 17px;
  line-height: 1;
  position: relative;
}
#home .home_introduction_link_wrap .item .link_btn a .link_text {
  font-size: 16px;
  font-weight: 700;
}
#home .home_introduction_link_wrap .item .link_btn a .arrow {
  width: 21px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#home .home_introduction_link_wrap .item .link_btn a .arrow img {
  display: block;
}
/*================================
information
=================================*/
#home #information {
  margin-top: 220px;
  padding-top: 220px;
}
#home .home_information_wrap {
  margin-bottom: 120px;
  padding: 0 16px;
}
#home .home_information_wrap .contents_title {
  margin-bottom: 30px;
  text-align: center;
}
#home .home_information_wrap .item * {
  font-weight: 600;
}
#home .home_information_wrap .item {
  margin-bottom: 46px;
}
#home .home_information_wrap .item:last-child {
  margin-bottom: 0;
}
#home .home_information_wrap .item a {
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}
#home .home_information_wrap .item a .date {
  display: inline-block;
  width: 100px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
#home .home_information_wrap .item a .article_title {
  width: 100%;
  padding-right: 60px;
  position: relative;
}
#home .home_information_wrap .item a .article_title .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#home .home_information_wrap .item a .article_title .arrow img {
  display: block;
}
@media all and (min-width:960px) {
  /*================================
  main visual
  =================================*/
  #home .main_visual_wrap {
    margin-bottom: 50px;
    padding-top: 0;
  }
  #home .main_visual_wrap .slide_wrap .swiper-slide {
    display: flex;
  }
  #home .main_visual_wrap .slide_wrap .swiper-slide .image {
    width: 50%;
    height: 100%;
  }
  /*================================
  about
  =================================*/
  #home .home_about_wrap {
    margin-bottom: 140px;
    padding: 0 16px;
  }
  #home .home_about_wrap .inner {
    padding-top: 62px;
  }
  #home .home_about_wrap .contents_title span {
    font-size: 24px;
  }
  #home .home_about_wrap a {
    height: unset;
  }
  #home .home_about_wrap a:hover .bg_image img {
    transform: scale(1.05);
  }
  #home .home_about_wrap a:hover .bg_image::before {
    opacity: 0;
  }
  /*================================
  kaguraoka
  =================================*/
  #home .home_kaguraoka_wrap {
    margin-bottom: 140px;
    padding: 0 16px;
  }
  #home .home_kaguraoka_wrap .contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 95px;
  }
  #home .home_kaguraoka_wrap .contents .image {
    max-width: 520px;
    margin-right: 20px;
    margin-bottom: 0;
    order: 1;
  }
  #home .home_kaguraoka_wrap .contents .text_wrap {
    max-width: 480px;
    margin-bottom: 0;
    padding: 0;
    order: 2;
  }
  #home .home_kaguraoka_wrap .contents .text_wrap .text {
    margin-bottom: 88px;
  }
  #home .home_kaguraoka_wrap .contents .text_wrap .link_btn a:hover .arrow {
    right: 6px;
  }
  /*================================
  festival
  =================================*/
  #home .home_festival_wrap {
    margin-bottom: 144px;
  }
  #home .home_festival_wrap .contents_title {
    margin-bottom: 37px;
  }
  #home .home_festival_wrap .contents a:hover::before {
    opacity: 0;
  }
  #home .home_festival_wrap a:hover img {
    transform: scale(1.05);
  }
  /*================================
  prayer wedding link
  =================================*/
  #home .home_prayer_wedding_link {
    margin-bottom: 140px;
  }
  #home .home_prayer_wedding_link .contents {
    display: flex;
    justify-content: space-between;
  }
  #home .home_prayer_wedding_link .item {
    width: 48%;
    margin-bottom: 0;
  }
  #home .home_prayer_wedding_link .item a .text {
    padding: 27px 20px 24px 20px;
  }
  #home .home_prayer_wedding_link .item .text .link_text {
    font-size: 24px;
  }
  #home .home_prayer_wedding_link .item a:hover .text .arrow {
    right: 6px;
  }
  /*================================
  introduction link
  =================================*/
  #home .home_introduction_link_wrap {
    margin-bottom: 120px;
    padding-top: 32px;
  }
  #home .home_introduction_link_wrap .kamikawa_text .normal_text,
  #home .home_introduction_link_wrap .kamikawa_text .transparent_text {
    max-width: 413px;
    right: 27px;
  }
  #home .home_introduction_link_wrap .kamikawa_text .normal_text {
    top: 0;
  }
  #home .home_introduction_link_wrap .kamikawa_text .transparent_text {
    top: -32px;
  }
  #home .home_introduction_link_wrap .inner {
    padding: 65px 0 0;
  }
  #home .home_introduction_link_wrap .inner::before {
    width: calc(100vw * 1044 / 1366);
    height: calc(100% - (100vw * 100 / 1366));
  }
  #home .home_introduction_link_wrap .item {
    width: calc(100vw * 683 / 1366);
    margin-bottom: calc(100vw * 40 / 1366);
    padding-right: calc(100vw * 178 / 1366);
  }
  #home .home_introduction_link_wrap .item:nth-child(1) {
    margin-left: calc(100vw * 26 / 1366);
  }
  #home .home_introduction_link_wrap .item:nth-child(2) {
    margin-left: calc(100vw * 279 / 1366);
  }
  #home .home_introduction_link_wrap .item:last-child {
    margin-left: calc(100vw * 532 / 1366);
  }
  #home .home_introduction_link_wrap .item .image a {
    pointer-events: none;
  }
  #home .home_introduction_link_wrap .item .link_btn {
    width: calc(100vw * 333 / 1366);
    position: absolute;
    top: calc(100vw * 100 / 1366);
    right: 0;
  }
  #home .home_introduction_link_wrap .item .link_btn a {
    padding: calc(100vw * 22 / 1366) 0 calc(100vw * 20 / 1366);
  }
  #home .home_introduction_link_wrap .item .link_btn a .link_text {
    font-size: calc(100vw * 24 / 1366);
  }
  #home .home_introduction_link_wrap .item .link_btn a .arrow {
    width: calc(100vw * 39 / 1366);
  }
  #home .home_introduction_link_wrap .item .link_btn a:hover .arrow {
    right: 6px;
  }
  /*================================
  information
  =================================*/
  #home #information {
    margin-top: -200px;
    padding-top: 200px;
  }
  #home .home_information_wrap {
    margin-bottom: 140px;
  }
  #home .home_information_wrap .contents_title {
    margin-bottom: 40px;
  }
  #home .home_information_wrap .inner {
    max-width: 750px;
  }
  #home .home_information_wrap .item a {
    display: flex;
  }
  #home .home_information_wrap .item a .date {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
  #home .home_information_wrap .item a:hover .article_title .arrow {
    right: 6px;
  }
  #home .home_information_wrap .no_archive {
    text-align: center;
  }
}
@media all and (min-width:1366px) {
  /*================================
  introduction link
  =================================*/
  #home .home_introduction_link_wrap .item {
    margin-bottom: 40px;
    padding-right: 178px;
  }
  #home .home_introduction_link_wrap .item .link_btn {
    width: 100%;
    max-width: 333px;
    top: 100px;
  }
  #home .home_introduction_link_wrap .item .link_btn a {
    padding: 22px 0 20px 0;
  }
  #home .home_introduction_link_wrap .item .link_btn a .link_text {
    font-size: 24px;
  }
  #home .home_introduction_link_wrap .item .link_btn a .arrow {
    width: 38px;
    top: 50%;
    right: 12px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		UNDER RLAYER

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
.under main {
  padding-top: 60px;
}
.under .main_visual_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  padding-top: 40px;
}
.under .main_visual_wrap .page_title {
  font-size: 24px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media all and (min-width:960px) {
  .under main {
    padding-top: 80px;
  }
  .under .main_visual_wrap {
    margin-bottom: 60px;
    padding-top: 60px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		about

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#about .top_wrap {
  margin-bottom: 65px;
}
#about .top_wrap .top_image {
  height: calc(100vw * 200 / 390);
  margin-bottom: 40px;
}
#about .top_wrap .top_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about .top_wrap .top_text_wrap {
  padding: 0 16px;
}
#about .top_wrap .top_text_wrap .top_text {
  text-align: center;
}
/*================================
gosaishin
=================================*/
#about .gosaishin_wrap {
  margin-bottom: 90px;
  padding: 0 16px;
}
#about .gosaishin_wrap .contents_title {
  margin-bottom: 25px;
  position: relative;
}
#about .gosaishin_wrap .contents_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#about .gosaishin_wrap .contents_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
#about .gosaishin_wrap .list_wrap {
  margin-bottom: 40px;
}
#about .gosaishin_wrap .list_wrap dl {
  margin-bottom: 32px;
}
#about .gosaishin_wrap .list_wrap dl:last-child {
  margin-bottom: 0;
}
#about .gosaishin_wrap .list_wrap dl dt {
  margin-bottom: 12px;
}
#about .gosaishin_wrap .list_wrap dl dd ul {
  display: flex;
  flex-wrap: wrap;
}
#about .gosaishin_wrap .list_wrap dl dd ul li {
  margin-right: 1em;
}
#about .gosaishin_wrap .list_wrap dl dd ul li:last-child {
  margin-right: 0;
}
#about .gosaishin_wrap .contents {
  display: flex;
  justify-content: space-between;
}
#about .gosaishin_wrap .item {
  width: 46%;
}
#about .gosaishin_wrap .image {
  margin-bottom: 10px;
}
#about .gosaishin_wrap .item .name {
  text-align: right;
}
/*================================
introduction
=================================*/
#about .introduction_wrap {
  margin-bottom: 110px;
  padding: 0 16px;
}
#about .introduction_wrap .item {
  margin-bottom: 120px;
}
#about .introduction_wrap .item:last-child {
  margin-bottom: 0;
}
#about .introduction_wrap .item .item_title {
  margin-bottom: 28px;
  position: relative;
}
#about .introduction_wrap .item .item_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#about .introduction_wrap .item .item_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
#about .introduction_wrap .item .image {
  margin-bottom: 24px;
}
#about .introduction_wrap .item .image .logo {
  width: calc(100vw * 156 / 390);
  margin: 0 auto;
}
/*================================
kaguraoka
=================================*/
#about .kaguraoka_wrap {
  margin-bottom: 120px;
  padding: 0 16px;
}
#about .kaguraoka_wrap .item .link_btn {
  text-align: center;
  background: #fff;
}
#about .kaguraoka_wrap .item .link_btn a {
  width: 100%;
  padding: 19px 0 17px;
  line-height: 1;
  box-shadow: 0 5px 16px rgba(145, 145, 145, .16);
  position: relative;
}
#about .kaguraoka_wrap .item .link_btn a .link_text {
  font-size: 24px;
  font-weight: 700;
}
#about .kaguraoka_wrap .item .link_btn a .arrow {
  width: 38px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#about .kaguraoka_wrap .item .link_btn a .arrow img {
  display: block;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #about .top_wrap {
    margin-bottom: 80px;
  }
  #about .top_wrap .top_image {
    height: calc(100vw * 457 / 1366);
    max-height: 457px;
    margin-bottom: 60px;
  }
  /*================================
  gosaishin
  =================================*/
  #about .gosaishin_wrap {
    margin-bottom: 120px;
  }
  #about .gosaishin_wrap .inner {
    max-width: 652px;
  }
  #about .gosaishin_wrap .contents_title {
    margin-bottom: 50px;
  }
  #about .gosaishin_wrap .list_wrap dl {
    display: flex;
    margin-bottom: 0;
  }
  #about .gosaishin_wrap .list_wrap dl dt {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
  #about .gosaishin_wrap .contents {
    max-width: 584px;
    margin: 0 auto;
  }
  /*================================
  introduction
  =================================*/
  #about .introduction_wrap {
    margin-bottom: 282px;
  }
  #about .introduction_wrap .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 180px;
  }
  #about .introduction_wrap .item .image {
    width: 100%;
    max-width: 322px;
    margin-bottom: 0;
  }
  #about .introduction_wrap .item .image .logo {
    width: 100%;
    max-width: 156px;
  }
  #about .introduction_wrap .item .text_wrap {
    max-width: 678px;
  }
  /*================================
  kaguraoka
  =================================*/
  #about .kaguraoka_wrap {
    margin-bottom: 140px;
  }
  #about .kaguraoka_wrap .inner {
    max-width: 683px;
    margin: 0 auto;
    position: relative;
  }
  #about .kaguraoka_wrap .item .image {
    max-width: 505px;
  }
  #about .kaguraoka_wrap .item .image a {
    width: 100%;
    pointer-events: none;
  }
  #about .kaguraoka_wrap .item .link_btn {
    width: 100%;
    max-width: 333px;
    position: absolute;
    top: 100px;
    right: 0;
  }
  #about .kaguraoka_wrap .item .link_btn a {
    padding: 30px 0 27px;
  }
  #about .kaguraoka_wrap .item .link_btn a:hover .arrow {
    right: 6px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

history

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#history .top_wrap {
  margin-bottom: 240px;
  padding: 0 16px;
}
#history .top_wrap .top_image {
  margin-bottom: 45px;
}
#history .top_wrap .top_text_wrap .contents_title {
  margin-bottom: 20px;
  position: relative;
}
#history .top_wrap .top_text_wrap .contents_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#history .top_wrap .top_text_wrap .contents_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
/*================================
history
=================================*/
#history .history_wrap {
  margin-bottom: 100px;
  padding: 0 16px;
}
#history .history_wrap .item {
  margin-bottom: 260px;
}
#history .history_wrap .item:last-child {
  margin-bottom: 0;
}
#history .history_wrap .item .item_title,
#history .history_wrap .item .item_title span {
  font-size: 24px;
}
#history .history_wrap .item .item_title {
  margin-bottom: 30px;
  position: relative;
}
#history .history_wrap .item .item_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  bottom: 13px;
  left: 0;
  z-index: 0;
}
#history .history_wrap .item .item_title span {
  padding-right: 20px;
  background: #fff;
  position: relative;
  z-index: 1;
}
#history .history_wrap .item .column {
  padding-top: 24px;
}
#history .history_wrap .item:nth-child(2) .column {
  margin-bottom: 28px;
}
#history .history_wrap .item .column .image_wrap {
  width: 70%;
  margin: 0 auto 20px auto;
}
#history .history_wrap .item:nth-child(1) .column .image_wrap .name {
  text-align: right;
}
#history .history_wrap .item:nth-child(1) .column .image_wrap .image {
  margin-bottom: 8px;
}
/*================================
bottom text
=================================*/
#history .bottom_text_wrap {
  margin-bottom: 200px;
}
#history .bottom_text_wrap .text_wrap {
  padding: 0 16px;
}
#history .bottom_text_wrap .item_title {
  margin-bottom: 34px;
  font-size: 24px;
  position: relative;
}
#history .bottom_text_wrap .item_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#history .bottom_text_wrap .item_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
#history .bottom_text_wrap .image {
  width: 100%;
  height: 150px;
  margin-bottom: 60px;
}
#history .bottom_text_wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #history .top_wrap {
    margin-bottom: 100px;
  }
  #history .top_wrap .top_image {
    margin-bottom: 80px;
  }
  #history .top_wrap .top_text_wrap {
    max-width: 652px;
    margin: 0 auto;
  }
  #history .top_wrap .top_text_wrap .contents_title {
    margin-bottom: 40px;
  }
  /*================================
  history
  =================================*/
  #history .history_wrap .item {
    margin-bottom: 160px;
  }
  #history .history_wrap .item .item_title {
    margin-bottom: 32px;
  }
  #history .history_wrap .item .item_title::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #DDDDDD;
    position: absolute;
    top: 50%;
    bottom: unset;
    left: 0;
    transform: translateY(-50%);
    z-index: 0;
  }
  #history .history_wrap .item .column {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
  #history .history_wrap .item:nth-child(2) .column {
    margin-bottom: 40px;
  }
  #history .history_wrap .item .column .image_wrap {
    width: 100%;
  }
  #history .history_wrap .item:nth-child(1) .column .image_wrap {
    max-width: 312px;
    margin: 0 16px 0 0;
  }
  #history .history_wrap .item:nth-child(2) .column .image_wrap {
    max-width: 352px;
    margin:  0 0 0 16px;
    order: 2;
  }
  #history .history_wrap .item:nth-child(1) .column .text {
    max-width: 679px;
  }
  #history .history_wrap .item:nth-child(2) .column .text {
    max-width: 648px;
    order: 1;
  }
  /*================================
  bottom text
  =================================*/
  #history .bottom_text_wrap .image {
    height: 240px;
    margin-bottom: 80px;
  }
  #history .bottom_text_wrap .text_wrap .contents {
    max-width: 1040px;
    margin: 0 auto;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		festival

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#festival .top_wrap {
  margin-bottom: 40px;
  padding: 0 16px;
}
/*================================
schedule
=================================*/
#festival .schedule_wrap {
  margin-bottom: 120px;
  padding: 0 16px;
}
#festival .schedule_wrap .inner {
  margin-bottom: 40px;
}
#festival .schedule_wrap .inner:last-child {
  margin-bottom: 0;
}
#festival .schedule_wrap .item_title {
  margin-bottom: 40px;
  text-align: center;
}
#festival .schedule_wrap .item_title .month {
  display: inline-block;
  padding: 2px 0;
  font-size: 24px;
  position: relative;
}
#festival .schedule_wrap .item_title .month::before,
#festival .schedule_wrap .item_title .month::after {
  content: "";
  width: 80px;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#festival .schedule_wrap .item_title .month::before {
  top: 0;
}
#festival .schedule_wrap .item_title .month::after {
  bottom: 0;
}
#festival .schedule_wrap .item_title .month .small {
  font-size: 18px;
}
#festival .schedule_wrap .item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #D0BDA0;
}
#festival .schedule_wrap .item:last-child {
  margin-bottom: 0;
}
#festival .schedule_wrap .item .top,
#festival .schedule_wrap .item .top ul {
  align-items: baseline;
}
#festival .schedule_wrap .item .top ul {
  display: flex;
  margin-bottom: 15px;
}
#festival .schedule_wrap .item .top {
  margin-bottom: 20px;
}
#festival .schedule_wrap .item .column {
  justify-content: space-between;
}
#festival .schedule_wrap .item .column .image,
#festival .schedule_wrap .item .column .image_wrap {
  width: 100%;
  flex-shrink: 0;
}
#festival .schedule_wrap .item .image {
  padding-top: 24px;
}
#festival .schedule_wrap .item .column .image_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
#festival .schedule_wrap .item .column .image_wrap .image {
  width: 48%;
  max-width: unset;
  margin-left: 0;
}
#festival .schedule_wrap .item ul {
  align-items: center;
}
#festival .schedule_wrap .item ul .event_date,
#festival .schedule_wrap .item ul .event_time {
  font-size: 14px;
}
#festival .schedule_wrap .item ul .event_date {
  margin-right: 24px;
}
#festival .schedule_wrap .item ul .event_time {
  margin-right: 40px;
}
#festival .schedule_wrap .item .event_name {
  font-weight: 700;
}
#festival .schedule_wrap .item .multiple .top li:nth-child(2) {
  width: 160px;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #festival .top_wrap {
    margin-bottom: 60px;
  }
  /*================================
  schedule
  =================================*/
  #festival .schedule_wrap .inner {
    max-width: 730px;
    margin: 0 auto 60px auto;
  }
  #festival .schedule_wrap .item_title {
    margin-bottom: 30px;
  }
  #festival .schedule_wrap .item .column,
  #festival .schedule_wrap .item .top {
    display: flex;
  }
  #festival .schedule_wrap .item .top ul {
    margin-bottom: 0;
  }
  #festival .schedule_wrap .item .image {
    max-width: 132px;
    margin-left: 16px;
    padding-top: 0;
  }
  #festival .schedule_wrap .item .column .image_wrap {
    max-width: 312px;
    margin-bottom: 0;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		prayer / aumlet

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#prayer-amulet .top_wrap {
  margin-bottom: 60px;
  padding: 0 16px;
  text-align: center;
}
/*================================
link
=================================*/
#prayer-amulet .link_wrap {
  margin-bottom: 138px;
}
#prayer-amulet .link_wrap .item {
  margin-bottom: 80px;
}
#prayer-amulet .link_wrap .item:last-child {
  margin-bottom: 0;
}
#prayer-amulet .link_wrap .item a {
  width: 100%;
  position: relative;
}
#prayer-amulet .link_wrap .item > a {
  pointer-events: none;
}
#prayer-amulet .link_wrap .item a .image {
  margin-bottom: 20px;
  overflow: hidden;
}
#prayer-amulet .link_wrap .item a .image img {
  transition: all .4s;
}
#prayer-amulet .link_wrap .item a .name {
  display: inline-block;
  padding: 8px 26px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}
#prayer-amulet .link_wrap .item .text_wrap {
  padding: 0 16px;
}
#prayer-amulet .link_wrap .item .text_wrap .link_btn {
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  text-align: center;
}
#prayer-amulet .link_wrap .item .text_wrap .link_btn a {
  width: 100%;
  padding: 22px 0 20px 0;
  line-height: 1;
  border: 1px solid #141414;
  position: relative;
}
#prayer-amulet .link_wrap .item .text_wrap .link_btn a .arrow {
  width: 38px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#prayer-amulet .link_wrap .item .text_wrap .link_btn a .arrow img {
  display: block;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #prayer-amulet .top_wrap {
    margin-bottom: 68px;
  }
  /*================================
  link
  =================================*/
  #prayer-amulet .link_wrap {
    margin-bottom: 160px;
  }
  #prayer-amulet .link_wrap .contents {
    display: flex;
    justify-content: space-between;
  }
  #prayer-amulet .link_wrap .item {
    width: 48%;
    margin-bottom: 0;
  }
  #prayer-amulet .link_wrap .item > a {
    pointer-events: all;
  }
  #prayer-amulet .link_wrap .item a .image {
    margin-bottom: 0;
  }
  #prayer-amulet .link_wrap .item a:hover .image img {
    transform: scale(1.05);
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		prayer

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#prayer .top_wrap {
  margin-bottom: 40px;
}
#prayer .top_wrap .top_text {
  margin-bottom: 68px;
  padding: 0 16px;
  text-align: center;
}
#prayer .top_wrap .top_image {
  height: calc(100vw * 200 / 390);
}
#prayer .top_wrap .top_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*================================
prayer introduction
=================================*/
#prayer .prayer_introduction_wrap {
  margin-bottom: 100px;
  padding: 0 16px;
}
#prayer .prayer_introduction_wrap .inner {
  max-width: 730px;
}
#prayer .prayer_introduction_wrap .contents {
  margin-bottom: 60px;
}
#prayer .prayer_introduction_wrap .accordion {
  margin-bottom: 40px;
}
#prayer .prayer_introduction_wrap .accordion:last-child {
  margin-bottom: 0;
}
#prayer .prayer_introduction_wrap .accordion .top {
  padding: 20px 50px 20px 24px;
  font-size: 20px;
  font-weight: 500;
  background: #E8F1FF;
  position: relative;
  cursor: pointer;
}
#prayer .prayer_introduction_wrap .accordion .top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #141414;
  border-right: 1px solid #141414;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
  transition: all .3s;
}
#prayer .prayer_introduction_wrap .accordion.open .top::before {
  transform: translateY(-50%) rotate(-135deg);
}
#prayer .prayer_introduction_wrap .accordion .bottom {
  padding: 16px 24px;
  background: #F7FAFF;
  display: none;
}
#prayer .prayer_introduction_wrap .accordion .bottom .image {
  padding-top: 40px;
}
#prayer .prayer_introduction_wrap .bottom_text {
  text-align: center;
}
#prayer .prayer_introduction_wrap .bottom_text span {
  display: inline-block;
  text-align: left;
}
/*================================
prayer time
=================================*/
#prayer .prayer_time_wrap {
  margin-bottom: 200px;
  padding: 0 16px;
}
#prayer .prayer_time_wrap .image,
#prayer .prayer_time_wrap .text_wrap {
  width: 100%;
}
#prayer .prayer_time_wrap .image {
  margin-bottom: 24px;
}
#prayer .prayer_time_wrap .text_wrap .item_title {
  margin-bottom: 28px;
  position: relative;
}
#prayer .prayer_time_wrap .text_wrap .item_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
#prayer .prayer_time_wrap .text_wrap .item_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #prayer .top_wrap {
    margin-bottom: 90px;
  }
  #prayer .top_wrap .top_text {
    margin-bottom: 50px;
  }
  #prayer .top_wrap .top_image {
    height: calc(100vw * 457 / 1366);
    max-height: 457px;
  }
  /*================================
  prayer time
  =================================*/
  #prayer .prayer_time_wrap .contents {
    display: flex;
    justify-content: space-between;
  }
  #prayer .prayer_time_wrap .image {
    max-width: 322px;
    margin-right: 16px;
    margin-bottom: 0;
  }
  #prayer .prayer_time_wrap .text_wrap {
    max-width: 643px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		aumlet

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
main visual
=================================*/
#amulet .main_visual_wrap {
  margin-bottom: 84px;
}
/*================================
top
=================================*/
#amulet .top_wrap {
  margin-bottom: 88px;
  padding: 0 16px;
  text-align: center;
}
/*================================
amulet
=================================*/
#amulet .amulet_wrap {
  margin-bottom: 140px;
  padding: 0 16px;
}
#amulet .amulet_wrap .inner {
  margin-bottom: 100px;
}
#amulet .amulet_wrap .inner:last-child {
  margin-bottom: 0;
}
#amulet .amulet_wrap .contents_title {
  margin-bottom: 40px;
  text-align: center;
}
#amulet .amulet_wrap .contents_title span {
  display: inline-block;
  min-width: 80px;
  margin: 0 auto;
  padding: 9px 0 6px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#amulet .amulet_wrap .amulet_top_text {
  margin-bottom: 48px;
  text-align: center;
}
#amulet .amulet_wrap .item {
  margin-bottom: 40px;
}
@media all and (min-width:960px) {
  /*================================
  main visual
  =================================*/
  #amulet .main_visual_wrap {
    margin-bottom: 200px;
  }
  #amulet .amulet_wrap .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #amulet .amulet_wrap .contents::after {
    content: "";
    width: 32%;
  }
  #amulet .amulet_wrap .item {
    width: 32%;
    margin-bottom: 3%;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		wedding

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#wedding .kome {
  font-size: 14px;
}
/*================================
top
=================================*/
#wedding .top_wrap {
  margin-bottom: 240px;
}
#wedding .top_wrap .top_image_wrap {
  display: flex;
}
#wedding .top_wrap .top_image_wrap .image {
  width: 50%;
  height: calc(100vw * 126 / 390);
}
#wedding .top_wrap .top_image_wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#wedding .top_wrap .top_text_wrap {
  margin-top: calc(-100vw * 22 / 390);
  padding: 0 16px;
  position: relative;
}
#wedding .top_wrap .top_text_wrap .inner {
  padding-top: 20px;
  background: #fff;
}
#wedding .top_wrap .top_text_wrap .logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 29px;
  background: #fff;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
#wedding .top_wrap .top_text_wrap .logo_wrap .logo {
  width: 19px;
}
/*================================
flow
=================================*/
#wedding .flow_wrap {
  margin-bottom: 50px;
  padding: 0 16px;
}
#wedding .flow_wrap .item_title {
  margin-bottom: 58px;
  margin-left: 23px;
  font-size: 32px;
}
#wedding .flow_wrap .item {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #FFE3EF;
}
#wedding .flow_wrap .item.column {
  display: flex;
}
#wedding .flow_wrap .item ul {
  width: 100%;
}
#wedding .flow_wrap .item ul li {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #FFE3EF;
}
#wedding .flow_wrap .item ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
#wedding .flow_wrap .item ul li dl dt {
  margin-bottom: 30px;
  font-weight: 600;
}
#wedding .flow_wrap .item ul li.mb_column {
  display: flex;
}
#wedding .flow_wrap .item ul li .image {
  max-width: 100px;
  margin-right: 16px;
  flex-shrink: 0;
}
/*================================
price
=================================*/
#wedding .price_wrap {
  margin-bottom: 120px;
  padding: 0 16px;
}
#wedding .price_wrap .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 343px;
  height: 305px;
  text-align: center;
  background: url("../images/wedding/price_bg_mb.png") no-repeat center center;
  background-size: 100%;
}
#wedding .price_wrap .item_title {
  margin-bottom: 36px;
  font-size: 20px;
}
#wedding .price_wrap .item_title .small {
  font-size: 16px;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #wedding .top_wrap {
    margin-bottom: 125px;
  }
  #wedding .top_wrap .top_image_wrap .image {
    width: 50%;
    height: calc(100vw * 457 / 1366);
    max-height: 457px;
  }
  #wedding .top_wrap .top_text_wrap {
    margin-top: calc(-100vw * 90 / 1366);
  }
  #wedding .top_wrap .top_text_wrap .inner {
    padding: 40px 16px 0;
  }
  #wedding .top_wrap .top_text_wrap .logo_wrap {
    width: 100px;
    height: 85px;
    top: -50px;
  }
  #wedding .top_wrap .top_text_wrap .logo_wrap .logo {
    width: 56px;
  }
  #wedding .top_wrap .top_text_wrap .top_text {
    max-width: 681px;
    margin: 0 auto;
  }
  /*================================
  flow
  =================================*/
  #wedding .flow_wrap {
    margin-bottom: 110px;
  }
  #wedding .flow_wrap .item_title {
    margin-bottom: 65px;
    margin-left: 60px;
  }
  #wedding .flow_wrap .item ul li dl {
    display: flex;
    align-items: center;
  }
  #wedding .flow_wrap .item ul li dl dt {
    width: 150px;
    margin-bottom: 0;
    margin-right: 40px;
    flex-shrink: 0;
  }
  #wedding .flow_wrap .item ul li dl dd {
    max-width: 558px;
  }
  #wedding .flow_wrap .item .image {
    max-width: 180px;
    margin-left: 16px;
    flex-shrink: 0;
  }
  /*================================
  price
  =================================*/
  #wedding .price_wrap {
    margin-bottom: 160px;
  }
  #wedding .price_wrap .inner {
    max-width: 576px;
    height: 274px;
    background: url("../images/wedding/price_bg.png") no-repeat center center;
    background-size: 100%;
  }
}
@media all and (min-width:1366px) {
  /*================================
  top
  =================================*/
  #wedding .top_wrap .top_text_wrap {
    margin-top: -90px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		group

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
link
=================================*/
#group .link_wrap {
  margin-bottom: 160px;
  padding: 0 16px;
}
#group .link_wrap .item {
  margin-bottom: 52px;
}
#group .link_wrap .item:last-child {
  margin-bottom: 0;
}
#group .link_wrap .item a {
  width: 100%;
  box-shadow: 0 3px 10px rgba(145, 145, 145, .16);
}
#group .link_wrap .item a .text {
  padding: 18px 20px;
  text-align: center;
  background: #fff;
  position: relative;
}
#group .link_wrap .item a .text .link_text {
  font-size: 19px;
  font-weight: 600;
}
#group .link_wrap .item a .text .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
#group .link_wrap .item a .text .arrow img {
  display: block;
}
@media all and (min-width:960px) {
  /*================================
  link
  =================================*/
  #group .link_wrap .contents {
    display: flex;
    justify-content: space-between;
  }
  #group .link_wrap .item {
    width: 32%;
    margin-bottom: 0;
  }
  #group .link_wrap .item a .text .link_text {
    font-size: 16px;
  }
  #group .link_wrap .item a:hover .text .arrow {
    right: 6px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		group gallery

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
.group_gallery .top_wrap {
  margin-bottom: 100px;
}
.group_gallery .top_wrap .top_image {
  height: calc(100vw * 340 / 390);
}
.group_gallery .top_wrap .top_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.group_gallery .top_wrap .top_text_wrap {
  padding: 40px 16px 0;
}
.group_gallery .top_wrap .top_text_wrap .item {
  margin-bottom: 60px;
}
.group_gallery .top_wrap .top_text_wrap .item:last-child {
  margin-bottom: 0;
}
.group_gallery .top_wrap .top_text_wrap .item ul {
  display: flex;
  flex-wrap: wrap;
}
.group_gallery .top_wrap .top_text_wrap .item ul li {
  margin-right: 1em;
}
.group_gallery .top_wrap .top_text_wrap .item ul li:last-child {
  margin-right: 0;
}
.group_gallery .top_wrap .top_text_wrap .item .item_title {
  margin-bottom: 28px;
  position: relative;
}
.group_gallery .top_wrap .top_text_wrap .item .item_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
.group_gallery .top_wrap .top_text_wrap .item .item_title span {
  padding-right: 20px;
  font-size: 24px;
  background: #fff;
  position: relative;
  z-index: 1;
}
/*================================
gallery
=================================*/
.group_gallery .gallery_wrap {
  margin-bottom: 160px;
  padding: 0 16px;
}
.group_gallery .gallery_wrap .item {
  margin-bottom: 60px;
}
.group_gallery .gallery_wrap .item:last-child {
  margin-bottom: 0;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  .group_gallery .top_wrap {
    margin-bottom: 120px;
  }
  .group_gallery .top_wrap .top_image {
    height: calc(100vw * 457 / 1366);
    max-height: 457px;
  }
  .group_gallery .top_wrap .top_text_wrap {
    padding-top: 80px;
  }
  .group_gallery .top_wrap .top_text_wrap .top_text {
    max-width: 652px;
    margin: 0 auto;
  }
  /*================================
  gallery
  =================================*/
  .group_gallery .gallery_wrap .item {
    margin-bottom: 60px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		access

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
top
=================================*/
#access .top_wrap {
  margin-bottom: 80px;
}
#access .top_wrap .top_image_wrap {
  display: flex;
}
#access .top_wrap .top_image_wrap .image {
  width: 50%;
  height: calc(100vw * 125 / 390);
}
#access .top_wrap .top_image_wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*================================
access
=================================*/
#access .access_wrap {
  margin-bottom: 120px;
}
#access .access_wrap .item {
  margin-bottom: 68px;
}
#access .access_wrap .item .item_title {
  margin-bottom: 30px;
  text-align: center;
}
#access .access_wrap .item .item_title span {
  display: inline-block;
  padding: 9px 0 6px;
  font-size: 24px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
#access .access_wrap .item .top_address_wrap {
  margin-bottom: 27px;
  padding: 0 16px;
}
#access .access_wrap .item .traffic.mb {
  padding: 24px 16px 0;
}
#access .access_wrap .item .traffic li dl {
	display: flex;
	align-items: flex-start;
}
#access .access_wrap .item .traffic li dl dt {
	flex-shrink: 0;
}
#access .access_wrap .item .tel a {
  border-bottom: 1px solid #333;
}
#access .access_wrap .map_wrap,
#access .access_wrap .map_wrap iframe {
  width: 100%;
  height: 440px;
}
@media all and (min-width:960px) {
  /*================================
  top
  =================================*/
  #access .top_wrap .top_image_wrap .image {
    height: calc(100vw * 457 / 1366);
    max-height: 457px;
  }
  /*================================
  access
  =================================*/
  #access .access_wrap {
    margin-bottom: 160px;
  }
  #access .access_wrap .item {
    margin-bottom: 120px;
  }
  #access .access_wrap .item .item_title {
    margin-bottom: 45px;
  }
  #access .access_wrap .item .top_address_wrap {
    margin-bottom: 43px;
  }
  #access .access_wrap .item .top_address_wrap.column .inner {
    display: flex;
    justify-content: space-between;
  }
	#access .access_wrap .item .traffic {
		max-width: 520px;
	}
  #access .access_wrap .item .tel a {
    border-bottom: none;
  }
  #access .access_wrap .map_wrap,
  #access .access_wrap .map_wrap iframe {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    height: 560px;
  }
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

		single

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
article
=================================*/
.single .article_wrap {
  margin-bottom: 120px;
  padding: 0 16px;
}
.single .article_wrap .article_title_wrap {
  margin-bottom: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ccc;
}
.single .article_wrap .article_title_wrap .date {
  margin-bottom: 20px;
}
.single .article_wrap .article_title_wrap .title {
  font-size: 20px;
  font-weight: 600;
}
.single .article_wrap .contents {
  margin-bottom: 140px;
}
.single .article_wrap .return_btn {
  width: 100%;
  max-width: 264px;
  margin: 0 auto;
  text-align: center;
}
.single .article_wrap .return_btn a {
  width: 100%;
  padding: 18px 0 16px 0;
  line-height: 1;
  box-shadow: 0 5px 16px rgba(145, 145, 145, .16);
  position: relative;
}
.single .article_wrap .return_btn a .arrow {
  width: 38px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: scale(-1,1) translateY(-50%);
}
.single .article_wrap .return_btn a .arrow img {
  display: block;
  width: 38px;
  height: 6px;
}
@media all and (min-width:960px) {
  /*================================
  article
  =================================*/
  .single .article_wrap .contents {
    margin-bottom: 100px;
  }
  .single .article_wrap .return_btn a:hover .arrow {
    left: 4px;
  }
}