@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* 固定ヘッダーの実寸に合わせて調整 */
:root { --header-h: 160px; }

/* 任意：スムーススクロール */
html { scroll-behavior: smooth; }

/* コンテンツ側のID要素にだけ適用（テーマに合わせてラッパーは調整） */
main [id], .entry-content [id]{
  scroll-margin-top: var(--header-h);
}

/* 
 default Style [
----------------------------------------------------------- */
html {
	height:100%;
	margin-bottom:1px;
	text-align: center;
	overflow-y:scroll;
}

main {
  display: block;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,th,td,figure {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight:normal;
    transform: rotate(.03deg);
}

p {
	margin: 0;
	color: #000;
	line-height: 1.8;
}

ol,ul {
	list-style:none;
}

ol,ul li {
	list-style: none;
	text-align: left;
}

img { 
	border:0;
	vertical-align: top;
}

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

caption,th {
	text-align:left;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
}

a {
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.red {
	color: #F00;
	font-weight: normal;
}
	
form {
	margin: 0px;
	padding: 0px;
}
    
input[type="submit"]{
	-webkit-appearance: none;
}
	
/**** Clearfix ****/
nav .panel:after, nav#mainNav:after, .newsTitle:after, .bg:after,.post:after, ul.post li:after,nav#mainNav .inner:after{content:""; display: table;clear: both;}
nav .panel,nav#mainNav,.newsTitle,.bg, .post, ul.post li,nav#mainNav .inner{
	zoom: 1;
}

/*
 Base Link Color [
----------------------------------------------------------- */
a {
	color: #000000;
    text-decoration-skip-ink: none;
}

a:hover {
    text-decoration: none;
    color: #999999;
}

a img,
a {
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
		 -o-transition: 0.3s ease-in-out;
		 	transition: 0.3s ease-in-out;
}

a img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1.3s;
	transform: translateY(100px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/*Base*/

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_

パソコン向けスタイルおよび共通スタイルの指定

/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/*==========================================
 body
===========================================*/
body {
    min-width: 100%;
    text-align: center;
    background-color: #FFFFFF;
    width: 100%;
    font-family:'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	z-index: 0;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	width /***/: auto;
　/*IE8のみ適用*/
; 	text-align: center;
}
	
.spImg {
    display: none;
}

/*==========================================
Menu
===========================================*/    
nav.NavMenu {
	position: fixed;	/*表示位置を固定*/
	top: 107px;		/*表示位置を指定*/
	left: 0;	/*表示位置を指定*/
	background: #E8E4E1;
	color: #000;	/*文字色を黒にする*/
	text-align: center;		/*テキストを中央揃え*/
	width: 100%;	/*全幅表示*/
	transform: translateX(100%);	/*ナビを上に隠す*/
	height: calc(100vh - 107px);
	display: inherit;
	z-index: 10;
	overflow-y: auto;
	padding-top: 40px;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateX(0%);
	transition: all 0.6s;	/*アニメーションの時間を指定*/
}
/*トグルを閉じる操作をしたら付与するクラス*/
nav.NavMenu.off{
	transition: all 0.6s;	/*アニメーションの時間を指定*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 29px;
	top: 29px;
	width: 56px;
	height: 56px;
	cursor: pointer;
	z-index: 10;
	background-color: #77AADC;
	border-radius: 10px;
}
 
.Toggle span {
	display: block;
	position: absolute;
	width: 16px;
	border-bottom: solid 2px #FFF;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s ease-in-out;
	left: 19px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
 
.Toggle span:nth-child(1) {
    top: 19px;
}
 
.Toggle span:nth-child(2) {
    top: 27px;
}
 
.Toggle span:nth-child(3) {
    top: 35px;
}
 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
    top: 27px;
	left: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 27px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*==========================================
 ヘッダーのスタイル
===========================================*/
#header_inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 107px;
}

#header_inner h1 {
	display: flex;
	align-items: center;
	font-size: 1.875em;
	font-family: "kozuka-mincho-pr6n", serif;
}

#header_inner div.headerTtl {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	font-size: 16px;
	display: flex;
	align-items: center;
	font-size: 1.875em;
	font-family: "kozuka-mincho-pr6n", serif;
}

#header_inner h1 img,
#header_inner div.headerTtl img {
	width: 74px;
	height: auto;
	margin-right: 12px;
}
  
#header_top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 95px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#header_top ul {
	display: flex;
	align-items: center;
	justify-content:flex-end;
}

#header_top p {
	text-align: left;
	background-image: url(./images/tel.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-size: 0.813em;
	line-height: 1.2;
	font-family: "kozuka-mincho-pr6n", serif;
}

#header_top strong {
	font-size: 2.077em;
	display: block;
}

#header_top ul li {
	font-weight: bold;
	margin-left: 20px;
	font-family: "kozuka-mincho-pr6n", serif;
}

#header_top ul li:first-child a {
	background-color: #00BC3F;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#header_top ul li:last-child a {
	background-color: #0768C8;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#header_top ul li:first-child a img,
#header_top ul li:last-child a img {
	height: auto;
	width: 22px;
	margin-right: 10px;
}

#header_top ul li a:hover {
	background-color: #C1B9B9;
}

header {
	padding-right: 90px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 10!important;
	background-color: #FFFFFF;	
	box-shadow: 0 12px 24px -12px rgb(145 138 138 / 35%);
}

.NavMenu {
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	align-items: center;
}

#spMenu,
#spContact {
	max-width: 100%;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

#spMenu li {
	margin-bottom: 6px;
}

#spMenu li a {
	border-radius: 5px;
	background-color: hsla(0,0%,100%,0.45);
	padding-top: 17px;
	padding-right: 22px;
	padding-bottom: 17px;
	padding-left: 22px;
	display: block;
	text-align: left;
}

#spMenu li a:hover {
	background-color: hsla(190,42%,78%,0.45);
	color: #000000;
}

.NavMenu p {
	font-size: 0.813em;
	line-height: 1.2;
	font-family: "kozuka-mincho-pr6n", serif;
	text-align: left;
	background-image: url(./images/tel.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	margin-top: 16px;
	margin-left: auto;
	margin-right: auto;
	align-self: center;
	display: inline-block;
}

.NavMenu p strong {
	font-size: 2.077em;
	display: block;
}

#spContact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
    margin-bottom: 100px;
}

#spContact li {
	font-weight: bold;
	font-family: "kozuka-mincho-pr6n", serif;
	width: 48%;
	font-size: 0.938em;
}

#spContact li:first-child a {
	background-color: #00BC3F;
	border-radius: 5px;
	height: 45px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#spContact li:last-child a {
	background-color: #0768C8;
	border-radius: 5px;
	height: 45px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#spContact li:first-child a img,
