@CHARSET "UTF-8";
/*
Theme Name: 特任布教制度WEB
date: 2026.02.14
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --bk: #000;
	--yellow: #fff100;
  --orange: #ec6941;
  --stripe_bg: #000 repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.2) 5px, rgba(255, 255, 255, 0.2) 10px );
  --stripe_yellow: #fff100 repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 255, 255, .6) 5px, rgba(255, 255, 255, .6) 10px );
	--header_height: 5rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 100px;
	}
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "Libre Baskerville","Zen Old Mincho", serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 700;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}
.hidden{
	overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}

*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}
.accordion dd.open{
	display: block;
}

.tab_wrap{
	display: flex;
  border-bottom: #000 solid 2px;
}
.tab_item{
  border: #c9c9c9 solid 2px;
  border-bottom: #000 solid 2px;
  background: #c9c9c9;
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 2rem;
  margin-right: .5rem;
  margin-bottom: -2px;
  position: relative;
  z-index: 5;
  cursor: pointer;
  font-weight: 700;
}
.tab_item.active{
  background: #fff;
  border: #000 solid 2px;
  border-bottom: #fff solid 2px;
  color: #000;
}
.tab_panel__wrap{
  padding-top: 3rem;
  margin-bottom: 5rem;
}
.tab_panel{
	display: none;
}
.tab_panel.active{
	display: block;
}



/* =slide base
-------------------------------------------------------------- */

.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}





/* =site basic
-------------------------------------------------------------- */

.btn_link{
	background: #000;
	border: #000 solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
  transition: .3s;
}

.link_more__wrap{
  text-align: right;
  margin-top: 2rem;
}
.link_more{
  position: relative;
  padding: 0 2rem .5rem 0;
  display: inline-block;
  font-size: 1.2rem;
}
.link_more::before{
  content: '';
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
}
.link_more::after{
  content: '';
  background: #000;
  width: 1rem;
  height: .8rem;
  clip-path: polygon(0 0,100% 100%,0 100%);
  position: absolute;
  bottom: 2px;
  right: 0;
  transition: .3s;
}

#page{
  padding-top: var(--header_height);
}
.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}
.short_wrap{
  max-width: 850px;
}
.page_container{
  padding: 3rem 0 5rem;
}
.section{
	padding: 3rem 0;
}
.bg{
  background: #efefef;
}
.block{
  margin-bottom: 5rem;
}
.page_title{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
#message_404 p{
  text-align: center;
  margin-bottom: 5rem;
}

.section_title{
  background: var(--stripe_bg);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.side_container .section_title{
  font-size: 1.6rem;
}
.table th,
.table td{
  border: #999 solid 1px;
}
.table th{
  width: 20%;
  background: #efefef;
  text-align: center;
}





/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--orange);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}








/* =header
-------------------------------------------------------------- */

#site_header{
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  height: var(--header_height);
  box-shadow: 0 2px 3px rgba(0,0,0,.2);
  border-bottom: #000 solid 1px;
}
.site_logo{
  display: inline-flex;
  align-items: center;
}
.site_logo img{
  width: 4rem;
  margin-right: .5rem;
}
.site_logo__txt{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.site_logo__txt span{
  font-size: 70%;
  display: block;
}
#header_logo{
  padding-left: 1rem;
  margin: 0 auto 0 0; 
}
#header_nav__btn{
	position: fixed;
	top: 0;
	right: 0;
	width: var(--header_height);
	height: var(--header_height);
	text-align: center;
	z-index: 9999;
  cursor: pointer;
  background: #000;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
}
#header_nav__btn .border{
	width: 100%;
	height: 3px;
	background: #fff;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border{
  background: #fff;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
#header_nav__inner{
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
}
.main_navigation{
	position: relative;
  padding: 6rem 0;
  width: 100%;
  max-width: 500px;
}
.main_navigation li a{
	display: block;
	padding: 1.5rem;
	position: relative;
  border-bottom: #999 solid 1px;
}
.main_navigation li a::before{
  content: '';
  border-top: #000 solid 1px;
  border-right: #000 solid 1px;
  rotate: 45deg;
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  width: 1rem;
  height: 1rem;
}

.btn_rep{
  border-radius: 50px;
  background: var(--stripe_bg);
}
.btn_rep::after{
  content: '';
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  rotate: 45deg;
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  width: .5rem;
  height: .5rem;
}

#header_login li{
  margin-bottom: 1rem;
}


/* =breadcrumb
-------------------------------------------------------------- */

