/*
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.6
Tested up to: 6.8
Requires at least: 3.5
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns
Text Domain: twentytwelve

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

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

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

---------- Examples

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

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

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

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

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

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

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


/* =Reset
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@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;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
blockquote, q {
	quotes: none;
}

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

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

ol, ul{
	list-style:none;
}


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

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

caption, th{
	text-align: left;
}

a:focus {
	outline:none;
}

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

* html .clear {
	height: 1px;
}

.both{
	clear:both;
}

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

a{
	text-decoration:none;
	color:#000;
}
body {
	overflow:hidden;
	background:#fff;
}
div, a, p, h1, h2, h3, h4, h5, h6, span, th, td, li, time, footer, button, label, strong, em, b{
	color:#525252;
	font-family: 'Noto Sans JP', sans-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;
	line-height:28px;
	letter-spacing:1px;
	text-align: justify;
}
.mt8 {margin-top: 8%!important;}
.mt5 {margin-top: 5%!important;}
.mt3 {margin-top: 3%!important;}

.width p span.b {
	font-size:100%;
	font-weight:bold;
}
.width p span.bu {
	font-size:100%;
	font-weight:bold;
	border-bottom:1px solid;
}
.width p span.bl {
	font-size:100%;
	font-weight:bold;
	color:#186dc1;
}
.width p span.st {
	font-size:120%;
	font-weight:bold;
}
.width p span.yb {
	font-size:100%;
	font-weight:bold;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fbff8b));
    background: -o-linear-gradient(transparent 60%, #fbff8b 0%);
    background: linear-gradient(transparent 60%, #fbff8b 0%);
}


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

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

.fadein{
	opacity:0;
	-webkit-transition : all 3s;
	-o-transition : all 3s;
	transition : all 3s;
}
.downup .fadein {
	opacity : 0;
	-webkit-transform : translate(0, 50px);
	    -ms-transform : translate(0, 50px);
	        transform : translate(0, 50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.updown .fadein {
	opacity : 0;
	-webkit-transform : translate(0, -50px);
	    -ms-transform : translate(0, -50px);
	        transform : translate(0, -50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinrl .fadein {
	opacity : 0;
	-webkit-transform : translate(80px, 0);
	    -ms-transform : translate(80px, 0);
	        transform : translate(80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinlr .fadein {
	opacity : 0;
	-webkit-transform : translate(-80px, 0);
	    -ms-transform : translate(-80px, 0);
	        transform : translate(-80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	-webkit-transform : translate(0, 0);
	    -ms-transform : translate(0, 0);
	        transform : translate(0, 0);
}

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

header#top {
    position: relative;
    z-index: 10;
}
div.menu {
}
div.menu > p {
    width: 430px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
div.menu > p a {
    display: block;
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 100;
}
div.menu > p a img {
	height:73.2px;
	object-fit:contain;
}
div.menu nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    text-align: right;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: -webkit-gradient(linear, left top, left bottom, from(#333029db), to(#52525200));
    background: -o-linear-gradient(top, #333029db, #52525200);
    background: linear-gradient(to bottom, #333029db, #52525200);
}
div.menu nav > ul > li {
    display: inline-block;
	position: relative;
}
div.menu nav > ul > li > a {
    display: block;
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 15px 30px;
    letter-spacing: 1px;
	position: relative;
    z-index: 1;
}
div.menu nav > ul > li > a::before{
	content:"";
	position: absolute;
	background: #fff;
	width: 40px;
	height: 3px;
	border-radius: 50px;
	top: 45px;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	        transform: translateY(-50%) translateX(-50%);
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
/* サブメニューを使用するとき
div.menu nav > ul > li:nth-child(2) > a::before, 
div.menu nav > ul > li:nth-child(3) > a::before, 
div.menu nav > ul > li:nth-child(5) > a::before　{
	display:none;
}
*/
div.menu nav > ul > li > a:hover::before{
	opacity:1;
	top:56px;
}
div.menu nav li > ul {
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    top: 40px;
    height: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    overflow:hidden;
}
div.menu nav li > ul li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    font-size: 15px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
div.menu nav li > ul li a:hover {
    color: #F28C28;
}
div.menu nav > ul > li:hover > ul {
    opacity: 1;
    height: auto;
    padding: 10px 0;
    top: 54px;
}

div.menur {
    display: none;
}

ul.sns {
}
ul.sns li {
    display: inline-block;
    width: calc(100% / 3);
    border-left: 1px dashed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
}
ul.sns li:last-child {
    border-right: 1px dashed;
}
ul.sns li p:first-child {
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    font-style: italic;
    font-size: 23px;
    margin-bottom: 20px;
}
ul.sns li p img {
    width: 70%;
    margin: 0 auto;
    max-width: 80px;
}
ul.sns li p a {
    display: block;
    text-align: center;
    margin: 20px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 3px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
ul.sns li p a:hover {
    background: #525252;
    color: #fff;
}
section.ctamt {
    width: 95%;
}
@media screen and (min-width:350px) {
	section.ctamt {
		max-width: 350px;
		margin: 2em auto;
	}
}
section#foot iframe {
    width: 100%;
    height: 400px;
    margin: 5% auto;
}
section.sitemap {
    background: url(https://nanyo-tantei.jp/wp-content/uploads/2025/09/mv3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
	position:relative;
	z-index:1;
}
section.sitemap:after {
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:#000;
	opacity:0.8;
	z-index:-1;
}
section.sitemap ul {
	margin:0 auto 5%;
}
section.sitemap li {
    display: inline-block;
}
section.sitemap li a {
    color: #fff;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
}
section.sitemap li a:hover {
    color:#F28C28;
}
section.sitemap > div > div > p {
    color: #fff;
    text-align: center;
    font-size: 14px;
}
section.sitemap > p {
    padding-bottom: 3%;
	color:#fff;
}
section.sitemap > p a {
    color: #fff;
    font-size: 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 13px;
}
section.sitemap > p a:hover {
    color:#f3f953;
}
footer#colophon {
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    letter-spacing: 1px;
}
footer#colophon br {display: none;}


/*------------------------------------*\
    トップ
\*------------------------------------*/