#spContact li:last-child a img {
	height: auto;
	width: 20px;
	margin-right: 8px;
}

#spContact li a:hover {
	background-color: #C1B9B9;
}

.tbbr {
	display: none;
}

.spbr {
	display: none;
}

/*==========================================
 フッターのスタイル
===========================================*/
footer {
    width: 100%;
	}

#page-top {
    position: fixed;
    right: 16px;
    bottom:16px;
}

/*==========================================
Other
===========================================*/
#mainBg {
	margin-top: 107px;
	z-index: 0!important;
	background-image: url(./images/mainimg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	 height: 100vh;
	display: flex;
	flex-direction:column;
	justify-content: center;
}


#mainBg_inner {
	max-width: 1920px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

#mainBg_top {
	max-width: 1524px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#mainBg_top section {
	text-align: left;
}

#mainBg_top section h2 img{
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}

#mainBg_top figure {
	margin-top: -300px;}

#mainBg_top section p {
	text-align: left;
	padding-top: 75px;
	font-size: 1.375em;
	line-height: 1.8;
	padding-bottom: 73px;
}

#mainLink {
	max-width: 1524px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content:flex-end;
}

#mainLink li {
	font-size: 1.750em;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-left: 30px;
}

#mainLink li img {
	width: 60px;
	height: auto;
	margin-right: 12px;
}

#mainLink li a {
	display: block;
	height: 134px;
	border-radius: 10px;
	width: 384px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#mainLink li:first-child a:hover,
#mainLink li:last-child a:hover {
	background-color: #C1B9B9;
}

#mainLink li:first-child a {
	background-color: #00BC3F;
}

#mainLink li:last-child a {
	background-color: #0768C8;
}

#Recovery {
	background-image: url(./images/bg.jpg);
	background-repeat: repeat;
	padding-top: 130px;
	padding-bottom: 130px;
}

#Recovery .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

.tit {
	font-size: 2.500em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
	margin-bottom: 0px;
}

.tit span {
	position: relative;
	background: linear-gradient(transparent 60%, #FFF 60%);
}

.tit2 {
	font-size: 2.500em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
	margin-bottom: 0px;
	color: #0768C8;
	text-align: center;
}

.tit2 span {
	position: relative;
	background: linear-gradient(transparent 60%, #C6E7EE 60%);
}

.fontStyle {
	margin-top: 60px;
	margin-bottom: 60px;
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	background-color: #FFFFFF;
	border-radius: 15px;
	padding-top: 25px;
	padding-bottom: 25px;
	-webkit-box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	text-align: center;
}

.fontStyle2 {
	text-align: left;
}

#Sign {
	padding-top: 65px;
	padding-bottom: 140px;
}

#Sign .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

#Sign ul {
	margin-top: 60px;
	background-color: #EEEEEE;
	border-radius: 20px;
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#Sign ul li {
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	background-image: url(./images/check.png);
	background-repeat: no-repeat;
	background-position: left 12px;
	padding-left: 25px;
	border-bottom: 1px dotted #000000;
	padding-bottom: 20px;
	margin-bottom: 25px;
}


#Sign ul li:last-child {
	border-bottom: 0px dotted #000000!important;
	margin-bottom: 0px!important;
	padding-bottom: 0px!important;
}

div#Worries {
    position: relative;
}

.fontStyle3 {
	font-size: 1.875em;
	font-weight: bold;
	color: #3792EC;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-top: 58px;
	line-height: 1.5;
}

#Worries .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

.fontStyle4 {
	margin-top: 50px;
	margin-bottom: 75px;
}

.titStyle {
	background-color: #AFD6DE;
	font-size: 1.500em;
	font-family: "kozuka-mincho-pr6n", serif;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 50px;
	line-height: 1.5;
}

#Worries ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

#Worries ul li {
	width: calc(33.3% - 0.5em);
    margin-bottom: 50px;
    margin-right: 0.75em;
}

#Worries ul li:nth-child(3n) {
    margin-right: 0;
}

#Worries ul li img {
	border-radius: 15px;
    border-radius: 15px;
	aspect-ratio: 7 / 5;
    object-fit: cover;
}

#Worries ul li dl dt {
	font-size: 1.063em;
	margin-top: 22px;
	font-weight: bold;
	line-height: 1.7;
	height: 65px;
}

#Worries ul li dl dd {
	font-size: 1em;
	line-height: 1.8;
}

#Service {
	background-image: url(./images/bg.jpg);
	background-repeat: repeat;
	padding-top: 130px;
	padding-bottom: 130px;
}

#Service .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

#Service ul {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	margin-top: 87px;
}

#Service ul li {
	width: 31%;
	background-color: #FFFFFF;
	border-radius: 15px;
	-webkit-box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

#Service ul li h3 {
	margin-top: 20px;
	font-size: 1.500em;
	font-weight: bold;
	padding-bottom: 34px;
	font-family: "kozuka-mincho-pr6n", serif;
}

#Service ul li p {
	text-align: left;
	margin-top: 60px;
}

#need {
	padding-top: 80px;
	padding-bottom: 80px;
}


#need .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
}

#need ul {
	margin-top: 50px;
}

#need ul li {
	margin-top: 50px;
	position: relative;
	background-color: #DAECF0;
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
	padding-left: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#need ul li aside {
	position: absolute;
	left: 17px;
	top: -10px;
	margin-bottom: -10px;
}

#need ul li figure {
	max-width: 300px;
	width: 100%;
	margin-left: 25px;
}

#need ul li figure img {
	border-radius: 15px;
}

#need ul li section {
	padding-left: 25px;
}

#need ul li section h3 {
	font-size: 1.250em;
	font-weight: bold;
	color: #0768C8;
	padding-bottom: 20px;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
}

.r_link {
	text-align: right;
	margin-top: 15px;
}

.r_link a {
	color: #0768C8;
	text-decoration: underline;
	background-image: url(./images/yajirushi3.png);
	background-repeat: no-repeat;
	background-position: left 9px;
	padding-left: 15px;
}

.r_link a:hover {
	color: #B5B5B5;
	text-decoration: none;
}

.voiceBlock {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
}

.voiceBlock figure {
	margin-right: 40px;
	max-width: 189px;
	min-width: 189px;
	width: 100%;
}

#Voice {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}


#Voice .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#Voice .inner p {
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	border-bottom: 1px solid #707070;
	padding-bottom: 14px;
	margin-bottom: 20px;
}

#Voice .inner dl dt {
	color: #3792EC;
	font-weight: bold;
	padding-bottom: 14px;
	line-height: 1.8;
}