.breadcrumb_wrap{
	overflow: hidden;
	margin: .5rem auto 5rem;
	white-space: nowrap;
	text-align: right;
  max-width: 100%;
}
.breadcrumb{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1rem;
}
.breadcrumb li::after{
	content: '';
	border-top: #999 solid 1px;
	border-right: #999 solid 1px;
	width: .5rem;
	height: .5rem;
	display: inline-block;
	rotate: 45deg;
	margin-right: .5rem;
}
.breadcrumb li:last-child{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 15rem;
}
.breadcrumb li:last-child::after{
	content: none;
}





/* =footer
-------------------------------------------------------------- */

#site_footer{
  border-top: #000 solid 2px;
  padding-top: 3rem;
}
#footer_logo{
  margin-bottom: 2rem;
}
#footer_logo img{
  width: 6rem;
  margin-right: 1rem;
}
#footer_logo .site_logo__txt{
  font-size: 2rem;
}
#footer_contact h2{
  font-size: 1.2rem;
  padding: .5rem 0;
  text-align: center;
  background: #000;
  color: #fff;
  margin-bottom: 1rem;
  border-radius: 50px;
}
#footer_contact__inner p{
  font-size: 1.2rem;
  margin: .3rem 0;
}
#footer_sitemap{
  margin: 3rem 0;
}
#footer_sitemap li{
  margin: .5rem 0;
}
#footer_links{
  margin-top: 5rem;
}
#footer_links h2{
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 2rem;
}
#footer_links h2::before,
#footer_links h2::after{
  content: '';
  background: #000;
  width: 50%;
  height: 1px;
  display: block;
}
#footer_links h2 span{
  padding: 0 1rem;
}
#footer_links ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -.5rem;
}
#footer_links ul li{
  width: 50%;
  padding: 0 .5rem;
  margin-bottom: 1rem;
}
#footer_links ul li p{
  font-size: 1rem;
  margin-top: .5rem;
  text-align: center;
  line-height: 1.5;
}
#footer_copy{
  background: #000;
  padding: 3rem 0;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin-top: 3rem;
}





/* =TOP
-------------------------------------------------------------- */

#top_container{
  padding: 5rem 0 8rem;
}
.top_cont__section{
  margin-bottom: 6rem;
}
.top_cont__title{
  background: var(--stripe_bg);
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  padding: 1rem;
  display: flex;
  align-items: center;
}
.top_cont__title .title_icon{
  width: 4rem;
  margin-right: 1rem;
}
.top_cont__title h2{
  line-height: 1;
}
.top_cont__title h2 span{
  color: var(--yellow);
  font-size: 150%; 
  margin-left: .5rem;
}

.tafukyoshi_map__tab{
  justify-content: space-between;
  
}
.tafukyoshi_map__tab .tab_item{
  width: 49%;
  margin-right: 0;
  text-align: center;
}
#top_fukyoshi__name ul{
  display: flex;
  flex-wrap: wrap;
}
.fukyoshi_name__catList li{
  margin-bottom: 1rem;
}
#top_fukyoshi__name li{
  padding: 0 .5rem;
  width: 50%;
}
.fukyoshi_name__catList .btn_link{
  border-radius: 1rem;
  border: rgba(0,0,0,.1) solid 1px;
  box-shadow: 0 0 4px rgba(0,0,0,.1);
  background: #fff;
  color: #000;
  font-weight: 700;
  max-width: 100%;
  padding: 1rem 0;
}
#top_fukyoshi__name .fukyoshi_name__catList .btn_link{
  padding: 2rem 0;
}
.top_about__block{
  margin-bottom: 3rem;
}
.top_about__img{
  position: relative;
  z-index: 5;
  margin-bottom: 2rem;
}
.top_about__img::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--stripe_yellow);
  border-radius: 2rem;
  bottom: -1rem;
  right: -1rem;
  z-index: -1;
}
.top_about__img .img_clip{
  border-radius: 2rem;
}
.top_about__img .img_clip::before{
  padding-top: 70%;
}
.top_about__txt h3{
  font-size: 1.8rem;
  margin-bottom: 1rem;
}







/* =fukyoshi
-------------------------------------------------------------- */