header.index1 {
    position: relative;
    height: 600px;
    overflow: hidden;
}
header.index1 div {
    position: absolute;
    bottom: 5%;
    left: 10%;
	background:url(https://nanyo-tantei.jp/wp-content/uploads/2025/09/icon_search.png);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	padding: 105px 25px 210px 120px;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
            filter: drop-shadow(3px 3px 2px rgb(0 0 0));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
z-index: 1;}
header.index1 div h1 {
    text-align: center;
    color: #fff;
    font-size: 30px;
	font-weight:bold;
    margin-bottom: 10px;
	text-shadow: rgba(0, 0, 0, 1) 0 0 3px;
}
header.index1 div h1 span:nth-child(1) {
	width: 200px;
    display: block;
    margin: auto;
}
header.index1 div p {
    text-align: center;
    color: #fff;
    font-size: 25px;
	text-shadow: rgba(0, 0, 0, 1) 0 0 3px;
}
p.scroll {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 135px;
}
p.mv {
	position: relative;
	height: 600px; /* 必要に応じて高さ調整 */
	overflow: hidden;
}
p.mv img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: MVFuwa 15s infinite;
}
p.mv img:nth-child(1) {
	animation-delay: 0s;
	z-index: -1;
}
p.mv img:nth-child(2) {
	animation-delay: 5s;
	z-index: -2;
}
p.mv img:nth-child(3) {
	animation-delay: 10s;
	z-index: -3;
}
@-webkit-keyframes MVFuwa {
	0%   { opacity: 0; }
	10%  { opacity: 1; }   /* フェードイン */
	40%  { opacity: 1; }   /* 表示キープ */
	50%  { opacity: 0; }   /* フェードアウト */
	100% { opacity: 0; }
}
@keyframes MVFuwa {
	0%   { opacity: 0; }
	10%  { opacity: 1; }   /* フェードイン */
	40%  { opacity: 1; }   /* 表示キープ */
	50%  { opacity: 0; }   /* フェードアウト */
	100% { opacity: 0; }
}

.title1, .title2, .title3 {
    color: #f0f0f0;
    font-size: 100px!important;
    line-height: normal!important;
    letter-spacing: 0px!important;
    margin-bottom: 50px!important;
    font-family: 'Noto Serif JP', serif;
    font-style: italic;
    position: relative;
    padding-top: 50px;
	text-align: center!important;
}
.title2 {
	color:#525252;
}
.title3 {
	font-size: 75px!important;
}
.title1 span, .title2 span, .title3 span {
    display: block;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 50px;
    -webkit-filter: drop-shadow(5px 5px 2px rgb(226 226 226));
            filter: drop-shadow(5px 5px 2px rgb(226 226 226));
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 0;
}
.title2 span {
    color: #fff;
    -webkit-filter:unset;
            filter:unset;
}
.title3 span {
	font-size: 40px;
}
.title4 {
    padding-top: 50px;
    font-size: 100px;
    color: #f0f0f0;
    letter-spacing: 0px!important;
    margin-bottom: 50px!important;
    font-family: 'Noto Serif JP', serif;
    font-style: italic;
    position: relative;
}
.title4 span {
    display: block;
    font-size: 50px;
    position: absolute;
    -webkit-filter: drop-shadow(5px 5px 2px rgb(226 226 226));
            filter: drop-shadow(5px 5px 2px rgb(226 226 226));
    font-weight: bold;
    left: 0;
    bottom: 0;
    letter-spacing: 3px;
    z-index: 1;
}