#Voice .inner dl dd {
	line-height: 1.8;
}

.titImg {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#Community {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#Community .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.tit3 {
	font-size: 1.500em;
	font-weight: bold;
	text-align: center;
	color: #3792EC;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-top: 50px;
	padding-bottom: 20px;
	line-height: 1.5;
}

.fontStyle5 {
	text-align: center;
}

#CommunityBlock {
	background-color: #E9EEF4;
	border-radius: 15px;
	background-image: url(./images/img.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 100%;
	padding-top: 65px;
	padding-right: 350px;
	padding-bottom: 25px;
	padding-left: 65px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 50px;
}

#CommunityBlock h2 {
	font-size: 1.500em;
	font-family: "kozuka-mincho-pr6n", serif;
	font-weight: bold;
	padding-bottom: 35px;
	line-height: 1.5;
}

#CommunityBlock h2 strong {
	font-size: 1.375em;
}

#CommunityBlock p {
	padding-bottom: 15px;
}

#CommunityBlock ul {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

#CommunityBlock ul li {
	width: 31%;
	text-align: center;
	font-size: 0.750em;
}

#CommunityBlock ul li img {
	border-radius: 10px;
	margin-bottom: 8px;
}

.g_btn {
	margin-top: 47px;
}

.g_btn a {
	display: inline-block;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00BC3F;
	border-radius: 15px;
	color: #FFFFFF;
	height: 70px;
	width: 380px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}


.g_btn a:hover {
	background-color: #36B1ED;
}

#Price {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#Price .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#priceBlock {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}

#priceBlock li {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-radius: 15px;
	height: 185px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 48%;
}

#priceBlock li h3 {
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	background-color: #FFFFFF;
	border-radius: 15px;
	padding-top: 7px;
	padding-right: 15px;
	padding-bottom: 7px;
	padding-left: 15px;
	margin-bottom: 20px;
}

#priceBlock li:first-child {
	background-color: #C7E2E8;
	text-align: center;
}

#priceBlock li:first-child h3 {
	color: #4088CE;
	font-weight: bold;
}

#priceBlock li:last-child {
	background-color: #AAD0B7;
	text-align: center;
}

#priceBlock li:last-child h3 {
	color: #4F8260;
	font-weight: bold;
}

#priceBlock li dl {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "kozuka-mincho-pr6n", serif;
}

#priceBlock li dl dt {
	font-size: clamp(1em, 2vw, 1.25em);
	font-weight: bold;
	padding-right: 3px;
}

#priceBlock li dl dd {
	font-size: 1.875em;
	font-weight: bold;
	line-height: 1;
}

#priceBlock li dl dd strong {
	font-size: 1.867em;
}

.payBox h2{
    font-size: 2.00em;
    font-weight: bold;
    text-align: center;
    color: #3792EC;
    font-family: "kozuka-mincho-pr6n", serif;
    margin-top: 50px;
    padding-bottom: 20px;
    line-height: 1.5;
}

.payBox_outer {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}

.payBox_innr {
    width: 48%;
    margin: 0 1% 1em;
    border: 3px solid #bfd5da;
    box-sizing: border-box;
    position:relative;
    padding: 1.9em 1em 1em;
    border-radius: 1em;
}

.payBox_innr h3{
    position:absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #705858;
    padding: 6px;
    font-size: 22px;
    font-weight: 600;
}

.payBox_innr ul {
    display: flex;
    flex-wrap: wrap;      /* はみ出す場合に折り返し */
    justify-content: center;
    gap: 10px;            /* ロゴ間の余白 */
    align-items: center;  /* 縦位置を揃える */
}

.payBox_innr ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;         /* ベース高さを統一 */
    flex: 0 0 auto;       /* 幅固定ではなく内容に合わせる */
}

.payBox_innr ul li img {
    max-height: 100%;     /* li 高さに収める */
    max-width: 100px;     /* 横に長すぎるロゴを制御 */
    width: auto;
    height: auto;
}


.comm {
	border-top: 1px solid #C7C7C7;
	border-bottom: 1px solid #C7C7C7;
	margin-top: 70px;
	padding-top: 35px;
	padding-bottom: 35px;
	padding-left: 18px;
	padding-right: 18px;
	text-align: left;
}

#Flow {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#Flow .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#flowBlock {
	display: flex;
	flex-wrap: wrap;
	ustify-content: space-between;
	align-items: center;
	margin-top: 85px;
}

#flowBlock section {
	max-width: 29%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #F6F6F6;
	border-radius: 15px;
	padding-top: 23px;
	padding-right: 23px;
	padding-bottom: 23px;
	padding-left: 23px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	align-self: stretch;
}

#flowBlock section aside {
	color: #4088CE;
	font-size: 1.063em;
	font-family: "kozuka-mincho-pr6n", serif;
	font-weight: bold;
	line-height: 1;
}

#flowBlock section h3 {
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	font-weight: bold;
	border-bottom: 1px solid #707070;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.tbImg {
	display: none;
}

#qa {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#qa .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#qa section {
	margin-top: 20px;
}

#qa section h3 {
	font-size: 1.250em;
	border-radius: 15px;
	border: 5px solid #AFD6DE;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.5;
	position: relative;
	margin-bottom: 15px;
	font-weight: 500;
}

#qa section h3 {
	display: flex;
}

#qa section h3 span {
	font-family: "kozuka-mincho-pr6n", serif;
	color: #3792EC;
	font-size: 30px;
	margin-right: 15px;
	line-height: 1;
}

#qa section img {
	position: absolute;
	right: 20px;
	top: 22px;
}

#qa section p {
	display: none;
	padding-right: 10px;
	padding-bottom: 20px;
}

#qa section p span {
	display: flex;	
}

#qa section p span span{
	display: block;
	font-family: "kozuka-mincho-pr6n", serif;
	color: #EB7467;
	font-size: 30px;
	margin-right: 17px;
	line-height: 1;
	margin-left: 25px;
}

#qa .tit2 {
	margin-bottom: 40px;
}

#Message {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#Message .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.Message_comm {
	margin-top: 45px;
}

.Message_comm p {
	text-align: center;
	padding-bottom: 30px;
}

.f_right {
	text-align: right;
}

#footer_info {
	background-image: url(./images/footer_img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 130px;
	padding-bottom: 130px;
}

#footer_info .inner {
	max-width: 708px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	background-color: hsla(0,0%,100%,0.41);
	border-radius: 15px;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#footer_info h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.875em;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-bottom: 20px;
	line-height: 1.5;
}

#footer_info h2 img {
	width: 70px;
	height: auto;
	margin-right: 12px;
}