#fukyoshi_map__wrap{
  position: relative;
  width: 100%;
  padding: 6rem 3rem 18rem;
  margin: 0 auto;
  max-width: 60rem;
  width: 100%;
}
#fukyoshi_map__img{
  display: block;
  margin: 0 auto;
}
.fukyoshi_map__box{
  z-index: 10;
  position: absolute;
}
.fukyoshi_map__box h3{
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.fukyoshi_map__box ul li{
  text-align: center;
  margin: .2rem;
  font-size: 1rem;
  width: 7rem;
}
.fukyoshi_map__box ul li a,
.fukyoshi_map__box ul li span{
  width: 100%;
  padding: .5rem;
  background: #ccc;
  color: #fff;
  display: block;
  font-weight: bold;
}
.fukyoshi_map__box ul li span{
  opacity: .3;
}
.fukyoshi_map__box ul li a:hover{
  opacity: .8;
}
#fukyoshi_map__hokkaido{
  top: 0;
  right: 1rem;
}
#fukyoshi_map__hokkaido h3{
  color: #968cc8;
}
#fukyoshi_map__hokkaido ul li a,
#fukyoshi_map__hokkaido ul li span,
#fukyoshi_list__hokkaido h2{
  background: #968cc8
}
#fukyoshi_map__tohoku{
  top: 12rem;
  right: 0;
}
#fukyoshi_map__tohoku h3{
  color: #82a0dc;
}
#fukyoshi_map__tohoku ul li a,
#fukyoshi_map__tohoku ul li span,
#fukyoshi_list__tohoku h2{
  background: #82a0dc
}
#fukyoshi_map__kanto h3{
  color: #78bebe;
}
#fukyoshi_map__kanto{
  bottom: 0;
  right: 0;
}
#fukyoshi_map__kanto ul{
  display: flex;
  flex-wrap: wrap;
  width: calc(7.4rem * 3);
}
#fukyoshi_map__kanto ul li a,
#fukyoshi_map__kanto ul li span,
#fukyoshi_list__kanto h2{
  background: #78bebe
}
#fukyoshi_map__hokuriku{
  top: 5%;
  right: 32%;
}
#fukyoshi_map__hokuriku h3{
  color: #c8b900;
}
#fukyoshi_map__hokuriku ul li a,
#fukyoshi_map__hokuriku ul li span,
#fukyoshi_list__hokuriku h2{
  background: #c8b900
}
#fukyoshi_map__tokai{
  bottom: 13rem;
  right: 2rem;
}
#fukyoshi_map__tokai ul{
  display: flex;
  flex-wrap: wrap;
  width: calc(7.4rem * 3);
}
#fukyoshi_map__tokai h3{
  color: #a0be5a;
}
#fukyoshi_map__tokai ul li a,
#fukyoshi_map__tokai ul li span,
#fukyoshi_list__tokai h2{
  background: #a0be5a
}
#fukyoshi_map__kinki{
  top: 10%;
  left: 8rem;
}
#fukyoshi_map__kinki h3{
  color: #dca046;
}
#fukyoshi_map__kinki ul li a,
#fukyoshi_map__kinki ul li span,
#fukyoshi_list__kinki h2{
  background: #dca046
}
#fukyoshi_map__cyushikoku{
  top: 5%;
  left: 0;
}
#fukyoshi_map__cyushikoku h3{
  color: #d26c6e;
}
#fukyoshi_map__cyushikoku ul li a,
#fukyoshi_map__cyushikoku ul li span,
#fukyoshi_list__cyushikoku h2{
  background: #d26c6e
}
#fukyoshi_map__kyusyu{
  bottom: 5%;
  left: 0;
}
#fukyoshi_map__kyusyu h3{
  color: #b478b4;
}
#fukyoshi_map__kyusyu ul li a,
#fukyoshi_map__kyusyu ul li span,
#fukyoshi_list__kyusyu h2{
  background: #b478b4
}

.tafukyoshi_name__tab .tab_item{
  padding: 1rem 2rem;
}
#fukyoshi_name__list{
  margin: 50px 0;
}
#fukyoshi_name__list h2 span{
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  display: inline-block;
  background: #000;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.fukyoshi_kyoku__wrap li{
  margin-bottom: 10px;
}
.fikyoshi_list__link{
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: #999 solid 1px;
  padding: .5rem 1rem;
}
.fikyoshi_list__photo{
  width: 5rem;
  margin-right: 2rem;
}
.fikyoshi_list__txt{
  flex: 1;
}
.fikyoshi_list__link p{
  font-size: 16px;
}
.fikyoshi_list__link span{
  display: block;
  margin-top: .5rem;
}
.fikyoshi_list__link:hover{
 color: #ea5506;
 background: #efefef;
}

