/*
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.4
Tested up to: 6.7
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+Sans+JP:wght@400;500;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;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
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{
	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: center;
        -ms-flex-pack: center;
            justify-content: center;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
}

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;  
}

a{
	text-decoration:none;
	color:#000;
}
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: #707070;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
.width p{
	margin-bottom:10px;
	line-height:28px;
	letter-spacing:1px;
	text-align:justify;
}
.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;}

@-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);
	}
}

.fadein{
	opacity:0;
	-webkit-transition : all 3s;
	-o-transition : all 3s;
	transition : all 3s;
}
.downup .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;
}
.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 {
	opacity : 1;
	-webkit-transform : translate(0, 0);
	    -ms-transform : translate(0, 0);
	        transform : translate(0, 0);
}

/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/
header#top hgroup {
    font-size: 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
            box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
}
header#top hgroup p {
    width: 330px;
    display: inline-block;
    vertical-align: top;
}
header#top hgroup p a {
    display: block;
    padding: 13px 0 6px 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
header#top hgroup ul {
    width: calc(100% - 670px);
    display: inline-block;
    text-align: right;
	vertical-align: top;
	margin-top: 13px;
}
header#top hgroup ul li {
    display: inline-block;
    width: 60px;
    text-align: center;
}
header#top hgroup ul li a {
    display: block;
}
header#top hgroup ul li a img {
    width: 50px;
    margin: 0 auto;
}
header#top hgroup ul li a span {
    font-size: 13px;
    font-weight: 500;
    display: block;
}
header#top hgroup ul li a span:nth-of-type(2) {
display: none;
}
header#top hgroup ul li a:hover {
	opacity:0.8;
}
table.timetable {
    display: inline-block;
    width: 320px;
	margin: 10px;
	font-size: 0;
}
table.timetable tbody {
    display: block;
}
table.timetable tr {
    display: block;
    border-top: 1px solid #92B600;
    border-right: 1px solid #92B600;
    border-left: 1px solid #92B600;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
table.timetable tr:last-child {
    border-bottom: 1px solid #92B600;
}
table.timetable th {
    display: inline-block;
    width: 138px;
    text-align: center;
    position: relative;
    border-right: 1px solid #92B600;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 14px;
	letter-spacing: 0.5px;
}
table.timetable th span {
    color: #92B600;
    display: block;
    text-align: right;
    font-size: 12px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
table.timetable th span:nth-child(2) {
    text-align: left;
    padding-left: 10px;
	margin-top: -5px;
}
table.timetable th span:nth-child(2)::before {
    content: "";
    background: #92B600;
    position: absolute;
    height: 1px;
    width: 141px;
    -webkit-transform: rotate(12.5deg);
        -ms-transform: rotate(12.5deg);
            transform: rotate(12.5deg);
    left: -2px;
    top: 14.5px;
}
table.timetable td {
    display: inline-block;
    width: 30px;
    text-align: center;
    border-right: 1px solid #92B600;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 14px;
}
table.timetable td:last-child {
    border-right: unset;
}
table.timetable tr:nth-child(1) td {
    background: #b1d812;
    color: #fff;
	padding: 5px 0;
	vertical-align: top;
}
.menu {
	background:#92B600;
    text-align: center;
	position: relative;
}
.menu::before {
    content: "";
    background: #92B600;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -8px;
    left: 0;
    z-index: 1;
}
.menu li {
    display: inline-block;
}
.menu li a {
    display: block;
    color: #fff;
    padding: 20px 15px 23px;
    letter-spacing: 0.5px;
    position: relative;
}
.menu li a::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 40px;
    height: 3px;
    border-radius: 50px;
    top: 43px;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu li a:hover::before {
    opacity: 1;
    top: 51px;
}
.menur {
    display: none;
}
.line-cta {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 15px;
    width: 30%;
    max-width: 300px;
    -webkit-animation: fuwafuwa 3s 0.5s infinite;
            animation: fuwafuwa 3s 0.5s infinite;
}
@-webkit-keyframes fuwafuwa {
	0% {
		        -webkit-transform: translateY(0px);
		                transform: translateY(0px);
	}
	50% {
		        -webkit-transform: translateY(10px);
		                transform: translateY(10px);
	}
	100% {
		        -webkit-transform: translateY(0px);
		                transform: translateY(0px);
	}
}
@keyframes fuwafuwa {
	0% {
		        -webkit-transform: translateY(0px);
		                transform: translateY(0px);
	}
	50% {
		        -webkit-transform: translateY(10px);
		                transform: translateY(10px);
	}
	100% {
		        -webkit-transform: translateY(0px);
		                transform: translateY(0px);
	}
}
input#cta1 {
    display: none;
}
.line-cta a {
    display: block;
    width: 100%;
}
label.cta-btn {
    width: 30px;
    height: 30px;
    background: #fff;
    display: block;
    border: 3px solid;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    right: -5px;
    top: -10px;
    z-index: 1;
    cursor: pointer;
}
label.cta-btn span {
    position: relative;
}
label.cta-btn span::before {
    content: "";
    width: 18px;
    height: 4px;
    background: #707070;
    position: absolute;
    border-radius: 50px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 10px;
    left: 3px;
}
label.cta-btn span::after {
    content: "";
    width: 18px;
    height: 4px;
    background: #707070;
    position: absolute;
    border-radius: 50px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 10px;
    left: 3px;
}
.line-cta a:hover {
    opacity: 0.8;
}
.line-cta input:checked ~ label.cta-btn, .line-cta input:checked ~ a {
    visibility:hidden;
    display: none;
}

section.footer {
    margin: 10% auto 0;
	font-size: 0;
}
section.footer div {
    display: inline-block;
    width: 47%;
    margin: 0 3% 0 0;
    vertical-align: top;
}
section.footer iframe {
    display: inline-block;
    width: 50%;
    height: 450px;
}
section.footer div p {
    width: 380px;
    max-width: 100%;
    margin-bottom: 20px;
}
section.footer table {
    width: 100%;
}
section.footer table tr {
    border-bottom: 1px solid;
}
section.footer table th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 110px;
    padding: 10px;
}
section.footer table td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
section.footer table td span {
    font-size: 14px;
}
footer#colophon {
    background: #92B600;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    margin-top: 5%;
}



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

section.index1 {
    position: relative;
}
section.index1 div.h1 {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 100px;
	z-index:1;
}
section.index1 div.h1 h1 {
    color: #fff;
    margin-bottom: 10px;
    -webkit-filter: drop-shadow(3px 3px 1px rgb(0 0 0));
            filter: drop-shadow(3px 3px 1px rgb(0 0 0));
}
section.index1 div.h1 h1 br {
	display:none;
}
section.index1 div.h1 p {
    color: #fff;
    font-size: 100px;
    line-height: 150px;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
            filter: drop-shadow(3px 3px 2px rgb(0 0 0));
}
section.index1 > p {
    overflow: hidden;
    max-height: 650px;
}
section.index1 div.key {
	position:relative;
	font-size: 0;
}
section.index1 div.key ul {
    text-align: center;
    position: absolute;
	font-size: 0;
	width: 100%;
	bottom: 70%;
}
section.index1 div.key ul li {
    display: inline-block;
    margin-right: 3%;
    width: 25%;
    background: #FCF1E4;
    border-radius: 50%;
    position: relative;
    max-width: 300px;
    -webkit-filter: drop-shadow(2px 2px 8px rgb(84 84 84));
            filter: drop-shadow(2px 2px 8px rgb(84 84 84));
}
section.index1 div.key ul li:nth-child(2) {
	background:#E8FDF4;
}
section.index1 div.key ul li:nth-child(3) {
	background:#FAE4E4;
	margin-right: 0;
}
section.index1 div.key ul li::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
section.index1 div.key ul li div {
    position: absolute;
    width: 75%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
section.index1 div.key ul li div h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
section.index1 div.key ul li div p {
    line-height: 28px;
    text-align: justify;
}
section.index1 div.key > p {
    display: inline-block;
    width: 50%;
}
section.index1 div.key > p:nth-of-type(1) {
    width: 100%;
    display: block;
    position: absolute;
    text-align: center;
    bottom: 20px;
}
section.index1 div.key > p:nth-of-type(1) strong {
    font-size: 100px;
    color: #fff;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
            filter: drop-shadow(3px 3px 2px rgb(0 0 0));
    margin-left: 9px;
    letter-spacing: 10px;
}
div.txt {
    background: #f7ffd5;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5% 0;
}
div.txt p {
    line-height: 30px;
}
.title1 {
    text-align: center;
    margin: 80px auto 50px;
}
.title1 img {
    width: 70px;
    margin: 0 auto;
}
.title1 span {
    display: block;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 3px;
}
.title1 span.ttl1in {
    font-size: 19px;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #92B600;
    line-height: normal;
}
.title1 span br {
	display:none;
}
.title2 {
    text-align: center;
    position: relative;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 10% auto 8%;
}
.title2::before {
    content: "";
    position: absolute;
    background: #92B600;
    width: 150px;
    height: 5px;
    border-radius: 50px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -20px;
}
.title3 {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10% auto;
    border: 3px solid #92B600;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 3% 12px;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
}
.title3::before {
    content: "";
    background: #92B600;
    width: 200px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    height: 3px;
    bottom: -20px;
}
.title3::after {
    content: "";
    background: #92B600;
    height: 3px;
    width: 150px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -38px;
}
.title4 {
    margin: 8% auto 5%;
    font-size: 35px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.title4::before {
    content: "";
    width: 50%;
    height: 5px;
    background: #92B600;
    position: absolute;
    left: -3%;
    top: -20%;
    max-width: 400px;
}
.title4::after {
    content: "";
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fcf1e4));
    background: -o-linear-gradient(left, #fff, #fcf1e4);
    background: linear-gradient(to right, #fff, #fcf1e4);
    position: absolute;
    height: 120%;
    width: 95%;
    left: 5%;
    z-index: -1;
    border-bottom: 5px solid #ff8802;
    max-width: 700px;
    bottom: -19%;
}
.title5 {
    color: #ff8703;
    font-weight: 500;
    font-size: 35px;
    margin: 0 auto 2%;
}
.title6 {
    font-size: 60px;
    font-weight: bold;
    color: #ffddb5;
    margin: 5% auto 1%;
}
.title6 span {
    display: inline-block;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
}
.title7 {
	color: #ff8703;
	font-weight: 500;
    font-size: 25px;
    margin: 0 auto 1%;
}
ul.top-news {
    width: 80%;
    margin: 0 auto;
}
ul.top-news li {
    display: block;
    border-bottom: 1px solid;
}
ul.top-news li a {
    display: block;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    letter-spacing: 1px;
}
ul.top-news li a:hover {
    color: #92B600;
}
ul.top-news li a span {
    display: inline-block;
    width: 100px;
}
section.index2 > p {
    width: 80%;
    margin: 0 auto 8%;
    text-align: right;
    letter-spacing: 0;
}
section.index2 > p a {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 15px;
    font-size: 14px;
    color: #92B600;
}
section.index2 > p a:hover {
    color: #707070;
}
section.yt {
    margin: 0 auto 8%;
}
section.yt iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}
ul.top-menu {
}
ul.top-menu li {
    margin-right: 2%;
    width: calc(94% / 4);
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3%;
}
ul.top-menu li:nth-child(4n), ul.top-menu li:last-child {
    margin-right: 0;
}
ul.top-menu li h2 {
    color: #fff;
	background: #92B600;
    display: block;
    padding: 30px 0;
    font-size: 23px;
}
ul.top-menu li p {
    background: #f7ffd5;
    display: block;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    padding: 30px 0;
    font-size: 23px;
    margin: 0;
    line-height: normal;
    text-align: center;
}
ul.top-menu li a {
    background: #f7ffd5;
    display: block;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    padding: 30px 0;
    font-size: 23px;
}
ul.top-menu li a:hover {
    background: #92B600;
    color: #fff;
}
section.index3 li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 3%;
}
section.index3 li:nth-child(3n),section.index3 li:last-child {
    margin-right: 0;
}
section.index3 li h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
section.index4 ul {
    margin: 5% auto 0;
}
section.index4 li {
    width: 32%;
    margin-right: 2%;
    background: url(https://ken-seikotsuin.site/wp-content/uploads/2022/05/icon4.png) #fcf0e3;
    border-radius: 15px;
    text-align: center;
    -webkit-box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 30%);
            box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 30%);
    background-repeat: no-repeat;
    background-size: contain;
}
section.index4 li:nth-child(2) {
    background: url(https://ken-seikotsuin.site/wp-content/uploads/2022/05/icon5.png) #e8fcf3;
    background-repeat: no-repeat;
    background-size: contain;
}
section.index4 li:nth-child(3) {
    margin-right: 0;
    background: url(https://ken-seikotsuin.site/wp-content/uploads/2022/05/icon6.png) #f9e4e3;
    background-repeat: no-repeat;
    background-size: contain;
}
section.index4 li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 40px 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-radius: 15px;
	height: 100%;
}
section.index4 li h2 {
    font-size: 25px;
    margin-bottom: 10px;
}
section.index4 li p {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0;
}
section.index4 li p br {display:none;}
section.index4 li a:hover {
    -webkit-box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 30%);
            box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 30%);
}

.fil_white img {
	filter:opacity(0.5);
}









/*------------------------------------*\
    アーカイブ
\*------------------------------------*/
section.page-head {
    position: relative;
    margin-bottom: 100px;
}
section.page-head div {
    position: absolute;
    background: #f7ffd5;
    bottom: -50px;
    -webkit-filter: drop-shadow(2px 2px 8px rgb(84 84 84));
            filter: drop-shadow(2px 2px 8px rgb(84 84 84));
    left: 10%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2% 5%;
    border-radius: 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
section.page-head div h1,section.page-head div p.title {
    font-size: 60px;
    letter-spacing: 10px;
    color: #707070;
    font-weight: 500;
}
section.page-head div p {
    text-align: center;
    font-size: 30px;
	color: #92B600;
	margin-bottom: 8px;
}
section.page-head > p {
    max-height: 300px;
    overflow: hidden;
}
section.archive li {
    border-bottom: 1px solid;
}
section.archive li:last-child {
    border: unset;
}
section.archive li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 20px 0;
    font-size: 0;
}
section.archive li a p.date {
    display: inline-block;
    width: 100px;
    margin-right: 3%;
    text-align: center;
}
section.archive li a p.date img {
    margin: 0px auto;
    width: 80%;
}
section.archive li a p.date span {
    font-weight: 500;
    letter-spacing: 0;
    color: #92B600;
}
section.archive li a > div {
    display: inline-block;
    width: calc(97% - 100px);
    vertical-align: top;
}
section.archive li a > div h2 {
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
section.archive li a > div p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 4.5em;
}
section.archive li a > div p:last-child {
    font-size: 14px;
    line-height: normal;
    text-align: right;
    color: #92B600;
}
section.archive li a:hover div h2,section.archive li a:hover div p {
    color: #92B600;
}
section.archive nav {
    margin: 8% auto 10%;
    text-align: center;
}
section.archive nav h2 {
    display: none;
}
section.archive nav div.nav-links span, section.archive nav div.nav-links a {
    background: #fcf0e3;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 8px;
    margin-right: 1%;
    margin-top: 10px;
    font-weight: bold;
}
section.archive nav div.nav-links span:last-child, section.archive nav div.nav-links a:last-child {
    margin-right: 0;
}
section.archive nav div.nav-links a:hover {
    background: #92B600;
    color: #fff;
}
section.articlebody h1 {
    font-size: 30px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: justify;
}
section.articlebody p.date {
    border-top: 1px solid #707070;
    text-align: right;
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    color: #92B600;
}
section.articlebody p img.float {
    width: 40%;
    float: left;
    margin: 0 3% 10px 0;
    -webkit-box-shadow: 3px 3px 8px 1px rgb(0 0 0 / 30%);
    box-shadow: 3px 3px 8px 1px rgb(0 0 0 / 30%);
    height: auto;
}
section.articlebody div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
}
nav.nav-single {
    font-size: 0;
    margin: 5% auto 10%;
}
nav.nav-single span {
    display: inline-block;
    width: 50%;
}
nav.nav-single span.nav-next {
    text-align: right;
}
nav.nav-single span a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding: 10px 0;
}
nav.nav-single span a:hover {
    color: #92B600;
}
nav.nav-single p:first-child img {
    width: 70px;
    margin: 0 auto;
}
p.tolink1 {
    text-align: center;
    margin: 3% auto 0;
}
p.tolink1 a {
    display: block;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #f7ffd5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 3px;
    border-radius: 10px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.tolink1 a:hover {
    background: #92B600;
    color: #fff;
}

.cta {
	width:90%;
	max-width:800px;
	margin:30px auto;
	display:flex;
	justify-content:center;
}

.cta p {
	margin:10px;
	border: #92B600 7px solid;
    box-shadow: rgba(0, 0, 0, .5) 3px 3px 10px;
}
.cta p a {
	transition:all .2s;
}

.cta p a:hover {
	opacity:0.8;
	transition:all .2s;
}
@media screen and (max-width:600px) {
	.cta {
		flex-direction:column;
	}
}


/*------------------------------------*\
    下層ページ
\*------------------------------------*/
section.form {
    margin: 0 auto;
    width: 90%;
}
section.form table {
    width: 100%;
}
section.form table tr {
    border-bottom: 15px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table th {
    background: #f7ffd5;
    vertical-align: top;
    width: 230px;
    text-align: center;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	font-size: 18px;
}
section.form table th p {
	text-align: center;
}
section.form table th span {
    color: #92B600;
    font-size: 14px;
    padding-left: 5px;
}
section.form table td {
    padding: 8px 0 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td.td {
    padding: 20px 0 20px 20px;
    vertical-align: middle;
}
section.form table td span {
	font-size:18px;
}
section.form table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}
section.form table td span.wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 28px;
    letter-spacing: 1px;
}
div.wpcf7 td span.wpcf7-list-item-label {
    cursor: pointer;
}
section.form table td span.acceptance-001 span.wpcf7-list-item {
	margin:0;
}
section.form table td span.wpcf7-form-control-wrap {
    display: block;
}
section.form table td input.wpcf7-text, section.form table td textarea.wpcf7-textarea {
    border: 1px solid #b6b6b6;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td input.wpcf7-text {
    width: 80%;
    max-width: 400px;
    height: 35px;
}
input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date {
    width: 80%;
    max-width: 400px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #f5f5f5;
    border: 1px solid #b6b6b6;
    height: 35px;
    margin-bottom: 5px;
}
select.wpcf7-form-control.wpcf7-select {
    background: #f5f5f5;
    border: 1px solid #b6b6b6;
    height: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
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: #f7ffd5;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 50px;
    margin-left: 72px;
    color: #707070;
}
section.form p input.wpcf7-form-control.wpcf7-submit:hover {
    background: #92B600;
    color: #fff;
}
section.form > p {
    text-align: center;
}
p.schedule {
    line-height: normal;
    margin-top: 10px;
}
table.about {
    width: 100%;
    margin-bottom: 3%;
}
table.about tr {
    border-bottom: 10px solid #fff;
}
table.about th {
    background: #92B600;
    color: #fff;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
    width: 200px;
    letter-spacing: 3px;
    font-size: 18px;
}
table.about td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
    font-size: 18px;
}
table.about td a {
	display:block;
	font-size: 18px;
}
table.about td a:hover {
	color:#92B600;
}
table.about td span {
    display: inline-block;
}
iframe.access {
    width: 100%;
    height: 450px;
}
ul.shop {
	text-align: center;
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
}
ul.shop li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 3%;
}
ul.shop li:nth-child(3n),ul.shop li:last-child {
    margin-right: 0;
}
ul.shop li h3 {
    color: #92B600;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
	font-size: 18px;
}
ul.shop li table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}
ul.shop li table th {
    width: 55px;
}
ul.shop li table td {
	text-align: justify;
}
ul.shop li table td a:hover {
    color: #92B600;
}
ul.sitemap {
    width: 90%;
    margin: 0 auto;
}
ul.sitemap li {
    display: block;
    border-bottom: 1px solid #92B600;
}
ul.sitemap li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
ul.sitemap li a:hover {
    color: #92B600;
}
ul.flow {
    margin: 10% auto 0;
}
ul.flow li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
}
ul.flow li:nth-child(3n),ul.flow li:last-child {
    margin-right: 0;
}
ul.flow li h2 {
    background: #92B600;
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
    border-top-left-radius: 20px;
    font-size: 20px;
    letter-spacing: 2px;
	font-weight: 500;
}
ul.flow li h2 span {
    font-size: 23px;
    color: #fff;
    font-weight: bold;
}
ul.flow li p span {
    font-weight: bold;
    display: block;
}
ul.menu1 {
    margin: 10% auto 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}