#footer_info h3 {
	color: #3792EC;
	font-weight: bold;
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-bottom: 20px;
	line-height: 1.5;
}

#footer_info_ct {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	flex-wrap:wrap;
}

#footer_info_ct ul {
	display: flex;
	align-items: center;
	justify-content:flex-end;
}

#footer_info_ct p {
	text-align: left;
	background-image: url(./images/tel.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-size: 0.813em;
	line-height: 1.2;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

#footer_info_ct strong {
	font-size: 2.077em;
	display: block;
}

#footer_info_ct ul li {
	font-weight: bold;
	margin-left: 10px;
	margin-right: 10px;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-bottom: 10px;
}

#footer_info_ct ul li:first-child a {
	background-color: #00BC3F;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#footer_info_ct ul li:last-child a {
	background-color: #0768C8;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#footer_info_ct ul li:first-child a img,
#footer_info_ct ul li:last-child a img {
	height: auto;
	width: 22px;
	margin-right: 10px;
}

#footer_info_ct ul li a:hover {
	background-color: #C1B9B9;
}

footer .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	padding-top: 55px;
}

footer .inner aside {
	display: flex;
	justify-content: center;
	font-size: 1.875em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1;
	align-items: center;
	margin-bottom: 37px;
}

footer .inner aside img {
	width: 46px;
	margin-right: 10px;
	height: auto;
}

#footerMenu {
	max-width: 785px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}

.f_menu li {
	background-image: url(./images/yajirushi.png);
	background-repeat: no-repeat;
	background-position: left 8px;
	padding-left: 15px;
	margin-bottom: 14px;
}

.f_menu li a {
	color: #000000;
}

.f_menu li a:hover {
	color: #BBB8B8;
}

#sns {
	display: flex;
}

#sns li {
	display: flex;
	margin-right: 8px;
}

#sns li a {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	display: flex;
	justify-content: center;
	align-items: center;
}

#sns li a:hover {
	background-color: #EBEBEB;
}

#copy {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	font-size: 0.688em;
	text-align: right;
	margin-top: 80px;
	padding-bottom: 10px;
}

#spFixed {
	display: none;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

#next_tit {
	background-image: url(./images/next_img.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 343px;
	margin-top: 107px;
	background-size: auto 100%;
	display: flex;
	align-items: center;
}

#next_inner {
	max-width: 1190px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#next_inner h1 {
	font-size: 3em;
	font-family: "kozuka-mincho-pr6n", serif;
	text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
}

#next_inner h1 span {
    display: block;
    font-size: clamp(12px, 3vw, 20px);
    width: 50%;
    max-width: 800px;
}

#next_inner h1 br.w1000,
#next_inner h1 br.w800,
#next_inner h1 br.w600,
#next_inner h1 br.w400{
	display: none;
}

@media only screen and (max-width:1000px){
	#next_inner h1 br.w1000{
		display: inherit;
	}
}

@media only screen and (max-width:800px){
	#next_inner h1 br.w800{
		display: inherit;
}
}

@media only screen and (max-width:600px){
	#next_inner h1 br.w600{
		display: inherit;
	}
}

@media only screen and (max-width:400px){
	#next_inner h1 br.w400{
		display: inherit;
	}
}

#pNavi {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 0.875em;
	margin-top: 30px;
	margin-bottom: 57px;
}

#pNavi .post:after {
    display: inline;
}

#search {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	background-color: #E4F0E8;
	border-radius: 15px;
	padding-top: 45px;
	padding-right: 53px;
	padding-bottom: 33px;
	padding-left: 53px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}

#searchBox {
	font-size: 1.250em;
	background-color: #FFFFFF;
	height: 76px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-grow: 1;
	border: 1px solid #84BC97;
	border-radius: 5px;
}

#search form {
	display: flex;
	align-items: center;
}

#searchBtn {
	margin-left: 17px;
	flex-shrink: 0;
	border: none;
}

#search h2 {
	margin-top: 24px;
	font-weight: bold;
	padding-bottom: 22px;
}

#search ul {
	display: flex;
	flex-wrap:wrap;
	justify-content:flex-start;
}

#search ul li {
	max-width: calc(100%/4 - 12px);
	width: 100%;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 12px;
}

#search ul li a {
	background-color: #FFFFFF;
	border-radius: 50px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(10px, 2vw, 14px);
}

#search ul li a:hover {
	background-color: #AFD6DE;
	color: #000000;
}

.searchList {
	max-width: 1150px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
	display: flex;
	flex-wrap:wrap;
}

.searchList li {
	max-width: calc(100%/3 - 50px);
	width: 100%;
	margin-bottom: 50px;
	margin-left: 25px;
	margin-right: 25px;
	position: relative;
}

.searchList li a {
	border-radius: 15px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	display: block;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}

.searchList li a:hover {
	background-color: #E0EDEF;
}

.sl_category {
	display: flex!important;
	margin-top: 13px!important;
	flex-wrap:wrap!important;
}

.sl_category li {
	z-index: 0;
    max-width: 95px !important;
    margin-left: 0px !important;
    margin-right: 10px !important;
    padding-top: 5px !important;
    padding-right: 10px !important;
    padding-bottom: 5px !important;
    padding-left: 10px !important;
    background-color: #84BC97 !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    white-space: nowrap !important;
    width: 100% !important;
    font-size: 60% !important;
}

.searchList li aside {
	color: #84BC97;
	font-size: 0.875em;
	padding-bottom: 10px;
}

#Ranking {
	padding-top: 120px;
}

#rankingList {
	background-color: #EEEEEE;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 60px;
}

.rank {
	position: absolute;
	top: -16px;
	left: 10px;
	z-index: 5;
}

#next_bg {
	background-color: #EEEEEE;
	padding-top: 63px;
	padding-bottom: 148px;
}

#next_bg .inner {
	max-width: 1100px;
	width: calc(100% - 2em);
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	border-radius: 15px;
	-webkit-box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	box-shadow: 0px 3px 6px hsla(0,0%,0%,0.16);
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#cd_block {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

#cd_block ul {
	display: flex;
	align-items: center;
	margin-right: 5px;
}

#cd_block ul li {
	margin-right: 10px;
	margin-bottom: 10px;
}

#cd_block ul li a {
	background-color: #84BC97;
	color: #FFFFFF;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
	border-radius: 50px;
	text-align: center;
}

#cd_block ul li a:hover {
	background-color: #90CDD9;
}

#cd_block p {
	color: #84BC97;
	margin-bottom: 10px;
}

#cms {
	text-align: left;
	margin-top: 44px;
}

#cms h2 {
	clear: both;
	font-size: 1.750em;
	font-family: "kozuka-mincho-pr6n", serif;
	margin-bottom: 54px;
	line-height: 1.5;
}

