@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

/* !Reseting
---------------------------------------------------------- */
body {
	font-family: "Noto Serif JP", serif;
	-webkit-text-size-adjust: none;
	font-size: 18px;
	color: #000;
	line-height: 1.8em;
	word-wrap:break-word;/* 英数字折り返し */
}
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, figure, figcaption
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ max-width: 100%; width: 100%; height: auto; vertical-align: top;}
address, caption, cite, code, dfn, em, th, var
{ 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%; font-weight: normal;}
q::after, q::before
{ content:'';}
a, input
{ outline: none; }
input, textarea
{ border-radius: 0; font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif; }
input[type="button"],input[type="submit"]
{ -webkit-appearance: none; background: none; border: none; padding: 0; cursor: pointer;}
abbr, acronym
{ border: 0;}
*
{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;}
/* !Clearfix
---------------------------------------------------------- */
.clearfix,
#header,
#contents,
section,
.box_column
{
	display: block;
	min-height: 1%;
}
.clearfix::after,
#header::after,
#contents::after,
section::after,
.box_column::after
{
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}

/* ==========================================================
共通
========================================================== */
html {
	overflow-y: scroll;
	scroll-behavior: smooth;
}
@media print {
	html,
	html body { *zoom: 0.65;}
}

.Clear {
	clear: both;
}

a {
	color: #000;
	text-decoration: none;
	text-decoration: underline;
}

a:hover {
	color: #000;
	text-decoration: none;
}

.row {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
}

/* !汎用コンテンツ
---------------------------------------------------------- */
#Navi_Wrap {
	width:100%;
	position: fixed;
	z-index: 999;
	top: -90px;
	height: 90px;
	background:url(common/img/g-nav_bg.jpg) no-repeat center;
	background-size: cover;
	box-sizing: border-box;
	transition: .5s;
	opacity: 1;
}

#Navi_Wrap.is-show {
	top: 0;
}

#Navi_Wrap #Logo {
	position: absolute;
	top: 22px;
	right: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 180px;
}

/* !フルスクリーンナビ設定
---------------------------------------------------------- */
.openbtn{
	display: block;
	position: fixed;
	z-index: 9999;
	top:20px;
	right:14px;
	cursor: pointer;
	width: 50px;
	height:50px;
	background: #000;
	border-radius: 50%;
}

.openbtn:hover{
	cursor: pointer;
	display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
	background: #df261b;
}

.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/*---ナビ オーバーレイ画面---*/
#g-nav{
	right: -120%;
}

#g-nav.panelactive{
	right: 0;
}

#g-nav .Cont {
	width:100%;
	height: 100%;
	padding: 22px 0;
	position: relative;
	left: 0;
	background:url(common/img/g-nav_bg.jpg) no-repeat center;
	background-size: cover;
	overflow-y: scroll;
	scrollbar-width: none;
}

#g-nav_Logo {
	display: block;
	width: 180px;
	margin: 0 auto 10px;
}

#g-nav-list {
	display: block;
	width: 80%;
	margin: 0 auto;
}

#g-nav li {
	display: block;
	width: 100%;
	list-style-type:none;
	font-size: 18px;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	line-height: 1.4em;
	position: relative;
	transition: all 0.3s;
	text-decoration: none;
	border-bottom:1px solid #604d24;
	border-bottom:1px solid #9c8854;
	cursor: pointer;
	z-index: 2;
}

#g-nav li a {
	display: block;
	color:#000;
	text-decoration: none;
	padding: 14px 0;
}

#g-nav li a::after {
	content: '▶';
	font-size: 10px;
	position: absolute;
	right: 4px;
}

#g-nav li a:hover {
	color:#ff0000;
}

/*---縦書き---*/
.vertical_box {
	text-align: right;
	height: auto;
}

.vertical {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	text-orientation: upright;
	text-align: left;
	display: inline-block;
}

.vertical p {
	margin:0 1em;
}

/*---レイアウト調整---*/
.vertical .ml50 {
	margin-left: 50px;
}