ul.menu1 li {
    width: 45%;
    margin-right: 10%;
    margin-bottom: 5%;
}
ul.menu1 li:nth-child(even),ul.menu1 li:last-child {
    margin-right: 0;
}
ul.menu1 li h2 {
    position: relative;
    background: #f7ffd5;
    border-top-left-radius: 20px;
    font-size: 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0 10px 70px;
    letter-spacing: 3px;
    font-weight: 500;
}
ul.menu1 li h2 img {
    width: 70px;
    position: absolute;
    left: 5px;
    top: -20px;
}
ul.menu1 li p {
    font-weight: bold;
}
ul.menu1 li p img {
	width:100%;
	height:200px;
	object-fit:cover;
}
ul.menu1 li table {
    width: 100%;
}
ul.menu1 li table tr {
    background: #f7ffd5;
}
ul.menu1 li table tr:first-child,ul.menu1 li table tr.line {
    border-top: 1px solid;
}
ul.menu1 li table tr:last-child {
    border-bottom: 1px solid;
}
ul.menu1 li table th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 15px 7px;
    width: 150px;
    font-weight: bold;
    letter-spacing: 2px;
}
ul.menu1 li table td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-bottom: 5px;
}
ul.menu1 li table.price th {
    width: 50%;
}
ul.menu1 li table td span.zei {
    font-size: 14px;
}
ul.menu1 li table td span.txt {
    display: block;
    color: #ff8901;
}
ul.menu1 li table td span.txt2 {
    display: block;
    font-size: 14px;
}
ul.menu1 li h2 span.txt3 {
    letter-spacing: 0;
    font-size: 80%;
    font-weight: bold;
}
ul.menu1 li h2 span.txt4 {
    letter-spacing: 0;
    font-size: 80%;
    font-weight: bold;
    color: #ff5fa9;
}
ul.qa {
    margin: 10% auto 8%;
}
ul.qa li {
    margin-bottom: 3%;
}
ul.qa li input {
    display: none;
}
label.qa-btn {
    display: block;
    background: #f7ffd5;
    text-align: justify;
    padding: 10px 20px 18px 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    font-size: 20px;
    text-indent: -35px;
    letter-spacing: 1px;
}
label.qa-btn span {
    font-size: 30px;
    padding-right: 3px;
}
label.qa-btn:hover {
    background: none;
    color: #92B600;
}
label.qa-btn:hover span {
    color: #92B600;
}
ul.qa li input:checked ~ label.qa-btn {
    background: none;
    color: #92B600;
	padding-bottom: 3px;
}
ul.qa li input:checked ~ label.qa-btn span {
    color: #92B600;
}
.show-a {
    width: 100%;
    margin: 0px auto;
    padding: 0 17px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #92B600;
    border-radius: 10px;
    height: 0;
    display: block;
}
.show-a > span {
    display: inline-block;
    font-size: 30px;
    vertical-align: top;
    color: #fff;
    letter-spacing: 2px;
}
.show-a > p {
    display: inline-block;
    width: calc(100% - 38px);
    text-align: justify;
    color: #fff;
    letter-spacing: 1px;
    line-height: 25px;
    font-size: 18px;
}
.show-a > p:nth-of-type(1) {
    display: none;
}
.show-a > p:nth-of-type(2) {
    margin-top: 13px;
}
.show-a > p a {
    color: #fff;
    font-size: 18px;
}
.show-a > p a:hover {
    color: #707070;
}
ul.qa li input:checked ~ .show-a {
    height: auto;
    opacity: 1;
    padding: 10px 17px 15px;
}