#cms h3 {
	clear: both;
	font-size: 1.500em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
	border-bottom: 1px solid #707070;
	padding-bottom: 14px;
	margin-bottom: 18px;
	margin-top: 30px;
}

#cms h4 {
	clear: both;
	font-size: 1.375em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
	margin-bottom: 18px;
	margin-top: 30px;
}

#cms h5 {
	clear: both;
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	line-height: 1.5;
	margin-bottom: 18px;
	margin-top: 30px;
	background-color: #F2F2F2;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}

#cms img {
	border-radius: 15px;
	margin-bottom: 25px;
}

#cms .aligncenter {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#cms p {
	padding-bottom: 40px;
}

#cms ul {
	margin-bottom: 40px;
}

#cms ul li {
	background-image: url(./images/point2.png);
	background-repeat: no-repeat;
	background-position: left 10px;
	padding-left: 15px;
	margin-bottom: 15px;
}

#cms ol {
	margin-bottom: 40px;
}

#cms ol li {
	list-style-type: decimal;
	background-position: left 10px;
	padding-left: 15px;
	margin-bottom: 15px;
	margin-left: 20px;
}

#cms blockquote {
	background-color: #F2F2F2;
	padding-top: 40px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-left: 30px;
	margin-bottom: 40px;
}

#next_bg .titStyle2 {
	padding-top: 40px;
	color: #3792EC;
	font-size: 1.250em;
	font-family: "kozuka-mincho-pr6n", serif;
	padding-bottom: 25px;
	line-height: 1.5;
}

#nextContact {
	max-width: 580px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

#nextContact ul {
	display: flex;
	align-items: center;
}

#nextContact p {
	text-align: left;
	background-image: url(./images/tel.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-size: 0.813em;
	line-height: 1.2;
	font-family: "kozuka-mincho-pr6n", serif;
}

#nextContact strong {
	font-size: 2.077em;
	display: block;
}

#nextContact ul li {
	font-weight: bold;
	margin-left: 20px;
	font-family: "kozuka-mincho-pr6n", serif;
}

#nextContact ul li:first-child a {
	background-color: #00BC3F;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#nextContact ul li:last-child a {
	background-color: #0768C8;
	border-radius: 5px;
	height: 45px;
	width: 148px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

#nextContact ul li:first-child a img,
#nextContact ul li:last-child a img {
	height: auto;
	width: 22px;
	margin-right: 10px;
}

#nextContact ul li a:hover {
	background-color: #C1B9B9;
}

#pageNavi {
	border-top: 1px solid #B7B7B7;
	margin-top: 80px;
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

#pageNavi.only-one:has(.prev) {
	justify-content: flex-start;
}

#pageNavi.only-one:has(.next) {
	justify-content: end;
}

#pageNavi li {
	width: 50%;
}

#pageNavi li.prev {
	border-right: 1px solid #B7B7B7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 50px;
}

#pageNavi.only-one li.next {
	border-left: 1px solid #B7B7B7;
}

#pageNavi li.next {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 50px;
    display: flex;
    justify-content: end;
}

#pageNavi li.prev a {
	display: flex;
	align-items: center;
	text-align: left;
}

#pageNavi li.prev a:hover dl dd {
	text-decoration: underline;
}

#pageNavi li.next a:hover dl dd {
	text-decoration: underline;
}

#pageNavi li.next a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row-reverse;
	text-align: right;
}


#pageNavi li.prev a img {
	width: 36px;
	min-width: 36px;
	height: auto;
	margin-right: 25px;
}

#pageNavi li.next a img {
	width: 36px;
	min-width: 36px;
	height: auto;
	margin-left: 25px;
}

#pageNavi li a dl dt {
	color: #77AADC;
	padding-bottom: 5px;
}


@media only screen and (min-width:800px){
	#spMenu, #spContact {
		display: flex;
		flex-wrap: wrap;
		max-width: 800px;
	}

	#spMenu li {
		width: calc(50% - 0.5em);
		margin: 0 1em 1em 0;
	}

	#spMenu li:nth-child(2n) {
		margin-right: 0;
	}
}

/*sp*/

/* PC向けおよび大型タブレット向けのレイアウトの指定：1px～1060px */
@media only screen and (min-width:1px) and (max-width:1060px){
	/*==========================================
	body
	===========================================*/
	body {
		min-width: 100%;
		text-align: center;
		width: 100%;
	}

	.tbbr {
		display: inherit;
	}

	/*==========================================
	Other
	===========================================*/
	#header_top {
		display: none;
	}

	#mainLink {
		justify-content: space-between;
	}

	#mainLink li img {
		width: 40px;
		height: auto;
		margin-right: 10px;
	}

	#mainLink li {
		font-size: 1.5em;
		font-family: "kozuka-mincho-pr6n", serif;
		margin-left: 0px;
		width: 48%;
	}
	#mainLink li a {
		height: 80px;
		width: 100%;
	}

	#mainBg_top section {
		width: 50%;
	}

	#mainBg_top figure {
		max-width:150px;
		width: 100%;
		margin-top: -360px;
	}

	.tit {
		font-size: 2em;
	}

	.tit2 {
		font-size: 2em;
	}

	.fontStyle3 {
		font-size: 1.3em;
	}

	#Worries ul li dl dt {
		height: auto;
		margin-bottom: 15px;
	}

	#Service ul li {
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}

	#Service ul li h3 {
		font-size: 1.3em;
		padding-bottom: 25px;
	}

	#Service ul li p {
		margin-top: 25px;
	}

	#need ul li {
		padding-top: 45px;
	}

	#need ul li section {
		padding-left: 0px;
	}

	.voiceBlock figure {
		max-width: 100px;
		min-width: 100px;
		margin-right: 15px;
	}

	#CommunityBlock {
		padding-top: 40px;
		padding-right: 350px;
		padding-left: 40px;
	}

	#priceBlock li h3 {
		font-size: 1.2em;
		padding-right: 10px;
		padding-left: 10px;
	}

	#flowBlock section h3 {
		font-size: 1.1em;
	}

	.searchList li {
		max-width: calc(100%/3 - 30px);
		width: 100%;
		margin-bottom: 30px;
		margin-left: 15px;
		margin-right: 15px;
	}

	#pageNavi li:nth-child(1) {
		padding-right: 20px;
	}

	#pageNavi li:nth-child(2) {
		padding-left: 20px;
	}
}

@media only screen and (max-width:850px){
	.payBox_innr {
		width: 98%;
		max-width: 700px;
		margin: 0 1% 2em;
	}
	.payBox_innr h3 {
    	font-size: clamp(15px, 4vw, 22px);
	}
}