.vertical .mr40 {
	margin-right: 40px;
}

.vertical_box .height400 {
	height: 360px;
}

.vertical_box .height500 {
	height: 500px;
}

/*---ボタン（黒・横）---*/
.btn_blk01 {
	display: inline-block;
	width: 100%;
	max-width: 364px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background:url(common/img/btn_blk01.png) no-repeat center;
	background-size: contain;
	padding: 14px 0;
}

.btn_blk01:hover {
	color: #fff;
	text-decoration: none;
	background:url(common/img/btn_blk01_on.png) no-repeat center;
	background-size: contain;
}

/*---ボタン（黒・縦）---*/
.btn_blk02 {
	display: inline-block;
	height: 100%;
	max-height: 364px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background:url(common/img/btn_blk02.png) no-repeat center;
	background-size: contain;
	padding: 0 14px;
	writing-mode: vertical-rl;
}

.btn_blk02:hover {
	color: #fff;
	text-decoration: none;
	background:url(common/img/btn_blk02_on.png) no-repeat center;
	background-size: contain;
}

/*---ボタン（白・横）---*/
.btn_wht01 {
	display: inline-block;
	width: 100%;
	max-width: 364px;
	font-size: 18px;
	color: #000;
	text-align: center;
	text-decoration: none;
	background:url(common/img/btn_wht01.png) no-repeat center;
	background-size: contain;
	padding: 14px 0;
}

.btn_wht01:hover {
	color: #000;
	text-decoration: none;
	background:url(common/img/btn_wht01_on.png) no-repeat center;
	background-size: contain;
}

/* !背景
---------------------------------------------------------- */
/*---茶色（footer含む）---*/
#Bg_Brown {
	position: relative;
	width: 100%;
	height: auto;
	background:url(common/img/ftr_bg.jpg) repeat-x left bottom;
	background-size: 2064px 1376px;
	color: #000;
	padding: 80px 0 40px;
}

/*---白色---*/
#Bg_White {
	position: relative;
	width: 100%;
	height: auto;
	background: #fff;
	color: #000;
	padding: 80px 0;
}

/*---灰色（七福神で使用）---*/
#Bg_Gray {
	position: relative;
	width: 100%;
	height: auto;
	background:url(common/img/gods/gray_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0;
}

/*---飾り位置（右上）---*/
#Posi_r0t0 {
	position: absolute;
	top: 0;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（右下）---*/
#Posi_r0b0 {
	position: absolute;
	bottom: 0;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（右下3%）---*/
#Posi_r0b3 {
	position: absolute;
	bottom: 3%;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（右下30%）---*/
#Posi_r0b30 {
	position: absolute;
	bottom: 29%;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（左上30%）---*/
#Posi_l0t30 {
	position: absolute;
	top: 30%;
	left:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（左上40%）---*/
#Posi_l0t40 {
	position: absolute;
	top: 40%;
	left:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---飾り位置（左下300px）---*/
#Posi_l0b300 {
	position: absolute;
	bottom: 300px;
	left:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---重なり順（飾りの上に）---*/
.overlap {
	position: relative;
	z-index: 2;
}

/* !Table
---------------------------------------------------------- */
/*---テーブル（年中行事）---*/
.table_basic {
	width: 100%;
}
.table_basic th,
.table_basic td {
	text-align: left;
	vertical-align: top;
	padding: 20px 0;
}
.table_basic tr {
	border-bottom: 1px solid #d7d3c0;
}
@media screen and (max-width:430px){
	.table_basic {
		width: 100%;
	}
	.table_basic,
	.table_basic tr,
	.table_basic th,
	.table_basic td {
		width: 100%;
		display: block;
	}
	.table_basic th,
	.table_basic td {
		padding: 2px 0;
	}
	.table_basic tr {
		border-bottom: 1px solid #d7d3c0;
		padding: 14px 0;
	}
}