div.floatr,div.floatl {
    margin:3% auto;
}
div.floatr .float {
    float: right;
    width: 47%;
    margin: 0 0 20px 3%;
    position: relative;
}
div.floatl .float {
    float: left;
    width: 47%;
    margin: 0 3% 20px 0;
    position: relative;
}
div.floatr .float::before,div.floatl .float::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ff8901;
    z-index: -1;
    right: -10px;
    bottom: -10px;
}
div.floatr .float::after, div.floatl .float::after {
    content: "";
    background: #fcefe2;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: -1;
}
ul.treat {
    margin: 10% auto 20%;
}
ul.treat li {
    margin-bottom: 8%;
}
ul.treat li h2 {
    color: #ff8901;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
}









@media screen and (max-width: 1000px) {
.width {
	width:90%;
}
.width p {
	font-size:15.5px;
	line-height:27px;
	margin-bottom:8px;
}

/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/
header#top {
    padding-top: 80px;
	position:relative;
	z-index:2;
}
header#top hgroup {
    position: unset;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
}
header#top hgroup p {
    width: 100%;
	position: fixed;
	z-index: 2;
	background: #fff;
	top: 0;
}
header#top hgroup p a {
    padding: 17px 0;
	width: 242px;
}
header#top hgroup ul {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 0 0 10px 10px;
	z-index: 10;
}
header#top hgroup ul li {
    margin-right: 1%;
    background: #43afe5;
    border-radius: 50%;
    width: 75px;
    -webkit-filter: drop-shadow(1px 1px 2px rgb(78 78 78));
    filter: drop-shadow(1px 1px 2px rgb(78 78 78));
}
header#top hgroup ul li:nth-child(2) {
    background: #ff134c;
}
header#top hgroup ul li:nth-child(3) {
    background: #00B900;
}
header#top hgroup ul li a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 13.2px 0;
}
header#top hgroup ul li a span {
color: #fff;
}
header#top hgroup ul li a img {
    width: 30px;
}
hgroup table.timetable {
    display: none;
}
.menu {
    display: none;
}
.menur {
    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: #92B600;
    border-radius: 3px;
}
.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: 10px;
    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: left;
    margin: 0 auto 0;
    position: fixed;
    background: #fff;
    left: 0;
    top: 79px;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    z-index: 1;
}
.hidden_show ul.nav1-a {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 70px);
}
.hidden_box input:checked ~ .hidden_show {
    padding: 10px;
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: scroll;
	max-height: calc(100% - 79px);
	padding: 10px 10px 90px;
}
.hidden_box input:checked ~ .hidden_show ul.nav1-a {
    opacity: 1;
    height: auto;
}
.hidden_show ul.nav1-a li {
    border-bottom: 1px solid;
}
.hidden_show ul.nav1-a li:last-child {
    border: unset;
}
.hidden_show ul.nav1-a li a {
    display: block;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-size: 15px;
	font-weight: 500;
}
.hidden_show table.timetable {
    margin: 5px auto;
    width: 300px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
}
.hidden_box input:checked ~ .hidden_show table.timetable {
    opacity: 1;
}
table.timetable th {
    width: 124px;
}
table.timetable td {
    width: 29px;
}
table.timetable th span {
    padding-right: 5px;
}
table.timetable th span:nth-child(2) {
    padding-left: 5px;
}
table.timetable th span:nth-child(2)::before {
    width: 127px;
    -webkit-transform: rotate(13.5deg);
        -ms-transform: rotate(13.5deg);
            transform: rotate(13.5deg);
}
footer#colophon {
    font-size: 12px;
}


	


	

