/*
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.3
Tested up to: 6.6
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@400;600&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: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

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:#525252;
}
a:hover {
	color: #8ec21f;
}
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:#525252;
	font-family: "Noto Serif JP", serif;
	font-size:16px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
	height: auto;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
section[class^="index_"]{
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
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;}
.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;}

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

.center {
	text-align:center!important;
}
.right {
	text-align:right!important;
}
.left {
	text-align:left!important;
}
span.ib {
	display:inline-block!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%, #FFFAC6));
    background: -o-linear-gradient(transparent 60%, #FFFAC6 0%);
    background: linear-gradient(transparent 60%, #FFFAC6 0%);
}
.green {
	color:#8ec21f!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);
}

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

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

header.top {
    background: #ddedb7;
}
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu > div {
    width: 80px;
}
.menu li {
    display: inline-block;
}
.menu li a {
    display: block;
    padding: 28px 20px;
}
.menu li a:hover {
    color: #8ec21f;
}
.menur, ul.cta1 {
    display: none;
}

ul.cta2 {
    text-align: center;
}
ul.cta2 li {
    width: 48%;
}
ul.cta2 li a {
    display: block;
    background: #8ec21f;
    color: #fff;
    padding: 15px 0;
    border-radius: 10px;
    font-size: 20px;
}
ul.cta2 li a:hover {
    background: #ddedb8;
    color: #525252;
}

p.f-logo {
    text-align: center;
    margin-bottom: 3%;
}
p.f-logo img {
    display: inline-block;
    height: 130px;
    width: auto;
}
ul.sitemap {
    margin: 3% auto;
    text-align: center;
}
ul.sitemap li {
    display: inline-block;
}
ul.sitemap li a {
    display: block;
    padding: 10px;
}
ul.sitemap1 {}
ul.sitemap1 li {
    width: 48%;
    border-top: 1px solid #8ec21f;
}
ul.sitemap1 li:last-child, ul.sitemap1 li:nth-last-child(2) {
    border-bottom: 1px solid #8ec21f;
}
ul.sitemap1 li a {
    display: block;
    padding: 10px;
}
ul.sitemap1 li a::before {
    content: "+";
    color: #8ec21f;
    padding-right: 10px;
}

.access iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: block;
}
footer#colophon {
    background: #8ec21f;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}



.ttl1 {
    margin: 5% auto 3%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    padding: 30px 30px 15px;
    font-size: 40px;
    font-weight: bold;
    border: 2px solid #8ec21f;
    position: relative;
    min-width: 800px;
    text-align: center;
}
.ttl1 br {display:none;}
.ttl1 span {
    display: block;
    font-size: 18px;
    position: absolute;
    background: #8ec21f;
    color: #fff;
    padding: 8px 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: -20px;
    border-radius: 50px;
}
.ttl2 {
    margin: 8% auto 3%;
    font-size: 33px;
    font-weight: bold;
}
.ttl2 span {
    padding: 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: #8ec21f;
}
.ttl3 {
    font-size: 23px;
    position: relative;
    margin-bottom: 13px;
    z-index: 1;
    font-weight: bold;
}
.ttl3 span {
    position: absolute;
    font-size: 130px;
    top: -70px;
    color: #fff;
    z-index: -1;
    left: 0;
}
.ttl4 {
    text-align: center;
    font-size: 40px;
    margin: 8% auto 3%;
}
.ttl4 span {
    color: #8ec21f;
    display: block;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}
.ttl5 {
    font-size: 33px;
    margin: 8% auto 3%;
    font-weight: bold;
}
.ttl5 span {
    font-size: 16px;
    display: block;
    margin-top: 10px;
}
.ttl6 {
    text-align: center;
    color: #ddedb7;
    position: relative;
    font-size: 170px;
    line-height: 200px;
}
.ttl6 span {
    position: absolute;
    font-size: 18px;
    bottom: -20px;
    height: fit-content;
    text-align: center;
    left: 0;
    right: 0;
    font-weight: bold;
}



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

section.main {
    position: relative;
    background: url(https://mominoki.life/wp-content/uploads/2024/10/mv.webp)no-repeat center / cover;
    padding: 3% 0;
    margin-bottom: 3%;
}
section.main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
    background: -o-linear-gradient(bottom, #fff, transparent);
    background: linear-gradient(0deg, #fff, transparent);
}
section.main div.width {
    position: relative;
    z-index: 1;
}
p.logo {
    width: 40%;
    max-width: 250px;
}


ul.key-3point {
    
}
ul.key-3point li {
    width: 32%;
    position: relative;
}
ul.key-3point li p:nth-child(1) {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8ec21f;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}
ul.key-3point li p:nth-child(1)::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.key-3point li p:nth-child(1) img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
}
ul.key-3point li p:nth-child(2) {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    background: #ffffffd1;
    font-size: 23px;
    margin: 0;
    padding: 3% 0;
    font-weight: bold;
}
.key-phrase {
    margin: 10% auto 0;
    padding-bottom: 20%;
    position: relative;
}
.key-phrase::before {
    content:"";
    width: 100vw;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    background: url(https://mominoki.life/wp-content/uploads/2024/10/back.webp)no-repeat center bottom / 100%;
    z-index: -1;
}
.key-phrase p {
    text-align: center;
    font-size: 37px;
    font-weight: bold;
    letter-spacing: 3px;
}
.key-phrase p span {
	font-weight: bold;
}
ul.txt-img2 {}
ul.txt-img2 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 3%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.txt-img2 li div {
    width: 48%;
    background: #ddedb7;
    padding: 3%;
}
ul.txt-img2 li:nth-child(even) div {
    -webkit-box-ordinal-group:2;
        -ms-flex-order:1;
            order:1;
}
ul.txt-img2 li div p {
    position: relative;
    z-index: 1;
}
ul.txt-img2 li div p:last-child {
    margin-bottom: 0;
}
ul.txt-img2 li > p {
    width: 48%;
    margin: 0;
    position: relative;
}
ul.txt-img2 li > p img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
}
.message {
    margin: 8% auto;
    border: 3px solid #7bba00;
    padding: 3%;
}

section.back-list {
    background: url(https://mominoki.life/wp-content/uploads/2024/10/back.jpg)no-repeat center / cover;
    padding: 3% 0;
}
section.back-list ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
section.back-list ul li {
    width: 48%;
    margin-bottom: 3%;
    background: #fff;
    padding: 20px;
    font-size: 18px;
}
ul.step {
}
ul.step li {
    width: 32%;
}
section.backimg-box {
    margin: 8% auto;
    background: url(https://mominoki.life/wp-content/uploads/2024/10/img3.webp)no-repeat center / cover;
    padding: 5% 0;
}
section.backimg-box div.width {
    background: #ffffffed;
    padding: 3%;
}


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





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

section.header {
    background: url(https://mominoki.life/wp-content/uploads/2024/10/back2.jpg) no-repeat center top / cover;
    padding: 10% 0 8%;
    overflow: hidden;
}
.ttl-page {
    font-size: 45px;
    letter-spacing: 3px;
    font-weight: bold;
}
.ttl-page span {
    display: block;
    font-size: 20px;
    color: #8ec21f;
    font-weight: bold;
}
section.bread {
    margin-bottom: 8%;
}
section.bread li {
    display: inline-block;
    font-size: 14px;
}
section.bread li::after {
    content:"/";
    padding: 0 10px;
}
section.bread li:last-child::after {
    display:none;
}
section.bread li a {
    display: inline-block;
    padding: 12px 0;
}

section.contact-f {
    margin: 0 auto;
}
section.contact-f th p, section.contact-f td p:last-child {
    margin:0;
}
section.contact-f table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
section.contact-f table th {
    background: #ddedb7;
    text-align: center;
    width: 200px;
    padding: 20px 0;
    vertical-align: top;
}
section.contact-f table th span {
    font-size: 80%;
    color: #cc1c1c;
}
section.contact-f table td {
    padding: 20px;
    vertical-align: middle;
    background: #f1f5e9;
}
section.contact-f table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    text-align: left;
}
section.contact-f table td span.wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 28px;
    letter-spacing: 1px;
}
section.contact-f table td span.wpcf7-acceptance span.wpcf7-list-item, section.contact-f table td span.acceptance-001 span.wpcf7-list-item {
    margin: 0;
}
div.wpcf7 td span.wpcf7-list-item-label {
    cursor: pointer;
}
section.contact-f table td span.wpcf7-form-control-wrap {display: block;}
section.contact-f table td input.wpcf7-text, section.contact-f table td textarea.wpcf7-textarea {
    border: 1px solid #b6b6b6;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.contact-f table td input.wpcf7-text {
    width: 80%;
    max-width: 400px;
    height: 35px;
}
section.contact-f table td textarea.wpcf7-textarea {
    width: 100%;
}
section.contact-f p span.wpcf7-spinner {
    vertical-align: sub;
}
section.contact-f p input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background: #ddedb8;
    font-size: 18px;
    font-weight: 500;
    margin-top: 50px;
    margin-left: 72px;
    color: #525252;
    font-family: "Noto Serif JP", serif;
    border-radius: 5px;
    min-width: 200px;
}
section.contact-f p input.wpcf7-form-control.wpcf7-submit:hover {
    background: #8ec21f;
    color: #fff;
}
section.contact-f form > p {
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}
span.kibou {
    color: #8ec21f;
    display: block;
    font-size: 16px;
    border-top: 1px solid #8ec21f;
    padding-top: 5px;
    margin-top: 10px;
}
span.kibou:first-child {
    border: unset;
    margin: 0;
    padding-top: 0;
}




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

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

.menu nav {
    display: none;
}
div.menur {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}
.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: 10000;
    background-color: #8ec21f;
}
.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 80px 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 p.ttl-logo {
	opacity:0;
	width: 40%;
	margin:0 auto 5%;
	max-width: 200px;
}
.hidden_show ul.nav1 {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}
.hidden_box input:checked ~ .hidden_show {
    padding: 20px 80px 30px 10px;
    height: auto;
    opacity: 1;
    margin: 0 auto;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing:border-box;
    box-sizing:
    border-box;
    overflow: scroll;
    background: #ddedb8;
}
.hidden_box input:checked ~ .hidden_show p.ttl-logo {
	opacity:1;
}
.hidden_box input:checked ~ .hidden_show ul.nav1 {
	opacity: 1;
	height: auto;
}
.hidden_show ul.nav1 > li{
    border-bottom: 1px solid #fff;
}
.hidden_show ul.nav1 > li:last-child{
    border-bottom: unset;
}
.hidden_show ul.nav1 > li > a {
    padding: 10px 0;
    display: block;
    font-size: 110%;
    font-weight: 600;
}

ul.cta1 {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 0;
    z-index: 100;
    font-size: 0;
}
ul.cta1 li {
    display: inline-block;
    margin-left: 10px;
    width: 80px;
    border-radius: 20px;
    overflow: hidden;
}
ul.cta1 li a {
    background: #fc8519;
    display: block;
    padding: 12px 0 7px;
}
ul.cta1 li:nth-child(2) a {
    background: #8ec21f;
}
ul.cta1 li:nth-child(3) a {
    background: #036835;
}
ul.cta1 li a img {
    width: 50%;
    margin: 0 auto 3px;
}
ul.cta1 li a span {
    display: block;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

ul.cta2 li a {
    font-size: 18px;
    padding: 13px 0;
}

.ttl1 {
    min-width: unset;
    font-size: 30px;
    padding: 30px 15px 15px;
}
.ttl2 ,.ttl5 {
    font-size: 30px;
}
.ttl2 span {
    font-size: 18px;
}
.ttl3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.ttl3 span {
    font-size: 100px;
    top: -50px;
}
.ttl4 {
    font-size: 38px;
}
.ttl4 span, .ttl5 span {
    margin-top: 8px;
}
.ttl6 {
    font-size: 150px;
    line-height: 150px;
}


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

.key-phrase p {
    font-size: 30px;
    letter-spacing: 1px;
}

section.back-list ul li {
    padding: 15px;
    font-size: 17px;
}



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





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

.ttl-page {
    font-size: 40px;
}
.ttl-page span {
    font-size: 18px;
}

section.contact-f table th {
    padding: 15px 0;
    width: 180px;
}
section.contact-f table td {
    padding: 15px;
}
section.contact-f table td span {
    font-size: 15px;
}
section.contact-f p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
    font-size: 17px;
}




}





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

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



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

p.f-logo img {
    height: 100px;
}
footer#colophon {
    padding-bottom: 63px;
}

ul.cta1 {
    bottom: 0;
    width: 100%;
}
ul.cta1 li {
    margin: 0;
    border-radius: unset;
    width: calc(100% / 3);
    text-align: center;
}
ul.cta1 li a {
    padding: 13px 0px;
}
ul.cta1 li a img {
    width: 23px;
    display: inline-block;
    margin: 0 5px 0 0;
    vertical-align: middle;
}
ul.cta1 li a span {
    display: inline-block;
    vertical-align: middle;
}
ul.cta2 li a {
    font-size: 16px;
}

.ttl1 {
    font-size: 24px;
    padding: 18px 2% 10px;
    margin: 30px auto 3%;
    min-width: 300px;
}
.ttl1 br {
    display: block;
}
.ttl1 span {
    font-size: 14px;
    padding: 5px 10px;
}
.ttl2, .ttl5 {
    font-size: 25px;
}
.ttl2 span {
    font-size: 16px;
}
.ttl3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.ttl3 span {
    font-size: 80px;
    top: -40px;
}
.ttl4 {
    font-size: 30px;
}
.ttl4 span, .ttl5 span {
    margin-top: 3px;
    font-size: 15px;
}
.ttl6 {
    font-size: 100px;
    line-height: 120px;
}



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

ul.key-3point {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
ul.key-3point li {
    width: 48%;
}
ul.key-3point li:first-child {
    margin-right: 4%;
}

ul.key-3point li p:nth-child(1) {
    max-width: 200px;
}
ul.key-3point li p:nth-child(2) {
    font-size: 18px;
}
.key-phrase p {
    font-size: 23px;
}
.key-phrase p br {
    display: none;
}

ul.txt-img2 li div {
    width: 100%;
    order: unset!important;
    margin-bottom: 3%;
}
ul.txt-img2 li > p {
    height: 180px;
    width: 100%;
}
section.back-list ul li {
    width: 100%;
    font-size: 16px;
    padding: 10px;
}
ul.step li {
    width: 100%;
}






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





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

.ttl-page {
    font-size: 30px;
    letter-spacing: 2px;
}
.ttl-page span {
    font-size: 16px;
}
section.bread li {
    font-size: 12px;
}
section.bread li a {
    padding: 13px 0;
}

section.contact-f table {
    border-collapse: collapse;
    border-spacing: 0;
}
section.contact-f table th {
    display: block;
    width: 100%;
    padding: 10px 0;
}
section.contact-f table td {
    padding: 10px;
    width: 100%;
    display: block;
}
section.contact-f td.rdate p {
    text-align: center;
}
section.contact-f table td span.wpcf7-list-item span {
    letter-spacing: 0.5px;
}
section.contact-f table td input.wpcf7-text {
    width: 100%;
}
section.contact-f p input.wpcf7-form-control.wpcf7-submit {
    min-width:150px;
}




}


/*------
 * メニュー
 * ------*/