@media only screen and (max-width:768px){
	/*==========================================
	Other
	===========================================*/
	.searchList li {
		max-width: calc(100%/2 - 30px);
	}

	#search ul li {
		max-width: calc(100%/3 - 12px);
		width: 100%;
		margin-left: 6px;
		margin-right: 6px;
		margin-bottom: 12px;
	}

	#search {
		padding-top: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		padding-left: 30px;
	}

	#searchBox {
		height: 50px;
		font-size: 1em;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	#searchBtn {
		width: 50px;
		height: auto;
	}

	.pcImg2 {
		display: none;
	}

	.tbImg {
		display: inherit;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	#flowBlock {
		display: block;
		margin-top: 50px;
	}

	#flowBlock section {
		max-width: 100%;
		padding-top: 23px;
		padding-right: 23px;
		padding-bottom: 23px;
		padding-left: 23px;
	}

	#priceBlock {
		display: block;
	}

	#priceBlock li {
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
		border-radius: 15px;
		height: 185px;
		width: 100%;
		margin-bottom: 20px;
	}

	#priceBlock li h3 {
		font-size: 1.1em;
	}

	#CommunityBlock {
		padding-top: 40px;
		padding-right: 40px;
		padding-left: 40px;
	}

	.tit3 {
		font-size: 1.3em;
	}

	#need ul li figure {
		max-width: 100%;
		width: 100%;
		margin-left: 0px;
		margin-top: 20px;
	}

	#need ul li aside {
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	#need ul li {
		display: block;
		padding-top: 60px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}

	#Service ul {
		margin-top: 40px;
	}

	#Service ul li {
		width: 100%;
		margin-bottom: 25px;
	}

	#Worries ul li {
		width: calc(50% - 0.35em);
		margin-right: 0.7em;
	}

	#Worries ul li:nth-child(2n) {
		margin-right: 0;
	}

	#Sign ul {
		padding-top: 30px;
		padding-right: 30px;
		padding-bottom: 12px;
		padding-left: 30px;
	}

	#Sign ul li {
		font-size: 1.1em;
		background-position: left 12px;
		padding-left: 25px;
		border-bottom: 1px dotted #000000;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	.tit {
		font-size: 1.5em;
	}

	.tit2 {
		font-size: 1.5em;
	}

	.fontStyle {
		margin-top: 30px;
		margin-bottom: 30px;
		font-size: 1em;
	}

	#mainBg {
		margin-top: 88px;
	}

	#next_tit {
		height: 343px;
		margin-top: 88px;
	}

	header {
		padding-right: 0px;
	}

	#header_inner {
		height: 88px;
	}

	.Toggle {
		right: 16px;
		top: 16px;
	}

	nav.NavMenu {
	top: 88px;
	height: calc(100vh - 88px);
	}


	#header_inner h1,
	#header_inner div.headerTtl	{
		font-size: 1.5em;
	}

	#header_inner h1 img ,
	#header_inner div.headerTtl img {
		width: 60px;
		margin-right: 10px;
	}

	#mainLink li {
		font-size: 1.2em;
	}

	#mainLink li img {
		width: 32px;
	}
		
	#mainBg_top section p {
		font-size: 1em;
	}

	#mainBg_top,
	#mainLink {
		width: 100%;
	}

	.titStyle {
		font-size: 1.3em;
		margin-bottom: 30px;
	}

	#CommunityBlock {
		background-size: auto 52%;
		background-image: url(./images/img_sp.png);
	}

	#CommunityBlock h2 {
		padding-right: 118px;
	}

	.comm {
		margin-top: 50px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer_info {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	#footer_info .inner {
		padding-top: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		padding-left: 30px;
	}

	#footerMenu {
		display: block
	}

	#sns {
		margin-top: 20px;
	}

    #next_tit {
        height: 215px;
    }
	
	#next_inner h1 {
		font-size: 2em;
		line-height: 1.5;
	}

	.sl_category li {
		max-width: 100% !important;
		width: calc(50% - 2.5em) !important;
		font-size: clamp(12px, 2vw, 13px) !important;
	}

	#next_bg .inner {
		padding-top: 30px;
		padding-right: 25px;
		padding-bottom: 30px;
		padding-left: 25px;
	}

	#cms h2 {
		font-size: 1.5em;
		margin-bottom: 20px;
	}

	#cms h3 {
		font-size: 1.4em;
	}

	#cms h4 {
		font-size: 1.3em;
	}

	#cms h5 {
		font-size: 1.2em;
	}

	#next_bg .titStyle2 {
		font-size: 1.2em;
	}

	#nextContact {
		display: block;
		text-align: center;
	}

	#nextContact p {
		margin-left: auto;
		margin-right: auto;
		display: inline-block;
		margin-bottom: 10px;
	}

	#nextContact ul {
		justify-content: center;
	}

	#nextContact ul li {
		margin-left: 10px;
	margin-right: 10px;
	}

}