.fukyoshi_kyoku__wrap{
  margin-bottom: 80px;
}
.fukyoshi_kyoku__wrap h2{
  width: 100%;
  margin: 0 auto 30px;
  background: #ccc;
  color: #fff;
  padding: 5px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
}

#fukyoshi_photo{
  width: 60%;
  max-width: 200px;
  margin: 0 auto 10px;
}
#fukyoshi_detail h1{
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}
#fukyoshi_detail h1 span{
  display: block;
  font-size: 60%;
  font-weight: normal;
}
#fukyoshi_detail{
  margin-bottom: 50px;
}
#fukyoshi_detail p.fukyoshi_kanji{
  margin: 0;
}
.fukyoshi_table{
  margin-bottom: 2rem;
}
.fukyoshi_table tr{
  border-bottom: #D7C9AA solid 2px;
}
.fukyoshi_table tr:first-child{
  border-top: #D7C9AA solid 2px;
}
.fukyoshi_table th{
  background: #F8F7F8;
  padding: 10px 5px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  width: 35%;
}
.fukyoshi_table th span{
  font-size: 80%;
  display: block;
}
.fukyoshi_table td{
  padding: 10px;
  font-size: 12px;
}
.fukyoshi_table td a{
  text-decoration: underline;
}
.fukyoshi_table td a:hover{
  color: #ea5506;
}
#fukyoshi_detail h1{
  position: relative;
}
.fukyoshi_table td{
  position: relative;
}
.txt_img{
  text-align: right;
  margin: 0;
  line-height: 1;
}
.txt_img img{
  height: 14px;
  width: auto;
}
#fukyoshi_name__list ul{
  margin-bottom: 50px;
}
.archive_links{
  margin-top: 5rem;
}
.archive_links li{
  margin-bottom: 2rem;
}
.btn_link__fukyoshi{
  max-width: 600px;
}

#login_header{
  text-align: center;
  margin-bottom: 3rem;
}
#login_header h1{
  font-size: 2rem;
  margin-bottom: 1rem;
}
#loginform .input{
  width: 100%;
  padding: 5px;
  margin-bottom: 3px;
  line-height: 1.7;
  font-size: 1.6rem;
}
#loginform #wp-submit{
  background: #000;
  color: #fff;
  text-align: center;
  display: block;
  padding: 15px 10px;
  width: 100%;
  max-width: 350px;
  margin: 5rem auto 0;
  border: #000 solid 1px;
  font-size: 18px;
}
#loginform input{
  width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: #ccc solid 1px;
	min-height: 4rem;
	display: block;
}
.login-username{
  margin-bottom: 1rem;
}
.login_form{
  max-width: 600px;
  margin: 0 auto;
}
.loginform__error{
  font-weight: bold;
  text-align: center;
  color: #ff0000;
  margin-top: 1rem;
}

#fukyoshi_about{
  background: #F7F7F7;
  padding: 3rem 5%;
  margin: 0 -5% 3rem;
}
#fukyoshi_about h2{
  font-size: 1.8rem;
  padding: 1rem;
  border: #D7C9AA solid 1px;
  background: #fff;
}


.nav_single li{
	position: fixed;
  top: 50%;
  translate: 0 -50%;
}
.nav_prev{
  left: 1rem;
  scale: -1 1;
}
.nav_next{
  right: 1rem;
}
.nav_single li a{
	display: block;
	width: 5rem;
  height: 5rem;
  background: #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_single li a .arrow{
  width: 1rem;
  height: 1rem;
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  rotate: 45deg;
}
#page_fukyoshi{
  position: relative;
}

.no_posts{
  padding: 2rem 0;
  background: #efefef;
  text-align: center;
}


/* =Contact
-------------------------------------------------------------- */

#form{
  padding: 5rem 0;
}
.form_inner{
  background: #fff;
  padding: 3rem 5%;
  border-radius: 1rem;
}
.require{
	background: #960014;
	color: #fff;
	font-size: 1rem;
	padding: .5rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: #ccc solid 1px;
	min-height: 4rem;
	display: block;
  position: relative;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 12rem;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.form_flex{
  display: flex;
  flex-wrap: wrap;
}
.form_flex li{
  width: 50%;
  padding-right: .5rem;
}
.temple_name li p{
  font-size: 1.2rem;
}
.report_date__wrap li{
  display: flex;
  align-items: center;
  width: auto;
  margin-right: 1rem;
}
.report_date__wrap li .input_box{
  margin-right: .5rem;
}
input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
}
.form_wrap td{
	display: block;
	padding: 0 0 2rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
}
.form_wrap td a{
  text-decoration: underline;
}
.form_wrap td a:hover{
  text-decoration: none;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
  font-size: 1.2rem;
}
.policy_check p{
	margin: 1rem 0;
}
.policy_check p a{
  color: var(--orange);
  text-decoration: underline;
}
.policy_check p a:hover{
  text-decoration: none;
}
.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
  font-size: 1.2rem;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}