/*------------------------------------*\
    トップページ
\*------------------------------------*/
section.index1 div.h1 {
    top: 60px;
}
section.index1 div.h1 p {
    font-size: 85px;
    line-height: 120px;
}
section.index1 div.key ul {
    bottom: 60%;
}
section.index1 div.key ul li {
    width: 28%;
    margin-right: 2%;
}
section.index1 div.key ul li div h2 {
    font-size: 23px;
    margin-bottom: 5px;
}
section.index1 div.key ul li div p {
    line-height: normal;
    font-size: 15px;
}
section.index1 div.key > p:nth-of-type(1) strong {
    font-size: 85px;
}
.title1 {
    margin: 50px auto 30px;
}
.title1 img {
    width: 50px;
}
.title1 span {
    font-size: 45px;
}
.title2 {
    font-size: 45px;
}
.title2::before {
    bottom: -15px;
    width: 130px;
}
.title3 {
    font-size: 25px;
}
.title3::before {
    width: 180px;
    bottom: -15px;
}
.title3::after {
    width: 130px;
    bottom: -28px;
}
.title4,.title5 {
    font-size: 30px;
}
.title6 {
    font-size: 50px;
}
.title7 {
    font-size: 23px;
}
ul.top-news,section.index2 > p {
    width: 100%;
    max-width: 800px;
}
ul.top-menu li h2,ul.top-menu li a,ul.top-menu li p {
    font-size: 20px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index3 li h3 {
    font-size: 18px;
    margin-bottom: 3px;
}
section.index4 li a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index4 li h2 {
    font-size: 20px;
    margin-bottom: 5px;
}
section.index4 li p br {
    display: block;
}





	
/*------------------------------------*\
    アーカイブ
\*------------------------------------*/
section.page-head div {
    left: 5%;
}
section.page-head div h1, section.page-head div p.title {
    font-size: 50px;
	letter-spacing: 5px;
}
section.page-head div p {
    font-size: 25px;
    margin-bottom: 10px;
}
section.archive li a p.date {
    width: 80px;
}
section.archive li a p.date span {
    font-size: 15px;
}
section.archive li a > div {
    width: calc(97% - 80px);
}
section.archive li a > div h2 {
    font-size: 23px;
    margin-bottom: 1px;
}
section.articlebody h1 {
    font-size: 25px;
}
nav.nav-single p:first-child img {
    width: 50px;
}
p.tolink1 a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
	letter-spacing: 2px;
}


	
/*------------------------------------*\
    下層ページ
\*------------------------------------*/
section.form {
    width: 100%;
}
section.form table tr {
    border-bottom: 10px solid #fff;
}
section.form table th {
    padding: 15px 0;
    width: 180px;
    font-size: 16px;
}
section.form table td {
    padding: 5px 0px 0 15px;
}
section.form table td.td {
    padding: 15px 0 15px 15px;
}
section.form table td span {
    font-size: 16px;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
    font-size: 16px;
	-webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
table.about th {
    width: 180px;
    font-size: 16px;
}
table.about td, table.about td a {
    font-size: 16px;
}
ul.shop li {
    width: 32%;
    margin-right: 2%;
}
ul.shop li h3 {
    font-size: 16px;
}
ul.shop li table th, ul.shop li table td,ul.shop li table td a {
    font-size: 15px;
}
ul.flow li {
    width: 32%;
    margin-right: 2%;
}
ul.flow li h2 {
    font-size: 18px;
}
ul.flow li h2 span {
    font-size: 20px;
}
ul.menu1 li {
    width: 48%;
    margin-right: 4%;
}
ul.menu1 li h2 {
    font-size: 23px;
    padding: 10px 0 10px 58px;
}
ul.menu1 li h2 img {
    width: 60px;
    top: -13px;
}
ul.menu1 li table th {
    width: 110px;
}
label.qa-btn {
    font-size: 18px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
.show-a > p {
    font-size: 17px;
}

ul.treat li h2 {
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}





	
}

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

.width {
	width:96%;
}
.width p {
	font-size:15px;
	letter-spacing:0.5px;
	line-height:26px;
	margin-bottom:5px;
}

/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/
header#top hgroup ul {
    padding: 0;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
            box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
}
header#top hgroup ul li {
    margin: 0;
    -webkit-filter: unset;
            filter: unset;
    width: calc(100% / 3);
    border-radius: unset;
}
header#top hgroup ul li a {
padding: 10px 0;
}
header#top hgroup ul li a img {
display: inline-block;
vertical-align: bottom;
width: 23px;
}
header#top hgroup ul li a span {
display: inline-block;
font-size: 16px;
margin-right: 5px;
}
header#top hgroup ul li a span:nth-of-type(2) {
display: block;
font-size: 12px;
margin: 3px auto 0;
}
.hidden_box input:checked ~ .hidden_show {
max-height: calc(100% - 140px);
padding: 10px;
}
.line-cta {
display:none;
}
section.footer div {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
}
section.footer div p {
    width: 300px;
    margin: 0 auto;
    padding-right: 8px;
}
section.footer table th,section.footer table td,section.footer table td a {
    font-size: 15px;
}
section.footer iframe {
    width: 100%;
    display: block;
    height: 300px;
}
footer#colophon {
padding: 15px 0 80px;
}