@media only screen and (max-width: 470px){
	/*==========================================
	幅470px以下から ヘッダー等微調節
	===========================================*/
	#next_bg {
		padding-top: 30px;
		padding-bottom: 80px;
	}

	#pageNavi li:nth-child(1) a img {
		width: 30px;
		min-width: 30px;
		margin-right: 15px;
	}

	#pageNavi li:nth-child(2) a img {
		width: 30px;
		min-width: 30px;
		margin-left: 15px;
	}

	#pageNavi {
		padding-top: 20px;
	}

	#pageNavi li {
		width: 100%;
	}

	#pageNavi li:nth-child(1) {
		border-right: 0px solid #B7B7B7;
		padding-right: 0px;
	}

	#pageNavi li:nth-child(2) {
		padding-left: 0px;
		border-top: 1px solid #B7B7B7;
		padding-top: 20px;
		margin-top: 20px;
	}

	#nextContact ul {
		justify-content: space-between;
	}

	#nextContact ul li {
		margin-left: 0px;
		margin-right: 0px;
		width: 48%;
		font-size: 0.7em;
	}

	#nextContact ul li:first-child a {
		width: 100%;
	}

	#nextContact ul li:last-child a {
		width: 100%;
	}

	#cms h2 {
		font-size: 1.4em;
	}

	#cms h3 {
		font-size: 1.3em;
	}

	#cms h4 {
		font-size: 1.2em;
	}

	#cms h5 {
		font-size: 1.1em;
	}

	#cms blockquote {
		padding-top: 30px;
		padding-right: 20px;
		padding-bottom: 30px;
		padding-left: 20px;
	}

	#cd_block p {
		color: #84BC97;
		margin-bottom: 10px;
	}

	#next_bg .inner {
		padding-top: 20px;
		padding-right: 15px;
		padding-bottom: 20px;
		padding-left: 15px;
	}

	#cms h2 {
		font-size: 1.3em;
		margin-bottom: 15px;
	}

	#cms {
			margin-top: 15px;
	}

	#Ranking {
		padding-top: 80px;
	}

	#rankingList .searchList {
		margin-top: 0px;
	}

	#rankingList {
		padding-bottom: 30px;
	}

	.searchList li {
		max-width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}

	#search {
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}

	#search h2 {
		padding-bottom: 10px;
	}

	#searchBox {
		height: 40px;
	}

	#searchBtn {
		width: 40px;
	}

	#searchBox {
		height: 40px;
		width: 15%;
	}

	#search ul {
		justify-content: space-between;
	}

	#search ul li {
		max-width: 48%;
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}

	#pNavi {
		font-size: 0.750em;
		margin-top: 10px;
		margin-bottom: 27px;
	}

	#next_tit {
		height: 130px;
	}
		
	#next_inner h1 {
		font-size: 1.3em;
		line-height: 1.3;
	}
	
	#spFixed {
		display: inherit;
		position: fixed;
		bottom: 0px;
		width: 100%;
		display: flex;
		justify-content: space-between;
		background-color: #EBE8E3;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	#spFixed li {
		width: calc(100%/3 - 8px);
		font-size: 0.8em;
		font-family: "kozuka-mincho-pr6n", serif;
		line-height: 1.3;
	}

	#spFixed li a {
		display: block;
		height: 62px;
		border-radius: 8px;
		background-color: #9F9F9F;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
		text-align: center;
	}

	#spFixed li a img {
		width: 22px;
		height: auto;
		margin-bottom: 8px;
	}

	#spFixed li:first-child a {
		background-color: #00BC3F;
	}

	#spFixed li:nth-child(2) a {
		background-color: #0768C8;
	}

	#spFixed li:nth-child(3) a {
		background-color: #FFC507;
		color: #000000;
	}

	#page-top {
		bottom:102px;
	}

	#copy {
		margin-top: 40px;
		text-align: center;
		padding-bottom: 102px;
	}

	footer .inner aside {
		font-size: 1.5em;
	}

	footer .inner aside img {
		width: 35px;
	}

	#footer_info .inner {
		padding-right: 20px;
		padding-left: 20px;
	}
	.Message_comm p {
		text-align: left;
	}

	#qa section img {
		right: 15px;
		top: 20px;
	}

	#qa section p span {
		/*font-size: 22px;*/
		/*margin-left: 15px;*/
	}

	#qa section h3 span {
		font-size: 22px;
	}


	#qa section h3 {
		font-size: 1.1em;
		padding-left: 10px;
	}

	#priceBlock li {
		height: auto;
	}

	#priceBlock li dl dt {
		font-size: 1em;
	}

	#priceBlock li dl dd {
		font-size: 1.5em;
	}

	#priceBlock li h3 {
		font-size: 0.9em;
		margin-bottom: 15px;
	}

	#CommunityBlock h2 {
		padding-right: 0px;
	}

	#CommunityBlock {
		background-size: auto 79%;
	}
	#CommunityBlock h2 {
		line-height: 1.3;
		font-size: 1.2em;
	}

	#CommunityBlock {
		padding-top: 90px;
		padding-right: 20px;
		padding-left: 20px;
		padding-bottom: 20px;
		background-size: contain;
	}

	#CommunityBlock ul {
		display: block;
	}

	#CommunityBlock ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	.fontStyle5,
	.fontStyle4 {
		text-align: left;
	}

    .tit3 {
        font-size: 1.1em;
    }
	
	.voiceBlock figure {
		margin-right: 0px;
		max-width: 100%;
		min-width: 100%;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
		text-align: center;
	}

	.voiceBlock {
		display: block;
	}

	#Worries ul {
		margin-bottom: 40px;
	}

	.titStyle {
		font-size: 1.2em;
		margin-bottom: 20px;
	}

	#Worries ul li {
		width: 100%;
		margin-right: 0;
	}

	.fontStyle3 {
		font-size: 1.1em;
	}

    #Sign ul {
        padding-top: 30px;
        padding-right: 20px;
        padding-bottom: 30px;
        padding-left: 20px;
    }
	
	#Sign ul li {
		font-size: 1em;
		background-position: left 12px;
		padding-left: 25px;
		border-bottom: 1px dotted #000000;
	}
	
	.spbr {
		display: inherit;
	}

	.titImg {
		max-width: 100%;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.fontStyle {
		font-size: 1em;
		border-radius: 10px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#Recovery {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	#Service {
		padding-top: 70px;
		padding-bottom: 70px;
	}

    .tit {
        font-size: 1.2em;
    }

    .tit2 {
        font-size: 1.2em;
    }

	.spImg {
		display: inherit;
	}

	.pcImg {
		display: none;
	}

	#mainBg_top section {
		width: 55%;
    }
	
	#mainBg {
		height: 346px;
		background-image: url(./images/mainimg_sp.jpg);
		background-repeat: no-repeat;
		background-position: right top;
		background-color: #E8EDF1;
		position: relative;
		background-size: auto 100%;
	}

	#point {
		max-width: 150px;
		width: 100%;
		position: absolute;
		right: 54px;
		bottom: 18px;
		right: 0;
	}

	#mainLink {
		display: block;
	}

	#mainLink li {
		font-size: 0.750em;
		margin-left: 0px;
		margin-bottom: 7px;
	}

	#mainLink li img {
		width: 18px;
		margin-right: 7px;
	}

	#mainLink li a {
		display: block;
		height: 38px;
		border-radius: 5px;
		width: 145px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
	}

	#mainBg_top section p {
		padding-top: 20px;
		font-size: 0.750em;
		padding-bottom: 50px;
	}

	#header_inner h1 ,
	#header_inner div.headerTtl	{
		font-size: 1.188em;
	}

	#header_inner h1 img ,
	#header_inner div.headerTtl img	{
		width: 45px;
		margin-right: 8px;
	}

	#mainBg_top section p br {
		display: none;
	}

	.g_btn {
		font-size: 0.875em;
		margin-top: 30px;
	}

	.g_btn a {
		height: 70px;
		width: 100%;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	#footer_info h2 {
		font-size: 1.2em;
	}

	#footer_info h2 img {
		width: 45px;
		height: auto;
		margin-right: 8px;
	}

	#footer_info h3 {
		font-size: 1.1em;
	}

	#footer_info_ct strong {
		font-size: 1.9em;

	}

	#footer_info_ct {
		display: block;
	}

	#footer_info_ct ul {
		justify-content: space-between;
		max-width: 100%;
		width: 100%;
	}

	#footer_info_ct ul li {
		width: 48%;
		margin-left: 0px;
		margin-right: 0px;
		font-size: 0.8em;
	}

	#footer_info_ct ul li:first-child a img,
	#footer_info_ct ul li:last-child a img {
		height: auto;
		width: 20px;
		margin-right: 7px;
	}

	#footer_info_ct ul li:first-child a {
	width: 100%;
	}

	#footer_info_ct ul li:last-child a {
	width: 100%;
	}

	#Message,
	#qa,
	#Flow,
	#Price,
	#Community,
	#Voice,
	#need {
		padding-top: 40px;
		padding-bottom: 40px;
}

}