/* =About
-------------------------------------------------------------- */

.about_txt p{
  margin-bottom: 2rem;
}
#flow_img{
  border: #999 solid 1px;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
#about_flow li{
  display: flex;
  padding-bottom: 4rem;
  position: relative;
}
#about_flow li:not(:last-child)::after{
  content: '';
  background: var(--orange);
  position: absolute;
  left: 2.5rem;
  bottom: 0;
  z-index: -1;
  width: 2px;
  height: 100%;
}
.about_flow__num{
  font-size: 3rem;
  color: #fff;
  margin-right: 2rem;
  width: 5rem;
  height: 5rem;
  line-height: 1;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
#about_flow li p{
  flex: 1;
}
#about_flow li p a{
  color: var(--orange);
  text-decoration: underline;
}
#about_flow li p a:hover{
  text-decoration: none;
}
.about_flow__inner{
  flex: 1;
}
.about_flow__txt h3{
  margin: 1rem 0;
  font-size: 1.8rem;
}
.about_flow__img{
  margin-top: 2rem;
  text-align: center; 
}
.about_flow__img img{
  border: var(--bk) solid .2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.faq_box{
  margin-bottom: 2rem;
}
.faq_box dt{
  background: #efefef;
  padding: 1rem 4rem 1rem 1.5rem;
  display: flex;
  position: relative;
  cursor: pointer;
}
.faq_box dt::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  width: 1rem;
  height: 1rem;
  border-top: #000 solid 1px;
  border-right: #000 solid 1px;
  rotate: 135deg;
  transition: .3s;
}
.faq_box dt.open::after{
  rotate: -45deg;
}
.faq_box dd{
  padding: 2rem;
}
.faq_box dd.open{
  display: flex;
}
.faq_en{
  width: 3rem;
}
.faq_box p{
  flex: 1;
}

.main_container{
  margin-bottom: 50px;
}



/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1.5rem;
	}
	table td{
		padding: 1.5rem;
	}
  .page_container{
    padding: 5rem 0 8rem;
  }
  .page_title{
    font-size: 3rem;
  }
  .block{
    margin-bottom: 8rem;
  }
  .section_title{
    font-size: 2.2rem;
  }
  #site_footer__inner{
    display: flex;
  }
  #site_footer__left{
    width: 40%;
    margin: 0 auto 0 0;
  }
  #footer_contact{
    display: inline-block;
  }
  #footer_sitemap{
    margin: 2rem 0 0;
    font-size: 1.2rem;
  }
  #footer_links ul li{
    width: 25%;
  }
  #fukyoshi_map__wrap{
    padding: 3rem 0 5rem;
  }
  .fukyoshi_map__box ul li{
    width: 9rem;
    font-size: 1.2rem;
  }
  #fukyoshi_map__hokkaido{
    right: 5%;
  }
  #fukyoshi_map__tohoku{
    top: 13rem;
    right: 5%;
  }
  #fukyoshi_map__kanto ul{
    width: calc(9.4rem * 2);
  }
  #fukyoshi_map__tokai{
    right: 35%;
    bottom: 3rem;
  }
  #fukyoshi_map__tokai ul{
    width: calc(9.4rem * 2);
    display: flex;
    flex-wrap: wrap;
  }
  #fukyoshi_map__hokuriku{
    top: 15%;
    right: 36%;
  }
  #fukyoshi_map__kinki{
    top: 20%;
    left: 30%;
  }
  #fukyoshi_map__cyushikoku{
    top: 5%;
    left: 10%;
  }
  #fukyoshi_map__kyusyu{
    bottom: 0;
    left: 0;
  }
  #fukyoshi_name__list{
    margin: 50px 0 80px;
  }
  #fukyoshi_name__list li{
    padding: 0 5px;
  }
  .tafukyoshi_name__tab .tab_item{
    padding: .5rem 3rem;
    font-size: 2rem;
  }
  .fikyoshi_list__link p{
    font-size: 18px;
  }
  #fukyoshi_single{
    display: flex;
  }
  #fukyoshi_photo{
    margin: 0;
    width: 300px;
  }
  #fukyoshi_detail{
    width: 1000px;
    padding-left: 30px;
  }
  #fukyoshi_detail h1{
    font-size: 36px;
    letter-spacing: 3px;
  }
  #fukyoshi_detail h1 span{
    display: inline;
    padding-left: 20px;
    vertical-align: middle;
  }
  .fukyoshi_table th{
    font-size: 18px;
    padding: 20px 10px;
  }
  .fukyoshi_table td{
    font-size: 16px;
    padding: 20px;
    vertical-align: middle;
  }
  .txt_img{
    position: absolute;
    bottom: -20px;
    right: 0;
  }
  .fukyoshi_table td .txt_img{
    bottom: 0;
  }
  .txt_img img{
    height: 25px;
  }
  .tafukyoshi_map__tab .tab_item{
    font-size: 1.6rem;
  }
  #top_fukyoshi__name li{
    padding: 0 2rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .top_about__block{
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
  }
  .top_about__img{
    width: 30%;
    margin: 0 3rem 0 0;
  }
  .top_about__img .img_clip::before{
    padding-top: 80%;
  }
  .top_about__txt{
    flex: 1;
  }
  #about_flow{
    padding: 0 5%;
  }
  .temple_name li{
    width: 25%;
  }
  .faq_box dt{
    padding: 2rem 5%;
  }
  .faq_box dd{
    padding: 2rem 5%;
  }
  .about_flow__inner{
    display: flex;
  }
  .about_flow__img{
    width: 35%;
    margin: 0 0 0 3rem;
  }
  .about_flow__txt{
    flex: 1;
  }
  .fikyoshi_list__photo{
    width: 8rem;
  }
}



