/*
Theme Name: Twenty Twelve
Theme URI: https://wordpress.org/themes/twentytwelve/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 4.5
Tested up to: 6.8
Requires at least: 3.5
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-style:normal;
font-weight: normal;
font-size: 100%;
vertical-align: baseline;
font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,"Yu Gothic" , "YuGothic" ,  "Hiragino Kaku Gothic Pro" , "Meiryo UI" , Meiryo , "MS PGothic" , sans-serif;
	
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
	overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
	list-style:none;
}


ul.flex,.flex{
	display:-webkit-box;
	display:-ms-box;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-moz-box-lines:multiple;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-box-pack: left;
	-ms-flex-pack: left;
	justify-content: left;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
	width:100%;
}

caption, th{
	text-align: left;
}

a:focus {
	outline:none;
}

.clear:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

* html .clear {
	height: 1px;
}

.both{
	clear:both;
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}
*{
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}
a{
	text-decoration:none;
	color:#2c2c2c;
}
p a:hover, p.right a:hover span {
	color:#8fbaa1;
}
body {
	overflow:hidden;
	background:#fff;
}
div, a, p, h1, h2, h3, h4, h5, h6, span, th, td, li, time, footer, button, label, strong, em, b{
	color:#2c2c2c;
	font-family: 'Noto Serif JP', serif;
	font-size: 17px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
	height: auto;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}
section[class^="index_"]{
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
section p{
	margin-bottom:10px;
	letter-spacing:1px;	
}
section a, section span, section b, section strong {
	font-size:100%;
}
.mt10 {margin-top:10%!important;}
.mt8 {margin-top:8%!important;}
.mt5 {margin-top:5%!important;}
.mt3 {margin-top:3%!important;}
.mt0 {margin-top:0%!important;}
.mb5 {margin-bottom:5%!important;}
.mb0 {margin-bottom:0%!important;}
.mb10 {margin-bottom:10%!important;}

div.floatr,div.floatl {
    margin: 3% auto;
}
.floatr .float {
    float: right;
    margin: 0 0 10px 3%;
    width: 47%;
}
.floatl .float {
    float: left;
    margin: 0 3% 10px 0;
    width: 47%;
}

.center {text-align:center!important;}
.right {text-align:right!important;}
span.bu {
	border-bottom:1px solid;
	font-weight:500;
	font-size:100%;
}
span.bo {
	font-size:100%;
	font-weight:600;
}
span.bbig{
	font-weight:bold!important;
	font-size:120%!important;
}
span.yb {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fffac5));
    background: -o-linear-gradient(transparent 60%, #fffac5 0%);
    background: linear-gradient(transparent 60%, #fffac7 0%);
}
span.wb {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fff));
    background: -o-linear-gradient(transparent 60%, #fff 0%);
    background: linear-gradient(transparent 60%, #fff 0%);
}
span.ib {display:inline-block;}
.orange {
	color:#f99a00!important;
}
.green {
	color:#8fbaa1!important;
}

@-webkit-keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes kirari {
	0% {
		-webkit-transform: rotate(45deg) scale(-1, 1);
		        transform: rotate(45deg) scale(-1, 1);
	}
	5% {
		-webkit-transform: rotate(45deg) scale(1);
		        transform: rotate(45deg) scale(1);
	}
	100% {
		-webkit-transform: rotate(45deg) scale(1);
		        transform: rotate(45deg) scale(1);
	}
}
@keyframes kirari {
	0% {
		-webkit-transform: rotate(45deg) scale(-1, 1);
		        transform: rotate(45deg) scale(-1, 1);
	}
	5% {
		-webkit-transform: rotate(45deg) scale(1);
		        transform: rotate(45deg) scale(1);
	}
	100% {
		-webkit-transform: rotate(45deg) scale(1);
		        transform: rotate(45deg) scale(1);
	}
}

@-webkit-keyframes mv {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes mv {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.5);
		        transform: scale(1.5);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@-webkit-keyframes key1 {
	0% {
		right:3%;
	}
	50% {
		right:10%;
	}
	100% {
		right:3%;
	}
}
@keyframes key1 {
	0% {
		right:3%;
	}
	50% {
		right:10%;
	}
	100% {
		right:3%;
	}
}
@-webkit-keyframes key2 {
	0% {
		left:26%;
		top:15%;
	}
	50% {
		left:60%;
		top:10%;
	}
	100% {
		left:26%;
		top:15%;
	}
}
@keyframes key2 {
	0% {
		left:26%;
		top:15%;
	}
	50% {
		left:60%;
		top:10%;
	}
	100% {
		left:26%;
		top:15%;
	}
}
@-webkit-keyframes key3 {
	0% {
		left:-1%;
	}
	50% {
		left:5%;
	}
	100% {
		left:-1%;
	}
}
@keyframes key3 {
	0% {
		left:-1%;
	}
	50% {
		left:5%;
	}
	100% {
		left:-1%;
	}
}
@-webkit-keyframes key4 {
	0% {
		bottom:3%;
	}
	50% {
		bottom:20%;
	}
	100% {
		bottom:3%;
	}
}
@keyframes key4 {
	0% {
		bottom:3%;
	}
	50% {
		bottom:20%;
	}
	100% {
		bottom:3%;
	}
}
@-webkit-keyframes key5 {
	0% {
		right:25%;
	}
	50% {
		right:5%;
	}
	100% {
		right:25%;
	}
}
@keyframes key5 {
	0% {
		right:25%;
	}
	50% {
		right:5%;
	}
	100% {
		right:25%;
	}
}

.fadein{
	opacity:0;
	-webkit-transition : all 3s;
	-o-transition : all 3s;
	transition : all 3s;
}
.ponpon, .pon{
	opacity:0;
	-webkit-transition : all 2s;
	-o-transition : all 2s;
	transition : all 2s;
}
.downup .fadein, .downup .ponpon, .downup .pon {
	opacity : 0;
	-webkit-transform : translate(0, 50px);
	    -ms-transform : translate(0, 50px);
	        transform : translate(0, 50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.updown .fadein {
	opacity : 0;
	-webkit-transform : translate(0, -50px);
	    -ms-transform : translate(0, -50px);
	        transform : translate(0, -50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinrl .fadein {
	opacity : 0;
	-webkit-transform : translate(80px, 0);
	    -ms-transform : translate(80px, 0);
	        transform : translate(80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinlr .fadein {
	opacity : 0;
	-webkit-transform : translate(-80px, 0);
	    -ms-transform : translate(-80px, 0);
	        transform : translate(-80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadein.scrollin, .ponpon.active, .pon.activate {
	opacity : 1;
	-webkit-transform : translate(0, 0);
	    -ms-transform : translate(0, 0);
	        transform : translate(0, 0);
}
ul li:nth-child(even) p.ponpon.active {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

/*------------------------------
 * 余白
 * ------------------------------*/
.mt10 {
	margin-top:10% !important;
}
.mt8 {
	margin-top:8% !important;
}
.mt5 {
	margin-top:5% !important;
}
.mt3 {
	margin-top:3% !important;
}
.mt0 {
	margin-top:0% !important;
}
.mb0 {
	margin-bottom:0% !important;
}
.mb3 {
	margin-bottom:3% !important;
}
.mb5 {
	margin-bottom:5% !important;
}
.mb8 {
	margin-bottom:8% !important;
}
.mb10 {
	margin-bottom:10% !important;
}

/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/

