/* ==========================================================================
   共通項目
   ========================================================================== */

html {
	font-size: 10px;
}

body {
	font-family: "yu-mincho-pr6n", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

hr {
	margin: 40px 0;
}

.button01 span {
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background-color: rgb(250, 206, 10);
	color: #fff;
	border-radius: 25px;
	width: 60px;
	height: 195px;
	transition: 0.3s;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .button01 span {
		
		font-size: 15px;
		width: 40px;
	   height: 195px;
	}
}

.button01:hover span {
	transform: scale(1.1);
    cursor: pointer;
    background-color: rgb(255, 255, 205);
    color:  rgb(250, 206, 10);
    border:thin solid  rgb(250, 206, 10);
}

.button01{
    display: block;
    margin:0 30px;
}

@media (max-width:649px) {
        .button01{
    margin:0 15px;
}
}

.button02 span {
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background-color: rgb(252, 154, 5);
	color: #fff;
	border-radius: 25px;
	width: 60px;
	height: 195px;
	transition: 0.3s;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .button02 span {
		font-size: 15px;
        width: 40px;
	   height: 195px;
	}
}

.button02:hover span {
	transform: scale(1.1);
	background-color: rgb(255, 220, 140);
    border:thin solid rgb(252, 154, 5);
    color:rgb(252, 154, 5);
}


	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .pc-only {
		display: none;
	}
}


	@media (min-width:650px) {
		/*　画面サイズが769pxからはここを読み込む　*/
        .sp-only {
		display: none;
	}
}


/* ========== ヘッダー ========== */
.header {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: rgba(60, 101, 50, 0.8);
	color: #fff;
	height: 7vh;
	position: relative;
}
	@media (max-width:1024px) {
		/*　画面サイズが1024pxまではここを読み込む　*/
        .header {
		display: none;
	}
}

.header-title img {
	width: 280px;
}

.header-contents {
	display: flex;
}

.menu-item {
	margin: 0 1vw;
	padding: 0 1vw;
	font-size: 2.2rem;
	height: 7vh;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	transition: all .3s;

}

.menu-item:hover {
	background-color: rgba(165, 183, 1, 0.8);
}

.drop-menu {
	position: absolute;
	top: 7vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.drop-menu-item {
	display: none;
}

.drop-menu-item a {
	position: relative;
	padding: 12px;
	display: block;
	transition: all .3s ease;
	font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
	border-bottom: 1px dashed rgba(165, 183, 1);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.listmarker {
	position: relative;
	width: 10px;
	height: 10px;
	margin: 5px;
}

.drop-menu-item:hover a {
	background-color: rgba(165, 183, 1, 0.8);
}

/* JavaScriptで、.drop-menu-item aに「is-active」クラスを付加して、display: block;で非表示の状態を表示させる */
.drop-menu-item.is-active {
	display: block;
}


/* ========== コンテンツ全体 ========== */
.contents-common {
	margin-top: 4%;
	margin-right: auto;
	margin-left: auto;
	width: 1024px;
	padding: 0 1%;

}
@media (max-width:1024px) {
		/*　画面サイズが1024pxまではここを読み込む　*/
    .contents-common {
		padding: 0 4%;
		width: 100%;
        margin:0 auto;
    }
	}


/* ========== フッター ========== */
.footer {
	margin-top: 7%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/decoration/footer.png) no-repeat center top/cover;
	width: 100vw;
	height: 45vmin;
}

.footer-text {
	text-align: center;
}

.footer-title {
	font-size: clamp(1.5rem, 1vw + 1rem, 2.5rem);
}

.footer-address {
	font-size: clamp(1rem, 1vw + 0.5rem, 1.6rem);
	margin-top: 4%;
}

.copyright {
	font-size: clamp(1rem, 1vw + 0.5rem, 1.6rem);
	margin-top: 4%;
}


/* ========== バーガーメニュー ========== */
.drawer-hidden {
	display: none;
}

.drawer-open {
	background-color: rgba(60, 101, 50, 0.8);
	display: flex;
	right: 0px;
	top: 0px;
	height: 7vh;
	width: 7vh;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 1000;
	cursor: pointer;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .drawer-open {
		height: 65px;
		width: 65px;
	}
}

/* バーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
	content: '';
	position: absolute;
	display: block;
	height: 0.3vh;
	width: 3vh;
	border-radius: 3px;
	background: #fff;
	transition: 0.3s;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
	bottom: 1.2vh;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
	top: 1.2vh;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked~.drawer-open span {
	background-color: rgba(255, 255, 255, 0);
}

#drawer-check:checked~.drawer-open {
	background-color: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked~.drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#drawer-check:checked~.drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* メニューのデザイン*/
.drawer-content {
	width: 30vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -30vw;
	/* メニューを画面の外に飛ばす */
	z-index: 999;
	background: rgba(0, 0, 0, 0.7);
	transition: 0.3s;
	color: #fff;
	padding: 5vh 5vw;
	overflow-y: scroll;
}
	@media (max-width:1024px) {
        
		/*　画面サイズが1024pxまではここを読み込む　*/
        .drawer-content {
		width: 50vw;
		right: -50vw;
        }
	}

	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .drawer-content {
		width: 70vw;
		right: -70vw;
	}
}