.com_page-h2 {
	font-size: 1.8rem;
    margin: 3% 0;
    border-bottom: 2px solid #7bba00;
    padding-bottom: 10px;
	font-weight:bold;
	font-family:"Noto Serif JP", serif;
}

.page-menu_contents .float-r {
    float: right;
    width: 40%;
	height:30%;
    object-fit: cover;
	margin: 10px;
}

.page-menu_contents p {
	font-family:"Noto Serif JP", serif;
	line-height:1.8;
}

@media screen and (max-width:600px) {
	.page-menu_contents .float-r {
		float: none;
		width: 100%;
	}
}

/*------
 * 料金
 * ------*/
.page-price_table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    table-layout: fixed;
	font-family:"Noto Serif JP", serif;
  }
  
  .page-price_table tr {
    background-color: #ddedb8;
    padding: .35em;
    border-bottom: 2px solid #fff;
  }
  .page-price_table th,
  .page-price_table td {
    padding: 1em 10px 1em 1em;
    border-right: 2px solid #fff;
  }
  .page-price_table th {
    font-size: .85em;
	  color:#fff;
  }
  .page-price_table thead tr{
    background-color: #7bba00;
    color:#fff;
  }
  .page-price_table tbody th {
      background: #8ec21f;
      color: #fff;
  }
  .txt{
     text-align: left;
     font-size: .85em;
  }
  .price{
    text-align: right;
    color: #8ec21f;
    font-weight: bold;
  }
  .non{
    background:#fff
  }
  @media screen and (max-width: 600px) {
    .page-price_table {
      border: 0;
      width:100%
    }
    .page-price_table th{
      background-color: #8ec21f;
      display: block;
      border-right: none;
    }
    .page-price_table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    .page-price_table tr {
      display: block;
      margin-bottom: .625em;
    }
    .page-price_table td {
      border-bottom: 1px solid #bbb;
      display: block;
      font-size: .8em;
      text-align: right;
      position: relative;
      padding: .625em .625em .625em 4em;
      border-right: none;
    }
    
    .page-price_table td::before {
      content: attr(data-label);
      font-weight: bold;
      position: absolute;
      left: 10px;
      color: #8ec21f;
    }
    .page-price_table td:last-child {
      border-bottom: 0;
    }
    .page-price_table tbody th {
      color: #fff;
  }
  }

  /*-----
  Q&A
  ------*/
  .qa-6 {
    margin-bottom: 5px;
    border-bottom: 2px solid #8ec21f;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
	font-family:"Noto Serif JP", serif;
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #8ec21f;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
	font-family:"Noto Serif JP", serif;
	line-height:1.8;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #8ec21f;
    line-height: 1.2;
    content: "A";
}

