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

html{
	overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

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

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

ol, ul{
	list-style:none;
}


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

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

caption, th{
	text-align: left;
}

a:focus {
	outline:none;
}

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

* html .clear {
	height: 1px;
}
* {
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}
.both{
	clear:both;
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}

a{
	text-decoration:none;
	color:#707070;
}
p a:hover {
	color:#99cc00;
}
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: 'Kiwi Maru', serif;
	font-size:16px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
	height: auto;
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
.width p{
	margin-bottom:10px;
	letter-spacing:1px;	
}
.width a, .width span, .width b, .width 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;}
.mb3 {margin-bottom:3%!important;}
.mb5 {margin-bottom:5%!important;}
.mb0 {margin-bottom:0%!important;}

div.floatr,div.floatl {
    margin: 3% auto;
}
.floatr p.float {
    float: right;
    margin: 0 0 10px 3%;
    width: 47%;
}
.floatl p.float {
    float: left;
    margin: 0 3% 10px 0;
    width: 47%;
}
.width p span.g {
	color:#99cc00;
}
.width p span.gb {
	color:#99cc00;
	font-weight:500;
}
.width p span.rgb{
	background:-webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ddffdd));
	background:-o-linear-gradient(transparent 60%, #ddffdd 0%);
	background:linear-gradient(transparent 60%, #ddffdd 0%);
	padding:0 3px;
}
.width p span.gu {
	color:#99cc00;
	border-bottom:1px solid #99cc00;
	font-weight:500;
}
.width p span.b {
	font-weight:500;
}
.width p span.bu {
	border-bottom:1px solid #707070;
	font-weight:500;
}
.width p strong {
	font-weight:500;
	font-size:115%;
}
span.bbig {
	font-size:110%!important;
}
.width p span.small {
	font-size:90%;
}

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

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes key1 {
	0% {
		right:0;
	}
	50% {
		right:10%;
	}
	100% {
		right:0%;
	}
}
@keyframes key1 {
	0% {
		right:0;
	}
	50% {
		right:10%;
	}
	100% {
		right:0%;
	}
}
@-webkit-keyframes key3 {
	0% {
		left:-20%;
		bottom:5%;
	}
	50% {
		left:-10%;
		bottom:10%;
	}
	100% {
		left:-20%;
		bottom:5%;
	}
}
@keyframes key3 {
	0% {
		left:-20%;
		bottom:5%;
	}
	50% {
		left:-10%;
		bottom:10%;
	}
	100% {
		left:-20%;
		bottom:5%;
	}
}
@-webkit-keyframes key3b {
	0% {
		top:-3%;
	}
	50% {
		top:-10%;
		width:15%;
		opacity:0.5;
	}
	100% {
		top:-3%;
	}
}
@keyframes key3b {
	0% {
		top:-3%;
	}
	50% {
		top:-10%;
		width:15%;
		opacity:0.5;
	}
	100% {
		top:-3%;
	}
}

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


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

header.top {
    text-align: center;
}
hgroup a {
    display: block;
    font-size: 25px;
    margin: 10px auto 25px;
    font-weight: 500;
}
hgroup a span:nth-child(1) {
    display: block;
    font-size: 55%;
    margin-bottom: -5px;
}
hgroup a span:nth-child(2) {
    font-size: 110%;
    color: #99cc00;
    display: inline-block;
}
hgroup a:hover {
    color: #99cc00;
}
hgroup a:hover span:nth-child(2) {
    -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
            transform: rotate(-10deg);
    font-weight: 500;
}
hgroup .logo {
	width:250px;
	object-fit:cover;
	margin:10px auto;
}
.menu1 {
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}
.menu1 li {
    display: inline-block;
}
.menu1 li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 14px 20px;
    position: relative;
}
.menu1 li a::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    background: #F2F2F2;
    z-index: -1;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.menu1 li a:hover::before,.menu1 li a.current::before {
    background: #ddffdd;
}
.menur {
    display: none;
}
ul.sns {
    position: fixed;
    right: 5px;
    bottom: 10px;
    z-index: 100;
    text-align: center;
}
ul.sns li {
    display: inline-block;
    width: 80px;
    margin-right: 5px;
}
ul.sns li a {
    display: block;
    background: #06C755;
    padding: 7px 0 5px;
    border-radius: 5px;
}
ul.sns li:nth-child(2) a {
    background: #EF1582;
}
ul.sns li a img {
    margin: 0 auto;
    width: 50%;
}
ul.sns li a span {
    color: #fff;
    font-size: 60%;
    display: block;
}