.menu1 {
    position: fixed;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    -webkit-box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 40%);
    box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 40%);
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 30px;
    z-index: 100;
    -webkit-animation: fadeintb 1s 0s ease forwards;
    animation: fadeintb 1s 0s ease forwards;
    opacity: 0;
}
.menu1 ul {
    font-size: 0;
}
.menu1 li {
    display: inline-block;
    vertical-align: middle;
}
.menu1 li a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 14px;
}
.menu1 li:nth-child(8) a, .menu1 li:nth-child(9) a {
    padding: 8px 10px;
}
.menu1 li a:hover {
    color:#8fbaa1;
}
.menu1 li a img {
    width: 35px;
}
.menu1 li a:hover img {
    opacity:0.8;
}
.menur {
    display: none;
}

section.footer {
    margin: 10% auto 0;
    background: #e4f6e5;
    padding: 3% 0;
}
ul.info li {
    width: 58%;
}
ul.info li:nth-child(2) {
    position: relative;
    width: 40%;
    margin-left: 2%;
    border-top: 5px solid #e4f6e5;
    border-bottom: 5px solid #e4f6e5;
}
ul.info li:nth-child(2) img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
}
ul.info li table {
    border-collapse: separate;
    border-spacing: 0 5px;
}
ul.info li table th {
    background: #8fbaa1;
    width: 150px;
    padding: 8px 0;
    text-align: center;
    color: #fff;
}
ul.info li table td {
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px;
}
div.map iframe {
    width: 100%;
    height: 400px;
}
ul.sitemap {
    text-align: center;
    margin: 3% auto;
    font-size: 0;
}
ul.sitemap li {
    display: inline-block;
}
ul.sitemap li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
ul.sitemap li a:hover {
    color: #8fbaa1;
}
footer#colophon {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/back2.jpg);
    background-size: cover;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}


/*------------------------------------*\
    トップページ
\*------------------------------------*/

section.main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-height: 80vh;
    height: auto;
    overflow: hidden;
}
section.main picture img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-animation: mv 30s 0s ease infinite;
            animation: mv 30s 0s ease infinite;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
section.main > img,section.main > span, section.main > div.name {
    position: absolute;
}
section.main img.txt1 {
    right: 2%;
    top: 1%;
    height: 70%;
    width: auto;
    z-index: 4;
}
section.main img.txt2 {
    height: 75%;
    width: auto;
    left: 2%;
    bottom: 2%;
    z-index: 4;
}
section.main div.name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-filter: drop-shadow(2px 2px 1px #fff);
    filter: drop-shadow(2px 2px 1px #fff);
    font-size: 60px;
    text-align: center;
    letter-spacing: 5px;
    z-index: 5;
}
section.main div.name span {
    display: block;
    font-size: 50%;
    position: relative;
}
section.main div.name span::before {
    content: "";
    width: 250px;
    height: 250px;
    background: #ffffffa1;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
}
section.main > span {
    aspect-ratio: 1 / 1;
    background: #ffffff3d;
}
section.main span.square1 {
    width: 15%;
    right: 3%;
    top: 3%;
    -webkit-animation: key1 70s 0s ease infinite;
            animation: key1 70s 0s ease infinite;
}
section.main span.square2 {
    width: 20%;
    left: 26%;
    top: 15%;
    background: #d4d13940;
    -webkit-animation: key2 70s 0s ease infinite;
            animation: key2 70s 0s ease infinite;
}
section.main span.square3 {
    width: 13%;
    left: -1%;
    top: 0;
    -webkit-animation: key3 70s 0s ease infinite;
            animation: key3 70s 0s ease infinite;
}
section.main span.square4 {
    width: 8%;
    left: 1%;
    bottom: 3%;
    background: #d4d13940;
    -webkit-animation: key4 70s 0s ease infinite;
            animation: key4 70s 0s ease infinite;
}
section.main span.square5 {
    width: 10%;
    right: 25%;
    bottom: 20%;
    -webkit-animation: key5 70s 0s ease infinite;
            animation: key5 70s 0s ease infinite;
}

section.index1 {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/back2.jpg);
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5% 0 3%;
}
section.index1 h1 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.title1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 100px;
    margin-bottom: 15px;
}
.title1 span {
    display: block;
    font-size: 23px;
    margin-top: -10px;
    font-weight: bold;
}
.title2 {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 23px;
    letter-spacing: 1px;
}
.title3 {
    background: -o-linear-gradient(transparent 60%, #FFFAC6 0%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFFAC6));
    background: linear-gradient(transparent 60%, #FFFAC6 0%);
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 6% auto 4%;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 3px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5%;
}
.title4 {
    position: relative;
    text-align: center;
    font-size: 50px;
    margin: 6% auto 4%;
    padding-bottom: 10px;
    border-bottom: 3px solid #8fbaa1;
}
.title4 span {
    display: block;
    font-size: 20px;
    background: #8fbaa1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #fff;
    padding: 5px 20px;
    margin: 0px auto 5px;
    border-radius: 30px;
    letter-spacing: 3px;
}
.title5 {
	font-size: 47px;
	font-weight: 600;
	margin-bottom:3%;
}
.title5 span {
	color:#8fbaa1;
	font-size:50%;
	display:block;
}
.title6 {
	margin: 5% auto 10px;
	font-size: 30px;
	border-bottom: 3px solid #fff;
	border-top: 3px solid #fff;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 5px 5px 40px;
}
.title6::before {
	content:"";
	width: 25px;
	height: 25px;
	background: #fff;
	position: absolute;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 5px;
	top: 15px;
	-webkit-animation: kirari 5s infinite linear;
	animation: kirari 5s infinite linear;
}
.title7 {
    background: #8fbaa1;
    color: #fff;
    font-size: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
    margin: 8% auto 0;
}
.title8 {
    text-align: center;
    margin-bottom: 5%;
    position: relative;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 3px;
}
.title8 span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    border-top: 3px solid#f99a00;
    border-bottom: 3px solid#f99a00;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 20px;
    background: #fffac7a6;
}
.title8::after {
    content: "";
    width: 300px;
    height: 300px;
    background: #fffac7a6;
    position: absolute;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

p.link1 a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 3%;
    padding: 10px 40px 5px 10px;
    position: relative;
    border-bottom: 1px solid;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.link1 a::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #525252;
    position: absolute;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 14px;
    bottom: -6px;
}
p.link1 a:hover {
    color: #8fbaa1;
    padding: 10px 50px 5px 10px;
}
p.link1 a:hover::before {
    background:#8fbaa1;
}
ul.link2 {
}
ul.link2 li {
    width: 48%;
    margin-right: 4%;
    text-align: center;
    margin-bottom: 10px;
}
ul.link2 li:last-child {
    margin-right: 0;
}
ul.link2 li a {
    display: block;
    padding: 50px 0;
    font-size: 20px;
    position: relative;
    z-index: 1;
}
ul.link2 li a::before {
    content:"";
    width:100%;
    position: absolute;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/img2.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
ul.link2 li:nth-child(2) a::before {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/temomi7.jpg);
    background-size: cover;
    background-position: center;
}
ul.link2 li a::after {
    content:"";
    width: 100%;
    position: absolute;
    background: #ffffff9e;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link2 li a:hover::after {
    background: #ffffffde;
    -webkit-box-shadow:0px 0px 15px 3px #00000038 inset;
            box-shadow:0px 0px 15px 3px #00000038 inset;
}
ul.link3 {
    font-size: 0;
    text-align: center;
    margin: 3% auto;
}
ul.link3 li {
    width: 32%;
    display: inline-block;
    margin-right: 2%;
    text-align: center;
    max-width: 250px;
}
ul.link3 li:last-child {
    margin-right: 0;
}
ul.link3 li a {
    display: block;
    padding: 10px 0;
    background: #8fbaa1;
    border-radius: 50px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link3 li:nth-child(2) a {
    background: #476b99;
}
ul.link3 li:nth-child(3) a {
    background: #99475b;
}
ul.link3 li a img {
    display: inline-block;
    width: 28px;
    vertical-align: middle;
    margin-right: 5px;
}
ul.link3 li a span {
    color: #fff;
    vertical-align: middle;
}
ul.link3 li a:hover {
    background: #5d896f;
}
ul.link3 li:nth-child(2) a:hover {
    background: #7fa2d0;
}
ul.link3 li:nth-child(3) a:hover {
    background: #cb7c90;
}
p.link4 {
    margin: 5% auto 0;
    text-align: center;
}
p.link4 a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #8fbaa1;
    color: #fff;
    padding: 10px 30px 10px 60px;
    border-radius: 50px;
    font-size: 18px;
    position: relative;
}
p.link4 a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    left: 5px;
    top: 5px;
}
p.link4 a::after {
    content: "\0ab";
    color: #8fbaa1;
    position: absolute;
    left: 14px;
    top: -2px;
    font-size: 30px;
}
p.link4 a:hover {
    background: #fff26e;
    color: #2c2c2c;
}
p.link4 a:hover::after {
    color: #fff26e;
}