/* !Box
----------------------------------------------------------- */
/*---可変---*/
.box_column {
	margin: 0;
}
.box_column .col {
	float: left;
}
.box_column.col2 .col {
	margin: 0 2.2% 20px 0;
	width: 48.9%;
}
.box_column.col3 .col {
	margin: 0 2.2% 20px 0;
	width: 31.86%;
}
.box_column.col4 .col {
	margin: 0 2% 20px 0;
	width: 23.5%;
}
.box_column.col2 .col:nth-child(2n),
.box_column.col3 .col:nth-child(3n),
.box_column.col4 .col:nth-child(4n) {
	margin-right: 0;
}
.box_column.col2 .col:nth-child(2n+1),
.box_column.col3 .col:nth-child(3n+1),
.box_column.col4 .col:nth-child(4n+1) {
	clear: both;
}
@media screen and (max-width:430px){
	.box_column {
		margin: 0;
	}
	/*---2→1---*/
	.box_column.col2 .col {
		margin: 0 0 10px;
		width: 100%;
	}
	/*---3→1---*/
	.box_column.col3 .col {
		margin: 0 0 10px;
		width: 100%;
	}
	/*---4→2---*/
	.box_column.col4 .col {
		margin: 0 1% 10px;
		width: 48%;
	}
	.box_column.col4 .col:nth-child(2n+1) {/*奇数*/
		clear: both;
	}
	.box_column.col4 .col:nth-child(2n) {/*偶数*/
		clear: none;
		float: right;
	}
	.box_column.col4 .col:nth-child(4n) {/*4の倍数*/
		float: left;
	}
}

/* !Fonts -------------------------------------------------------------- */
.fwB { font-weight: bold;}
.fz28 { font-size: 28px; line-height: 1.4em;}

/* !Margin ------------------------------------------------------------------ */
.mt10 { margin-top:10px !important;}
.mt20 { margin-top:20px !important;}
.mt30 { margin-top:30px !important;}
.mt40 { margin-top:40px !important;}
.mt60 { margin-top:60px !important;}
.mt80 { margin-top:80px !important;}
.mt100 { margin-top:100px !important;}

/* !Inline Align ------------------------------------------------------------ */
.taC { text-align: center !important;}
.taC_spL { text-align: center !important;}
.taL { text-align: left !important;}
.taR { text-align: right !important;}
.ImgC { display: block; margin-left: auto; margin-right: auto;}

/* ==========================================================
トップページ
========================================================== */
#Top_Header {
	position: relative;
	width: 100%;
	height: 100vh;
	background:url(common/img/main.jpg) no-repeat center bottom;
	background-size: cover;
}

#Top_Logo {
	position: absolute;
	top: 40px;
	left: 40px;
	display: block;
	width: 80px;
	z-index: 1;
}

/*---メニュー---*/
#Top_Menu {
	position: absolute;
	top: 80px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 430px;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	z-index: 1;
}

.menu_txt {
	writing-mode: vertical-lr;
}

.menu_txt li {
	padding: 0 14px;
}

.menu_txt li a {
	color: #000;
	letter-spacing: .1rem;
	text-decoration: none;
	padding: 14px;
}

.menu_txt li a:hover {
	color: #000;
	background-color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition-duration: 0.3s;
}

/*---スクロールダウン---*/
.scrolldown{
	position:absolute;
	left:64px;
	bottom:66px;
	height:50px;
	z-index: 100;
}

.waku {
	position: relative;
	left:-14px;
	top: -74px;
	width: 29px;
	height: 140px;
	background: #000;
	border-radius: 30px;
	opacity:1;
}

.scrolldown span {
	position: relative;
	left:0;
	top: 16px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.03em;
	writing-mode: vertical-rl;
}

.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #fff;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/* !お便り
---------------------------------------------------------- */
#Area01 {
	width: 100%;
	height: auto;
	background: #fff;
	padding: 80px 0;
}

#Top_News {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

#Top_News .contL {
	width: 18%;
	float: left;
}

#Top_News .contL img {
	position: relative;
	top: 30px;
}

#Top_News .contR {
	width: 78%;
	float: right;
}

#Top_News .News_box {
	width: 100%;
	border-bottom:1px solid #d7d3c0;
	padding:10px 0 14px;
	clear:both;
}