section.footer {
    margin: 10% auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.left {
    width: 500px;
}
.left p:first-child a {
    display: block;
    font-size: 23px;
    margin-bottom: 5%;
}
.left p:first-child a span {
    display: block;
    font-size: 60%;
}
table.top-about {
    margin: 3% auto;
    width: 100%;
}
table.top-about tr {
    border-bottom: 8px solid #fff;
}
table.top-about th {
    width: 110px;
}
table.top-about td span {
    display: block;
    font-size: 90%;
}
table.top-about td a:hover {
    color:#99cc00;
}
table.table {
    margin: 3% auto;
}
table.table tr {
    border: 1px solid #99cc00;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
table.table tr:first-child {
    background: #99cc00;
}
table.table th {
    text-align: center;
    width: 25%;
    position: relative;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 18px;
}
table.table tr:first-child th::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 1px;
    left: 0%;
    top: 50%;
    -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
            transform: rotate(18deg);
}
table.table tr:first-child th span, table.table tr:first-child td {
    color: #fff;
}
table.table tr:first-child th span:nth-child(1) {
    font-size: 70%;
    position: absolute;
    right: 5px;
    top: 5px;
}
table.table tr:first-child th span:nth-child(2) {
    font-size: 70%;
    position: absolute;
    left: 5px;
    bottom: 5px;
}
table.table td {
    padding: 10px 0;
    width: calc(75% / 7);
    text-align: center;
    border-left: 1px solid #99cc00;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
table.table tr:first-child td {
    border-left: 1px solid #fff;
}
.right {
    width: calc(97% - 500px);
    margin-left: 3%;
}
.right iframe {
    width: 100%;
    height: 100%;
}
section.footer ul {
    width: 100%;
    margin: 5% auto 10%;
    text-align: center;
}
section.footer ul li {
    display: inline-block;
}
section.footer ul li a {
    display: block;
    padding: 10px 20px;
}
section.footer ul li a:hover {
    color:#99cc00;
}
footer#colophon {
    background: #99cc00;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}
.grecaptcha-badge {
    visibility: hidden;
}



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

section.main {
    position: relative;
    font-size: 0;
    margin-bottom: 10%;
}
section.main p.key1 {
    position: absolute;
    font-size: 8vw;
    right: 0;
    top: 3%;
    color: #c5c3c3;
    z-index: 3;
    -webkit-animation: key1 70s 0s ease infinite;
    animation: key1 70s 0s ease infinite;
}
section.main p.key2 {
    width: 45%;
    margin-top: 50px;
    position: relative;
    vertical-align: top;
}
section.main p.key2::before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: #99cc008c;
    z-index: -1;
    top: -40px;
    left: 0;
}
section.main p.key3 {
    display: block;
    width: 55%;
    margin: -23% 0 0 auto;
    position: relative;
}
section.main p.key3::before {
    content: "";
    background: #99cc008c;
    z-index: 1;
    width: 50%;
    height: 50%;
    position: absolute;
    left: -20%;
    bottom: 5%;
    -webkit-animation: key3 70s 0s ease infinite;
    animation: key3 70s 0s ease infinite;
}
section.main p.key3::after {
    content: "";
    background: #99cc008c;
    position: absolute;
    width: 35%;
    height: 35%;
    right: 0;
    top: -3%;
    -webkit-animation: key3b 50s 0s ease infinite;
    animation: key3b 50s 0s ease infinite;
    opacity: 0.2;
}
section.main p.key4 {
    width: 45%;
    position: absolute;
    bottom: 5%;
    padding: 0 3% 0 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 3;
    -webkit-animation: fadeinbt 3s 0s ease forwards;
    animation: fadeinbt 3s 0s ease forwards;
    text-align: justify;
}
section.main p.key4 strong {
    display: block;
    font-size: 23px;
    margin-bottom: 1%;
}
section.index1 > p.title1 {
    width: 100%;
}
section.index1 > h2 {
    width: 60%;
    margin-bottom: 10px;
}
.title1 {
    position: relative;
    font-size: 70px;
    margin: 10% auto 3%;
    font-weight:500;
}
.title1::before {
    content: "";
    background: #ddffdd;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    left: -35px;
    top: -15px;
}
.title1 span {
	display: inline-block;
	font-size: 50%;
}
.title2 {
    text-align: right;
    font-size: 45px;
    font-weight:500;
    position:relative;
    margin: 10% auto 3%;
}
.title2::before {
    content: "";
    background:#f3ffce;
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: -1;
    right: -20px;
    top: -10px;
}
.title3 {
    position: relative;
    font-size: 70px;
    margin: 10% auto 3%;
    display:block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight:500;
}
.title3::before {
    content: "";
    background:#ddffdd;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: -1;
    right: 80px;
    top: -15px;
}
.title4 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}
.title4 span {
    display: block;
    font-size: 60%;
    color: #99cc00;
}
.title5 {
    font-size: 30px;
    font-weight: 500;
    border-left: 8px double #ddffdd;
    padding: 0 0 10px 5px;
    margin: 3% 0 3% -13px;
    position: relative;
}
.title5::before {
    content: "";
    background:  #ddffdd;
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 200px;
    height: 3px;
}
.title5::after {
    content: "";
    background: #ddffdd;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 270px;
    height: 3px;
}
.title6 {
    font-size: 20px;
    font-weight: 500;
    color: #99cc00;
}
.title7,.title9 {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin: 0 auto 3%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
}
.title7::before {
    content: "";
    width: 3px;
    height: 50px;
    background: #ddffdd;
    position: absolute;
    -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
            transform: rotate(-25deg);
    bottom: 0;
    left: -20px;
}
.title7::after {
    content: "";
    width: 3px;
    height: 50px;
    background: #ddffdd;
    position: absolute;
    -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
            transform: rotate(25deg);
    bottom: 0;
    right: -20px;
}
.title8 {
    background: #99cc00;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 23px;
    padding: 8px 0;
    margin: 10px 0;
}
.title8::before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -6px;
    left: 0;
    background: #99cc00;
}
.title8::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    top: -6px;
    left: 0;
    background: #99cc00;
}
.title9 {
    padding-bottom: 40px;
    color: #99cc00;
}
.title9::before {
    content: "";
    background: #99cc00;
    width: 15px;
    height: 15px;
    position: absolute;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
}
.title10 {
    position: relative;
    padding: 80px 0 50px;
    text-align: center;
    color: #9acc02;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}
.title10::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #9acc02;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
p.link1 a {
    display: block;
    background: #99cc00;
    text-align: center;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 13px 30px;
    min-width: 200px;
    border-radius: 50px;
    margin: 3% auto 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.link1 a:hover {
    background: #ddffdd;
    color: #707070;
}
section.archive {
    max-width: 900px;
}
section.archive li a {
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    border-bottom: 1px solid;
}
section.archive li a:hover {
    color:#99cc00;
}
section.archive li a span:first-child{
    color:#99cc00;
    font-weight: bold;
    padding-right: 15px;
}
section.archive li a span:nth-child(2){
    padding-right: 15px;
}
section.index1 {
    position: relative;
}
section.index1::before {
    content: "";
    position: absolute;
    background: #f3ffce;
    width: 50%;
    height: 55%;
    z-index: -1;
    left: 20%;
    bottom: 25%;
}
section.index1 > p {
    width: 60%;
}
section.index1 > p.link1 {
    width: 100%;
}
section.index1 > p.link1 a,section.index2 > p.link1 a {
    margin: 3% 0 0 auto;
}
ul.link3, ul.reason,ul.link3a {
    margin: 3% auto;
}
ul.link3 li, ul.reason li, ul.link3a li {
    width: 31%;
    margin-right: 2%;
	margin-bottom: 2%;
    position: relative;
}
ul.link3 li:last-child, ul.reason li:last-child, ul.link3a li:last-child {
    margin-right: 0;
}
ul.link3 li a,ul.link3a li a {
    display: block;
    height: 100%;
}
ul.link3 li:nth-child(1) a {
    background:url(/wp-content/uploads/2025/12/seitai.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li:nth-child(2) a {
    background:url(/wp-content/uploads/2025/12/shinkyu.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li:nth-child(3) a {
    background:url(/wp-content/uploads/2025/12/seitai3.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li:nth-child(4) a {
    background:url(/wp-content/uploads/2025/12/incho.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li:nth-child(5) a {
    background:url(/wp-content/uploads/2025/12/seitai2.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li:nth-child(6) a {
    background:url(/wp-content/uploads/2025/12/jiko.webp);
    background-size: cover;
    background-position: center;
}
ul.link3 li a::before {
    content:"";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.link3 li a::after {
    content:"";
    width: 100%;
    height: 70px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffffc7;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link3 li a div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5%;
    z-index: 1;
    width: 100%;
}
ul.link3 li a div h3 {
    text-align: center;
    font-size: 22px;
    display: block;
}
ul.link3 li a div p {
    display: none;
    margin: 5px auto 0;
}
ul.link3 li a:hover::after {
    height: 100%;
}
ul.link3 li a:hover div p {
    display:block;
}
section.index2 {
    font-size: 0;
    position:relative;
}
section.index2::before {
    content:"";
    background:#ddffdd;
    position: absolute;
    z-index: -1;
    width: 50%;
    height: 50%;
    bottom: -3%;
    right: 10%;
}
section.index2 p:nth-child(2) {
    display: inline-block;
    width: calc(97% - 400px);
    margin-right: 3%;
    vertical-align: bottom;
}
section.index2 p:nth-child(2) img {
    width: 550px;
    margin: 0 auto;
    max-width: 100%;
}
section.index2 ul {
    display: inline-block;
    width: 400px;
    padding-bottom: 5%;
}
section.index2 ul li {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
section.index2 h3 {
    margin-bottom: 10px;
}
ul.reason li {
    background: #f3ffce;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px 5px;
    margin-top: 12%;
}
ul.reason li p:first-child {
    margin: -40% -15px 10px;
}
ul.reason li p:first-child span {
    display: inline-block;
    font-size: 70px;
    color: #99cc00;
    width: 83px;
    vertical-align: middle;
}
ul.reason li p:first-child img {
    display: inline-block;
    width: calc(92% - 83px);
    vertical-align: middle;
    margin-left: 8%;
}
ul.reason li h3 {
    text-align: center;
    margin-bottom: 3%;
    font-size: 20px;
    font-weight: 500;
}
ul.reason li h3 br {
	display:none;
}
ul.link3a li {
    overflow:hidden;
}
ul.link3a li a::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.link3a li a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link3a li a span {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    background: #ffffffc7;
}
ul.link3a li a:hover img {
    -webkit-transform: rotate(5deg) scale(1.2);
        -ms-transform: rotate(5deg) scale(1.2);
            transform: rotate(5deg) scale(1.2);
}

section.dccheck {
    border: 3px solid #9acc02;
    border-radius: 30px;
    background: #f9f9f9;
    padding: 50px 50px 40px;
    margin: 0 auto;
}
section.dccheck > h3{
    font-size: 30px;
    margin-bottom: 20px;
}
section.dccheck > h3 img{
	display:inline-block;
	width: 40px;
	margin-right: 10px;
	vertical-align: sub;
}
div.dccheck-in {}
div.dccheck-in > p {
	margin:0;
}
div.dccheck-in span.wpcf7-form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    counter-reset: characters;
}
div.dccheck-in span.wpcf7-form-control::after {
	content: counter(characters)"個チェックがつきました！下記を参考にご相談ください！";
	color: #9acc02;
	margin-top: 25px;
	font-size: 23px;
	font-weight: 500;
}
div.dccheck-in span.wpcf7-list-item {
    width: 50%;
    margin: 0!important;
    padding-right: 1em;
}
div.dccheck-in span.wpcf7-form-control input:checked {
    counter-increment: characters;
}
div.dccheck-in span.wpcf7-form-control input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    vertical-align: -0.2rem;
    -webkit-transition:all .15s ease-out 0s;
    -o-transition:all .15s ease-out 0s;
    transition: all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    outline: none;
    border-radius: 10%;
    background: #9acc02;
    margin-right: 8px;
    vertical-align: top;
}
div.dccheck-in span.wpcf7-form-control input[type=checkbox]:checked:before {
	content:"";
	position:absolute;
	left: 1px;
	top: 11px;
	width: 8px;
	height: 3px;
	background: #ffffff;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	border-radius: 4px;
}
div.dccheck-in span.wpcf7-form-control input[type=checkbox]:checked:after{
	content:"";
	position:absolute;
	right: 6px;
	bottom: 2px;
	width: 3px;
	height: 16px;
	background: #ffffff;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	border-radius: 4px;
}
div.dccheck-in span.wpcf7-list-item-label {
	font-size: 18px;
	cursor: pointer;
	display: inline-block;
	width: calc(100% - 28px);
}
p#count{
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
}
p#count::before {/*疑似要素で任意の場所にカウント結果を表示*/
  content: counter(characters);
  font-size: 35px;
  padding-right: 5px;
  font-weight: bold;
  color: #e02a6e;
}
div.result li{
	display:none;
	-webkit-transition:0.3s;
	-o-transition:0.3s;
	transition:0.3s;
	background: #f3ffce;
	margin: -10px -10px 0;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 5px;
}
div.result li:first-child{
	margin-top: 0;
}
div.result li h4 {
    color: #9acc02;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
}
div.result li p {margin-bottom: 0;}



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

section.page-head {
    text-align: center;
    margin: 150px auto 10%;
    position: relative;
}
section.page-head h1,section.page-head p.title {
    font-size: 70px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
section.page-head p:nth-child(2) {
    position: absolute;
    font-size: 150px;
    font-weight: 500;
    color: #ddd;
    bottom: 50%;
    z-index: 0;
    -webkit-animation: key1 30s 0s ease infinite;
    animation: key1 30s 0s ease infinite;
    text-transform: capitalize;
}
section.page-head::before {
    content: "";
    width: 30%;
    height: 130px;
    position: absolute;
    background: #99cc008c;
    z-index: -1;
    left: 0;
    top: -100px;
}
section.page-head::after {
    content: "";
    background: #99cc008c;
    position: absolute;
    width: 50%;
    height: 170px;
    right: 0;
    top: -3%;
    -webkit-animation: key3b 50s 0s ease infinite;
    animation: key3b 50s 0s ease infinite;
    opacity: 0.2;
    z-index: -1;
}
ul.news li a {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3% 5%;
    border-bottom: 1px solid;
    position: relative;
    font-size: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.newsh {
    width: 250px;
    display: inline-block;
    position: relative;
    margin-right: 3%;
}
p.newsh span:nth-child(2) {
    position: absolute;
    top: 10px;
    left: 60px;
    text-shadow: rgba(0, 0, 0, 1) 0px 0px 5px;
    color: #fff;
}
p.newsh span:nth-child(3) {
    position: absolute;
    left: 60px;
    bottom: 27px;
    font-size: 30px;
    font-weight: 500;
    text-shadow: rgba(0, 0, 0, 1) 0px 0px 5px;
    color: #fff;
}
ul.news li a > div {
    display: inline-block;
    width: calc(97% - 250px);
}
ul.news li a > div h2 {
    font-size: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
    font-weight: 500;
}
ul.news li a > div p:nth-child(2) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
ul.news li a > div p:last-child {
    margin-bottom: 0;
    text-align: right;
    color: #99cc00;
    font-size: 15px;
    letter-spacing: 0;
}
ul.news li a:hover {
    background:#99cc00;
}
ul.news li a:hover h2,ul.news li a:hover div p {
    color:#fff;
}
nav.navigation.pagination {
    margin: 10% auto;
    text-align: center;
}
nav.navigation.pagination h2 {
    display: none;
}
.nav-links {
    font-size: 0;
}
.nav-links a,.nav-links span {
	background: #99cc00;
	color: #fff;
	display: inline-block;
	width: 45px;
	height: 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 10px;
	margin-right: 1%;
	margin-top: 10px;
	font-weight: bold;
	font-size: 16px;
}
.nav-links a:last-child, .nav-links span:last-child {
    margin-right: 0;
}
.nav-links a:hover {
    background: #ddffdd;
    color: #707070;
}

p.newsimg {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(#99cc00), color-stop(50%, #99cc00), color-stop(50%, #f3ffce), to(#f3ffce));
    background: -o-linear-gradient(left, #99cc00 0%, #99cc00 50%, #f3ffce 50%, #f3ffce 100%);
    background: linear-gradient(90deg, #99cc00 0%, #99cc00 50%, #f3ffce 50%, #f3ffce 100%);
}
p.newsimg img {
    width: 50%;
    margin: 0 auto;
}
p.floatr {
    float: right;
    width: 35%;
    margin: 0 0 10px 3%;
}
nav.news-nav ul {
    font-size: 0;
}
nav.news-nav li {
    display: inline-block;
    width: 50%;
}
nav.news-nav li:nth-child(2) {
    text-align: right;
}
nav.news-nav li a {
    display: inline-block;
    margin: 10% auto 3%;
    font-weight: 500;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
    background: #ddffdd;
    letter-spacing: 3px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
nav.news-nav li a:hover {
    background: #99cc00;
    color: #fff;
}
.yurashi_bnr {
	display:block;
	width:80%;
	max-width:600px;
	margin:3% auto;
	transition:.3s
}
.yurashi_bnr:hover {
	opacity:0.8
}
.yurashi_bnr img {
	width:100%;
	object-fit:contain
}
ul.syojyo_bnr {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
ul.syojyo_bnr li {
	width:30%;
	margin-bottom:2%;
}
ul.syojyo_bnr li a {
	display:block;
	width:100%;
	transition:all .3s;
}
ul.syojyo_bnr li a:hover {
	opacity:0.8;
}



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

section.form {
    max-width: 900px;
    margin: 0 auto;
}
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: #99cc00;
    vertical-align: top;
    width: 230px;
    text-align: center;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table th p {
    color: #fff;
}
section.form table th span {
    color: #f3ffce;
    font-size: 14px;
    padding-left: 5px;
}
section.form table td {
    padding: 10px 0 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
section.form table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}
section.form table td span.wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 28px;
    letter-spacing: 1px;
}
section.form table td span.wpcf7-acceptance span.wpcf7-list-item {
    margin: 0;
    line-height: normal;
}
section.form table td span.wpcf7-form-control-wrap {
    display: block;
}
section.form table td span.wpcf7-form-control {
    padding: 10px 0;
    display: block;
}
form table td input.wpcf7-text, form table td textarea.wpcf7-textarea {
    border: 1px solid #b6b6b6;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
form table td input.wpcf7-text {
    width: 80%;
    max-width: 400px;
    height: 35px;
}
form table td textarea.wpcf7-textarea {
    width: 100%;
}
form p span.wpcf7-spinner {
    vertical-align: sub;
}
form p input.wpcf7-form-control.wpcf7-submit {
    padding: 10px 30px;
    background: #ddd;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-size: 18px;
    margin-top: 50px;
    margin-left: 72px;
    color: #525252;
    font-family: 'Kiwi Maru', serif;
    border: 1px solid;
    border-radius: 10px;
    cursor: pointer;
}
form p input.wpcf7-form-control.wpcf7-submit:hover {
    background: #99cc00;
    color: #fff;
}
form > p {
    text-align: center;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}


ul.index {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
ul.index li {
	width: calc(92% / 6);
    text-align: center;
    margin-right: 1%;
}
ul.index li:last-child {
    margin-right: 0;
}
ul.index li a {
    display: block;
    height: 100%;
    position: relative;
    background: url(/wp-content/uploads/2025/12/seitai.webp);
    background-size: cover;
}
ul.index li:nth-child(2) a {
    background: url(/wp-content/uploads/2025/12/shinkyu.webp);
    background-size: cover;
}
ul.index li:nth-child(3) a {
    background: url(/wp-content/uploads/2025/12/seitai3.webp);
    background-size: cover;
}
ul.index li:nth-child(4) a {
    background: url(/wp-content/uploads/2025/12/incho.webp);
    background-size: cover;
}
ul.index li:nth-child(5) a {
    background: url(/wp-content/uploads/2025/12/seitai2.webp);
    background-size: cover;
}
ul.index li:nth-child(6) a {
    background: url(/wp-content/uploads/2025/12/jiko.webp);
    background-size: cover;
}
ul.index li a::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
ul.index li a span {
    position: absolute;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background: #ffffffc7;
    padding: 10px 0;
    font-size: 20px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 1;
}
ul.index li a:hover span {
    opacity: 0;
}
ul.lic li {
    position: relative;
    padding-left: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 28px;
}
ul.lic li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 3px solid #99cc00;
  border-bottom: 3px solid #99cc00;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.backg,.backy {
    position: relative;
}
.backg::before {
    content: "";
    background: #ddffdd;
    position: absolute;
    z-index: -1;
    width: 50%;
    height: 50%;
    left: 10%;
    top: 110px;
}
.backy::before {
    content: "";
    position: absolute;
    background: #f3ffce;
    width: 50%;
    height: 50%;
    z-index: -1;
    left: 20%;
    top: 110px;
}
ul.linkli {
    text-align: center;
	font-size:0;
}
ul.linkli li {
    display: inline-block;
    margin: 0 1% 1%;
	width: calc(94% / 3);
	max-width: 200px;
}
ul.linkli li a {
    display: block;
    background: #99cc00;
    text-align: center;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 13px 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.linkli li a:hover {
    background: #ddffdd;
    color: #707070;
}
.greenline {
    border: 5px solid #ddffdd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5% 5% 4%;
    max-width: 800px;
    margin: 3% auto;
}
.yellowbox {
    background:#f3ffce;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5% 5% 4%;
    max-width: 800px;
    margin: 3% auto;
}

ul.col2 {}
ul.col2 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul.col2 li:nth-child(even) {
    margin-right: 0;
}

table.price {
    border-collapse: separate;
    border-spacing: 0 5px;
}
table.price th {
    background: #ddffdd;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px 5px;
    width: 230px;
    position: relative;
}
table.price th::before {
    content: "";
    border-top: 19px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 10px solid #ddffdd;
    position: absolute;
    left: 100%;
    top: 0;
}
table.price th span {
    font-size: 90%;
}
table.price td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px 5px;
    text-align: right;
    background: #f3ffce;
}

table.about {
    border-collapse: separate;
    border-spacing: 0 5px;
}
table.about th {
    background: #99cc00;
    color: #fff;
    width: 250px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 10px;
    font-size: 18px;
    text-align: center;
}
table.about td {
    background: #f3ffce;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
}
table.about td span {
    display: inline-block;
    font-size: 90%;
}
p#inside {
    margin-bottom: 3%;
}
p#inside img {
    width: 50%;
    display: inline-block;
}
section#incho > p {
    width: 40%;
    max-width: 400px;
    margin-left: 3%;
}
section#incho > div {
    width: 80%;
    margin: -15% 0 0 auto;
    background: #ddffddb8;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5%;
    -webkit-box-shadow: 2px 2px 10px #bfbfbf;
    box-shadow: 2px 2px 10px #bfbfbf;
}
section#incho > div h2.title7::before,section#incho > div h2.title7::after {
    background: #fff;
}
.about-a iframe {
    width: 100%;
    height: 450px;
}
ul.sitemap {
    margin: 0% auto 15%;
    font-size: 0;
}
ul.sitemap li {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
}
ul.sitemap li:nth-child(even) {
    margin-right: 0;
}
ul.sitemap li a {
    display: block;
    border-bottom: 1px solid #707070;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
ul.sitemap li a:hover {
    color: #99cc00;
}
.qa-1 {
    margin-bottom: 7px;
    border: 1px solid #99cc00;
    border-radius: 5px;
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #707070;
    font-weight: 600;
    cursor: pointer;
}

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

.qa-1 summary::before {
    color: #99cc00;
    content: "Q";
}

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

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

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #707070;
    transition: transform .5s, opacity .5s;
}

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

.qa-1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}
.list2 li {
    margin-bottom: 3%;
}
.list_ttl1 {
    padding-bottom: 10px;
    font-size: 20px;
    border-bottom: 3px solid #99cc00;
    margin: 2% 0 1.5%;
}
.list_ttl1 span {
    font-size: 32px;
    margin-right: 10px;
    background: #f3ffce;
    border: 3px solid #99cc00;
    line-height: 1;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

section.con-form {
    margin: 5% auto;
}
section.con-form table {
    width: 100%;
}
section.con-form tr {
    border-bottom: 1px solid;
}
section.con-form tr:first-child {
	border-top: 1px solid;
}
section.con-form th {
    width: 250px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 20px;
    background: #99cc00;
    border-left: 1px solid;
    border-right: 1px solid;
    vertical-align: top;
}
section.con-form.form-color01 th {
	background: #a2ddce;
}
section.con-form.form-color02 th {
	background: #bacade;
}
section.con-form th p {
	margin:0;
	font-size: 18px;
	letter-spacing: 1px;
	color: #fff;
}
section.con-form th span {
    color: #ef4040;
    padding-left: 10px;
    font-size: 15px;
}
section.con-form td {
    border-right: 1px solid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 20px;
}
section.con-form td p {
	margin:0;
	font-size: 18px;
}
section.con-form td span{
    font-size: 18px;
}
section.con-form td span.rei {
    display: block;
    font-size: 15px;
    text-align: left;
}
















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

/*------------------------------------*\
    ヘッダー＆フッダー
\*------------------------------------*/
header.top {
    text-align: left;
}
hgroup a {
    padding: 10px;
    margin: 0 auto 0 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}
.menu1 {
    display: none;
}
.menur {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}
nav.nav1 {
    display: block;
}
.r-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 90;
    background-color: #99cc00;
}
.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{
    background: #fff;
}
#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);
	background-color: #99cc00;
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
	background-color: #99cc00;
}
#label1 {
    display: none;
}
.hidden_box .hidden_show {
    height: 0;
    padding: 0 10px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: left;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    max-height: 100vh;
}
.hidden_show ul.nav1-a {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 70px);
}
.hidden_box input:checked ~ .hidden_show {
    padding: 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: #99cc00;
}
.hidden_box input:checked ~ .hidden_show ul.nav1-a {
	opacity: 1;
	height: auto;
}
.hidden_show ul.nav1-a li a{
	display: block;
	color: #fff;
	padding: 10px;
	border-bottom: 1px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing: 1px;
}
.hidden_show ul.nav1-a li:last-child a{
	border-bottom:unset;
}

.left {
    width: 350px;
}
table.top-about th {
    width: 90px;
}
.right {
    width: calc(97% - 350px);
}
section.footer ul li a {
    padding: 10px 15px;
}




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

section.main p.key1 {
    font-size: 10vw;
}
section.main p.key4 {
    padding: 0 3%;
    bottom: 0;
    font-size: 14px;
}
section.main p.key4 strong {
    font-size: 18px;
}
.title1,.title3 {
    font-size: 50px;
}
.title2 {
    font-size: 40px;
}
.title4,.title5 {
    font-size: 25px;
}
.title6 {
    font-size: 18px;
}
.title7, .title9 {
    font-size: 30px;
}
.title7::before,.title7::after {
    height: 40px;
}
.title8 {
    font-size: 20px;
}
.title9 {
    padding-bottom: 30px;
}
.title9::before {
    width: 10px;
    height: 10px;
    bottom: 10px;
}
.title10 {
    font-size: 35px;
    padding: 50px 0 30px;
}
.title10::before {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #9acc02;
}
p.link1 a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    min-width: 180px;
}
ul.link3 li a div {
    position: relative;
    padding: 10% 5%;
    height: auto;
}
ul.link3 li a::before {
    display: none;
}
ul.link3 li a::after {
    height: 100%;
    background: #ffffffe0;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.link3 li a:hover::after {
    background: #fafacce3;
}
ul.link3 li a div h3 {
    font-size: 23px;
}
ul.link3 li a div p,ul.link3 li a:hover div p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
section.index2 p:nth-child(2) {
    width: calc(97% - 330px);
}
section.index2 ul {
    width: 330px;
    padding-bottom: 3%;
}
section.index2 ul li {
    font-size: 16px;
}
ul.reason li p:first-child span {
    font-size: 50px;
    width: 60px;
}
ul.reason li p:first-child img {
    width: calc(92% - 60px);
}
ul.reason li h3 {
    font-size: 18px;
}
ul.reason li h3 br {
	display:block;
}
ul.link3a li a span {
    font-size: 18px;
    padding: 10px 0;
}

section.dccheck {
    padding: 40px 40px 30px;
}
section.dccheck > h3 {
    font-size: 25px;
    margin-bottom: 15px;
}
section.dccheck > h3 img {
    width: 35px;
}
div.dccheck-in span.wpcf7-list-item-label {
    font-size: 16px;
}
div.dccheck-in span.wpcf7-form-control::after {
    font-size: 20px;
    margin-top: 18px;
}
div.result{}
p#count{
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
p#count::before {
	font-size: 30px;
}
div.result li h4{
	font-size:18px;
}
section.con-form th,section.con-form td {
    padding:20px
}
section.con-form th p,section.con-form td p {
	font-size: 16px;
}
section.con-form td span {
    font-size: 16px;
}



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

section.page-head {
    margin: 100px auto 10%;
}
section.page-head h1, section.page-head p.title {
    font-size: 50px;
}
section.page-head p:nth-child(2) {
    font-size: 120px;
}
section.page-head::after {
    height: 110px;
}

ul.news li a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
p.newsh {
    width: 180px;
}
p.newsh span:nth-child(2) {
    left: 35px;
    top: 5px;
    font-size: 14px;
}
p.newsh span:nth-child(3) {
    font-size: 20px;
    left: 50px;
    bottom: 23px;
}
ul.news li a > div {
    width: calc(97% - 180px);
}
ul.news li a > div h2 {
    font-size: 18px;
    margin-bottom: 3px;
}
nav.news-nav li a {
    transition: unset;
    letter-spacing: 1px;
}




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

section.form table tr {
    border-bottom: 10px solid #fff;
}
section.form table th {
    padding: 15px 0;
    width: 200px;
}
section.form table td {
    padding: 5px 0px 0 15px;
}
section.form table td span.wpcf7-form-control {
    padding: 5px 0;
}
form p input.wpcf7-form-control.wpcf7-submit {
    margin-top: 30px;
    font-size: 16px;
}
ul.index li a span {
    font-size: 18px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.linkli li a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.lic li {
    font-size: 15px;
    line-height: 27px;
}

table.price th {
    width: 200px;
}

table.about th {
    width: 230px;
    font-size: 17px;
}
.about-a iframe {
    height: 400px;
}





















}

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

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



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

hgroup a {
    font-size: 17.5px;
    padding: 10px 5px;
}
ul.sns {
    right: 0;
    bottom: 0;
    font-size: 0;
    width: 100%;
}
ul.sns li {
    width: 50%;
    margin: 0 auto;
}
ul.sns li a {
    border-radius: unset;
    padding: 10px 0;
}
ul.sns li a img {
    display: inline-block;
    width: 25px;
    vertical-align: middle;
}
ul.sns li a span {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}
footer#colophon {
    padding: 10px 0 60px;
}




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

section.main p.key1 {
    font-size: 13vw;
    top: -50px;
}
section.main p.key2 {
    width: 80%;
}
section.main p.key2::before {
    width: 80%;
    opacity: 0.5;
}
section.main p.key3 {
    margin: 0 0 0 auto;
    width: 90%;
}
section.main p.key3::before {
    background: #ffffffe0;
    width: 100%;
}
section.main p.key3::after {
    opacity: 1;
    width: 70%;
}
section.main p.key4 {
    width: 83%;
    bottom: 3%;
    padding: 0 0 0 2%;
}
section.main p.key4 strong {
    font-size: 17px;
}
.title1, .title3 {
    font-size: 33px;
}
.title1::before {
    width: 50px;
    height: 50px;
    left: -2%;
    top: -20px;
}
.title2 {
    font-size: 23px;
}
.title2::before {
    width: 40px;
    height: 40px;
    right: -2%;
    top: -15px;
}
.title3::before {
    width: 50px;
    height: 50px;
    right: 30px;
    top: -10px;
}
.title4 {
    font-size: 23px;
}
.title4 span {
    font-size: 80%;
	font-weight:500;
}
.title5 {
	font-size: 23px;
	padding: 0 0 10px 2px;
	margin: 3% 0 3% -10px;
}
.title7, .title9 {
    font-size: 23px;
}
.title7::before, .title7::after {
    height: 30px;
}
.title8::before {
    height: 2px;
    bottom: -4px;
}
.title8::after {
    height: 2px;
    top: -4px;
}
.title9 {
    padding-bottom: 20px;
}
.title9::before {
    bottom: 3px;
}
.title10 {
    font-size: 25px;
    padding: 30px 0 20px;
}
.title10::before {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #9acc02;
}
section.archive ul {
    padding-bottom: 5%;
}
section.index1::before {
    width: 80%;
    left: 0;
    bottom: auto;
    top: 10%;
}
section.index1 > p {
    width: 90%;
}
p.link1 a {
    margin: 5% auto 0;
    padding: 10px 20px;
}
section.index1 > p.link1 a, section.index2 > p.link1 a {
    margin: 5% 0 0 auto;
}
ul.link3 li {
    margin: 0 -2%;
    width: 104%;
}
ul.link3 li a div h3 {
    font-size: 20px;
}
ul.link3 li a:hover div h3, ul.link3 li a:hover div p {
    color:#99cc00;
}
ul.link3 li a:hover::after {
    background: #ffffffe0;
}
section.index2::before {
    width: 60%;
    right: 5%;
}
section.index2 p:nth-child(2) {
    width: 100%;
    margin: 0 auto 3%;
}
section.index2 ul {
    width: 100%;
}
ul.reason li {
    width: 100%;
    margin-top: 80px;
    padding: 0 10px 5px;
}
ul.reason li p:first-child {
    margin: -75px -10px 10px;
}
ul.reason li p:first-child img {
    width: 140px;
    margin-left: calc(100% - 200px);
}
ul.reason li h3 br {
    display: none;
}
ul.link3a li {
    width: calc(100% / 3);
    margin: 0 auto;
}
ul.link3a li a span {
    font-size: 16px;
}
section.footer {
    margin: 15% auto 0;
    display: block;
}
.left {
    width: 100%;
}
.left p:first-child a {
    font-size: 20px;
    margin-bottom: 3%;
}
.right {
    width: 100%;
    margin: 0 auto;
}
.right iframe {
    height: 300px;
}

section.dccheck {
    padding: 15px;
    border-radius: 15px;
}
section.dccheck > h3 {
    font-size: 20px;
    text-indent: -35px;
    padding-left: 35px;
    margin-bottom: 8px;
}
section.dccheck > h3 img {
    width: 30px;
    margin-right: 5px;
}
div.dccheck-in span.wpcf7-list-item {
    width: 100%;
    padding: 0;
}
div.dccheck-in span.wpcf7-form-control::after {
    font-size: 18px;
    margin-top: 10px;
}
p#count{
    font-size: 15px;
    margin-bottom: 10px;
}
div.result li{
    margin: -5px -8px 0;
    padding: 5px 8px;
}
div.result li h4 {
    font-size: 17px;
}
div.result li p {
    line-height: 25px;
}
section.con-form {
    margin: 20px auto 80px;
}
section.con-form tr,section.con-form tr:first-child {
    border: unset;
}
section.con-form th {
    display: block;
    width: 100%;
    border: unset;
    padding: 12px 0;
}
section.con-form th p {
	text-align: center;
}
section.con-form th span, section.con-form td span.rei {
    font-size:14px;
}
section.con-form td {
    display: block;
    width: 100%;
    border: unset;
    padding: 12px 0;
}




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

section.page-head {
    margin: 17% auto 10%;
}
section.page-head h1, section.page-head p.title {
    font-size: 35px;
}
section.page-head p:nth-child(2) {
    font-size: 18vw;
}
section.page-head::before {
    bottom: 10%;
    height: 90px;
    top: auto;
}
section.page-head::after {
    width: 60%;
    height: 150%;
}
p.newsh {
    width: 120px;
    display: block;
    margin: 0 0 0 auto;
}
p.newsh span:nth-child(2) {
    top: 0px;
    left: 17px;
}
p.newsh span:nth-child(3) {
    left: 20px;
    bottom: 10px;
}
ul.news li a > div {
    width: 100%;
}
ul.news li a > div h2 {
    font-size: 17px;
}
ul.news li a > div p:last-child {
    font-size: 14px;
}

p.newsimg img {
    width: 80%;
}
nav.news-nav li a {
    font-size: 14px;
}



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

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;
    width: 100%;
    display: block;
}
section.form table td span.wpcf7-list-item span {
    font-size: 15px;
    letter-spacing: 0.5px;
}
section.form table td span.wpcf7-form-control {
    padding: 0;
}
section.form table td input.wpcf7-text {
    width: 100%;
}
form p input.wpcf7-form-control.wpcf7-submit {
    font-size: 15px;
    margin-top: 20px;
}
ul.index li a span {
    font-size: 14px;
}
.backg::before,.backy::before {
    width: 70%;
}
ul.lic li {
    padding-left: 1.1rem;
	font-size: 14px;
    line-height: 25px;
}
ul.lic li::after {
    top: 0.6rem;
}

ul.col2 li {
    width: 100%;
    margin: 0 auto 3%;
}
table.about {
    border-collapse: collapse;
    border-spacing: 0;
}
table.about th {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
}
table.about td {
    display: block;
    width: 100%;
    padding: 10px;
}
section#incho > p {
    width: 60%;
}
section#incho > div {
    width: 90%;
    margin: -30% 0 0 auto;
}
.about-a iframe {
    height: 300px;
}
ul.sitemap li {
    width: 49%;
    margin-right: 2%;
}
ul.index li {
    width: calc(92% / 3);
    margin-bottom: 1%;
}
ul.index li:last-child {
    margin-right: 1%;
}








}


/*--------------------
26.03.03 DC追記
----------------------*/
.link2 a {
    display: block;
    width: 200px;
    padding: 10px;
    text-align: center;
    background: #99cc00;
    color: #fff;
    border: #99cc00 1px solid;
    margin: 3% 0;
}
.link2 a:hover {
    background: #fff;
    color: #99cc00;
}
.read_txt {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 4; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (max-width:700px) {
    .link2 a {
        margin: 3% auto;
    }
}

/*----------------------
26.03.10 DC追記
---------------------------*/
div.table_area {
    overflow-x: scroll;
}
table.table1 {
    min-width: 660px;
}
table.table1 tr {
    border: 1px solid #99cc00;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
table.table1 th {
    text-align: center;
    width: 25%;
    position: relative;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    background: #99cc00;
    color: #fff;
}
table.table1 td {
    padding: 10px 0;
    width: calc(75% / 7);
    text-align: center;
    border-left: 1px solid #99cc00;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}