/*------------------------------------*\
    トップページ
\*------------------------------------*/
section.index1 div.h1 {
    top: 30px;
}
section.index1 div.h1 h1 br {
    display: block;
}
section.index1 div.h1 p {
    font-size: 13vw;
    line-height: normal;
}
section.index1 div.key ul {
    bottom: auto;
    top: 5%;
}
section.index1 div.key ul li,section.index1 div.key ul li:last-child {
    width: 46%;
    border-radius: 15px;
    margin: 0 2% 10px;
}
section.index1 div.key ul li::before {
    display: none;
}
section.index1 div.key ul li div {
    position: unset;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
section.index1 div.key ul li div h2 {
    font-size: 20px;
    margin-bottom: 1px;
}
section.index1 div.key ul li div p {
    font-size: 14px;
}
section.index1 div.key > p {
    width: 100%;
}
section.index1 div.key > p:nth-of-type(1) strong {
    font-size: 50px;
    letter-spacing: 5px;
}
div.txt {
    padding: 5% 3%;
}
div.txt p {
    line-height: 23px;
    font-size: 14px;
    text-align: justify;
}
div.txt p br {
    display: none;
}
.title1 {
    margin: 30px auto 10px;
}
.title1 img {
    width: 35px;
}
.title1 span {
    font-size: 30px;
    line-height: 40px;
}
.title1 span.ttl1in {
    font-size: 14px;
    margin-top: 5px;
}
.title1 span br {
    display: block;
}
.title2 {
    font-size: 30px;
}
.title2::before {
    bottom: -10px;
    width: 100px;
	height: 3px;
}
.title3 {
    font-size: 20px;
	letter-spacing: 1px;
	padding: 8px 10px;
	border: 2px solid #92B600;
}
.title3::before {
    width: 150px;
    bottom: -9px;
	height: 2px;
}
.title3::after {
    width: 100px;
    bottom: -16px;
	height: 2px;
}
.title4 {
    margin: 10% auto 8%;
    padding: 5px 0px;
    font-size: 23px;
}
.title4::before {
    top: 0;
    height: 3px;
}
.title4::after {
    bottom: 0;
    height: calc(100% - 6px);
    left: 10%;
    width: 90%;
    border-bottom: 3px solid #ff8802;
}
.title5 {
    font-size: 23px;
}
.title6 {
    font-size: 40px;
}
.title6 span {
    font-size: 16px;
    padding-left: 0;
    display: block;
    margin-bottom: 10px;
}
.title7 {
    font-size: 20px;
}
ul.top-news li a {
    padding: 10px;
    font-size: 15px;
}
ul.top-news li a span {
    font-size: 14px;
    width: 85px;
    letter-spacing: 0;
}
section.index2 > p a {
    padding: 10px;
}
ul.top-menu li h2, ul.top-menu li a,ul.top-menu li p {
    font-size: 18px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    padding: 0;
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: calc(50% - 13px);
}
ul.top-menu li {
    height: 140px;
}
section.index3 li,section.index3 li:nth-child(3n) {
    width: 100%;
    margin: 0 auto 10px;
}
section.index4 li,section.index4 li:nth-child(3) {
    width: 100%;
    margin: 0 auto 10px;
    display: block;
    max-width: 350px;
}
section.index4 li a {
    padding: 10px 0;
}
section.index4 li p br {
    display: none;
}



	
/*------------------------------------*\
    アーカイブ
\*------------------------------------*/
section.page-head {
    margin-bottom: 80px;
}
section.page-head div {
    left: 0;
    right: 0;
    margin: auto;
    padding: 15px 20px;
}
section.page-head div h1, section.page-head div p.title {
    font-size: 35px;
    letter-spacing: 3px;
}
section.page-head div p {
    font-size: 20px;
    margin-bottom: 3px;
}
section.page-head > p {
    max-height: 200px;
}
section.archive li a {
    padding: 10px 10px 0;
}
section.archive li a p.date {
    width: 60px;
}
section.archive li a p.date span {
    font-size: 14px;
}
section.archive li a > div {
    width: calc(97% - 60px);
}
section.archive li a > div h2 {
    font-size: 18px;
}
section.archive li a > div p {
    font-size: 14px;
}
section.archive li a > div p:last-child {
    font-size: 12px;
}
section.articlebody h1 {
    font-size: 18px;
}
section.articlebody p.date {
    font-size: 14px;
    margin-bottom: 10px;
}
section.articlebody p img.float {
    float: unset;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px;
}
nav.nav-single span a,p.tolink1 a {
    font-size: 15px;
}
nav.nav-single p:first-child img {
    width: 35px;
}
	
/*------------------------------------*\
    下層ページ
\*------------------------------------*/
section.form table tr {
    border-bottom: none;
    display: block;
}
section.form table th {
    display: block;
    width: 100%;
    padding: 10px 0;
}
section.form table td {
    padding: 5px 0 10px;
    width: 100%;
    display: block;
}
section.form table td.td {
    padding: 10px;
}
section.form table td span.wpcf7-list-item span {
    font-size: 15px;
    letter-spacing: 0.5px;
}
section.form table td input.wpcf7-text,input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date {
    width: 100%;
}
section.form table td div.schedule p span.rei {
    padding: 0;
    margin-top: 0;
}
section.form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 15px;
    padding: 10px 25px;
}
table.about tr {
    border: unset;
    display: block;
    width: 100%;
}
table.about th {
    display: block;
    width: 100%;
}
table.about td {
    display: block;
    width: 100%;
    padding: 10px;
}
table.about td span {
    font-size: 14px;
}
iframe.access {
    height: 300px;
}
ul.shop li,ul.shop li:nth-child(3n) {
    width: 49%;
    margin-right: 2%;
}
ul.shop li:nth-child(even),ul.shop li:last-child {
    margin-right: 0;
}
ul.shop li h3 {
    font-size: 15px;
    margin-bottom: 5px;
}
ul.shop li table th {
	font-size: 14px;
	width: 45px;
}
ul.shop li table td, ul.shop li table td a {
    font-size: 14px;
}
ul.sitemap {
    width: 100%;
}
ul.sitemap li a {
    font-size: 15px;
}
ul.flow li,ul.flow li:nth-child(3n) {
    width: 98%;
    margin: 0 1% 5%;
	max-width: 400px;
}
ul.flow li h2 {
    letter-spacing: 1px;
}
ul.flow li p {
    line-height: 24px;
}
ul.menu1 li,ul.menu1 li:nth-child(even) {
    width: 100%;
    margin: 0 auto 5%;
}
ul.menu1 li h2 {
    font-size: 20px;
    letter-spacing: 2px;
}
ul.menu1 li h2 img {
    width: 50px;
    left: 8px;
    top: -8px;
}
label.qa-btn {
    font-size: 16px;
    padding: 0px 15px 10px 40px;
    text-indent: -33px;
}
label.qa-btn span {
    font-size: 25px;
}
.show-a {
    padding: 0 15px 0 10px;
}
ul.qa li input:checked ~ .show-a {
    padding: 0px 15px 8px 10px;
}
.show-a > span {
    font-size: 25px;
}
.show-a > p:nth-of-type(2) {
    margin-top: 8px;
}