.drawer-content-block1 {
	position: relative;
	z-index: 10;
}

.drawer-content-block2 {
	position: relative;
	top: -5vh;
	z-index: 9;
}

.drawer-content-block3 {
	position: relative;
	top: -10vh;
	z-index: 8;
}

.drawer-content-block4 {
	position: relative;
	top: -10vh;
	z-index: 7;
}

.drawer-content-block-title img {
	position: relative;
}

.drawer-content-block-border {
	width: 100%;
	border: 1px solid rgba(165, 183, 1);
	margin-bottom: 2%;
}

.drawer-content-decoration {
	position: relative;
	height: 8vh;
}

.drawer-list span {
	font-size: clamp(1.5rem, 1vw + 0.5rem, 2.2rem);
}

.drawer-list {
	padding: 0 0 10vh 1.3vh;
}

.drawer-list li a {
	display: block;
	padding: 1.2vh 0px;
	color: #fff;
	border-bottom: 1px dashed rgba(165, 183, 1);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.drawer-list li a:hover {
	background: rgba(165, 183, 1, 0.8);
	padding: 1.2vh 0px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked~.drawer-content {
	right: 0;
	/* メニューを画面に入れる */
}



/* ==========================================================================
   index.html
   ========================================================================== */

/* ========== TOP ========== */
.index-TOP {
	width: 100vw;
	height: 100vmin;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.index-top-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.index-top-title img {
	max-width: 150px;
	width: 10vmax;
}


/* ========== スライドショー ========== */
.index-TOP-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	animation: slider-1 32s linear infinite;
}

.index-TOP-image:nth-child(1) {
	background-image: url(../img/top-img01.jpg);
	animation-delay: -2s;
}

.index-TOP-image:nth-child(2) {
	background-image: url(../img/top-img02.jpg);
	animation-delay: 6s;
}

.index-TOP-image:nth-child(3) {
	background-image: url(../img/top-img03.jpg);
	animation-delay: 14s;
}

.index-TOP-image:nth-child(4) {
	background-image: url(../img/top-img04.jpg);
	animation-delay: 22s;
}

@keyframes slider-1 {
	0% {
		opacity: 0;
		transform: scale(1);
	}

	4.16% {
		opacity: 1;
	}

	33.33% {
		opacity: 1;
	}

	41.66% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		opacity: 0;
	}
}


/* ========== コンテンツ背景 ========== */
.index-contents-background {
	height: 80vmin;
	width: 100vw;
	background-image: url(../img/decoration/contentsbackground.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: -100;
}

/* ========== メインコンテンツ ========== */
.index-main-contents {
	width: 100%;
}

/* お知らせ */
.infobox {
	margin-top: 4%;
    border: 2px solid hsla(359,100%,46%,1.00);
    text-align: center;
    background-color: hsla(0,0%,100%,1.00);
    width: 100%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

/* ご挨拶 */
.index-goaisatsu-cover{
	margin-top: 8%;
    display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-start;
}
@media (max-width:649px) {
    .index-goaisatsu-cover{
    justify-content: center;
	display: inherit;
    margin-bottom: 50px;
}
}

.index-goaisatsu {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-start;
}


.index-goaisatsu-headline {
	background: url(../img/decoration/contents_decoration.png);
	background-size: 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 100px;
	height: 120px;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .index-goaisatsu-headline {
		width: 70px;
		height: 105px;
	}
}

.index-goaisatsu-headline span {
	font-size: clamp(2.5rem, 1vw + 1rem, 3.2rem);
	display: block;
	writing-mode: vertical-rl;
	margin: 0 auto;
    letter-spacing: 0.3em;
}

.index-goaisatsu-text {
	writing-mode: vertical-rl;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	margin-left: 4%;
	margin-right: 4%;
    line-height: 2;
}
 @media (max-width:649px) {
.index-goaisatsu-button.button01 span {
    font-size:1.7em;
    font-weight: bolder;
}
}

.index-goaisatsu-decoration {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.index-goaisatsu-img001 {
    width:100%;
    height:350px;
    background:url(../img/goaisatsu01.jpg) center top;
    background-size: cover;
    border-radius:20px;
    margin-right:25px;
}
    @media (max-width:649px) {
        .index-goaisatsu-decoration {
	width: 98%;
	max-width: 450px;
	margin:0 auto;
}
        .index-goaisatsu-img001 {
    width:100%;
    height:220px;
    margin-right:0px;
}
}

.index-goaisatsu-img002 {
    width:100%;
	display: flex;
	justify-content: flex-end;
}

.index-goaisatsu-img002-ko{
    width:400px;
    height:250px;
    background:url(../img/goaisatsu02.jpg) center top no-repeat;
    background-size: cover;
    border-radius:20px;
    margin-top:1%;
}
    @media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .index-goaisatsu-img002{
		display: none;
	}
    }

.index-goaisatsu-img002 img {
	width: 30%;
	height: 100%;
	margin-right: 15%;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .index-goaisatsu-img002 img{
		display: none;
	}
}


/* おものめさま */
.index-omonomesama {
    position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-end;
    z-index:2;
    margin-left:25px;
}
	@media (max-width:649px) {
		/*　画面サイズが649pxまではここを読み込む　*/
        .index-omonomesama {
		justify-content: flex-start;
		background-position: right;
		background-size: 250px;
	}
}



.index-omonomesama-cover{
    margin-top: 8%;
    background-image: url(../img/decoration/omonome_background.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top right 30%;
    display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-end;
    margin-top:160px;
}

@media (max-width:859px) {
.index-omonomesama-cover{
    display: inherit;
    margin-top:80px;
}
}

.index-omoomesama-headline {
	background: url(../img/decoration/contents_decoration.png);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100px;
	height: 230px;
	margin-left: 4%;
}
	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-omoomesama-headline{
		width: 70px;
		height: 200px;
	}
}

.index-omoomesama-headline span {
	writing-mode: vertical-rl;
}

.index-omoomesama-headline-main {
	font-size: clamp(2.5rem, 1vw + 1rem, 3.2rem);
}

.index-omoomesama-headline-sub {
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.index-omonomesama-text {
	writing-mode: vertical-rl;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	margin:0 4%;
    line-height: 2;
}


@media (max-width:859px) {
.index-omonomesama-button.button01 span {
    font-size:1.7em;
    font-weight: bolder;
}
}

.inex-omonomesama-img{
    margin:0;
}
.index-omonomesama-decoration {
    position: relative;
	width: 450px;
    background:url(../img/omonomesama01.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    height:350px;
    z-index:1;
}
@media (max-width:859px) {
    
    .index-omonomesama-decoration {
	width: 300px;
    height:200px;
    border-radius:20px;
}
}
    
@media (max-width:859px) {
    
    .index-omonomesama-decoration {
	width: 80%;
    height:200px;
	max-width: 450px;
    
}
}



.index-omonomesama-img001 {
	width: 100%;
	min-width: 150px;
}


/* 要石 */
.index-kanameishi {
	background-image: url(../img/decoration/kanameishi_background.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom 50% left 35%;
	justify-content: right;
	align-items: flex-start;
	margin-top: 10%;
	display: flex;
    position: relative;
    height:350px;
    margin-top:160px;

}

.index-kanameishi-text-cover{
    display: flex;
	flex-direction: row-reverse;
    margin:0 50px;
    z-index:2;
}
	@media (max-width:799px) {
        .index-kanameishi {
		display: inherit;
		background-position: right;
		background-size: 235px;
        margin-top:80px;
        height:auto;
	}
        .index-kanameishi-text-cover{
    display: flex;
    margin:0 10px;
}
}

@media (max-width:799px) {
        .index-kanameishi-text-cover{
    display: flex;
	justify-content:flex-end;
    
    margin:0 10px;
}
}

.index-kanameishi-headline {
	background: url(../img/decoration/contents_decoration.png);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	width: 100px;
	height: 120px;
}
	@media (max-width:799px) {
		/*　画面サイズが799pxまではここを読み込む　*/
        .index-kanameishi-headline {
		width: 70px;
		height: 100px;
	}
}

.index-kanameishi-headline span {
	font-size: clamp(2.5rem, 1vw + 1rem, 3.2rem);
	display: block;
	writing-mode: vertical-rl;
	margin: 0 auto;
}

.index-kanameishi-text {
	writing-mode: vertical-rl;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	margin:0 4%;
    line-height: 2;
}

@media (max-width:799px) {
.index-kanameishi-button.button01 span {
    font-size:1.7em;
    font-weight: bolder;
}
}

.index-kanameishi-decoration {
	position: relative;
	width: 450px;
    background:url(../img/kanameishi01.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    height:350px;
}
@media (max-width:799px) {
    
    .index-kanameishi-decoration {
	width: 300px;
    height:200px;
}
}
    
@media (max-width:799px) {
    .index-kanameishi-img {
        display: flex;
    justify-content: flex-end;
    }
    
    
    .index-kanameishi-decoration {
	width: 80%;
    height:200px;
    margin-top:10px;
    }
}

.index-kanameishi-img001 {
	width: 100%;
	min-width: 150px;
}


/* ご祈祷のご案内 */
.index-kitouannai {
    position: relative;
	background-image: url(../img/decoration/kitouannai_background.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center right 10%;
	margin-top: 10%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: flex-start;
    margin-top:160px;
}
	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-kitouannai {
		justify-content: flex-start;
		align-items: flex-start;
		background-size: 240px;
		background-position: right;
	}
}
.index-kitouannai-cover{
    display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-start;
    height:324px;
    z-index:2;
    position: relative;
}
@media (max-width:859px) {
.index-kitouannai{
    display: inherit;
    margin-top:80px;
}
}

.index-kitouannai-headline {
	background: url(../img/decoration/contents_decoration.png);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	width: 100px;
	height: 215px;
    margin-left:20px;
}
	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-kitouannai-headline {
		width: 70px;
		height: 215px;
	}
}

.index-kitouannai-headline span {
	font-size: clamp(2.5rem, 1vw + 1rem, 3.2rem);
	display: block;
	writing-mode: vertical-rl;
	margin: 0 auto;
}



.index-kitouannai-text {
	writing-mode: vertical-rl;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	margin:0 4%;
    line-height: 2;
}

.index-kitouannai-button-narabi{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    height: 100%;
}

.index-kitouannai-button {
	margin-left: 10px;
}

.index-kitouannai-button02 {
	margin-left: 10px;
}


	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-kitouannai-button-set {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}
}

.index-kitouannai-button {
	margin-top: 7%;
}


.index-kitouannai-button02 {
	margin-top: 7%;
}

@media (max-width:859px) {
.index-kitouannai-button.button01 span {
    font-size:1.7em;
    font-weight: bolder;
}
    .index-kitouannai-button02.button02 span {
    font-size:1.7em;
    font-weight: bolder;
}
}


.index-kitouannai-decoration {
	position: relative;
	width: 425px;
    background:url(../img/kitouannai01.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    height:324px;
    margin-right:25px;
    z-index:1;
}
@media (max-width:859px) {
    
    .index-kitouannai-cover{
    height:300px;
}
    
    .index-kitouannai-decoration {
	width: 360px;
    height:300px;
}
}
    
@media (max-width:859px) {
    
    .index-kitouannai-decoration {
	width: 100%;
    height:180px;
    margin:20px auto;
}
}

.index-kitouannai-img001 {
	width: 100%;
	min-width: 175px;
}


/* ========== index-900 ========== */
.index-900 {
	width: 900px;
    margin:0 auto;
}
	@media (max-width:1024px) {
        .index-900 {
		/*　画面サイズが1024pxまではここを読み込む　*/
		width: 100%;
	}
}

/* ========== サブコンテンツ ========== */
.index-subcontents {
	margin-top: 15%;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
	@media (max-width:859px) {
       .index-subcontents {
	display: inherit;
}
}

.index-subcontents a {
	transition: 0.5s;
}

.index-subcontents a:hover {
	transform: scale(0.9);
	opacity: 0.8;
}

.index-subcontents-block {
	width: 32%;
	height: 300px;
    border-radius:15px;
    display: block;
}
	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-subcontents-block {
            width:100%;
            height: auto;
            margin:10px auto;
	}
}

.index-subcontents-block-img001 {
	background: url(../img/subcontents-img01.jpg) no-repeat;
	background-position: center;
}

.index-subcontents-block-img002 {
	background: url(../img/subcontents-img02.jpg) no-repeat;
}

.index-subcontents-block-img003 {
	background: url(../img/subcontents-img03.jpg) no-repeat;
	background-position: center;
}

.index-subcontents-block-img {
	background-size: cover;
	width: 100%;
    height: 65%;
    border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-subcontents-block-img {
       width: 100%;
        height: 120px;
	}
}

.index-subcontents-block-background {
	background: url(../img/decoration/subcontents-background.png) no-repeat;
	background-size: 100% auto;
	background-position: bottom;
	width: 100%;
	height: 35%;
	display: flex;
	justify-content: center;
	align-items: center;
    padding:10px;
}

@media (max-width:859px) {
		.index-subcontents-block-background {
	height: 60px;
}
}


.index-subcontents-block-background span {
	font-size: clamp(1.5rem, 1vw + 1rem, 2.0rem);
	display: inline-block;
	text-align: center;
    line-height: 1.2;
}

.index-subcontents-block-marginyou {
	margin: 0 2%;

	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
		margin: 4% 0;
	}
}


/* ========== サブリンク ========== */
.index-sublink {
	margin-top: 7%;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
	@media (max-width:859px) {
        .index-sublink {
		display: inherit;
	}
}

.index-sublink a {
	transition: 0.5s;
    
}

.index-sublink a:hover {
	transform: scale(0.9);
	opacity: 0.8;
}

.index-sublink-block {
	width: 49%;
	height: 50px;
    
}
	@media (max-width:859px) {
		
        .index-sublink-block {
		width: 100%;
        margin:15px auto;
        display: block;
	}
}

.index-sublink-block-img001 {
	background: url(../img/sublink-img01.png) no-repeat;
}

.index-sublink-block-img002 {
	background: url(../img/sublink-img02.png) no-repeat;
}

.index-sublink-block-img {
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    border:thin solid #ccc;
}

.index-sublink-block-img span {
	font-size: clamp(1.5rem, 1vw + 1rem, 2.0rem);
	padding-left: 5%;
}

.index-sublink-block-marginyou {
	margin-left: 2%;
}
	@media (max-width:859px) {
		/*　画面サイズが859pxまではここを読み込む　*/
        .index-sublink-block-marginyou {
		margin: 0;
		margin-top: 4%;
	}
}





/* ==========================================================================
   juyohin.html
   ========================================================================== */

/* ========== TOP ========== */
.juyohin-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/juyohin-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: bottom 20% left 50%;
}


/* ========== パンくず ========== */
.juyohin-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.juyohin-Breadcrumb-ListGroup {
	display: flex;
}
.juyohin-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.juyohin-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.juyohin-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}

/* ========== ページタイトル ========== */
.juyohin-top-title {
	margin-top: 10%;
	height: 8vmin;
}

.juyohin-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== ジャンプボタン ========== */
.juyohin-contents-jump {
	margin-top: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.juyohin-contents-jump span {
	display: inline-block;
	padding: 3%;
	font-size: clamp(1.6rem, 1vw + 1rem, 2.2rem);
}

.juyohin-contents-jump-common {
	width: 17%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.juyohin-contents-jump-margin {
	margin-left: 2%;
}


/* ========== 授与品一覧 ========== */
.juyohin-contents-list {
	padding: 3%;
}

.juyohin-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.juyohin-contents-title span {
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.juyohin-contents-item {
	width: 100%;
	margin-top: 2%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.juyohin-contents-grid {
	margin-top: 4%;
	width: 100%;
	height: auto;
	display: grid;
	gap: 6vmin;
	place-content: center;
	place-items: center;
	grid-template-columns:  repeat(auto-fit,minmax(270px,1fr));
}

.juyohin-contents-haikei {
	background-color: rgb(156,204,164) ;
	background-repeat: no-repeat;
	position: relative;
}

.juyohin-contents-item-img {
	max-width: 300px;
	min-width: 300px;
	width: 100%;
	background:url(../img/decoration/juyohin_decoration.jpg) ;
	background-repeat: no-repeat;
	position: relative;
	top: -10px;
	left: -10px;
}

.juyohin-contents-item-img img {
	width: 100%;
}

.juyohin-contents-item-name {
	width: 100%;
	margin-top: 1%;
	padding: 2%;
	border-bottom: 1px solid;
}

.juyohin-contents-item-name span {
	font-size: clamp(1.8rem, 1vw + 1rem, 2.4rem);
}

.juyohin-contents-item-describe {
	width: 100%;
	margin-top: 1%;
	padding: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	line-height: 1.5em;
}

.juyohin-contents-item-describe span {
	display: block;
}





/* ==========================================================================
   chishiki.html
   ========================================================================== */

/*神道の知識用CSS*/

.shintou-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/shintou/shintou-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: bottom 40% left 50%;
}


#shintou{
    width:98%;
    margin:0 auto;
}

#shintou .juyohin-contents-jump {
	margin-top: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    flex-wrap: wrap;
}

#shintou .juyohin-contents-jump span{
    font-size: 15px;
}
#shintou .juyohin-contents-jump-margin{
    margin-left: inherit;
}
#shintou .juyohin-contents-jump-common {
    width: auto;
    align-self: stretch;
    white-space: nowrap;
    padding:5px 10px;
    margin:2px;
    box-sizing: inherit;
}

#shintou .juyohin-contents-jump-common:hover{
    background: rgb(204,227,148);
    border-bottom: 2px solid rgb(118, 166, 106);
    border-top: 2px solid rgb(118, 166, 106);
}

#shintou h2{
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
    font-size:clamp(2.2rem, 1vw + 1rem, 2.8rem);
    padding: 1%;
    margin-bottom:15px;
}