section.index2 {
    margin: 3% auto 5%;
}
section.index2 > div {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/sample1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding-top: 3%;
}
section.index2 > div li {
    margin-bottom: 10px;
    width: 80%;
}
section.index2 > div li a {
    display: block;
    background: #FFFAC6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.index2 > div li a span {
    display: inline-block;
    margin-right: 15px;
    font-weight: bold;
}
section.index2 > div li a:hover {
    background: #e4f6e5;
}

section.index3 {
    margin: 3% auto 0;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/back.jpg);
    background-size: 100% auto;
    padding-bottom: 3%;
}
section.index3::before {
    content: "";
    width: 100%;
    display: block;
    height: 200px;
    background: #fff;
}
div.cmt {
    margin: -200px auto 3%;
    font-size: 0;
    text-align: center;
}
div.cmt > p {
    display: inline-block;
    width: 35%;
    vertical-align: bottom;
}
div.cmt > div {
    width: 62%;
    display: inline-block;
    background: #fff;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    border-radius: 20px;
    max-width: 740px;
    position: relative;
    vertical-align: top;
    margin-left: 3%;
    -webkit-filter: drop-shadow(2px 2px 7px rgb(0 0 0 / 40%));
    filter: drop-shadow(2px 2px 7px rgb(0 0 0 / 40%));
}
div.cmt p.fukidashi {
    position: absolute;
    width: 60px;
    z-index: -1;
    left: -45px;
    bottom: 20px;
}


ul[class^="col2_"], ul[class^="col3_"] {
	margin:3% auto;
}
ul[class^="col2_"] > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul[class^="col3_"] > li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 3%;
}
ul[class^="col2_"] > li:nth-child(even), ul[class^="col3_"] > li:nth-child(3n){
    margin-right: 0;
}

ul.col2_box1 li > p {
    width: 70%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
ul.col2_box1 li > p::before {
    content: "";
    width: 100%;
    padding-top: 65%;
    display: block;
}
ul.col2_box1 li > p img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
ul.col2_box1 li > div {
    width: 80%;
    margin: -100px 0 0 auto;
    position: relative;
    background: #ffffffd4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5%;
    border-radius: 10px;
}
ul.col2_box1 li > div p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
ul.col2_box1 li:nth-child(even) > div.ponpon.active,
ul.menu > li.ponpon.active:nth-child(even),
section.index4 ul li:nth-child(even) div.ponpon.active {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

div.nayami {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 40%;
    padding-top: 3%;
    position: relative;
}
div.nayami::before {
	content:"";
	background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/img.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	width: 40%;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
div.nayami ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
    background: #fffac5;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    line-height: 26px;
}
div.nayami ul li:nth-child(even) {
    margin-right: 0;
    background: #e4f6e5;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

div.nayami ul li:nth-child(4n+3) {
    background: #e4f6e5;
}
div.nayami ul li:nth-child(4n+4) {
    background: #fffac5;
}
div.nayami ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
}
div.nayami ul li::after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: -10px;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.nayami ul li:nth-child(even)::after, div.nayami ul li:nth-child(4n+3)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.nayami ul li:nth-child(4n+4)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check2.png);
    background-repeat: no-repeat;
    background-size: contain;
}

div.time-table {
    width: 100%;
    max-width: 800px;
    margin: 5% auto;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/back2.jpg);
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3% 4%;
}
div.time-table table {
    border-collapse: separate;
    border-spacing: 3px;
    margin-bottom: 10px;
}
div.time-table table th {
    width: 200px;
    background: #fffac5;
    text-align: center;
    position: relative;
    padding: 10px 0;
    font-weight: 600;
}
div.time-table table th span {
    display: block;
    font-size: 80%;
}
div.time-table table tr:first-child th {
    height: 30px;
    overflow: hidden;
}
div.time-table table tr:first-child th::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 1px;
    background: #ffffff;
    left: -10%;
    top: 50%;
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
}
div.time-table table tr:first-child th span {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 90%;
}
div.time-table table tr:first-child th span:nth-child(2) {
    left: 10px;
    bottom: 5px;
    top: auto;
    right: auto;
}
div.time-table table td {
    text-align: center;
    background: #fff;
    vertical-align: middle;
}
div.time-table table tr:first-child td {
    background: #fffac5;
    font-weight: 600;
}
ul.listc li {
    position: relative;
    padding-left: 1.5rem;
    letter-spacing: 0.5px;
}
ul.listc li::after {
    content: '';
    display: block;
    position: absolute;
    top: 0.4em;
    left: 5px;
    width: 10px;
    height: 6px;
    border-left: 3px solid;
    border-bottom: 3px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
ul.listc.white li::after {
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
ul.listc.green li::after {
    border-left: 3px solid #8fbaa1;
    border-bottom: 3px solid #8fbaa1;
}
ul.listc.yellow li::after {
    border-left: 3px solid #fff16d;
    border-bottom: 3px solid #fff16d;
}
ul.listc.orange li::after {
    border-left: 3px solid #f99a00;
    border-bottom: 3px solid #f99a00;
}

ul.qa {
}
ul.qa li {
    margin-bottom: 2%;
}
ul.qa li input {
    display: none;
}
label.qa-btn {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px 10px 60px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: #e4f6e5;
}
label.qa-btn span {
    position: absolute;
    left: 5px;
    top: -28px;
    font-size: 300%;
    font-weight: bold;
    color: #8fbaa1;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
label.qa-btn:hover {
    background: #8fbaa1;
    color: #fff;
}
label.qa-btn:hover span, ul.qa li input:checked ~ label.qa-btn span {
    color:#e4f6e5
}
ul.qa li input:checked ~ label.qa-btn {
    background: #8fbaa1;
    color: #fff;
}
.show-a {
    width: 100%;
    padding: 0 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-sizing: border-box;
    background: #fff;
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
ul.qa li input:checked ~ .show-a {
    height: auto;
    opacity: 1;
    padding: 20px 20px 1px;
    overflow: visible;
}
ul.top-blog {
    font-size: 0;
}
ul.top-blog li {
    width: calc(94% / 4);
    margin-right: 2%;
}
ul.top-blog li.ponpon.active:nth-child(2) {
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
}
ul.top-blog li.ponpon.active:nth-child(3) {
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
}
ul.top-blog li.ponpon.active:nth-child(4) {
    -webkit-transition-delay: 0.6s;
         -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
    margin-right: 0;
}
ul.top-blog li a {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 3px solid #fffac7;
    background: #f99a00;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.top-blog li a::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.top-blog li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.top-blog li:nth-child(2) a {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/sample.jpg)no-repeat center / cover;
}
ul.top-blog li:nth-child(3) a {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/sample.jpg)no-repeat center / cover;
}
ul.top-blog li:nth-child(2) a img.noimg, ul.top-blog li:nth-child(3) a img.noimg {
    opacity: 0;
}
ul.top-blog li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 90%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    background: #fffac7bf;
    z-index: 2;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
    margin-inline: auto;
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
ul.top-blog li a:hover {
   opacity:0.8;
}
ul.top-blog li:last-child a:hover {
    background: #8fbaa1;
}
section.back-yellow {
    background: #fffac7;
    margin-bottom: -10%;
    padding: 5% 0 1%;
}
ul.top-con {
    margin: 5% auto;
}
ul.top-con li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul.top-con li:nth-child(even) {
    margin-right: 0;
}
ul.top-con li a {
    display: block;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1rem;
}
ul.top-con li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
ul.top-con li a div {
    position: relative;
    z-index: 1;
    background: #ffffffc4;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1rem;
    height: 100%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.top-con li a div::after {
    content: "see more \0bb";
    display: block;
    text-align: right;
    color: #8fbaa1;
}
ul.top-con li a p:last-child {
    margin-bottom: 0;
}
ul.top-con li a div h3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    margin-bottom: 8px;
}
ul.top-con li a div h3 span {
    display: block;
    font-size: 80%;
    color: #f99a00;
}
ul.top-con li a div p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
ul.top-con li a:hover div {
    background: #0000008f;
}
ul.top-con li a:hover div h3,ul.top-con li a:hover div p {
    color: #fff;
}
ul.top-con li a > span {
    position: absolute;
    background: #ffffffc4;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.top-con li a:hover > span {
    background: #0000008f;
    color:#fff;
}
section.index4 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
section.index4 ul li {
    width: 50%;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/service5.jpg)no-repeat center / cover;
    padding: 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
section.index4 ul li:nth-child(2) {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/service6.jpg)no-repeat center / cover;
}
section.index4 ul li div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffffd6;
    padding: 6% 3% 4%;
}
section.index4 ul li div > p:last-child {
    display: block;
    margin: auto auto 0;
    width: 100%;
}


section.page-head {
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#ffffff00));
    background: -o-linear-gradient(bottom, #ffffff, #ffffff00);
    background: linear-gradient(0deg, #ffffff, #ffffff00);
    background-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15% 0 7%;
    text-align: center;
    margin-bottom: 8%;
    position: relative;
}
section.page-head::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/phead.webp)no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
section.page-head div {
    position: relative;
    z-index: 10;
}
section.page-head div::before {
    content: "";
    width: 70%;
    height: 140px;
    background: #fffac5ba;
    position: absolute;
    z-index: -1;
    left: 0;
    top: -30px;
}
section.page-head div::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 100px;
    background: #e4f6e5b0;
    right: 0;
    bottom: -30px;
    z-index: -1;
}
section.page-head div h1,section.page-head div p.title {
    font-size: 60px;
    letter-spacing: 3px;
    font-weight: 600;
}
section.page-head div p:nth-child(2) {
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
}

div.yt iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    display: block;
}