section.index2 {
    font-size: 0;
    margin-bottom: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
section.index2 div {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-top: 3%;
}
section.index2 div p b {
    text-align: center;
    display: block;
    font-size: 23px;
    margin-bottom: 15px;
}
section.index2 div p a {
    display: block;
    text-align: center;
    width: 200px;
    margin: 20px auto 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
    background: #F28C28;
    color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 40%);
            box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 40%);
	transition:0.2s;
}
section.index2 div p a:hover {
	background: #1A3E5C;
}
section.index2 > p {
    display: inline-block;
    width: 50%;
    position: relative;
    margin-top: 3%;
}
section.index2 > p img:nth-child(1) {
    width: 80%;
    margin: 50px 0 0 auto;
    -webkit-box-shadow: 5px 5px 3px 0px rgb(0 0 0 / 35%);
            box-shadow: 5px 5px 3px 0px rgb(0 0 0 / 35%);
}
section.index2 > p:nth-of-type(2) img:nth-child(1) {
    margin: 50px 0 auto 0;
}
section.index2 > p img:nth-child(2) {
    width: 80%;
    position: absolute;
    bottom: 5%;
    left: 10%;
    -webkit-box-shadow: 5px 5px 3px 0px rgb(0 0 0 / 35%);
            box-shadow: 5px 5px 3px 0px rgb(0 0 0 / 35%);
}
section.index3 {
    background: url(https://nanyo-tantei.jp/wp-content/uploads/2025/09/service-5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 5%;
	position:relative;
	z-index:1;
}
section.index3:after {
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:#000;
	opacity:0.8;
	z-index:-1;
}
section.index3 div.width {
    font-size: 0;
}
section.index3 > div > div {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 5px 0px;
}
section.index3 > div > div a {
    display: block;
    position: relative;
}
section.index3 > div > div a::before, section.index3 ul li a::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    position: absolute;
    background: #0000007a;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
section.index3 > div > div a:hover::before, section.index3 ul li a:hover::before {
    padding-top: 0;
}
section.index3 > div > div a p {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 2px;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
            filter: drop-shadow(3px 3px 2px rgb(0 0 0));
}
section.index3 > div > div a p span {
    display: block;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    border-top: 1px solid #fff;
    margin-top: 10px;
    font-size: 43px;
    padding: 8px 50px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 1px;
}
section.index3 ul {
    display: inline-block;
    width: 50%;
}
section.index3 ul li {
    display: inline-block;
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 5px 0px;
}
section.index3 ul li a {
    display: block;
    position: relative;
}
section.index3 ul li a p {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-weight: bold;
    font-size: 23px;
    letter-spacing: 2px;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
            filter: drop-shadow(3px 3px 2px rgb(0 0 0));
}
section.index3 ul li a p span {
    display: block;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    border-top: 1px solid #fff;
    margin-top: 10px;
    font-size: 23px;
    padding-top: 8px;
    letter-spacing: 1px;
}

section.ttb {
    position: relative;
}
section.ttb::before {
    content: "";
    background: #f2fffe;
    width: 100vw;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
section.index4 {
    padding-bottom: 5%;
}
section.index4 li {
    border-bottom: 1px solid;
}
section.index4 li:last-child {
	border:unset;
}
section.index4 li a {
    display: block;
    padding: 13px 40px 13px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
section.index4 li a span:first-child {
    padding-right: 10px;
    color: #1A3E5C;
}
section.index4 li a span:last-child {
    position: absolute;
    top: 10px;
    right: 5px;
    background: #1A3E5C;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.5px;
}
section.index4 li a:hover {
    color:#1A3E5C;
} 
section.index4 li a:hover span:last-child{
    background:#F28C28;
}
section.index4 > p, p.tolink2 {
    text-align: center;
}
section.index4 > p a, p.tolink2 a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    display: block;
    background:#1A3E5C;
	color:#fff;
	width:200px;
	margin:30px auto 0;
	border-radius: 5px;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
}
section.index4 > p a:hover, p.tolink2 a:hover {
    background:#666666;
}

section.index5 {
    background: url(https://housesolutionpartner.jp/wp-content/uploads/2022/04/blog.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding-bottom: 5%;
}
section.index5 ul {
}
section.index5 ul li {
    display: inline-block;
    width: 20%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
    overflow: hidden;
    border-radius: 20px;
}
section.index5 ul li a {
    display: block;
    position: relative;
}
section.index5 ul li a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000007a;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.index5 ul li a img {
    height: 100%;
}
section.index5 ul li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    font-size: 30px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    text-align: center;
}
section.index5 ul li a:hover::before {
    height: 0;
}
section.index5 ul li a:hover span {
    opacity: 0;
}
section.index5 ul li:last-child a {
    height: 100%;
}
section.index5 ul li:last-child a::before {
    content: "";
    background: #fff;
    height: 100%;
}
section.index5 ul li:last-child a span {
    color: #525252;
    font-size: 20px;
    line-height: 35px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}
section.index5 ul li:last-child a:hover::before {
    background: #186dc1;
}
section.index5 ul li:last-child a:hover span {
    opacity: 1;
    color: #fff;
}
.width .txt_area_center p {
	text-align:center;
}
.txt_area_center p>img {
	width:500px;
	margin:0 auto 3%;
}
.qa-6 {
	margin:0 auto 3%;
    border-bottom: 2px solid #1a3e5c;
}

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

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

.qa-6 summary::before {
    color: #1a3e5c;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 8px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #1a3e5c;
    border-right: 3px solid #1a3e5c;
    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;
    transition: transform .5s, opacity .5s;
}

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

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

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

article.page-body {
    margin-bottom: 5%;
}
section.page-head {
    position: relative;
    max-height: 550px;
    overflow: hidden;
}
section.page-head h1,section.page-head p.title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    text-align: center;
    color: #1A3E5C;
    font-size: 30px;
    font-family: 'Noto Serif JP', serif;
    background: #ffffffb5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 30px;
	border-radius: 2px;
	letter-spacing: 1px;
}
section.page-head h1 span,section.page-head p.title span {
    display: block;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 60px;
    margin: -5px auto 0;
    -webkit-filter: drop-shadow(5px 5px 2px rgb(226 226 226));
            filter: drop-shadow(5px 5px 2px rgb(226 226 226));
}
section.page-head.cat h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
}
section.page-head.cat h1 span {
    font-family: 'Noto Serif JP', serif;
}
div.floatr p.float {
    float: right;
    width: 47%;
    margin: 0 0 10px 3%;
}
div.floatl p.float {
    float: left;
    width: 47%;
    margin: 0 3% 10px 0;
}
p.float.f30 {
	width: 30%!important;
}
div.floatr30 p.float {
    float: right;
    width: 30%;
    max-width: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 10px 3%;
    -webkit-filter: drop-shadow(5px 5px 2px rgb(187 187 187));
            filter: drop-shadow(5px 5px 2px rgb(187 187 187));
}
.title5 {
    text-align: center;
    padding-top: 10%;
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 0 auto 30px;
	position: relative;
}
.title5::before {
    content: "";
    width: 0;
    height: 0;
    border-top: solid 25px #1A3E5C;
    border-right: solid 25px transparent;
    border-bottom: solid 25px transparent;
    border-left: solid 25px transparent;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    margin: auto;
}
.title6 {
    display: block;
    background: #1A3E5C;
    font-size: 30px;
    width: 100%;
    margin: 5% -10px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
    font-weight: bold;
	color:#fff;
    letter-spacing: 2px;
    border-radius: 2px;
}
.title7 {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 8% auto 5%;
    font-size: 35px;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 20px;
    letter-spacing: 2px;
    border-radius: 2px;
    color: #666666;
    background:#fbff8b;
    text-align: center;
}
.title8 {
    border-left: 5px solid #1A3E5C;
    padding: 5px;
    border-bottom: 1px solid#1A3E5C;
    width: calc(100% + 10px);
    margin: 5% -10px 30px;
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #666666;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.title9 {
    color: #1A3E5C;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 23px;
	margin: 15px auto 10px;
}
.title10 {
    margin: 3% auto 10px;
    font-size: 20px;
}
.title10 span.bbox {
    display: block;
    background: #1A3E5C;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 5px;
    font-size: 90%;
    border-radius: 4px;
    margin: 0 -5px;
}
.title10 span:last-child {
    display: block;
    font-size: 70%;
    color: #1A3E5C;
}