div.floatr .float,div.floatl .float {
    float: unset;
    width: 93%;
    margin: 0 auto 20px;
}
ul.treat li h2 {
    text-align: center;
    font-size: 23px;
    margin-bottom: 5px;
}
}

/*-------
 * 2025.02.25 DC追記
 * --------*/
ul.trivia li {
	margin: 30px 0;
}
ul.trivia li h2 {
	color: #92B600;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
div.floatr .float::after, div.floatl .float::after {
    content: "";
    background: #f7ffd5;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: -1;
}
div.floatr .float::before, div.floatl .float::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #92B600;
    z-index: -1;
    right: -10px;
    bottom: -10px;
}
.trivia_txt div.floatr .float {
    width: 30%;
}

.com_h2 {
	color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 2% 0 2.5%;
	background: #92B600;
	padding:5px 15px;
}

.com_h3 {
	color: #92B600;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 1% 0 1.5%;
	padding:5px 15px;
}

.trivia_txt div.floatr,.trivia_txt div.floatl {
	margin:0;
}

@media screen and (max-width:700px) {
	.trivia_txt div.floatr .float {
    width: 93%;
}
}

/*-----
 * 2025.03.21 追記
 * -----*/
.ai_bnr {
	width: 90%;
	max-width:500px;
	margin:3% auto;
	border:#92B600 7px solid;
	box-shadow:rgba(0, 0, 0, .5) 3px 3px 10px;
	transition: all .3s;
}
.ai_bnr:hover {
	opacity:0.8;
	transition: all .3s;
}
/*-------------------
25.11.11 DC追記
----------------------*/
.dc_column {
    margin: 3% auto;
    width: 90%;
    max-width: 1200px;
}
.dc_ttl1 {
    color: #92B600;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2%;
    font-size: 24px;
}
.dc_list1 {
    max-height: 200px;
    overflow-y: scroll;
    margin: 3% 0;
}
.dc_list1 li {
    border-bottom: #92B600 dashed 1px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.dc_list1 a {
    text-decoration: none;
    color: #000;
    transition: all .3s;
}
.dc_list1 a:hover {
    opacity: .8;
}
.dc_ttl2 {
    padding: 0;
    margin: 5px 0;
    border: none;
    white-space: nowrap; /* 折り返し無しにする */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 語尾を3点リーダーに */
    color: #92B600;
    font-size: 20px !important;
}
.dc_read_txt {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
    line-height: normal;
    margin: 0 !important;
}
.dc_column_link {
    text-align: right !important;
}
.dc_column_link a {
    text-decoration: none;
    color: #000;
    transition: all .3s;
}
.dc_column_link a:hover {
    color: #92B600;
    opacity: .8;
}