div.yt-loop {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow: hidden;
    width: 100%;
}
div.yt-loop ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}
div.yt-loop ul:first-child {
    -webkit-animation: loop 50s -25s linear infinite;
    animation: loop 50s -25s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
div.yt-loop ul + ul {
    -webkit-animation: loop2 50s  linear infinite;
    animation: loop2 50s linear infinite;
}
div.yt-loop:hover ul{
	-webkit-animation-play-state: paused;
	        animation-play-state: paused;
}
div.yt-loop ul li{
	width: calc(100vw / 4);
	list-style: none;
	text-align: center;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 20px solid #fff0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
div.yt-loop ul li.yt-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* background: #ce3d3d; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
div.yt-loop ul li.yt-ttl::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ce3d3d;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}
div.yt-loop ul li.yt-ttl p {
    color: #fff;
    width: 100%;
    margin: auto auto 0;
    font-size: 45px;
    letter-spacing: 1px;
}
div.yt-loop ul li.yt-ttl h2 {
    margin: 0 auto auto;
    color: #fff;
    font-size: 20px;
    letter-spacing: 5px;
}
div.yt-loop ul li a {
	display:block;
	width: 100%;
	position: relative;
}
div.yt-loop ul li a:hover {
    opacity: 0.8;
}
div.yt-loop ul li a span {
    display: block;
    text-align: left;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #ce3d3d;
    color: #fff;
    padding: 3px 5px;
}
div.yt-loop ul li a::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ce3d3d;
    border-radius: 50%;
    right: 10px;
    bottom: 40px;
}
div.yt-loop ul li a::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    bottom: 55px;
    right: 30px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
div.yt-loop ul li a:hover::before {
    background:#fff;
}
div.yt-loop ul li a:hover::after {
    border-top: 3px solid #ce3d3d;
    border-right: 3px solid #ce3d3d;
}

div.yt-loop.loop-cus ul li {
    width: calc(100vw / 6);
}
div.yt-loop.loop-cus ul li::before {
    content:"";
    width: 100%;
    padding-top: 100%;
    display: block;
}
div.yt-loop.loop-cus ul li img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
}


/*------------------------------------*\
    アーカイブ
\*------------------------------------*/

ul.news {}
ul.news li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
    padding-bottom: 3%;
    border-bottom: 5px dotted #8fbaa1;
}
ul.news li:nth-child(even) {
    margin-right: 0;
}
ul.news li:last-child,ul.news li:nth-last-of-type(2) {
    border:unset;
}
ul.news li a {
    display: block;
    font-size: 0;
}
ul.news li a > p {
    width: 130px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-right: 3%;
    vertical-align: top;
    margin-bottom: 0;
}
ul.news li a > p::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.news li a > p img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.news li a:hover > p img {
	-webkit-transform: scale(1.2) rotate(5deg);
	    -ms-transform: scale(1.2) rotate(5deg);
	        transform: scale(1.2) rotate(5deg);
}
ul.news li a > div {
    display: inline-block;
    width: calc(97% - 130px);
}
ul.news li a > div p:first-child {
    font-size: 90%;
    margin-bottom: 0;
}
ul.news li a > div p:first-child span {
    color: #8fbaa1;
    font-weight: bold;
}
ul.news li a > div h2 {
    font-size: 23px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
ul.news li a:hover > div h2 {
    color: #8fbaa1;
}
ul.news li a > div p:nth-of-type(2) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
}
ul.news li a > div p:last-child {
    text-align: right;
    font-size: 14px;
    margin-bottom: 0;
    color: #8fbaa1;
}
nav.navigation.pagination {
    margin: 5% auto;
    text-align: center;
}
nav.navigation.pagination h2 {
    display: none;
}
.nav-links {
    font-size: 0;
}
.nav-links a,.nav-links span {
	background: #8fbaa1;
	color: #fff;
	display: inline-block;
	width: 45px;
	height: 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 10px;
	margin-right: 1%;
	margin-top: 10px;
	font-weight: bold;
	font-size: 16px;
}
.nav-links a:last-child, .nav-links span:last-child {
    margin-right: 0;
}
.nav-links a:hover {
    background: #e4f6e5;
    color: #2c2c2c;
}