ul.col2 {
}
ul.col2 li {
    width: calc(100% / 3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
}
ul.col2 li:nth-child(4),ul.col2 li:nth-child(5) {
    width: 50%;
}
ul.col2 li a {
    display: block;
    position: relative;
}
ul.col2 li:nth-child(4) a,ul.col2 li:nth-child(5) a {
    height: 300px;
    overflow: hidden;
}
ul.col2 li a::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    position: absolute;
    background: #0000007a;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
ul.col2 li a > span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-weight: bold;
    font-size: 27px;
    letter-spacing: 2px;
    -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0));
    filter: drop-shadow(3px 3px 2px rgb(0 0 0));
}
ul.col2 li a > span > span {
    display: block;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    border-top: 1px solid #fff;
    margin-top: 10px;
    font-size: 25px;
    padding-top: 8px;
    letter-spacing: 1px;
}
ul.col2 li a:hover::before {
    padding-top: 0;
}
ul.flow {
}
ul.flow li {
    display: inline-block;
    background: #ddd;
    width: 32%;
    margin-right: 2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 15px 15px 1px;
    position: relative;
    margin-bottom: 3%;
}
ul.flow li:nth-child(3n+3),ul.flow li:last-child {
    margin-right: 0;
}
ul.flow li::before {
    content: "";
    width: 0;
    height: 0;
    border-top: solid 20px transparent;
    border-right: solid 20px transparent;
    border-bottom: solid 20px transparent;
    border-left: solid 20px #ddd;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
}
ul.flow li:last-child::before {
    display: none;
}
ul.flow li img {
    margin: 0 auto;
    width: 70%;
    max-width: 100px;
}
ul.flow li h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1A3E5C;
    font-weight: bold;
    letter-spacing: 1px;
}
p.tolink1 {
    margin: 5% auto;
}
p.tolink1 a {
    display: block;
    margin: 0 auto;
    width: 60%;
    max-width: 300px;
    -webkit-box-shadow: 3px 3px 10px 0px rgb(0 0 0 / 25%);
            box-shadow: 3px 3px 10px 0px rgb(0 0 0 / 25%);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
p.tolink1 a:hover {
    -webkit-box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 35%);
            box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 35%);
}
ul.reform1 {
    margin:5% auto 0;
}
ul.reform1 li {
    width: 30%;
    margin-right: 5%;
}
ul.reform1 li:last-child {
    margin-right: 0;
}
ul.reform1 li h3 {
    text-align: center;
    background: #186dc1;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
ul.reform2 {
    margin: 5% auto 0;
}
ul.reform2 li {
    width: 20%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
}
ul.reform2 li h3 {
    text-align: center;
    background: #186dc1;
    color: #fff;
    padding: 8px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
table.about {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}
table.about tr {
    border-top: 1px solid #1A3E5C;
}
table.about tr:last-child {
    border-bottom: 1px solid;
}
table.about th {
    background: #1A3E5C;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0;
    width: 230px;
    border-bottom: 1px solid;
    text-align: center;
    letter-spacing: 3px;
}
table.about tr:last-child th {
    border-bottom: unset;
}
table.about td {
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1.5px;
    border-right: 1px solid #1A3E5C;
    line-height: 30px;
}
table.about td a {
    display: inline-block;
}
table.about td a:hover {
    color: #1A3E5C;
}
div.access iframe {
    width: 100%;
    max-width: 1000px;
    margin: 5% auto;
    display: block;
}
section.con-form table {
    width: 100%;
    margin:0 auto;
    max-width:1000px;
}
section.con-form tr {
    border-bottom: 1px solid #1A3E5C;
}
section.con-form tr:first-child {
    border-top: 1px solid #1A3E5C;
}
section.con-form th {
    width: 230px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
    background: #1A3E5C;
    border-bottom: 1px solid #fff;
    vertical-align: top;
    letter-spacing: 1px;
	color:#fff;
}
section.con-form th p {
	color:#fff;
}
section.con-form tr:last-child th {
    border-bottom:1px solid #1A3E5C;
}
section.con-form th span {
    color: #F28C28;
    padding-left: 5px;
    font-size: 14px;
}
section.con-form td {
    border-right: 1px solid #1A3E5C;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}
section.con-form td span{
    line-height:28px;
	letter-spacing: 0.5px;
}
section.con-form td span.rei {
    display: block;
    font-size: 14px;
}
div.wpcf7 td span.wpcf7-list-item {
    margin: 0 1em 0 0;
}
div.wpcf7 td input.wpcf7-text {
    height:30px;
    background:#fff;
    border: 1px solid #767676;
    color: #525252;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    width: 40%;
    min-width: 300px;
}
div.wpcf7 td textarea.wpcf7-textarea {
    width: 100%;
    background:#efefef;
    color: #525252;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 16px;
}
section.con-form form > p{
    text-align:center;
}
div.wpcf7 p input.wpcf7-submit{
    padding: 10px 18px 10px 23px;
    background: transparent;
    background: #1A3E5C;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-size: 18px;
    font-weight: normal;
    border-radius: 5px!important;
    color: #fff;
    margin-top: 50px;
    letter-spacing:5px;
    margin-left: 72px;
}
div.wpcf7 p input.wpcf7-submit:hover{
    background: #F28C28;
    color:#525252;
    cursor: pointer;
}
.wpcf7 form .wpcf7-response-output {
    border: none!important;
}

ul.insu {
    font-size: 0;
    margin: 2% auto;
}
ul.insu li {
    display: inline-block;
    width: 25%;
    overflow: hidden;
}
ul.insu li img {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.insu li a:hover img {
    -webkit-transform: rotate(5deg) scale(1.1);
        -ms-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
}

div.pindex {
    width: 80%;
    max-width: 700px;
    margin: 5% auto 0;
    border: 5px solid #186dc1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    border-radius: 10px;
    text-align: center;
}
div.pindex > span {
    display: inline-block;
    font-size: 23px;
    font-weight: 500;
    color: #186dc1;
}
div.pindex label span {
    display: inline-block;
    font-size: 16px;
    padding-left: 8px;
    cursor: pointer;
}
div.pindex label span span {
    display: none;
}
div.pindex label span::before {
    content: "[";
}
div.pindex label span::after {
    content: "]";
}
div.pindex label:hover span {
    color: #186dc1;
}
input#ilabel {
    display: none;
}
#ilabel:checked ~ .i-btn span {
    font-size: 0;
}
#ilabel:checked ~ .i-btn span span {
    display: inline-block;
    font-size: 16px;
}
div.pindex input:checked ~ ul {
    display:none;
}
div.pindex > ul > li {
    text-align: left;
    list-style: decimal;
    font-size: 120%;
    margin-left: 20px;
}
div.pindex > ul > li a {
    display: block;
    font-size: 17px;
    padding-top: 5px;
}
div.pindex > ul > li a:hover {
    color: #186dc1;
}
div.pindex > ul > li ul {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
}
div.pindex > ul > li ul li {
    list-style: outside;
}
div.pindex > ul > li ul li a {
    font-size: 16px;
}

ul.col3 {
    margin: 3% auto;
}
ul.col3 li {
    width: 30%;
    margin-right: 5%;
    background: #fbfae2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3%;
    margin-bottom: 3%;
}
ul.col3 li:nth-child(3n),ul.col3 li:last-child {
    margin-right: 0;
}
ul.col3 li h4 {
    text-align: center;
    color: #186dc1;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2%;
}

ul.saigai {
    margin: 3% auto;
}
ul.saigai li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
}
ul.saigai li:nth-child(even) {
    margin-right: 0;
}
ul.saigai li:nth-last-child(-n+3) {
    width:30%;
    margin-right:5%;
}
ul.saigai li:last-child {
    margin-right: 0;
}
ul.saigai li img {
    max-width: 350px;
    margin: 0 auto;
    width: 70%;
}
ul.saigai li h3 {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f3f953), color-stop(50%, transparent));
    background: -o-linear-gradient(bottom, #f3f953 50%, transparent 50%);
    background: linear-gradient(0deg, #f3f953 50%, transparent 50%);
    text-align: center;
    border-radius: 3px;
    padding: 5px 0;
    margin-bottom: 2%;
    font-size: 23px;
    letter-spacing: 5px;
    font-weight: bold;
}

ul.con2 {
    margin: 3% auto;
}
ul.con2 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul.con2 li:nth-child(even) {
    margin-right: 0;
}
ul.con2 li h3 {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #186dc1;
    margin-bottom: 3%;
}
ul.con2 li h3 span {
    display: block;
    font-size: 70%;
}
ul.con2 li h4 {
    background: #fbff8b;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 2%;
}

table.souba {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}
table.souba th {
    width: 160px;
    background: #72d0e9;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}
table.souba td {
    background: #feffc4;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    text-align: right;
}
table.souba tr:first-child th {
    background: #186dc1;
    font-size: 18px;
    font-weight: bold;
}
table.souba tr:first-child td {
    text-align: center;
    background: #d9b31c;
    color: #fff;
    font-size: 18px;
    letter-spacing: 5px;
    font-weight: bold;
}
ul.listc {
    margin: 2% auto;
}
ul.listc li {
    position: relative;
    padding-left: 2rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: #186dc1;
}
ul.listc li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.4em;
    left: 3px;
    width: 13px;
    height: 8px;
    border-left: 3px solid #186dc1;
    border-bottom: 3px solid #186dc1;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.ttl1 {
	padding:10px 15px;
	background: #F28C28;
	color:#fff;
	font-weight:bold;
	font-size:24px;
	margin-bottom:3%;
	text-align:center;
}
.list1 {
	background:#ffeddb;
	padding:15px;
}
.list1 li {
	border-bottom:dashed 2px #666;
	padding-bottom:5px;
	margin-bottom:5px;
}
.list1 li:last-of-type {
	margin-bottom:0px;
}
.list1 li span {
	margin-right:10px;
	color:#F28C28;
	font-weight:bold;
}
.price_txt {
	margin:3% auto;
	width:fit-content;
	background: #F28C28;
	padding:10px 20px;
	border-radius:20px;
	font-weight:bold;
	color:#fff;
	font-size:20px !important;
}
.ttl1.navy {
	padding:10px 15px;
	background: #1A3E5C;
	color:#fff;
	font-weight:bold;
	font-size:24px;
	margin-bottom:3%;
	text-align:center;
}
.list1.navy {
	background:#bdd5e9;
	padding:15px;
}
.list1.navy li {
	border-bottom:dashed 2px #666;
	padding-bottom:5px;
	margin-bottom:5px;
}
.list1.navy li:last-of-type {
	margin-bottom:0px;
}
.list1.navy li span {
	margin-right:10px;
	color:#1A3E5C;
	font-weight:bold;
}
.price_txt.navy {
	margin:3% auto;
	width:fit-content;
	background: #1A3E5C;
	padding:10px 20px;
	border-radius:20px;
	font-weight:bold;
	color:#fff;
	font-size:20px;
}
.list2 {
	padding:15px;
	box-shadow:rgba(0,0,0,.25)0 0 4px;
}
.list2 li {
	border-bottom:dashed 2px #666;
	padding-bottom:5px;
}
.list2 li span {
	margin-right:10px;
	color:#1A3E5C;
	font-weight:bold;
}
.table_area {
	overflow-x:scroll;
}
.table1 {
	width:100%;
	min-width:750px;
}
.table1 tr {
	border:1px solid #1A3E5C;
}
.table1 th {
	color:#fff;
	font-weight:bold;
	font-size:18px;
	text-align:center;
	padding:10px;
	background:#1A3E5C;
	width:calc(100% / 3);
}
.table1 td {
	color:#1A3E5C;
	font-weight:bold;
	padding:10px;
	border-right:1px solid #1A3E5C;
	text-align:center;
	width:calc(100% / 3);
}



/*------------------------------------*\
    アーカイブ
\*------------------------------------*/
section.info ul {
    max-width: 1000px;
    margin: 8% auto 0;
}
section.info li {
    margin-bottom: 3%;
}
section.info li a {
    display: block;
    font-size: 0;
}
section.info li a p.date {
    width: 120px;
    background: #F28C28;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    margin-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
    vertical-align: top;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.info li a:hover p.date {
    background: #1A3E5C;
}
section.info li a p.date img {
    width: 60%;
    margin: 0 auto;
}
section.info li a p.date span {
    color: #fff;
}
section.info li a > div {
    display: inline-block;
    width: calc(100% - 130px);
}
section.info li a > div h2 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
section.info li a:hover h2 {
    color: #1A3E5C;
}
section.info li a > div p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 4.5em;
}
section.info li a > div p:last-child {
    font-size: 14px;
    line-height: normal;
    text-align: right;
    color: #1A3E5C;
}
nav.archive-nav {
    font-size: 0;
	border-top: 1px solid;
	margin-top: 8%;
}
nav.archive-nav span {
    display: inline-block;
    width: 50%;
}
nav.archive-nav span.next {
    text-align: right;
}
nav.archive-nav span a {
    display: block;
    padding: 10px 0;
    margin: 8% auto 10%;
}
nav.archive-nav span a:hover {
    color: #186dc1;
}
section.articlebody h1 {
    font-size: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
}
section.articlebody p.date {
    border-top: 2px solid;
    text-align: right;
    margin-bottom: 3%;
}
section.articlebody p img.float {
    width: 47%;
    float: left;
    margin: 0 3% 10px 0;
	height: auto;
}

section.articlebody img {
	height: auto!important;
}
section.articlebody h2 {
    background: #1A3E5C;
    font-size: 28px;
    margin: 5% auto 3%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    color: #fff;
    border-radius: 2px;
}
section.articlebody h3 {
    border-left: 5px solid #186dc1;
    padding: 5px;
    border-bottom: 1px solid#186dc1;
    margin: 3% auto 2%;
    font-size: 26px;
}
section.articlebody h4 {
    margin: 3% auto 10px;
    font-size: 25px;
    position: relative;
}
section.articlebody h4::before {
    content: "";
    width: 0;
    height: 0;
    border-left: solid 13px #f3f953;
    border-right: solid 13px transparent;
    border-bottom: solid 13px transparent;
    border-top: solid 13px transparent;
    position: absolute;
    left: -15px;
    top: 5px;
}
section.articlebody h5 {
    font-size: 23px;
    font-weight: bold;
    color: #186dc1;
    margin: 2% auto 10px;
}
section.articlebody h6 {
    font-size: 23px;
    font-weight: bold;
    margin: 2% auto 10px;
}

section.category {
    margin: 8% auto;
    border-top: 3px solid #186dc1;
    border-bottom: 3px solid #186dc1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
}
section.category > span {
    display: inline-block;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0;
}
section.category li {
    display: inline-block;
}
section.category li a {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 5px;
}
section.category li a:hover {
    color: #186dc1;
}
section.blog > ul {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}
section.blog > ul li {
    display: inline-block;
    width: 30%;
	margin-right: 5%;
	margin-bottom: 3%;
}
section.blog > ul li:nth-child(3n+3),section.blog > ul li:last-child {
    margin-right: 0;
}
section.blog > ul li a {
	display: block;
}
section.blog > ul li a h2 {
    background: #186dc1;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 3px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 7px 0;
}
section.blog > ul li a > p:nth-of-type(1) {
    position: relative;
    margin-bottom: 3px;
}
section.blog > ul li a > p:nth-of-type(1)::before {
    content: "";
    padding-top: 100%;
    width: 100%;
    display: block;
}
section.blog > ul li a p img {
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
}
section.blog > ul li a > h3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    letter-spacing: 1px;
}
section.blog nav {
    margin: 5% auto 10%;
    text-align: center;
}
section.blog nav h2 {
    display: none;
}
section.blog nav div.nav-links span,section.blog nav div.nav-links a {
    background: #525252;
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 8px;
    margin-right: 1%;
    margin-top: 10px;
    font-weight: bold;
}
section.blog nav div.nav-links span:last-child, section.blog nav div.nav-links a:last-child {
    margin-right: 0;
}
section.blog nav div.nav-links a:hover {
    background:#186dc1;
}