#shintou h3{
	margin-top: 30px;
	width: 100%;
	border-bottom: 2px solid rgb(156,204,164);
    font-size:clamp(1.6rem, 1vw + 1rem, 2.0rem);
    padding: 1%;
    padding-left:10px;
    margin-bottom:15px;
}

#shintou p{
    font-size:clamp(1.3rem, 1vw + 1rem, 1.6rem);
    line-height: 1.8;
    padding:0 10px;
    margin-bottom:10px;
}

#shintou .oshougatsusama{
    display: flex;
    flex-wrap: nowrap;
    margin:15px auto;
}

#shintou .oshougatsusama > div{
    flex:1;
    border:thin solid #eee;
    padding:1%;
    margin:1px;
    background-color: rgb(255, 252, 242);
    letter-spacing: 0.1rem;
}

#shintou .midashi{
    font-size:clamp(1.5rem, 1vw + 1rem, 1.8rem);
    font-weight: bold;
}

#shintou .shinto-img{
    display: flex;
    justify-content: center;
}

#shintou .sahou-text{
	padding: 5% 1%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#shintou .shinto-img img{
    width:100%;
    max-width:350px;
}

#shintou .shinto-img-yoko img{
	margin-top: 2%;
    width:100%;
    max-width:600px;
}

#shintou .shintou-ohuda{
    border:thin solid #eee;
    margin:1px auto;
    background-color: rgb(255, 252, 242);
    align-self: flex-start;
    width:300px;
}