section.single h1 {
    font-size: 30px;
    margin-bottom: 3%;
}
section.single h1 span {
    display: block;
    font-size: 16px;
    text-align: right;
    border-top: 3px dotted #8fbaa1;
    color: #8fbaa1;
}
section.single h2 {
    border-left: 10px solid #8fbaa1;
    padding-left: 5px;
    font-size: 23px;
    font-weight: 600;
    margin: 3% auto 15px;
    border-bottom: 1px solid #8fbaa1;
}
section.single h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 3% auto 15px;
    color:#8fbaa1;
}
nav.news-nav ul {
    font-size: 0;
}
nav.news-nav li {
    display: inline-block;
    width: 50%;
}
nav.news-nav li:nth-child(2) {
    text-align: right;
}
nav.news-nav li a {
    display: inline-block;
    margin: 10% auto 3%;
    font-weight: 500;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
    letter-spacing: 3px;
}
nav.news-nav li a:hover {
    color: #8fbaa1;
}
section.single p.link1 a {
    margin: 3% auto 0;
}




/*------------------------------------*\
    下層ページ
\*------------------------------------*/

p.caution1 {
    max-width: 900px;
    margin: 8% auto 3%;
}
section.form {
    max-width: 900px;
    margin: 0 auto;
}
section.form table tr {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #fff26d;
}
section.form table th {
    background: #fffac5;
    vertical-align: top;
    width: 230px;
    text-align: center;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #fff26d;
}
section.form table th p,section.form table td p {
	margin-bottom:0;
}
section.form table th span {
    color: #f99a00;
    font-size: 14px;
    padding-left: 5px;
}
section.form table td {
    padding: 10px 20px 5px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}
section.form table td.rdate {
    padding-bottom: 10px;
}
span.kibou {
    color: #f99a00;
    display: block;
    font-size: 16px;
    border-top: 1px solid #fff26d;
    padding-top: 5px;
    margin-top: 10px;
}
span.kibou:first-child {
    border: unset;
    margin: 0;
}
section.form table td span.wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 28px;
    letter-spacing: 1px;
}
section.form table td label span {
	cursor: pointer;
}
section.form table td span.wpcf7-acceptance span.wpcf7-list-item {
    margin: 0;
    line-height: normal;
}
section.form table td span.wpcf7-form-control-wrap {
    display: block;
}
section.form table td span.wpcf7-form-control {
    padding: 10px 0;
    display: block;
}
section.form table td input.wpcf7-text, section.form table td textarea.wpcf7-textarea {
    border: 1px solid #cfcfcf;
    background: #f8f8f8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	padding:10px;
}
section.form table td input.wpcf7-text {
    width: 80%;
    max-width: 400px;
    height: 35px;
}
section.form table td textarea.wpcf7-textarea {
    width: 100%;
}
section.form p span.wpcf7-spinner {
    vertical-align: sub;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background: #fffac5;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-size: 18px;
    margin-top: 50px;
    margin-left: 72px;
    color: #2c2c2c;
    font-family: 'Kiwi Maru', serif;
}
section.form p input.wpcf7-form-control.wpcf7-submit:hover {
    background: #8fbaa1;
    color: #fff;
}
section.form form > p {
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}
div.cancel {
    margin: 3% auto;
    background: #fffac5;
    border: 1px solid #fff16d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3% 3% 2%;
}
div.cancel p {
    font-size: 15px;
    margin-bottom: 8px;
}

ul.reason, ul.service {
	margin:5% auto;
}
ul.reason > li, ul.service li {
    position: relative;
    padding: 3% 0;
}
ul.reason > li::before, ul.service li::before {
    content:"";
    background: #fff26d;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 10px;
}
ul.service li::before {
	background:#8fbaa1;
}
ul.reason > li::after, ul.service li::after {
    content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
ul.reason > li > p, ul.service li > p {
    width: 30%;
    float: left;
    margin: 0 3% 15px 0;
    position: relative;
}
ul.reason > li:nth-child(even) > p, ul.service li:nth-child(even) > p {
	float: right;
    margin: 0 0 15px 3%;
}
ul.reason > li > p::after, ul.service li > p::after {
    content: "";
    width: 40%;
    height: 50%;
    position: absolute;
    background: #fffac7a6;
    z-index: 1;
    bottom: -20px;
    left: -8%;
}
ul.service li > p::after {
	background:#e4f6e599;
}
ul.reason > li:nth-child(even) > p::after, ul.service li:nth-child(even) > p::after {
	left:auto;
	right:-8%;
}
table.about {
    border-collapse: separate;
    border-spacing: 0 10px;
}
table.about th {
    background: #8fbaa1;
    width: 200px;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}
table.about td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    background: #e4f6e5;
}
ul.sitemap1 {
    font-size: 0;
}
ul.sitemap1 li {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10px;
}
ul.sitemap1 li:nth-child(even) {
    margin-right: 0;
}
ul.sitemap1 li a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 10px 10px 20px;
    display: block;
    border-bottom: 1px solid #e4f6e5;
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
ul.sitemap1 li a::before {
    content:"";
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #8fbaa1;
    width: 30px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -2;
}
ul.sitemap1 li a:hover {
    color: #fff;
}
ul.sitemap1 li a:hover::before {
    width: 300%;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

ul.menu > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 5%;
    position: relative;
}
ul.menu > li:nth-child(even) {
    margin-right: 0;
}
ul.menu li.img {
	border-radius: 20px;
	overflow: hidden;
	min-height: 300px;
}
ul.menu > li > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
}
ul.menu > li h2 {
    background: #8fbaa1;
    color:#fff;
    padding: 10px 70px 10px 10px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
	-webkit-box-sizing: border-box;
            box-sizing: border-box;
}
ul.menu > li h3 {
    background: #f99a00;
    color:#fff;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
	-webkit-box-sizing: border-box;
            box-sizing: border-box;
}
ul.menu > li h2 span {
    position: absolute;
    display: block;
    right: 3px;
    top: 3px;
    background: #fff26d;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 20px;
    font-weight: 600;
}
ul.menu > li > div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}
ul.menu > li > div::before {
	content:"";
	width: 55px;
	height: 15px;
	display: block;
	float: right;
}
ul.menu > li > div::after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
ul.menu > li ul.listc {
    margin-bottom: 10px;
}
ul.menu > li > div p:last-child {
	margin-bottom:0;
}
table.price {
    border-collapse: separate;
    border-spacing: 0 1px;
}
table.price th {
    background: #fff16d;
    width: 150px;
    text-align: center;
    padding: 5px 0;
}
table.price td {
    box-sizing: border-box;
    padding: 5px 10px;
    background: #fffac5;
}

.bunner a {
    display: block;
    border: 1px solid #29248d;
    border-radius: 20px;
    overflow: hidden;
}
.bunner a:hover {
    opacity: 0.8;
}

div.gbox {
    background: #e4f6e5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5%;
	margin:3% auto;
}
div.ybox {
    background: #fffbc6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5%;
	margin:3% auto;
}
div.gbox p:last-child, div.ybox p:last-child {
    margin-bottom: 0;
}

ul.p-con {}
ul.p-con > li {
    margin-bottom: 3%;
}
ul.p-con > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    background: #fffac7a6;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
ul.p-con > li a > p {
    display: inline-block;
    width: 30%;
    max-width: 200px;
    margin-bottom: 0;
    position: relative;
}
ul.p-con > li a > p img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
}
ul.p-con > li a > div {
    width: calc(100% - 200px);
    min-width: 70%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}