div#fancybox-title {
    color: #fff;
}
.voice-box p,
.voice-box p>b {
	font-size:18px;
}















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

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

div.menu {
    display: none;
}
div.menur {
    display: block;
}
div.menur > p {
    position: fixed;
    width: 100%;
    background: #fff;
	left: 0;
	top: 0;
	z-index: 1;
}
div.menur > p a.logo {
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 10px auto 10px 10px;
	font-weight: bold;
	height:60px;
}
div.menur > p a img {
	display: inline-block;
	width: 250px;
}
.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: #1A3E5C;
    border-radius: 3px;
}
.r-btn span,
.r-btn span:before,
.r-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.r-btn span:before {
    bottom: 8px;
}
.r-btn span:after {
    top: 8px;
}
#label1:checked ~ .r-btn span {
    background-color: #fff0;
}
#label1:checked ~ .r-btn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
#label1 {
    display: none;
}
.hidden_box .hidden_show {
    height: 10px;
    padding: 0 10px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: left;
	margin: 0 auto 0;
	position: fixed;
	background: #fff;
	left: 0;
	top: 80px;
	-webkit-box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 73%);
	        box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 73%);
}
.hidden_show ul.nav1-a {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: calc(100% - 70px);
}
.hidden_box input:checked ~ .hidden_show {
    padding: 10px;
    height: auto;
    opacity: 1;
    
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    max-height: 100%;
    overflow: scroll;
}
.hidden_box input:checked ~ .hidden_show ul.nav1-a {
	opacity: 1;
	height: auto;
}
.hidden_show ul.nav1-a li{
	border-bottom: 1px solid;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 0;
}
.hidden_show ul.nav1-a li a{
	display: block;
	padding: 6px 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing: 1px;
	font-size:15px;
}
.hidden_show ul.nav1-a li a:first-child {
	padding: 7px 5px;
	font-size:16px;
}
.hidden_show ul.nav1-a li:last-child{
	border-bottom:unset;
}