#shintou .shintou-osonae{
    border:thin solid #eee;
    margin:1px auto;
    padding: 1%;
    background-color: rgb(255, 252, 242);
    width:100%;
    max-width:450px;
}

@media screen and (max-width:767px){
    #shintou .oshougatsusama{
    display: inherit;
}
    #shintou .oshougatsusama > div{
    flex:initial;
    width: 98%;
}
    #shintou .shinto-img{
    display: inherit;
}
    
}

/* ==========================================================================
   link.html
   ========================================================================== */
.link-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/link/link-top-image.jpg) no-repeat;
	background-size: cover;
	background-position: top left 50%;
}

#link{
    width:98%;
    margin:80px auto;
}

#link p{font-size:clamp(1.3rem, 1vw + 1rem, 1.6rem);
    line-height: 1.8;}

#link li{
	font-size:clamp(1.3rem, 1vw + 1rem, 1.6rem);
    line-height: 1.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: thin #333 dotted;
    padding: 10px;
}

#link li:hover{color:green}

#link li .banner{
    width:30%;
}
#link li .url{
    width:70%;
}

@media screen and (max-width:767px){
    #link li{
    display: inherit;
}
    #link li .banner{
    width:100%;
}
#link li .url{
    width:100%;
}

}

/* ==========================================================================
   shahou.html
   ========================================================================== */

