/*
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=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: #ff8f2c;
}
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:#ff8f2c!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: #ff8f2c;
}
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu > div {
    width: 290px;
}
.menu > div a {
	padding: 5px;
	display:block;
}
.menu li {
    display: inline-block;
}
.menu li a {
    display: block;
    padding: 28px 20px;
    color: #fff;
}
.menu li a:hover {
    color: #525252;
}
.menur, ul.cta1 {
    display: none;
}

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

p.f-logo {
    text-align: center;
    margin-bottom: 3%;
}
p.f-logo img {
    display: block;
    margin: 0 auto 1%;
    width: 70%;
    max-width: 500px;
}
ul.sitemap {
    margin: 3% auto;
    text-align: center;
}
ul.sitemap li {
    display: inline-block;
}
ul.sitemap li a {
    display: block;
    padding: 10px;
}
.access iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: block;
}
footer#colophon {
    background: #ff8f2c;
    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 #ff8f2c;
    position: relative;
    min-width: 800px;
    text-align: center;
}
.ttl1 br {display:none;}
.ttl1 span {
    display: block;
    font-size: 18px;
    position: absolute;
    background: #ff8f2c;
    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: #ff8f2c;
}
.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: #ff8f2c;
    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: #fff0c9;
    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(/wp-content/uploads/2025/12/mv1.webp)no-repeat center / cover;
    padding: 23% 0 5%;
    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: 60%;
    max-width: 500px;
    margin: 0 auto;
}


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 #ff8f2c;
    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(/wp-content/uploads/2025/12/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: #fff0c8;
    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 #ff8f2c;
    padding: 3%;
}

section.back-list {
    background: url(/wp-content/uploads/2025/12/back3-scaled.webp)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(/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(/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: #ff8f2c;
    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: #fff0c9;
    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 0 20px 20px;
    vertical-align: middle;
}
section.contact-f table td span.rei {
    display: block;
    margin-top: 3px;
    font-size: 15px;
}
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 {
}
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: #fff0c9;
    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: #ff8f2c;
    color: #fff;
}
section.contact-f form > p {
    text-align: center;
}





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

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

.menu > div {
	width: 225px;
}
.menu > div a {
	padding: 18px 10px;
}
.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: #ff8f2c;
}
.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: #d24747;
}
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: 38px;
}
.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 0 15px 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 {
}
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: 30px;
    padding: 20px 3% 10px;
    margin: 30px auto 3%;
}
.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
\*------------------------------------*/

section.main {
    background: url(/wp-content/uploads/2025/12/mv1_sp.webp)no-repeat center top / cover;
    padding: 60% 0 3%;
}
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 0;
    width: 100%;
    display: block;
}
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;
}




}