#Top_News .News_box .date {
	font-size: 16px;
}

#Top_News .News_box .cont {
	line-height: 1.8em;
	/*---文字数制限---*/
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#Top_News .News_box a {
	color: #000;
	text-decoration: none;
}

#Top_News .News_box a:hover {
	color: #000;
	text-decoration: underline;
}

/*---電子ブックを見る---*/
#Area01 .Book {
	width: 60%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

#Area01 .Book .contL {
	width: 20%;
	float: left;
	text-align: center;
}

#Area01 .Book .contC {
	width: 40%;
	float: right;
}

#Area01 .Book .contR {
	width: 40%;
	float: right;
}

#Area01 .w40per {
	width: 44% !important;
}

/* !要行寺について
---------------------------------------------------------- */
#Area02 {
	width: 100%;
	height: auto;
	background: #f3f2ee;
	padding: 80px 0;
}

#Area02 .w80per {
	width: 80% !important;
}

#flex_wrap {
	display: flex;
	column-gap: 2px;
	margin-top:50px;
}

#flex_wrap .cont {
	margin:0;
}

/*---動画---*/
.movie {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* !境内のご案内
---------------------------------------------------------- */
#Area03 {
	width: 100%;
	height: 800px;
	background:url(common/img/area03_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0;
}

#Area03 .Cont {
	width: 50%;
	float: right;
}

/* !要行寺の宝物
---------------------------------------------------------- */
#Area04 {
	width: 100%;
	height: 800px;
	background:url(common/img/area04_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0;
	color: #fff;
}

#Area04 .Cont {
	width: 50%;
	float: left;
}

/* !年中行事
---------------------------------------------------------- */
#Area05 {
	width: 100%;
	height: 800px;
	background:url(common/img/area05_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 80px 0;
	color: #fff;
}

#Area05 .Cont {
	width: 50%;
	float: right;
}

/* !浜の七福神
---------------------------------------------------------- */
#Area06 {
	width: 100%;
	height: auto;
	background: #767e75;
	padding: 80px 0 0;
	color: #fff;
}

#Area06 .ContL {
	width: 50%;
	float: left;
}

#Area06 .ContR {
	width: 50%;
	float: right;
}

#Area06 .ContR img {
	display: block;
	width: 80%;
	margin-right: auto;
}

/* ==========================================================
第二階層
========================================================== */
#Cover_Logo {
	position: absolute;
	top: 20px;
	left: 20px;
	display: block;
	width: 300px;
}

#Cover_Title {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 30px;
}

/*---メニュー---*/
#Menu {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 100%;
	height:60px;
	font-size: 16px;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	text-align: right;
}

#Menu li {
	display: inline;
	padding: 0 10px;
}

#Menu li a {
	color: #fff;
	text-decoration:none;
	position: relative;
	display: inline-block;
}

#Menu li a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background: #fff;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#Menu li a:hover::after {
	width: 100%;
}

/* ==========================================================
要行寺について
========================================================== */
#About_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/about/cover.jpg) no-repeat center;
	background-size: cover;
}

/* !住職
---------------------------------------------------------- */
#About_Area01 {
	position: relative;
	width: 100%;
	height: auto;
	background: #fff;
	overflow: hidden;
	padding: 80px 0;
}

/*---装飾---*/
#About_Area01 .Posi01 {
	position: absolute;
	top: 0;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

#About_Area01 .Posi02 {
	position: absolute;
	bottom: -220px;
	right:0;
	width: 100%;
	opacity: 0.5;
	z-index: 1;
}

/*---あいさつ---*/
#About_Area01 .frame {
	background:url(common/img/about/area01_01.png) no-repeat right top;
	background-size: 46%;
	margin-top: -60px;
	padding-top: 60px;
}

#About_Area01 .lead {
	width: 70%;
}

#About_Area01 .area_greeting {
	position: relative;
	width: 100%;
	z-index: 2;
	margin-top: 30px;
	margin-bottom: 340px;
}