ul.sns li {
    padding: 10px 15px;
}
ul.sns li p {
    font-size: 14px;
    line-height: normal;
}
ul.sns li p:first-child {
    font-size: 20px;
    margin-bottom: 15px;
}
ul.sns li p img {
    max-width: 50px;
    margin: 0 auto 13px;
}
ul.sns li p a {
    font-size: 15px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    padding: 8px;
}
section.sitemap li a {
    padding: 10px 15px;
}
footer#colophon {
    font-size: 14px;
}







/*------------------------------------*\
    トップ
\*------------------------------------*/
main {
    margin-top: 80px;
}
header.index1 div {
    left: 5%;
}
.title1, .title2, .title3 {
    font-size: 80px!important;
    padding-top: 30px;
    margin-bottom: 30px!important;
}
.title3 {
    font-size: 60px!important;
	margin-bottom: 20px!important;
}
.title1 span, .title2 span, .title3 span,.title4 span {
    font-size: 40px;
}
.title3 span {
    font-size: 30px;
}
.title4 {
    padding-top: 30px;
    font-size: 80px;
	margin-bottom: 30px!important;
}
section.index2 div p b {
    font-size: 20px;
    margin-bottom: 10px;
}
section.index2 div p a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index3 > div > div a p {
    font-size: 30px;
}
section.index3 > div > div a p span {
    font-size: 38px;
    padding: 8px 40px 0;
}
section.index3 > div > div a::before, section.index3 ul li a::before {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index3 ul li a p {
    font-size: 20px;
    letter-spacing: 1px;
}
section.index3 ul li a p span {
    padding-top: 5px;
    font-size: 20px;
}
section.index4 li a span:first-child {
    font-size: 15px;
}
section.index4 > p a, p.tolink2 a {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index5 ul li a::before {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.index5 ul li a span {
    font-size: 25px;
}
section.index5 ul li:last-child a span {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
	letter-spacing: 2px;
}

/*------------------------------------*\
    下層ページ
\*------------------------------------*/
section.page-head {
    max-height: 400px;
}
section.page-head h1 span, section.page-head p.title span {
    font-size: 50px;
}
.title5 {
    font-size: 40px;
    margin: 0 auto 20px;
}
.title5::before {
    top: 28%;
}
.title6 {
    font-size: 25px;
    margin: 8% -10px 20px;
}
.title7 {
    font-size: 30px;
    padding: 8px 15px;
}
.title8 {
    font-size: 23px;
    margin: 5% -10px 20px;
}
.title9 {
    font-size: 21px;
    margin: 10px auto 8px;
}
.title10 {
    font-size: 18px;
}

ul.col2 li:nth-child(4) a, ul.col2 li:nth-child(5) a {
    height: 200px;
}
ul.col2 li a::before {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.col2 li a > span {
    font-size: 25px;
}
ul.flow li img {
    max-width: 70px;
}
ul.flow li h3 {
    font-size: 18px;
    letter-spacing: 0.5px;
}
ul.flow li p {
    line-height: 25px;
}
p.tolink1 a {
	max-width:250px;
	-webkit-transition:unset;
	-o-transition:unset;
	transition:unset;
}
ul.reform1 li {
    width: 32%;
    margin-right: 2%;
}
ul.reform1 li h3 {
    font-size: 20px;
}
ul.reform1 li p {
    line-height: 25px;
}
table.about th {
    width: 190px;
    padding: 15px 0;
}
table.about td {
    padding: 15px;
    line-height: 28px;
}
div.access iframe {
    height: 400px;
}
section.con-form th {
    width: 190px;
    padding: 18px 10px;
}
section.con-form td {
    padding: 18px 17px;
}
div.wpcf7 p input.wpcf7-submit {
    font-size: 17px;
    margin-top: 30px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

div.pindex {
    width: 60%;
    min-width: 564px;
}
div.pindex > span {
    font-size: 20px;
}
div.pindex label span,#ilabel:checked ~ .i-btn span span {
    font-size: 15px;
}
div.pindex > ul > li {
    margin-left: 22px;
}
div.pindex > ul > li a {
    font-size: 16px;
}
div.pindex > ul > li ul li a {
    font-size: 15px;
}

ul.col3 li {
    width: 32%;
    margin-right: 2%;
}
ul.col3 li h4 {
    font-size: 17px;
}

ul.saigai li h3 {
    letter-spacing: 3px;
    font-size: 20px;
}
ul.con2 li h4 {
    font-size: 20px;
}


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

section.info li a p.date {
    width: 100px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
section.info li a p.date img {
    width: 50%;
}
section.info li a p.date span {
    font-size: 14px;
}
section.info li a > div {
    width: calc(100% - 110px);
}
section.info li a > div h2 {
    font-size: 18px;
    margin-bottom: 3px;
}
section.info li a > div p {
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.5px;
}
section.info li a > div p:last-child {
    font-size: 13px;
    margin-bottom: 0;
}
nav.archive-nav span a {
    font-size: 15px;
}
section.articlebody h1 {
    font-size: 25px;
}
section.articlebody h2, section.articlebody h3, section.articlebody h4 {
    font-size: 23px;
}
section.articlebody h4::before {
    border-left: solid 10px #f3f953;
    border-right: solid 10px transparent;
    border-bottom: solid 10px transparent;
    border-top: solid 10px transparent;
    left: -13px;
    top: 7px;
}
section.articlebody h5,section.articlebody h6 {
    font-size: 20px;
    margin-bottom: 8px;
}
section.blog > ul li {
    width: 32%;
    margin-right: 2%;
}







	

	

}

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

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

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

ul.sns li {
    display: block;
    width: 100%;
    border-left: unset;
    border-bottom: 1px dashed;
}
ul.sns li:last-child {
    border: unset;
}
ul.sns li p a {
    font-size: 14px;
    padding: 10px 15px;
    margin: 10px auto 0;
}
section#foot iframe {
    height: 300px;
}
section.sitemap > div > div > p {
    letter-spacing: 0;
}
footer#colophon br {
    display: block;
}






/*------------------------------------*\
    トップ
\*------------------------------------*/	
p.scroll {
    display: none;
}
	header.index1 {
		height:300px;
	}
	p.mv {
		height:300px;
	}
	header.index1 div {
		background:none;
	}

.title1, .title2, .title3 {
    font-size: 58px!important;
    padding-top: 20px;
    margin-bottom: 20px!important;
}
.title3 {
	margin-bottom: 15px!important;
}
.title1 span, .title2 span, .title3 span,.title4 span {
    font-size: 30px;
	letter-spacing: 2px;
}
.title4 {
    padding-top: 20px;
    font-size: 40px;
	margin-bottom: 15px!important;
}
.title4 span {
	bottom: -10px;
}
header.index1 div {
    left: 0;
    right: 0;
    margin: auto;
    padding: 45px 10px;
}
header.index1 div h1 {
    font-size: 18px;
	width:fit-content;
	margin:0 auto 10px;
	position:relative;
}
	header.index1 div h1:before {
		content:'';
		position:absolute;
		left:-80px;
		bottom:-15px;
		width:80px;
		height:80px;
		background:url(https://nanyo-tantei.jp/wp-content/uploads/2025/09/icon_search.png);
		background-position:center;
		background-repeat:no-repeat;
		background-size:contain;
	}
header.index1 div h1 span:nth-child(1) {
    width:180px;
	margin-bottom:3%;
}
header.index1 div h1 span:nth-child(2) {
    font-size: 18px;
}
header.index1 div p {
    font-size: 20px;
}
header.index1 > p {
    position: relative;
}
header.index1 > p::before {
    content: "";
    position: absolute;
    width: 100%;
    background: #00000070;
    height: 100%;
    left: 0;
    top: 0;
}
section.index2 {
    /* display: block; */
}
section.index2 div {
    width: 100%;
    display: block;
    margin-top: 0;
}
section.index2 > p {
    display: block;
    width: 100%;
    margin-bottom: 60px;
    margin-top: 0;
}
section.index2 > p:nth-of-type(2) {
    order: 1;
}
section.index2 > p img:nth-child(1) {
    margin: 30px 0 0 auto;
}
section.index2 > p img:nth-child(2) {
    left: 0;
    bottom: -30px;
}
section.index2 > p:nth-of-type(2) img:nth-child(1) {
    margin: 30px 0 auto 0;
}
section.index2 > p:nth-of-type(2) img:nth-child(2) {
    left: auto;
    right: 0;
}
section.index3 > div > div {
    display: block;
    width: 100%;
}
section.index3 ul {
    display: block;
    width: 100%;
}
section.index3 > div > div a p {
    font-size: 25px;
}
section.index3 > div > div a p span {
    font-size: 33px;
    padding: 5px 40px 0;
}
section.index3 ul li a p {
    font-size: 18px;
}
section.index3 ul li a p span {
    font-size: 18px;
}
section.index4 li a {
    font-size: 15px;
}
section.index4 li a span:first-child {
    font-size: 14px;
    padding-right: 5px;
}
section.index4 > p a, p.tolink2 a {
    width: 160px;
    margin: 20px auto 10px;
	font-size: 15px;
}
section.index5 ul li {
    width: 50%;
}
section.index5 ul li:last-child {
    width: 100%;
}
section.index5 ul li:last-child a::before{
	background: #186dc1;
}
section.index5 ul li:last-child a span {
    position: relative;
    width: 100%;
    display: block;
    padding: 10px 0;
	color:#fff;
}
section.index5 ul li:last-child a span br {
    display: none;
}

/*------------------------------------*\
    下層ページ
\*------------------------------------*/
section.page-head {
	max-height:300px;
}
section.page-head h1, section.page-head p.title {
    font-size: 25px;
	padding: 15px 20px;
}
section.page-head h1 span, section.page-head p.title span {
    font-size: 35px;
	margin: 0 auto;
}
div.floatr p.float, div.floatl p.float {
    float: unset;
    width: 100%!important;
    margin:0 auto 10px;
}
div.floatr30 p.float {
	width:40%;
}
.title5 {
    font-size: 28px;
    padding-top: 70px;
    margin: 0 auto 20px;
}
.title5::before {
    top: 32px;
}
.title6 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.title7 {
    font-size: 25px;
    letter-spacing: 1px;
	margin: 10% auto 8%;
}
.title8 {
    font-size: 20px;
    width: 104%;
    margin: 5% -2% 10px;
    padding-left: 1%;
    letter-spacing: 0.5px;
}
.title9 {
    font-size: 19px;
    margin: 10px auto 5px;
}
.title10 {
    font-size: 17px;
}

ul.col2 li,ul.col2 li:nth-child(4), ul.col2 li:nth-child(5) {
    width: 100%;
}
ul.col2 li a,ul.col2 li:nth-child(4) a, ul.col2 li:nth-child(5) a {
    height: 150px;
    overflow: hidden;
}
ul.col2 li a > span {
    font-size: 23px;
}
ul.col2 li a > span > span {
    font-size: 20px;
    margin-top: 5px;
    padding-top: 4px;
}
ul.flow li,ul.flow li:nth-child(3n+3) {
    width: 48%;
    margin-right: 4%;
    padding: 10px 10px 1px;
}
ul.flow li:nth-child(even) {
    margin-right: 0;
}
ul.flow li:last-child {
    width: 100%;
    margin-right: 0;
}
ul.flow li::before {
    border-top: solid 15px transparent;
    border-right: solid 15px transparent;
    border-bottom: solid 15px transparent;
    border-left: solid 15px #ddd;
}
ul.flow li img {
    max-width: 55px;
}
ul.flow li h3 {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 5px;
}
ul.reform1 li {
    width: 100%;
    margin: 0 auto 10px;
}
ul.reform2 li {
    width: calc(100% / 3);
    padding: 1.5px 3px;
}
ul.reform2 li h3 {
    font-size: 15px;
}
table.about tr, table.about tr:last-child {
    border: unset;
}
table.about th {
    display: block;
    width: 100%;
    padding: 8px 0;
    border: unset;
}
table.about td {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: unset;
    line-height: normal;
	letter-spacing: 0.5px;
}
table.about td a {
    font-size: 15px;
    line-height: normal;
}
div.access iframe {
    height: 300px;
}
section.con-form tr,section.con-form tr:first-child {
    border: unset;
}
section.con-form th {
    display: block;
    width: 100%;
    border: unset;
    text-align: center;
    padding: 10px 0;
}
section.con-form td {
    display: block;
    width: 100%;
    border: unset;
    padding: 10px 0;
}
section.con-form td span {
    font-size: 15px;
    line-height: 26px;
}
div.wpcf7 td input.wpcf7-text {
    min-width: unset;
    width: 100%;
    max-width: 450px;
}

div.pindex {
    width: 100%;
    min-width: unset;
    max-width: 500px;
}
div.pindex > span {
    font-size: 18px;
}
div.pindex label span, #ilabel:checked ~ .i-btn span span {
    font-size: 14px;
}
div.pindex > ul > li a {
    padding-top: 3px;
}
div.pindex > p {
    margin-bottom: 3px;
}

ul.insu li {
    width: calc(97% / 4);
    margin-right: 1%;
}
ul.insu li:last-child {
    margin-right: 0;
}

ul.col3 li {
    width: 48%;
    margin-right: 4%;
}
ul.col3 li img {
    max-width: 150px;
    margin: 0 auto;
}
ul.col3 li:nth-child(2) {
    margin-right: 0;
}
ul.col3 li:nth-child(3) {
    width: 100%;
}
ul.col3 li h4 {
    font-size: 16px;
}

ul.saigai li,ul.saigai li:nth-last-child(-n+3) {
    width: 100%;
    margin: 0 auto 3%;
}

ul.con2 li {
    width: 100%;
    margin: 0 auto 3%;
}
ul.con2 li h3 {
    font-size: 20px;
}
ul.con2 li h4 {
    font-size: 18px;
}
table.souba th {
    padding: 5px 0;
    font-size: 15px;
}
table.souba td {
    padding: 5px;
    font-size: 15px;
}
table.souba tr:first-child th,table.souba tr:first-child td {
    font-size: 16px;
}
ul.rbreak li {
    width: 100%;
    margin: 0 auto 3%;
}



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

section.info li a p.date {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 0 auto;
}
section.info li a p.date img {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
}
section.info li a p.date span {
    vertical-align: middle;
}
section.info li a > div {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 10px;
}
section.info li a > div h2 {
    font-size: 17px;
    margin-bottom: 0;
}
section.info li a > div p {
    margin-bottom: 0;
}
section.articlebody {
    margin: 0 auto 10%;
}
section.articlebody h1 {
    font-size: 20px;
    padding: 5px;
}
section.articlebody h2, section.articlebody h3 {
    font-size: 18px;
}
section.articlebody h4 {
    font-size: 17px;
    font-weight: bold;
}
section.articlebody h4::before {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: unset;
    left: -18px;
    top: -6px;
    background: #f3f953;
    z-index: -1;
}
section.articlebody h5, section.articlebody h6 {
    font-size: 16px;
    margin: 10px auto 5px;
}
section.articlebody p img.float {
    float: unset;
    width: 100%;
    margin: 0 auto 10px;
}
section.category > span,section.category li a {
    font-size: 14px;
    padding: 10px 3px;
}
section.blog > ul li,section.blog > ul li:nth-child(3n+3) {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 15px;
}
section.blog > ul li:nth-child(even),section.blog > ul li:last-child {
    margin-right: 0;
}
section.blog > ul li a h2 {
    font-size: 16px;
	padding: 5px 0;
	letter-spacing: 1px;
}
section.blog > ul li a > h3 {
    font-size: 15px;
    letter-spacing: 0.5px;
}
}
@media screen and (max-width: 1000px) {
.hidden_show ul.nav1-a li a:first-child {
    padding: 7px 5px;
    font-size: 16px;
}
}

@media screen and (max-width: 1000px) {
.hidden_show ul.nav1-a li a:first-child {
    padding: 6px 5px;
    font-size: 15px;
}
}

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