.shahou-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/link/link-top-image.jpg) no-repeat;
	background-size: cover;
	background-position: top left 50%;
}
#shahou{
    width:98%;
    margin:80px auto;
}
#shahou{font-size:clamp(1.3rem, 1vw + 1rem, 1.6rem);
    line-height: 1.8;}

#shahou ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width:98%;
    margin:0 auto;
}
#shahou ul li{
    width:33%;
	border: solid 5px rgb(204,227,148);
    text-align: center;
	margin: 0 0 -5px -5px;
    padding:20px;
}
@media screen and (max-width:767px){
    #shahou ul li{
    width:50%;
    padding-bottom:20px;
    padding:0 1%;
}
    #shahou ul li img{
    width:100%;
}
}





/* ==========================================================================
   goaisatsu.html
   ========================================================================== */

/* ========== TOP ========== */
.goaisatsu-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/goaisatsu-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 25% left 50%;
}


/* ========== パンくず ========== */
.goaisatsu-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.goaisatsu-Breadcrumb-ListGroup {
	display: flex;
}
.goaisatsu-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.goaisatsu-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.goaisatsu-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}

/* ========== ページタイトル ========== */
.goaisatsu-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.goaisatsu-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

.goaisatsu-character {
	margin-top: 5%;
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
}

.goaisatsu-character-block {
	width: 30%;
	min-width: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.goaisatsu-character-block-text {
	margin-top: 5%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
	font-size: clamp(2.0rem, 1vw + 1rem, 2.6rem);
}

.goaisatsu-character-decoration {
	margin-top: 10%;
}

.goaisatsu-character-block-margin {
	margin-left: 5%;
}

.goaisatsu-border {
	width: 100%;
	height: 2px;
	margin-top: 7%;
	background-color:rgb(156,204,164);
}

.goaisatsu-contents {
	position: relative;
	margin-top: 7%;
	padding: 0 2%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
	@media (max-width:649px) {
	   /*　画面サイズが649pxまではここを読み込む　*/
        .goaisatsu-contents {
	   flex-direction: column;
	}
}

.goaisatsu-contents-img.pc-only {
	width: 30%;
}

.goaisatsu-contents-img img {
	min-width: 200px;
}

.goaisatsu-contents-img01 {
	width: 80%;
	min-width: 200px;
	border-radius: 10px;
}

.goaisatsu-contents-img02 {
	width: 80%;
	min-width: 200px;
	border-radius: 10px;
}

.goaisatsu-contents-img img {
	width: 100%;
}

.goaisatsu-contents-text {
	margin-top: 5%;
	margin-bottom: 5%;
	margin-left: 5%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}





/* ==========================================================================
   gyouji.html
   ========================================================================== */

/* ========== TOP ========== */
.gyouji-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/gyouji-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 30% left 50%;
}


/* ========== パンくず ========== */
.gyouji-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.gyouji-Breadcrumb-ListGroup {
	display: flex;
}
.gyouji-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.gyouji-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.gyouji-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.gyouji-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.gyouji-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.gyouji-contents-title {
	margin-top: 12%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.gyouji-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.gyouji-contents-text {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.gyouji-contents-img {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gyouji-contents-img img {
	width: 48.5%;
}

.gyouji-shuukitaisai a {
	display: inline-block;
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
	transition: 0.3s;
}

.gyouji-shuukitaisai a:hover {
	transform: scale(1.1);
	opacity: 0.7;
}





/* ==========================================================================
   yuisho.html
   ========================================================================== */

/* ========== TOP ========== */
.yuisho-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/yuisho-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 60% left 50%;
}


/* ========== パンくず ========== */
.yuisho-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.yuisho-Breadcrumb-ListGroup {
	display: flex;
}
.yuisho-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.yuisho-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.yuisho-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.yuisho-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.yuisho-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.yuisho-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.yuisho-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.yuisho-contents-gosaishin {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: clamp(3.2rem, 2vw + 1.5rem, 4.8rem);
}

.yuisho-contents-gosaishin:after {
	content: "";
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, rgb(156,204,164), transparent);
}

.yuisho-contents-background {
	width: 100%;
	background-image: url(../img/decoration/shamon.png);
	background-color:rgba(255,255,255,0.85);
	background-blend-mode:lighten;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.yuisho-contents-block {
	margin-top: 7%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding:0 2% ;
}

.yuisho-contents-gosaishin-sub {
	font-size: clamp(2.2rem, 2vw + 1.5rem, 4.0rem);	
}

.yuisho-contents-article {
	margin-top: 2%;
	padding: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.yuisho-contents-img {
	margin-top: 2%;
	width: 100%;
}

.yuisho-contents-img img {
	width: 100%;
}





/* ==========================================================================
   omonome.html
   ========================================================================== */

/* ========== TOP ========== */
.omonome-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/omonome-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 60% left 50%;
}


/* ========== パンくず ========== */
.omonome-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.omonome-Breadcrumb-ListGroup {
	display: flex;
}
.omonome-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.omonome-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.omonome-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.omonome-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.omonome-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.omonome-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.omonome-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.omonome-contents-article {
	margin-top: 2%;
	padding: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.omonome-contents-article img {
	float: right;
	padding:2%;
	max-width: 400px;
}
@media (max-width:649px) {
   /*　画面サイズが649pxまではここを読み込む　*/
   .omonome-contents-article img {
	width: 100%;
   }
}

.omonome-contents-img {
	width: 100%;
}

.omonome-contents-img img {
	margin-top: 4%;
	width: 100%;
	border-radius: 10px;	
}





/* ==========================================================================
   kanameishi.html
   ========================================================================== */

/* ========== TOP ========== */
.kanameishi-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/kanameishi-top-img01.jpg) no-repeat;
	background-size: cover;
	background-position: top 65% left 50%;
}


/* ========== パンくず ========== */
.kanameishi-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.kanameishi-Breadcrumb-ListGroup {
	display: flex;
}
.kanameishi-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.kanameishi-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.kanameishi-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.kanameishi-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.kanameishi-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.kanameishi-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.kanameishi-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.kanameishi-contents-article {
	padding: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.kanameishi-contents-article img {
	width: 100%;
	padding: 2%;
}

.kanameishi-contents-article span img {
	float: right;
	padding:2%;
	max-width: 500px;
}
@media (max-width:649px) {
   /*　画面サイズが649pxまではここを読み込む　*/
   .kanameishi-contents-article img {
		width: 100%;
   }
}

.kanameishi-contents-img {
	width: 100%;
}

.kanameishi-contents-img img {
	margin-top: 4%;
	width: 100%;
	border-radius: 10px;	
}





/* ==========================================================================
   access.html
   ========================================================================== */

/* ========== TOP ========== */
.access-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/access-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 65% left 50%;
}


/* ========== パンくず ========== */
.access-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.access-Breadcrumb-ListGroup {
	display: flex;
}
.access-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.access-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.access-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.access-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.access-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.access-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.access-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.6rem);
	padding: 1%;
}