#About_Area01 .photo {
	width: 52%;
	margin-left: 44%;
}

#About_Area01 .comment {
	position: absolute;
	top: 70px;
	left:0;
	width: 70%;
	background: linear-gradient(to right, #000 40%, rgba(0,0,0,0) 100%);
	color: #fff;
	float: left;
	padding: 40px;
}

/* !要行寺由緒沿革
---------------------------------------------------------- */
#About_Area02 {
	width: 100%;
	height: auto;
	background: #000;
	padding: 80px 0;
	color: #fff;
}

/* !要行寺歴代譜
---------------------------------------------------------- */
#About_Area03 {
	width: 100%;
	height: auto;
	background:url(common/img/about/area03_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 100px 0;
}

#About_Area03 .records {
	width: 800px !important;
}

/* ==========================================================
境内のご案内
========================================================== */
#Info_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/info/cover.jpg) no-repeat center;
	background-size: cover;
}

/*---横並び---*/
.Info_Flex {
	display: flex;
	justify-content: space-between;
}

.Info_Flex .item_w50per {
	flex-basis:48%;
}

#Info_Text {
	font-size: 14px;
	text-align: center;
}

/* ==========================================================
要行寺の宝物
========================================================== */
#Treasure_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/treasure/cover.jpg) no-repeat center;
	background-size: cover;
}

#Treasure_Text {
	font-size: 14px;
	text-align: center;
}

#Treasure_Text .w60per {
	width: 60% !important;
}

#Treasure_Text .w70per {
	width: 72% !important;
}

/* ==========================================================
永代供養墓
========================================================== */
#Eitai_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/eitai/cover.jpg) no-repeat center;
	background-size: cover;
}

.frame_detail {
	background: #fff;
	padding: 60px 40px 80px;
	border:8px solid #604d24;
}

/* ==========================================================
年中行事
========================================================== */
#Event_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/event/cover.jpg) no-repeat center;
	background-size: cover;
}

#Event_Lead {
	width: 100%;
}

#Event_Lead .areaL {
	width: 58%;
	float: left;
}

#Event_Lead .areaR {
	width: 38%;
	float: right;
}

/* ==========================================================
浜の七福神
========================================================== */
#Gods_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/gods/cover.jpg) no-repeat center;
	background-size: cover;
}

#Gods_Lead {
	width: 100%;
}

#Gods_Lead .areaL {
	width: 62%;
	float: left;
}

#Gods_Lead .areaR {
	width: 34%;
	float: right;
	padding-top: 4px;
}

#Gods_List {
	width: 94%;
	margin: 0 auto;
}

/* ==========================================================
お便り
========================================================== */
#News_Header {
	position: relative;
	width: 100%;
	height: 460px;
	background:url(common/img/news/cover.jpg) no-repeat center;
	background-size: cover;
}

/*---お便り一覧---*/
#News {
	width: 100%;
	margin-top: 20px;
}

#News .News_box {
	width: 100%;
	border-bottom:1px solid #d7d3c0;
	padding:24px 0 30px;
	clear:both;
}

#News .News_box .date {
	font-size: 16px;
}

#News .News_box .cont {
	line-height: 1.8em;
	/*---文字数制限---*/
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#News .News_box a {
	color: #000;
	text-decoration: none;
}

#News .News_box a:hover {
	color: #000;
	text-decoration: underline;
}

/*---お便り詳細---*/
#Cont_News {
	width: 100%;
	margin-top: 20px;
}

#Cont_News .date {
	text-align: right;
	font-size: 16px;
	line-height: 1em;
}

#Cont_News .tit {
	margin-top: 10px;
	padding-bottom: 10px;
	border-bottom:1px solid #b6b194;
}

#Post p {
	margin: 30px 0;
}

/* ==========================================================
花まつり稚児行列
========================================================== */
.frame_notes {
	background: #fff;
	padding: 40px 40px 50px;
	border:6px solid #97844c;
}