/*------
 * 当院概要
 * -----*/
 .page-about-table {
	padding: 40px 0;
	 font-family:"Noto Serif JP", serif;
}
.page-about-table th,
.page-about-table td {
	border: 3px solid #fff;
  padding: 20px 40px;
}
.page-about-table th {
	color: #fff;
  vertical-align: top;
  background: #8ec21f;
	font-weight:bold;
	text-align:center;
	letter-spacing:0.2rem;
}
.page-about-table td {
	color: #333;
	padding-right: 40px;
  background: #ddedb8;
}
.page-about-table td>a {
	color: #333;
	text-decoration: none;
}

@media screen and (max-width: 600px) {
  .page-about-table {
    display: flex;
    text-align: center;
  }
  .page-about-table tbody {
    width: 100%;
  }
  .page-about-table tr {
    display: flex;
    flex-direction: column;
  }
}

/*-------
 * 2024.12.25 DC追記
 * お役立ちコラムページ
* --------*/
.page_column_list {
	box-shadow: rgba(0, 0, 0, .5) 0 0 6px;
    padding: 10px;
	transition:all .5s;
	margin-bottom: 40px;
}
.page_column_list:hover {
	box-shadow: rgba(0, 0, 0, .5) 0 0 3px;
	transition:all .5s;
	opacity:.8;
}
.page_column_list_h2 {
	margin-top: 0;
}
.float p.floatr.page_column_list_img {
	width:25%;
}
.page_column_list div.float {
	margin-bottom:0;
}
.com_page-h3 {
	color: #7bba00;
    font-size: 1.2rem;
    margin: 2% 0;
    font-weight: bold;
}