@media only screen and (max-width: 320px){
	/*==========================================
	幅320px以下から ヘッダー等微調節
	===========================================*/
	#mainBg_top section {
			width: 60%;
    }
	
	#mainBg_top section p {
		padding-top: 20px;
		font-size: 0.688em;
		padding-bottom: 20px;
	}

	#header_inner h1 img,
	#header_inner div.headerTtl img {
		width: 35px;
		margin-right: 7px;
	}

	#header_inner h1,
	#header_inner div.headerTtl{
		font-size: 1.1em;
	}
}

/* ===============================
   Contact Form 7 – clean layout
   =============================== */
.wpcf7-form{
	max-width: 860px;
	margin: 0 auto;
	background: #ffffff;
	padding: 24px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(2,6,23,.06);
	line-height: 1.7;
	color: #0f172a;
}

body.page #content .part{
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 16px 24px;
	padding: 14px 0;
	border-bottom: 1px solid #e2e8f0;
}
body.page #content .part:last-of-type{ border-bottom: none; }

body.page #content .lab p{ margin:0; color: #64748b; }
body.page #content .lab .tab{ font-weight:700; color: #0f172a; font-size: .98rem; }

body.page #content .wpcf7 p { margin:0; }

body.page #content .must, .any{
  display:inline-block;
  font-size:.75rem;
  border-radius: 999px;
  padding:.15rem .5rem;
  margin-left:.5rem;
  vertical-align: middle;
}
body.page #content .must{ background:#fee2e2; color:#b91c1c; }
body.page #content .any{  background:#eef2ff; color:#4338ca; }

/* ===== Inputs & Textarea ===== */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea{
	width:100%;
	padding:12px 14px;
	border: 1px solid #bec3c9;
	border-radius: 12px;
	background: #eaedf2;
	color: #0f172a;
	outline: none;
	transition: border-color .2s, box-shadow .2s, background .2s;
	box-sizing:border-box;
}
.wpcf7-form textarea{
	min-height:160px;
	resize: vertical;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder{
	color: #64748b;
	opacity:.85;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus{
	border-color: #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14,165,233,.20);
}

/* ===== Radio (pill style) ===== */
.wpcf7-radio{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
}
.wpcf7-radio .wpcf7-list-item{ margin:0; }
.wpcf7-radio label{
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:10px 12px;
	border:1px solid #e2e8f0;
	border-radius:999px;
	cursor:pointer;
	user-select:none;
	transition: border-color .2s, background .2s;
}
.wpcf7-radio input[type="radio"]{
	accent-color: #0ea5e9;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label{
	font-weight: 600;
}

/* ===== Acceptance ===== */
body.page #content .part.accept{ grid-template-columns: 1fr; border-bottom:none; text-align: center; }
body.page #content .part.accept p{ margin:0; }
body.page #content .part.accept input[type="checkbox"]{ accent-color: #0ea5e9; }
body.page #content .part.accept a{ text-decoration: underline; }

/* ===== Submit Button ===== */
body.page #content .submit p{ margin:0; }
body.page #content .submit input[type="submit"]{
	appearance:none;
	display:block;
	border:none;
	background: #0ea5e9;
	color:#fff;
	font-weight:700;
	padding:14px 22px;
	border-radius: calc(12px + 4px);
	box-shadow: 0 10px 30px rgba(2,6,23,.06);
	transition: transform .05s ease, filter .25s ease;
	margin: 0 auto;
	width: 40%;
	min-width: 250px;
	font-size: 20px;
}
body.page #content .submit input[type="submit"]:hover{ filter: brightness(.95); }
body.page #content .submit input[type="submit"]:active{ transform: translateY(1px); }

@media (max-width: 768px){
	.part{ grid-template-columns: 1fr; }
	.submit input[type="submit"]{ width:100%; }
}


/* ===== CF7 validation & messages ===== */
body.page #content .wpcf7-not-valid{ border-color: var(--error) !important; }
body.page #content .wpcf7-not-valid:focus{ box-shadow:0 0 0 3px rgba(239,68,68,.2); }

body.page #content .wpcf7-not-valid-tip{
	color: var(--error);
	font-size:.8rem;
	margin-top:.35rem;
}

body.page #content .wpcf7-response-output{
	margin-top:16px;
	border-radius: var(--radius);
	padding:12px 14px;
	border:1px solid var(--border);
	background:#f8fafc;
}
body.page #content .wpcf7-form.invalid .wpcf7-response-output{
	border-color: var(--error);
	background:#fef2f2;
	color:#991b1b;
}
body.page #content .wpcf7-form.sent .wpcf7-response-output{
	border-color: var(--ok);
	background:#f0fdf4;
	color:#14532d;
}

@media screen and (max-width: 768px) {
	body.page #content form.wpcf7-form.init {
		padding-top: 12px;
	}
	body.page #content .wpcf7-radio label {
		font-size: clamp(12px,3vw,16px);
		padding: 5px 10px 5px 5px;
	}
	body.page #content span.wpcf7-list-item-label {
		font-size: clamp(12px, 3vw, 16px);
	}
	body.page #content .part{
		grid-template-columns: auto;
	}
}

/* ===== Optional: dark mode tweak ===== */
@media (prefers-color-scheme: dark){
  body.page #content .wpcf7-form{
    --bg:#0b1220;
    --text:#e5e7eb;
    --muted:#9aa4b2;
    --border:#1f2937;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  body.page #content .wpcf7-form .wpcf7-response-output{ background:#0f172a; }
}

body.admin-bar header { margin-top:32px; }
body.admin-bar header .Toggle { margin-top:32px; }
body.admin-bar nav.NavMenu { top: 139px; }


@media screen and (max-width: 782px) {
	body.admin-bar header { margin-top:46px; }
	body.admin-bar header .Toggle { margin-top:46px; }
	body.admin-bar #wpadminbar {position: fixed;top:0; }
	body.admin-bar nav.NavMenu {top: 134px; }
}