.access-contents-map {
	margin-top: 4%;
}

.access-contents-address {
	margin-top: 4%;
	padding-left: 5%;
	font-size: clamp(2.0rem, 1vw + 1rem, 2.8rem);
}

.access-contents-address a {
	transition: 0.3s;
}

.access-contents-address a:hover {
	opacity: 0.5;
}




/* ==========================================================================
   kitouannai.html
   ========================================================================== */

/* ========== TOP ========== */
.kitouannai-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/kitouannai-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 30% left 50%;
}


/* ========== パンくず ========== */
.kitouannai-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.kitouannai-Breadcrumb-ListGroup {
	display: flex;
}
.kitouannai-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.kitouannai-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.kitouannai-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.kitouannai-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.kitouannai-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.kitouannai-contents-title {
	margin-top: 12%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.kitouannai-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
	padding: 1%;
}

.kitouannai-contents-text {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.kitouannai-contents-text-kaigyou span{
	display: inline-block;
}

.kitouannai-contents-img {
	margin-top: 2%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.kitouannai-contents-img img {
	width: 48.5%;
}





/* ==========================================================================
   yakunen.html
   ========================================================================== */

/* ========== TOP ========== */
.yakunen-top {
	width: 100vw;
	height: 40vmin;
	color: #fff;
	background: url(../img/yakunen-top-img.jpg) no-repeat;
	background-size: cover;
	background-position: top 65% left 50%;
}


/* ========== パンくず ========== */
.yakunen-Breadcrumb {
	margin-top: 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}
.yakunen-Breadcrumb-ListGroup {
	display: flex;
}
.yakunen-Breadcrumb-ListGroup-Item-Link:hover {
	opacity: 0.5;
}
.yakunen-Breadcrumb-ListGroup  {
	margin-left: 0.5em;
}
.yakunen-Breadcrumb-ListGroup > li + li::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}


/* ========== ページタイトル ========== */
.yakunen-top-title {
	margin-top: 7%;
	height: 8vmin;
}

.yakunen-top-title-decoration {
	height: 100%;
	background: url(../img/decoration/contents_decoration.png) no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

/* ========== コンテンツ ========== */
.yakunen-contents-title {
	margin-top: 10%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

.yakunen-contents-table {
	margin-top: 5%;
}

.yakunen-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.6rem);
	padding: 1%;
}

.yakunen-contents-text {
	margin-top: 2%;
	padding: 0 2%;
	font-size: clamp(1.5rem, 1vw + 0.5rem, 1.8rem);
}

.yakunen-cotents-table {
	display: flex;
	justify-content: center;
	align-items: center;
}




/* ==========================================================================
   photoalbum.html
   ========================================================================== */
   .album-contents-title {
	margin-top: 7%;
	margin-bottom: 3%;
	width: 100%;
	background: rgb(220,244,220);
	border-bottom: 2px solid rgb(156,204,164);
	border-top: 2px solid rgb(156,204,164);
}

   .album-contents-title span {
	display: block;
	font-size: clamp(2.2rem, 1vw + 1rem, 2.6rem);
	padding: 1%;
}