.com_btn>a {
	padding: 10px 20px;
    display: block;
    margin: 50px auto;
    width: 200px;
    text-align: center;
	color:#fff;
	background:#7bba00;
    border: 1px solid #7bba00;
	transition:all .3s;
}
.com_btn>a:hover {
    border: 1px solid #7bba00;
	background:#fff;
	transition:all .3s;
	color:#7bba00;
}
.float p.floatr.page_column_img {
	width:35%;
}
.column_list_txt {
	display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 3; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (max-width:700px) {
	.com_page-h2 {
    font-size: 1.3rem;
}
	.com_page-h3 {
    font-size: 1.1rem;
}
	.float p.floatr.page_column_img,
	.float p.floatr.page_column_list_img {
	width:100%;
}
}

/*----------------
 * 25.06.16 DC追記
 * ---------------*/
.top_column {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.top_column li {
	width:48%;
	margin-bottom:3%;
}
.top_column li .page_column_list_h2 {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size:24px;
}
@media screen and (max-width:700px) {
	.top_column li {
		width:100%;
	}
	.top_column li .page_column_list_h2 {
		font-size:20px;
	}
}

/*-------------
 * 25.07.03 DC追記
 * -----------*/
.cta {
	margin:5% 0;
}
.cta_area {
	display:flex;
	justify-content:space-between;
	width:fit-content;
}
.cta_area li {
	width:48%;
	border:5px solid #8ec21f;
}
.cta_area li a {
	width:100%;
	display:block;
	transition:all .3s;
}
.cta_area li a:hover {
	opacity:0.8;
}

@media screen and (max-width:700px) {
	.cta_area {
		flex-direction:column;
	}
	.cta_area li {
		width:100%;
		margin-bottom:3%;
	}
}

/*--------------------
25.10.15 DC追記
---------------------*/
.top_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin:2% 0 1.5%;
}
.top_menu li {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
}
.top_menu li a {
    display: block;
    width: 100%;
    height: 70px;
    padding: 10px;
    background: #8ec21f;
    border: #8ec21f 1px solid;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    transition: all .3s;
    position: relative;
}
.top_menu li a h3 {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.top_menu li a span {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.top_menu li:last-of-type a {
    background: #bbb;
    border: #bbb 1px solid;
}

.top_menu li a:hover {
    background: #fff;
}
.top_menu li:last-of-type a:hover {
    background: #bbb;
    opacity: 0.8;
}
.top_menu li a:hover h3 {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity:0;
}
.top_menu li a p.menu_read {
    position: absolute;
    opacity: 0;
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
    margin: 0;
    text-align: left;
}
.top_menu li a:hover p.menu_read {
    position: relative;
    opacity: 1;
}
@media screen and (max-width:700px) {
    .top_menu {
        justify-content: space-around;
    }
    .top_menu li {
        width: 47%;
    }
}
/*-------------------
25.11.06 DC追記
----------------------*/
.dc_column {
    margin: 3% auto;
}
.dc_ttl1 {
    color: #7bba00;
    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: #7bba00 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: #7bba00;
    font-size: 18px;
}
.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: #7bba00;
    opacity: .8;
}