ul.p-con > li a > div h2 {
    font-size: 23px;
    margin-bottom: 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
ul.p-con > li a > div h2 span {
    display: block;
    color: #f99a00;
    font-size: 80%;
}
ul.p-con > li a > div p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
}
ul.p-con > li a:hover > div {
    background: #e4f6e5;
}
ul.p-con > li a:hover > div h2 span {
    color: #8fbaa1;
}
ul.say {
    margin: 3% auto;
}
ul.say li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: 600;
    font-size: 18px;
}
ul.say li::before {
    content: "";
    width: 30px;
    height: 24px;
    display: inline-block;
    background: url(/wp-content/uploads/2025/04/icon1.png)no-repeat center / contain;
    position: absolute;
    left: 0;
    top: -4px;
}
ul.list-box {
    background: #e4f6e5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3%;
}
ul.list-box li {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
ul.list-box li:last-child {
    padding: 0;
    border: unset;
    margin: 0;
}
ul.icon {
    margin: 3% auto;
    font-size: 0;
    text-align: center;
}
ul.icon li {
    position: relative;
    width: calc(92% / 5);
    display: inline-block;
    margin-right: 2%;
    text-align: center;
    vertical-align: top;
}
ul.icon li:last-child {
    margin-right: 0;
}
ul.icon li::before {
    content:"";
    width: 10%;
    height: 100%;
    position: absolute;
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/right.png)no-repeat left / contain;
    left: 100%;
}
ul.icon li:last-child::before {
    display:none;
}
ul.icon li img {
    width: 70%;
    margin: 0 auto 10px;
    max-width: 100px;
}
ul.icon li > span {
    display: block;
    font-size: 20px;
}
ul.icon li > span::first-letter {
    color: #f99a00;
    font-size:150%;
    font-weight:bold;
}

div.price1 {
    margin: 8% auto;
    border: 1px solid #8fbaa1;
    padding: 3%;
}
div.price1 p:nth-child(1) {
    text-align: center;
    background: #8fbaa1;
    color: #fff;
    padding: 20px 0;
    font-size: 30px;
    position: relative;
}
div.price1 p:nth-child(1)::before {
    content: "";
    height: 1px;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}
div.price1 p:nth-child(1)::after {
    content: "";
    height: 1px;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 10px;
}
div.price1 p:nth-child(2) {
    text-align: center;
    border-bottom: 1px solid #8fbaa1;
    font-size: 30px;
    margin-bottom: 8px;
    -webkit-filter: drop-shadow(2px 2px 1px #fffac5);
    filter: drop-shadow(2px 2px 1px #fffac5);
}
div.price1 p:nth-child(3) {
    text-align: center;
    color: #8fbaa1;
    margin-bottom: 3%;
}

table.price2 {
    margin: 8% auto 5%;
    max-width: 800px;
    border-collapse: separate;
    border-spacing: 0 3px;
}
table.price2 th {
    background: #8fbaa1;
    color: #fff;
    text-align: center;
    width: 280px;
    padding: 10px 0;
}
table.price2 td {
    background: #fffac7;
    padding: 10px;
    text-align: right;
}

.table1 th {
	width: 45%;
    padding: 10px 0;
    font-size: 16px;
	background:#ffe4b9;
	font-weight:bold;
	text-align:center;
	border:#ffb641 2px solid;
}
.table1 th span {
	display:block;
	font-size:14px;
}
.table1 td {
    padding: 10px 0 10px 8px;
    font-size: 16px;
	border:#ffb641 2px solid;
}
.table1 td span {
	display:block;
	font-size:12px;
	color:#9e9e9e;
}
table.about td>span {
	display:block;
	font-size:80%;
	color:#646464;
}
.voice_floatr {
	float: right;
    width: 130px;
    margin: 0 0 10px 10px;
}










@media screen and (max-width: 1000px) {
.width {
	width:90%;
}
section p {
	font-size:16.5px;
	margin-bottom:8px;
}
ul[class^="col2_"] > li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 3%;
}
ul[class^="col3_"] > li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 3%;
}

/*------------------------------------*\
    ヘッダー＆フッダー 00
\*------------------------------------*/

section.index1 h1 {
    font-size:16.5px;
	margin-bottom:8px;
}
.menu1 {
    display: none;
}
.menur {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}
nav.nav1 {
    display: block;
}
.r-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 90;
    background-color: #8fbaa1;
    border-radius: 10px;
}
.r-btn span,
.r-btn span:before,
.r-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.r-btn span:before {
    bottom: 8px;
}
.r-btn span:after {
    top: 8px;
}
#label1:checked ~ .r-btn span {
    background-color: #fff0;
}
#label1:checked ~ .r-btn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
#label1 {
    display: none;
}
.hidden_box .hidden_show {
    height: 0;
    padding: 0 10px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: center;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    max-height: 100vh;
}
.hidden_show ul.nav1-a {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 70px);
}
.hidden_box input:checked ~ .hidden_show {
    padding: 30px 10px 10px;
    height: auto;
    opacity: 1;
    margin: 0 auto;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    overflow: scroll;
    background: #fffac5;
}
.hidden_box input:checked ~ .hidden_show ul.nav1-a {
	opacity: 1;
	height: auto;
}
.hidden_show > p {
    width: calc(100% - 70px);
    margin-bottom: 20px;
}
.hidden_show > p a {
    display: block;
    font-size: 20px;
}
.hidden_show > p span {
    display: block;
    font-size: 70%;
}
.hidden_show ul.nav1-a li a{
	display: block;
	padding: 10px;
	border-bottom: 1px solid #fff26d;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing: 1px;
}
.hidden_show ul.nav1-a li:last-child a{
	border-bottom:unset;
}
.hidden_show ul.nav1-a li a img {
    display:inline-block;
    width: 25px;
    vertical-align: middle;
    margin-right: 5px;
}
.hidden_show ul.nav1-a li a span {
	display: inline-block;
	vertical-align: middle;
}

ul.info li {
    width: 55%;
}
ul.info li:nth-child(2) {
    width: 43%;
}
ul.info li table th {
    width: 110px;
}
div.map iframe {
    height: 350px;
}
ul.sitemap li a {
    font-size: 16px;
}



/*------------------------------------*\
    トップページ 00
\*------------------------------------*/

section.main img.txt1 {
    top: 80px;
}
section.main span.square1 {
    width: 20%;
}
section.main span.square2 {
    width: 30%;
}
section.main span.square3 {
    width: 23%;
}
section.main span.square4 {
    width: 15%;
}
section.main span.square5 {
    width: 15%;
}
section.main div.name {
    font-size: 50px;
}
section.main div.name span::before {
    width: 200px;
    height: 200px;
    top: -40px;
}