@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
  }
  #site_header{
    padding: 0 2rem;
  }
  .site_logo img{
    width: 7rem;
    margin-right: 1rem;
  }
  .site_logo__txt{
    font-size: 2rem;
  }
  #header_nav__btn{
    display: none;
  }
  #header_nav__inner{
    opacity: 1;
    visibility: visible;
    width: auto;
    overflow: visible;
    position: static;
    display: flex;
    flex-direction: column-reverse;
  }
  .main_navigation{
    display: flex;
    padding: 0;
    justify-content: flex-end;
    max-width: 100%;
    width: auto;
    margin-top: .5rem;
  }
  .main_navigation li{
    margin-left: 2rem;
  }
  .main_navigation li a{
    font-size: 1.2rem;
    padding: .5rem 0;
    border: 0;
  }
  .main_navigation li a::before{
    content: none;
  }
  .main_navigation li a::after{
    content: '';
    background: #000;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
  }
  .main_navigation li.current a::after,
  .main_navigation li a:hover::after{
    width: 100%;
    opacity: 1;
  }
  .nav_sp{
    display: none;
  }
  #header_login{
    display: flex;
    justify-content: flex-end;
  }
  #header_login li{
    margin: 0 0 0 1rem;
  }
  .btn_rep br{
    display: none;
  }
  .btn_rep{
    font-size: 1.2rem;
    padding: .5rem 4rem .5rem 2rem;
    max-width: 100%;
    width: auto;
    margin: 0 0 0 auto;
  }
	.flex_contaier{
    display: flex;
    justify-content: space-between;
  }
  .main_container{
    width: 73%;
    padding: 5rem 0;
  }
  .side_container{
    width: 25%;
    padding: 5rem 0;
  }
  .top_cont__section{
    display: flex;
    min-height: 700px;
    margin-bottom: 8rem;
  }
  .top_cont__title{
    width: 8rem;
    margin-right: 5rem;
    display: block;
    text-align: center;
    padding: 2rem 0;
  }
  .top_cont__title .title_icon{
    width: 5rem;
    margin: 0 auto 2rem;
  }
  .top_cont__title h2{
    font-size: 2.4rem;
    writing-mode: vertical-lr;
    margin: 0 auto;
  }
  .top_cont__title h2 span{
    margin: .5rem 0 0;
  }
  .top_cont__inner{
    flex: 1;
  }
	#fukyoshi_map__wrap{
    position: relative;
    padding: 100px 0;
    max-width: 700px;
    margin: 0 auto;
  }
  
}


@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  #footer_sitemap a:hover,
  #footer_contact a:hover,
  .breadcrumb a:hover{
    color: var(--orange);
  }
  .fukyoshi_name__catList .btn_link:hover{
    background: #000;
    color: #fff;
  }
  .link_more:hover::before{
    width: calc(100% + 1rem);
  }
  .link_more:hover::after{
    right: -1rem;
  }
}