/*---リスト（アスタリスク）---*/
.Asterisk li:before {
	content: "※";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.Asterisk li {
	list-style-type: none;
	padding: 0 0 0 1em;
	position: relative;
}

.h2_tit {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	border-left: 6px solid #bfa34f;
	border-bottom: 1px solid #bfa34f;
	padding: 4px 0 12px 12px;
}

/* ==========================================================
Footer
========================================================== */
#FooterCont {
	width: 180px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
}

#FooterCont .areaL {
	float: left;
}

#FooterCont .areaR {
	float: right;
}

#FooterCont p {
	font-size: 14px;
	line-height: 1.6em;
}

#Ftr_Logo {
	display: block;
	width:60px;
	margin-right: 20px;
}

/*---Googleマップ---*/
.map {
	height: 600px;
	margin-top: 60px;
}

/*---縦書き---*/
.ftr_vertical_box {
	text-align: right;
	height: auto;
}

.ftr_vertical {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	text-orientation: upright;
	text-align: left;
	display: inline-block;
}

.ftr_vertical p {
	margin:0 1em;
}

/*---youtube---*/
#youtube {
	display: block;
	width: 140px;
	margin: 20px auto 40px;
}

/*---コピーライト---*/
#copy {
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
}

/*---ページの先頭へ---*/
#back-top {
	position:fixed;
	right:15px;
	bottom:15px;
	z-index: 5;
}

#back-top a {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	border: solid 3px #202124;
	background-color: #fff;
	border-radius: 50%;
}

#back-top a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	background-color: #202124;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	transition: transform ease 0.4s;
}

#back-top a:hover::after {
	transform: translate(-50%, -50%) scale(1.1, 1.1);
}

#back-top a::before {
	content: "";
	position: absolute;
	z-index: 10;
	top: 55%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-style: solid;
	border-color: #202124;
	border-width: 4px 0 0 4px;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: border-color ease 0.1s;
}

#back-top a:hover::before {
	border-color: #fff;
}

/* ==========================================================
フォーム
========================================================== */
.form_frame {
	background: #fff;
	padding:40px 40px 60px;
	border-radius: 20px;
}

/* !Contact Form7
---------------------------------------------------------- */
#Area_Form {
	width: 100%;
}

/*---テーブル（基本）---*/
.table_cf7 {
	width: 100%;
	border-collapse: separate;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.table_cf7 th,
.table_cf7 td {
	background-color: #fff;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 30px;
}
.table_cf7 th {
	background-color: #f5f5f5;
	vertical-align: middle;
}
@media screen and (max-width:767px){
	.table_cf7 {
		width: 100%;
	}
	.table_cf7,
	.table_cf7 thead,
	.table_cf7 tbody,
	.table_cf7 tr,
	.table_cf7 th,
	.table_cf7 td {
		width: 100%;
		display: block;
	}
	.table_cf7 th,
	.table_cf7 td {
		border-top: none;
		border-left: none;
		padding: 10px;
	}
	.table_cf7 th {
		text-align: left;
	}
}

/* 入力項目を見やすくする */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 4px 15px;
	margin-right: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	margin-top: 6px;
}

/*「必須」文字デザイン*/
.required{
	font-size:.8em;
	padding: 6px;
	background: #e60039;
	color: #fff;
	border-radius: 3px;
	margin-right: 10px;
}

/*「任意」文字デザイン*/
.optional{
	font-size:.8em;
	padding: 6px;
	background: #1c80c4;
	color: #fff;
	border-radius: 3px;
	margin-right: 10px;
}

/*「認証」文字デザイン*/
.check{
	text-decoration: none;
	line-height: 1.4em;
	border: 1px solid #ccc;
	padding: 20px 0 26px;
}

/*---ボタン---*/
input[type='submit'] {
	display: block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	background: #000;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius:6px;
}

input[type='submit']:hover {
	color: #fff;
	text-decoration: none;
	background: #97844c;
	transition: all .5s ease;
}

/*---入力フォーム幅---*/
.wpcf7 input[name="text-age"],
.wpcf7 input[name="text-height"] {
	width: 80px !important;
}