.title1 {
    font-size: 80px;
    margin-bottom: 10px;
}
.title1 span {
    font-size: 20px;
    margin: 0;
}
.title2 {
    font-size: 20px;
    margin-bottom: 5px;
}
.title4 {
	font-size: 45px!important;
}
.title4 span {
    font-size: 18px;
}
.title5 {
    font-size: 36px;
}
.title6 {
    font-size: 25px;
    padding: 3px 3px 3px 35px;
}
.title6::before {
    width: 20px;
    height: 20px;
    top: 8px;
}
.title7 {
    font-size: 28px;
}
.title8 {
    font-size: 35px;
}
.title8::after {
    width: 250px;
    height: 250px;
}
p.link1 a, ul.link2 li a::after,ul.link3 li a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.link2 li {
    width: 49%;
    margin-right: 2%;
}
ul.link2 li a {
    font-size: 18px;
}
ul.link3 li a span {
    font-size: 16px;
}
div.cmt > p {
}
div.cmt > div {
}
.title3 {
    font-size: 40px;
}
div.nayami {
    padding: 0 0 5%;
}
div.nayami::before {
    width: 50%;
    max-width: 300px;
}
div.nayami ul li,div.nayami ul li:nth-child(even) {
    width: calc(94% / 4);
    margin-right: 2%;
    padding: 2%;
}
div.nayami ul li.ponpon.active:nth-child(4n+3) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
div.nayami ul li:nth-child(4n) {
    margin-right: 0;
	-webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
div.nayami ul li:nth-child(3),div.nayami ul li:nth-child(6) {
    background: #fffac5;
}
div.nayami ul li:nth-child(4),div.nayami ul li:nth-child(5) {
    background: #e4f6e5;
}
div.nayami ul li::after {
    width: 40px;
    height: 40px;
    top: -3px;
}
div.nayami ul li:nth-child(3)::after,div.nayami ul li:nth-child(6)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.nayami ul li:nth-child(4)::after,div.nayami ul li:nth-child(5)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.time-table table th {
    width: 180px;
}
label.qa-btn {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    font-size: 18px;
    padding: 10px 15px 10px 50px;
}
label.qa-btn span {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
.show-a {
    padding: 0 15px;
}
ul.qa li input:checked ~ .show-a {
    padding: 10px 15px 1px;
}

section.page-head {
    padding: 120px 0 70px;
}
section.page-head div::before {
    height: 120px;
    top: -20px;
}
section.page-head div::after {
    height: 70px;
    bottom: -15px;
}
section.page-head div h1, section.page-head div p.title {
    font-size: 55px;
}

div.yt-loop ul li {
	border-right: 10px solid #fff0;
	width: calc(100vw / 3);
}
div.yt-loop ul li.yt-ttl p {
	font-size: 33px;
}
div.yt-loop ul li.yt-ttl h2 {
	font-size: 17px;
	letter-spacing: 3px;
}
div.yt-loop.loop-cus ul li {
    width: calc(100vw / 4);
}





/*------------------------------------*\
    アーカイブ 00
\*------------------------------------*/

ul.news li {
    width: 100%;
    margin: 0 auto 3%;
}
ul.news li:nth-last-of-type(2) {
    border-bottom: 5px dotted #8fbaa1;
}
section.single h1 {
    font-size: 25px;
}
section.single h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
section.single h3 {
    font-size: 18px;
    margin-bottom: 10px;
}




/*------------------------------------*\
    下層ページ 00
\*------------------------------------*/

section.form table th {
    padding: 15px 0;
    width: 200px;
}
section.form table td {
    padding: 5px 15px 3px 15px;
}
section.form table td span.wpcf7-list-item {
    line-height: 26px;
}
section.form table td span.wpcf7-form-control {
    padding: 10px 0 5px;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
    font-size: 16px;
}

ul.menu > li h2 {
    font-size: 19px;
    padding: 8px 60px 8px 8px;
}
ul.menu > li h3 {
    font-size: 19px;
    padding: 8px;
}
ul.menu > li h2 span {
    width: 58px;
    height: 58px;
    font-size: 15px;
    padding-top: 17px;
}
ul.menu > li > div {
    padding: 8px;
}
ul.menu > li > div::before {
    width: 50px;
}
ul.menu > li ul.listc {
    margin-bottom: 8px;
}
table.price td {
    padding: 5px 8px;
}

ul.p-con > li a > div h2 {
    font-size: 20px;
    margin-bottom: 8px;
}
ul.icon li {
    width: 32%;
    margin-bottom: 3%;
}
ul.icon li:nth-child(3n) {
    margin-right: 0;
}
ul.icon li > span {
    font-size: 17px;
}

div.price1 p:nth-child(1) {
    padding: 15px 0;
    font-size: 25px;
}
div.price1 p:nth-child(2) {
    font-size: 25px;
}

}

@media screen and (max-width: 700px) {

.width {
	width:96%;
}
section p {
	font-size:16px;
	letter-spacing:0.5px;
	margin-bottom:5px;
}
.floatr .float,.floatl .float {
	float:unset;
	width:100%;
	margin:0 auto 10px;
}



/*------------------------------------*\
    ヘッダー＆フッダー 70
\*------------------------------------*/

ul.info li {
    width: 100%;
}
ul.info li:nth-child(2) {
    width: 100%;
    margin: 0 auto;
    border: unset;
}
ul.info li table th {
    font-size: 16px;
    padding: 5px 0;
}
ul.info li table td {
    padding: 5px;
    font-size: 16px;
}
ul.info li:nth-child(2) img {
    position: unset;
    height: auto;
}
div.map iframe {
    height: 300px;
}

section.footer {
    margin: 15% auto 0;
}



/*------------------------------------*\
    トップページ 70
\*------------------------------------*/

section.main img.txt1 {
    height: 60%;
}
section.main img.txt2 {
    height: 65%;
}
section.main span.square4 {
    width: 45%;
}
section.main span.square5 {
    width: 25%;
}
section.main div.name {
    font-size: 6.423vw;
    letter-spacing: 3px;
}
section.main div.name span::before {
    width: 150px;
    height: 150px;
}

section.index1 h1 {
    font-size:16px;
	letter-spacing:0.5px;
	margin-bottom:5px;
}

.title1 {
    font-size: 50px;
    margin-bottom: 5px;
}
.title1 span {
    font-size: 18px;
}
.title2 {
    font-size: 18px;
    margin-bottom: 3px;
}
.title3 {
	font-size:33px;
}
.title4 {
	font-size: 33px!important;
	padding-bottom: 5px;
}
.title4 span {
    font-size: 16px;
    margin: 0 auto;
}
.title5 {
    font-size: 30px;
}
.title5 span {
	font-size: 18px;
}
.title6 {
    font-size: 23px;
    padding: 3px 3px 3px 35px;
}
.title6::before {
    width: 20px;
    height: 20px;
    top: 8px;
}
.title7 {
    font-size: 23px;
}
.title8 {
    font-size: 26px;
    letter-spacing: 1px;
}
.title8 span {
    border-top: 1px solid#f99a00;
    border-bottom: 1px solid#f99a00;
    margin-bottom: 5px;
    padding: 3px 15px;
}
.title8::after {
    width: 200px;
    height: 200px;
}
ul.link2 li a {
    padding: 30px 0;
    font-size: 16px;
    font-weight: bold;
}
ul.link3 li {
    max-width: 130px;
}
ul.link3 li a {
    padding: 8px 0;
    border-radius: 10px;
}
ul.link3 li a img {
    display: block;
    margin: 0 auto;
}
ul.link3 li a span {
    font-size: 13px;
}
section.index2 > div {
    background-size: cover;
}
section.index2 > div li {
    width: 100%;
}
section.index2 > div li a {
    background: #fffac6d1;
    padding: 10px;
}
div.cmt > p {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 300px;
}
div.cmt > div {
    display: block;
    width: 100%;
    margin: -10px auto 8%;
    max-width: 600px;
    border-radius: 10px;
}
div.cmt p.fukidashi {
    left: 10px;
    bottom: auto;
    top: -20px;
    -webkit-transform: rotate(100deg);
        -ms-transform: rotate(100deg);
            transform: rotate(100deg);
}
ul.col2_box1 li {
    width: 100%;
    margin: 0 auto 3%;
}
ul.col2_box1 li > p {
    max-width: 280px;
}
ul.col2_box1 li:nth-child(even) > p {
    margin: 0 0 10px auto;
}
ul.col2_box1 li > div {
    width: 90%;
    padding: 3%;
}
ul.col2_box1 li:nth-child(even) > div {
    margin: -100px 0 auto 0;
}
ul.col2_box1 li:nth-child(even) > div.ponpon.active,
ul.menu > li.ponpon.active:nth-child(even),
section.index4 ul li:nth-child(even) div.ponpon.active {
	-webkit-transition-delay: unset;
	     -o-transition-delay: unset;
	        transition-delay: unset;
}
div.nayami ul li, div.nayami ul li:nth-child(even) {
    width: 49%;
    font-size: 16px;
}
div.nayami ul li:nth-child(even) {
    margin-right: 0;
}
div.nayami ul li:nth-child(3), div.nayami ul li:nth-child(6) {
    background: #e4f6e5;
}
div.nayami ul li:nth-child(4), div.nayami ul li:nth-child(5) {
    background: #fffac5;
}
div.nayami ul li::after {
    width: 30px;
    height: 30px;
    top: 2px;
}
div.nayami ul li:nth-child(3)::after, div.nayami ul li:nth-child(6)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.nayami ul li:nth-child(4)::after, div.nayami ul li:nth-child(5)::after {
    background: url(https://kino.onmyoji8.com/siz3/wp-content/uploads/2025/04/check2.png);
    background-repeat: no-repeat;
    background-size: contain;
}
div.nayami {
    padding: 0;
}
div.nayami::before {
    display:none;
}
div.time-table table th {
    width: 115px;
    font-size: 15px;
    padding: 5px 0;
}
div.time-table table tr:first-child td {
    font-size: 15px;
}
ul.listc li {
    font-size: 16px;
}
label.qa-btn {
    font-size: 16px;
    padding: 10px 10px 10px 43px;
}
label.qa-btn span {
    font-size: 250%;
    top: -13px;
}
.show-a {
    padding: 0 10px;
}
ul.qa li input:checked ~ .show-a {
    padding: 10px 10px 1px;
}

ul.top-blog li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 16px;
}
ul.top-blog li.ponpon.active:nth-child(2) {
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    margin-right: 0;
}
ul.top-blog li.ponpon.active:nth-child(3) {
    -webkit-transition-delay: unset;
         -o-transition-delay: unset;
            transition-delay: unset;
}
ul.top-blog li.ponpon.active:nth-child(4) {
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
}
ul.top-blog li a,ul.top-blog li a img {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

ul.top-con li {
    width: 100%;
    margin: 0 auto 3%;
    min-height: 100px;
}
ul.top-con li a {
    padding: 10px;
}
ul.top-con li a div {
    padding: 10px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.top-con li a div h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
ul.top-con li a div::after {
    font-size: 15px;
}
ul.top-con li a > span {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

section.page-head {
    padding: 100px 0 40px;
    background-size: cover;
    background-position: center;
}
section.page-head div::before {
    height: 70px;
    top: -10px;
}
section.page-head div::after {
    height: 50px;
    bottom: -10px;
    width: 70%;
    right: 5%;
}
section.page-head div h1, section.page-head div p.title {
    font-size: 35px;
}
section.page-head div p:nth-child(2) {
    font-size: 18px;
    margin: 0;
}

div.yt-loop ul li {
	border-right: 8px solid #fff0;
	width: calc(100vw / 2);
}
div.yt-loop ul li.yt-ttl {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
div.yt-loop ul li.yt-ttl p {
	font-size: 25px;
}
div.yt-loop ul li.yt-ttl h2 {
	font-size: 14px;
	letter-spacing: 1px;
}
div.yt-loop ul li a::before {
    width: 40px;
    height: 40px;
    right: 7px;
    bottom: 36px;
}
div.yt-loop ul li a::after {
    width: 12px;
    height: 12px;
    right: 22px;
    bottom: 49px;
}
div.yt-loop.loop-cus ul li {
    width: calc(100vw / 3);
}

section.index4 ul li {
    width: 100%;
}

/*------------------------------------*\
    アーカイブ 70
\*------------------------------------*/

ul.news li a > p {
    width: 100px;
}
ul.news li a > div {
    width: calc(97% - 100px);
}
ul.news li a > div h2 {
    font-size: 20px;
}
ul.news li a > div p:nth-of-type(2) {
    -webkit-line-clamp: 1;
}
ul.news li, ul.news li:nth-last-of-type(2) {
    border-bottom: 3px dotted #8fbaa1;
}

section.single h1 {
    font-size: 23px;
}
section.single h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
section.single h3 {
    font-size: 17px;
    margin-bottom: 5px;
}



/*------------------------------------*\
    下層ページ 70
\*------------------------------------*/
section.form table th {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-right: unset;
    border-bottom: 1px solid #fff26d;
}
section.form table td {
    padding: 5px 5px 3px;
    width: 100%;
    display: block;
}
section.form table td.rdate {
    text-align: center;
}
section.form table td span.wpcf7-list-item span {
    font-size: 15px;
    letter-spacing: 0.5px;
}
section.form table td span.wpcf7-form-control {
    padding: 0;
}
section.form table td input.wpcf7-text {
    width: 100%;
}

ul.reason > li > p,ul.reason > li:nth-child(even) > p,ul.service li > p,ul.service li:nth-child(even) > p {
    float: unset;
    width: 97%;
}
ul.reason > li > p::after,ul.service li > p::after {
    width: 50%;
    left: -5%;
    bottom: -15px;
}
ul.reason > li:nth-child(even) > p::after,ul.service li:nth-child(even) > p::after {
    right: -5%;
}
table.about {
    border-collapse: collapse;
    border-spacing: 0;
}
table.about th {
    width: 100%;
    display: block;
}
table.about td {
    display: block;
    width: 100%;
}
ul.sitemap1 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 0;
}
ul.sitemap1 li a {
    padding: 10px;
    font-size: 16px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    text-align: center;
}
ul.sitemap1 li a::before {
    display: none;
}
ul.sitemap1 li a:hover {
    background: #8fbaa1;
}

ul.menu > li {
    width: 100%;
    margin: 0 auto 3%;
}
ul.menu li.img {
    height: 280px;
    width: 48%;
    margin-right: 4%;
    min-height: unset;
}
ul.menu > li:nth-child(4n+3) {
    margin-right: 0;
}
ul.menu > li:nth-child(4n+2) {
    margin-right: 4%;
}
ul.menu > li h2 {
    font-size: 18px;
}
table.price th {
    width: 130px;
}

ul.p-con > li a > div h2 {
    font-size: 17px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: unset;
}
ul.say li {
    font-size: 17px;
    padding-left: 25px;
}
ul.say li::before {
    width: 25px;
    top: 0px;
}
ul.list-box li {
    padding-bottom: 5px;
    margin-bottom: 5px;
}
ul.icon li > span {
    font-size: 15px;
}

div.price1 p:nth-child(1) {
    padding: 10px 0;
    font-size: 20px;
}
div.price1 p:nth-child(1)::before {
    top: 5px;
}
div.price1 p:nth-child(1)::after {
    bottom: 5px;
}
div.price1 p:nth-child(2) {
    font-size: 23px;
    margin-bottom: 5px;
}
table.price2 th {
    width: 170px;
}
	.voice_floatr {
		float:unset;
		margin:3% auto;
	}

}

/*--------------------
 * 25.07.04 DC追記
 * --------------------*/
.ttl1 {
	font-size:24px;
	font-weight:bold;
	margin:3% 0 2.5%;
	border-bottom:3px solid #b1d6b4;
	padding-bottom:3px;
}
.ttl2 {
	background:#b1d6b4;
	color:#fff;
	padding:10px;
	font-weight:bold;
	font-size:20px;
	margin:2% 0 1.5%;
}
div.float.clear:after {
	content:'';
	display:block;
	clear:both;
}
div.float .floatr {
	float:right;
	width:40%;
	margin:0 0 10px 10px;
}
.read_txt {
	display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 3; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
.btn1 a {
	display:block;
	width:200px;
	padding: 10px 0;
	text-align:center;
	font-size:18px;
	font-weight:700;
	color:#fff;
	background:#b1d6b4;
	border:1px solid #b1d6b4;
	margin:5% auto;
	transition:all .3s;
}
.btn1 a:hover {
	color:#b1d6b4;
	background:#fff;
	border:1px solid #b1d6b4;
}

@media screen and (max-width:700px) {
	div.float .floatr {
		float:unset;
		width:100%;
		margin:0 0 10px 0;
	}
}


/*------------------
 * 25.08.04 DC追記
 * -------------------*/
.cta_line {
	max-width:800px;
	margin:3% auto;
}