@charset "utf-8";
:root {
	--c-black01: #404040;
	--c-grey01: #dcdcdc;
	--c-grey02: #aaa;
	--c-blue01: #1a9bd6;
	--c-blue02: #ebf1f4;
	--c-ocher01: #b57d00;
}
/*
Theme Name: portals_responsive
Author: portals
*/
/*==================================
* reset
* html5doctor.com Reset Stylesheet
* v1.6.1
* Last Updated: 2010-09-17
* Author: Richard Clark - http://richclarkdesign.com
* Twitter: @rich_clark
==================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ol,
ul {
	list-style: none;
}
img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colors to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colors to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-weight: bold;
}
em {
	font-style: normal!important;
}
del {
	text-decoration: line-through;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border color to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input,
select {
	vertical-align: middle;
}
address {
	font-style: normal;
}
/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
/*==================================
WordPress Natie Styles
editor
==================================*/
img.wp-smiley,
img.emoji {
	height: 2% !important;
	width: 2% !important;
}
.post p {
	display: block;
	margin: 1em;
}
.post strong {
	font-weight: bold;
}
.post em {
	font-style: oblique;
}
.post blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}
.post ul {
	list-style: disc;
	margin: 0 3em 1em;
}
.post ol {
	list-style: decimal;
	margin: 0 3em 1em;
}
/* img */
.aligncenter {
	display: block;
	margin: 0 auto 8px;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
}
/*==================================
SP_base
==================================*/
.clear {
	clear: both;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.img_left,
.img_right {
	margin: 0 auto 0.5em;
}
.img_center {
	display: block;
	margin: 0 auto 16px;
}
.only_pc {
	display: none;
}
img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
a:link {
	color: #83a139;
}
a:visited {
	color: #fcafa7;
}
a:hover {
	color: #baea83;
}
a:active {
	color: #baea83;
}
body {
	background: #fff;
	color: var(--c-black01);
	font-size: 15px;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
		Meiryo, Osaka, sans-serif;
}
/*アニメーション要素のスタイル*/
.fadeInUp{
	opacity : 0;
	visibility: hidden;
	transition-duration: 0.8s;
	transition-delay: .25s;
	transform: translate3d(0,30px,0);
}
/*アニメーション要素までスクロールした時のスタイル*/
.activeUp{
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0);
}
/*アニメーション要素(左から)のスタイル*/
.fadeInLeft {
	opacity : 0;
	visibility: hidden;
	transition-duration: 0.8s;
	transition-delay: .25s;
	transform: translate3d(-100%,0,0)
}
/*アニメーション要素(左から)までスクロールした時のスタイル*/
.activeLeft {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0)
}
/*アニメーション要素(右から)のスタイル*/
.fadeInRight {
	opacity : 0;
	visibility: hidden;
	transition-duration: 0.8s;
	transition-delay: .25s;
	transform: translate3d(100%,0,0)
}
/*アニメーション要素(右から)までスクロールした時のスタイル*/
.activeRight {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0)
}
[class*="active"].delay-1 {
	transition-delay: .5s;
}
[class*="active"].delay-2 {
	transition-delay: .75s;
}
[class*="active"].delay-3 {
	transition-delay: 1s;
}
.overflow_hidden {
	overflow: hidden;
}
/*==================================
SP_layout
==================================*/
#contents {
	padding: 48px 0;
}
#main {
	margin: 0 auto;
	width: 100%;
	max-width: 782px;
	overflow: hidden;
}
.conts {
	margin: 0 12px 16px;
}
.conts:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}
.conts .conts_inner {
	overflow: hidden;
}
.conts p:not([class]) {
	margin-bottom: 8px;
}
.ttl {
	margin: 0 4px 32px;
	text-align: center;
}
.bnr {
	margin: 0 4px 16px;
}
a:active img {
	-webkit-opacity: 0.7;
	opacity: 0.7;
}
.youtube,.contact_map {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe,.contact_map iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
/*==================================
SP_heading
==================================*/
.h_style01 {
	clear: both;
	margin: 24px auto 16px;
	padding: 8px;
	background: #f0f0e1;
    font-size: 20px;
	}
	.h_style01 /*下層ページのh2などに利用してください*/ {
		margin: 0 0 32px;
		padding: 20px;
		font-size: 28px;
		background-color: #eeeeee; /* 背景色 */
		border-top: 1px solid #626262;
    border-bottom: 1px solid #626262;
    color: #627AD6; /* 文字色 */
	padding: 10px 20px; /* 上下・左右の余白 */
	position:relative;
}

}
.h_style01 a {
	color: inherit;
}
.h_style02,
.post h3:not([class]),
.block_wrapper h2:not(.nostyle) {
	clear: both;
	margin: 2em auto 1.5em;
	padding: .8em .5em;
	border-top: solid 3px var(--c-grey01);
	border-bottom: dotted 2px #627AD6;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.h_style03,
.post h4,
.block_wrapper h3:not(.nostyle) {
	clear: both;
	margin: 32px 4px 24px;
	padding: 0 8px;
	font-size: 18px;
	border-left: solid 8px #627AD6;
	border-bottom: dotted 2px #627AD6;
}
.h_style04,
.post h5,
.block_wrapper h4:not(.nostyle) {
	clear: both;
	position: relative;
	overflow: hidden;
	margin: 24px 0 16px;
	padding: 0 8px 2px 32px;
	font-weight: bold;
	border-bottom: dotted 2px #627AD6;
	font-size: 16px;
}
.h_style04::before,
.post h5::before,
.block_wrapper h4:not(.nostyle)::before {
	position: absolute;
	margin-top: -0.25em;
	top: 50%;
	left: 0.5em;
	content: "";
	display: inline-block;
	background: #fff;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	box-shadow: 0 0 0 8px #627AD6;
}
.h_style05,
.post h6,
.block_wrapper h5:not(.nostyle) {
	clear: both;
	overflow: hidden;
	margin: 24px 0 16px;
	padding: 0 4px 2px;
	font-weight: bold;
	border-bottom: double 4px #1a9bd6;
	font-size: 16px;
}
.nomargintop {
	margin-top: 0!important;
}
/*==================================
SP_header
==================================*/
.h_upper {
	padding: .5em 0 0;
}
.h_upper > * {
	font-weight: normal;
	text-align: center;
	font-size: clamp(13px,2vw,15px);
}
.h_logo {
	margin: 3% auto;
	width: 50%;
}
/*==================================
SP_navigation
==================================*/
nav {
	position: relative;
	z-index: 9999;
	width: 100%;
	background: #fff;
}
.gnav_sp {
	width: 100%;
	display: flex;
	margin: 0 auto;
	border-top: solid 1px var(--c-black01);
	box-shadow: 0 5px 7px -2px rgba(0, 0, 0, 0.2);
}
.gnav_sp li {
	width: 16.66%;
}
.gnav_sp li a {
	display: block;
	padding: 12% 0;
}
.gnav_sp img {
	width: 90%;
}
.fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.sp_f_bt {
	position: fixed;
	z-index: 9999;
	bottom: 0;
	left: 0;
}
.sp_f_conts {
	display: none;
	margin: 0 auto 4px;
	width: 92%;
}
.sp_f_info {
	padding: 10px;
	background-color: #f4eb71;
}
/*==================================
SP_mainimg
==================================*/
.main_img {
	position: relative;
	display: block;
	margin: 0 auto min(94px,14vw);
	width: 100%;
}
.main_point {
	position: absolute;
	padding: 2% 2% 2% 1%;
	width: 70%;
	bottom: 0;
	left: 0;
	transform: translate(0, 50%);
	background-color: #fff;
	border-radius: 0 15px 0 0;
	box-sizing: border-box;
}
.main_point::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: scale(-1,1) translate(-100%,-100%);
	display: block;
	width: 15px;
	height: 15px;
	content: url(image/top/main_img_parts.png);
}
.main_catch {
	padding: 8% 5% 0;
	display: flex;
	flex-direction: column;
	background-image: linear-gradient( -60deg, rgb(229,229,229) 31%, rgb(255,248,158) 77%, rgb(255,248,172) 96%);
}
.main_catch .main_catch_img {
	width: 68%;
    margin: 1.6em auto;
}
.main_catch_conts {
	display: contents;
}
.main_catch_conts figure {
	margin: 2em auto 0;
	display: flex;
	justify-content: space-around;
}
.main_catch_conts figure a {
	width: 46%;
}
.main_catch_conts figure a:hover {
	opacity: .7;
}
/*==================================
SP_contact
==================================*/
.contact_conts {
	position: relative;
	margin: 0 auto 16px;
	padding: 8% 5%;
	border: solid 1px #627AD6;
	box-sizing: border-box;
}
.contact_upper {
	margin: 8% auto;
	width: min(80%,516px);
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.contact_name {
	margin: 0 auto;
	width: min(60%,348px);
}
.contact_add {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1em;
	text-align: center;
	font-weight: bold;
}
.contact_add > :first-child{
	padding: 1.1em 0 1em;
	border-top: solid 1px var(--c-black01);
	border-bottom: solid 1px var(--c-black01);
	font-size: 18px;
}
.contact_add > :nth-child(2) span {
	display: block;
}
.contact_add > :last-child {
	padding: .5em 0;
	text-align: center;
	color: #627AD6;
}
.contact_tel a, .contact_line a {
	position: relative;
	display: block;
	margin: .8em auto;
	padding: .5em .5em .5em 1.5em;
	text-align: center;
	text-decoration: none;
	font-size: clamp(18px,5vw,36px);
	font-weight: bold;
	border-radius: 10px;
	line-height: 1.4;
}
.contact_tel a::before, .contact_line a::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(100%,-50%);
	content: '';
	display: block;
	width: 1.5em;
	height: 1.5em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.contact_tel a::before {
	background-image: url(image/all/bt_tel_ico.png);
}
.contact_line a::before {
	background-image: url(image/all/bt_line_ico.png);
}
.contact_tel a {
	border: solid 1px #627AD6;
	color: inherit;
	background-color: #fff;
}
.contact_tel a:hover {
	opacity: .7;
}
.contact_line a {
	color: #fff;
	background-color: #06a340;
}
.contact_line a:hover {
	opacity: .7;
}
.contact_map {
	text-align: center;
}
.contact_tel a span, .contact_line a span {
	display: contents;
	font-size: 66%;
}
/*==================================
SP_map
==================================*/
.map {
	position: relative;
	margin: 0 auto 1em;
	padding-bottom: 250px;
	width: 95%;
	max-width: 600px;
	height: 0;
	overflow: hidden;
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
address {
	margin: 0 auto 1em;
	font-size: 15px;
}
address span {
	display: block;
}
.add02 {
	margin-left: 3em;
}
.add03 {
	margin-left: 13em;
	color: #e34472;
	font-weight: bold;
}

/*==================================
SP_menu
==================================*/
#sidebar {
	margin: 0 auto;
	width: min(95%,640px);
}
.sideUpper,
.sideNav,
.sideLower,
.topUpper,
.topLower,
.blogNav {
	margin: 0 0 16px;
}
.side_fixed_menu {
	margin: 0 auto;
	border: none;
	width: 95%;
}
.side_fixed_menu a {
	border: none;
}
.side_fixed_menu li {
	margin: 0 auto 10px;
}
.side_fixed_menu li a {
	color: inherit;
	display: block;
	text-decoration: none;
	font-size: 18px;
	text-align: center;
	width: 100%;
	padding: 16px 0;
	border: solid 1px var(--c-grey02);
	border-radius: 10px;
}
/*メニュー共通設定*/
.widget_nav_menu p,
.widget_categories p,
.widget_recent_entries p {
	padding: 8px;
	border-top: solid 2px var(--c-grey01);
	border-bottom: dotted 2px #627AD6;
	text-align: center;
	font-size: 18px;
}
/*メニュー（固定ページ/関連メニュー）*/
.widget_nav_menu,
.widget_categories,
.widget_recent_entries {
	margin: 2em auto;
	width: 95%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.widget_nav_menu ul,
.widget_categories ul,
.widget_recent_entries ul  {
	margin: 0 0 16px;
}
.widget_nav_menu li,
.widget_categories li,
.widget_recent_entries li  {
	border-bottom: solid 1px var(--c-grey01);
}
.widget_nav_menu a,
.widget_categories a,
.widget_recent_entries a {
	display: block;
	padding: 10px 1em;
	text-decoration: none;
	color: inherit;
	font-size: clamp(15px,2.5vw,16px);
}
.widget_nav_menu a::before,
.widget_categories a::before,
.widget_recent_entries a::before {
	display: inline-block;
	margin: 0 .5em 0 0;
	content: '●';
	color: #627AD6;
}

/*検索*/
.widget_search {
	text-align: center;
}
.widget_search label {
	display: none;
}
/*月別アーカイブ*/
.widget_archive {
	text-align: center;
}
.widget_archive label::before {
	content: "月別アーカイブ";
}
/*メタ情報*/
.widget_meta {
	border-bottom: solid 1px #bdbdae;
}
.widget_meta p {
	padding: 8px;
	border-bottom: solid 1px #bdbdae;
	text-align: center;
}
.widget_meta ul {
	margin: 16px 8px 0;
}
.widget_meta li {
	position: relative;
	margin: 0 0 8px;
	border-bottom: dotted 1px #bdbdae;
	font-size: 14px;
}
.widget_meta li:last-child {
	border-bottom: none;
}
/*==================================
SP_copyright
==================================*/
.copyright {
	text-align: center;
	margin: 10% 0 20%;
}
.copyright small {
	font-size: 1rem;
	font-size: 10px;
}
/*==================================
SP_footer
==================================*/
#footer {
	background-color: #eee;
}
.f_inner {
	display: none;
}
/*==================================
SP_voice
==================================*/
.voice {
	margin: 0 0 24px;
}
.voice_list li {
	margin: 0 4px 16px;
	padding: 16px;
	background: #f0f0e1;
	border: solid 1px #bdbdae;
	border-radius: 8px;
}
.voice_conts {
	overflow: hidden;
	padding: 16px;
	background: #fff;
}
.voice_conts h3,
.voice_tit {
	margin: 0 0 8px;
	padding: 8px 16px;
	background: #fff;
	border-bottom: dotted 2px #e3e3da;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.voice_txt p {
	margin: 0 0 1em;
}
.voice_pic {
	width: 150px;
	margin: 0 auto 16px;
}
.voice_pic p > :first-child {
	display: block;
	margin: 0 auto 8px;
}
.menseki {
	overflow: hidden;
	margin: 16px 0 0;
	font-size: 12px;
	color: #79796a;
}

/*==================================
SP_toppage
==================================*/
.top_nayami_list {
	position: relative;
	margin: 1em auto;
	padding: 5%;
	width: 100%;
	background: url(image/top/top_check_bgimg.png) no-repeat right bottom #ecedef;
	background-size: contain;
	box-sizing: border-box;
}
.top_nayami_list::before,
.top_nayami_list::after {
	position: absolute;
	bottom: 0;
	content: '';
	display: block;
	width: 5em;
	height: 0;
	border-top: solid 1px #627AD6;
}
.top_nayami_list::before {
	right: 50%;
	transform: rotate(25deg) translate(.25em,0);
}
.top_nayami_list::after {
	left: 50%;
	transform: rotate(-25deg) translate(-.25em,0);
}
.top_nayami_list li {
	padding: .3em;
	display: flex;
	align-items: center;
	font-size: clamp(15px,2.8vw,22px);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	transform: rotate(.03deg);
}
.top_nayami_list li::before {
	content: '';
	display: block;
	margin: 0 .5em 0 0;
	padding: .1em 0 0 0;
	width: .9em;
	height: .9em;
	background: url(image/all/check_ico.png) no-repeat center center;
	background-size: contain;
}
.top_sejutsu_bt {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5em;
	margin: 0 4px 16px;
}
.top_sejutsu_bt li {
	width: calc(50% - .5em);
	box-sizing: border-box;
}
.top_sejutsu_bt li:last-child {
	width: calc(100% - 1em);
}
.top_offer_txt {
	padding: 1em;
	font-size: clamp(15px,2vw,18px);
}
.top_offer_nots li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}
.top_offer_nots li::before {
	content: '※';
}
.top_bt01 {
	margin: 1em auto;
	width: min(50%,354px);
}
.top_point {
	position: relative;
	padding: 12% 3% 8%;
	box-sizing: border-box;
}
.top_point::before {
	content: "";
	top: -2px;
	right: 8px;
	aspect-ratio: 39/8;
	width: 40%;
	position: absolute;
	display: block;
	background: url(image/top/top_point_bgtxt.png) no-repeat center center;
	background-size: contain;
	line-height: 1;
}
.top_point_ttl {
	margin: 0 auto 1em!important;
	width: min(50%,368px);
}
.top_point_list {
	display: flex;
	flex-direction: column;
	gap: 2em;
}
.top_point_list li {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.top_point_list h3 {
	display: flex;
	align-items: center;
	font-size: clamp(16px,4vw,30px);
	line-height: 1.3;
}
.top_point_list li h3::before {
	content: '';
	display: block;
	aspect-ratio: 20/13;
	width: 2.8em;
	margin: 0 .5em 0 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.top_point_list li:first-child h3::before {
	background-image: url(image/top/point_ico01.png);
}
.top_point_list li:nth-child(2) h3::before {
	background-image: url(image/top/point_ico02.png);
}
.top_point_list li:nth-child(3) h3::before {
	background-image: url(image/top/point_ico03.png);
}
.top_point_list li:nth-child(4) h3::before {
	background-image: url(image/top/point_ico04.png);
}
.top_point_list li:nth-child(5) h3::before {
	background-image: url(image/top/point_ico05.png);
}
.top_point_list li:last-child h3::before {
	background-image: url(image/top/point_ico06.png);
}
.top_point_list h3 span {
	display: contents;
	color: var(--c-ocher01);
}
.top_point_conts figure {
	margin: 0 auto;
	width: 85%;
}
.top_point_conts figure img {
	border-radius: 8px;
}
.top_point_txt > p {
	margin: 1em auto 0!important;
	width: 85%;
}
.top_bt02 {
	margin: 2em auto 3em;
	width: 66%;
	/*display: flex;*/
	gap: min(20px,2vw);
}
.top_greet > * {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.top_greet_pic {
	margin: 0 auto;
	width: 50%;
}
.top_greet_txt {
	font-size: clamp(15px,2.5vw,16px);
}
.top_greet_bt {
	margin: 1em auto;
}
.top_line > * {
	padding: 0 0 2em;
	display: flex;
	flex-direction: column;
	gap: .5em;
}
.top_line_ttl {
	margin: 0 auto -20%;
}
.top_line > * > *:not(.top_line_ttl) {
	margin: 0 auto!important;
	width: 96%;
}
.top_line_note {
	margin: 1em auto;
	width: 90%;
	font-size: clamp(15px,3vw,18px);
}
.top_line_note li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}
.top_line_note li::before {
	content: '※';
}
/*==================================
SP_page
==================================*/
/*キャッチ*/
.banner_area {
	margin: 0 0 32px;
}
.catch_list {
	overflow: hidden;
}
.catch_list ul {
	overflow: hidden;
	margin: 4px 0;
}
.catch_list li {
	margin: 0 0 4px;
	padding: 10px 0 8px 44px;
	background: url(image/page/catch_ico01.png) no-repeat left 4px;
	font-size: 15px;
	border-bottom: dotted 2px #c9c9ba;
}
.catch_list .img_right img {
	width: auto;
	height: auto;
	max-width: 224px;
	max-height: 224px;
}
/*==================================
SP_price
==================================*/
.ryoukin_list01,
.ryoukin_list02 {
	margin: 0 auto 32px;
	width: 100%;
	text-align: center;
}
.ryoukin_list01 th,
.ryoukin_list01 td {
	width: 50%;
}
.ryoukin_list02 th,
.ryoukin_list02 td {
	width: 33.3%;
}
.ryoukin_list01 th,
.ryoukin_list01 td,
.ryoukin_list02 th,
.ryoukin_list02 td {
	padding: 3px;
	border: solid 1px #ccc;
}
.ryoukin_list01 th,
.ryoukin_list02 th {
	background: #f0f0e1;
}
.ryoukin_style01 {
	font-size: 20px;
	font-weight: bold;
	color: #000;
	margin-left: 50px;
}
.ryoukin_chui {
	text-indent: -1em;
	margin: 0 30px;
}
/*==================================
SP_form
==================================*/
.wpcf7-form {
	width: 96%;
	margin: 0 auto 30px;
}
.wpcf7-form p {
	margin: 0 auto 10px;
	line-height: 2em;
}
.privacy_policy {
	width: 92%;
	margin: 0 auto 30px;
	height: 300px;
	overflow: auto;
	border: solid 1px #999;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
}
.privacy_policy dl dt {
	margin: 0 auto 10px;
	font-weight: bold;
}
.privacy_policy dl dd {
	margin: 0 auto 2em;
}
.required {
	background: #ffe6e6;
	color: #ff7373;
	padding: 2px;
	border-radius: 5px;
	font-size: 90%;
}
.any {
	background: #ffe599;
	color: #ff8000;
	padding: 2px;
	border-radius: 5px;
	font-size: 90%;
}
.wpcf7-text,
.wpcf7-textarea {
	width: 100%;
	line-height: 2em;
	font-size: 16px;
}
#form_contents article {
	margin: 0 auto;
	max-width: 640px;
}
.form_atention {
	background: #ffdfdf none repeat scroll 0 0;
	border: 1px solid #f2f2f2;
	margin: 0 auto 20px;
	padding: 15px;
	width: 96%;
	max-width: 640px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.form-width {
	max-width: 100%;
}
/*==================================
SP_blog
==================================*/
ul.blog_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2em;
}
ul.blog_list li {
	width: 50%;
	margin-top: 0;
	padding: 0 0.2em;
	box-sizing: border-box;
}
.post_box {
	box-sizing: border-box;
	margin: 1em 0.5em;
}
h2.post_box_post_ttl {
	font-weight: 800;
	font-size: clamp(15px, 1.4vw, 22px);
}
h2.post_box_post_ttl a {
	color: inherit;
	text-decoration: none;
}
.post_box_post time {
	font-size: clamp(10px, 1vw, 14px);
}
.post_box_post time::before {
	font-family: "icomoon";
	content: "\e900";
	display: inline-block;
	margin-right: 2px;
	vertical-align: baseline;
}
.post_box_info {
	box-sizing: border-box;
}
p.post_box_info_cat a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	font-size: clamp(10px, 1vw, 14px);
	margin-right: 6px;
	transition: 0.4s;
}
p.post_box_info_cat a::before {
	font-family: "icomoon";
	content: "\e901";
	display: inline-block;
	margin-right: 2px;
	vertical-align: bottom;
}
p.post_box_info_cat a:hover {
	letter-spacing: 0.05em;
}
.post_box_thumb {
	overflow: hidden;
}
.post_box_thumb_img {
	width: 100%;
	background-size: cover;
	background-position: center;
	height: auto;
	padding-top: 68%;
	overflow: hidden;
	transition-duration: 0.3s;
}

a:hover .post_box_thumb_img {
	transform: scale(1.1, 1.1); /*画像の拡大*/
}

@media screen and (min-width: 782px) {
	.post_box {
		margin: 14px;
		overflow: hidden;
	}
	.post_box_thumb {
		margin-bottom: 0.5em;
	}
}

/*==================================
SP_pager
==================================*/
.pager {
	text-align: right;
	padding-bottom: 10px;
}
a.page-numbers,
.pager .current {
	color: rgba(214, 176, 78, 1);
	border: solid 1px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 5px 8px;
	margin: 0 2px;
}
.pager .current {
	background: rgba(214, 176, 78, 1);
	border: solid 1px rgba(0, 0, 0, 0.1);
	color: rgba(255, 255, 255, 1);
}
.navigation {
	overflow: hidden;
	margin: 0 auto;
	width: 95%;
}
.navigation .alignleft {
	width: 48%;
	float: left;
}
.navigation .alignright {
	width: 48%;
	float: right;
	text-align: right;
}
/*==================================
for iPhone Landscape(iPhone 横)
==================================*/
@media screen and (min-width: 480px) {
	.gnav img {
		width: 48%;
	}
	.br_onoff {
		display: none;
	}
	.img_left,
	.alignleft {
		float: left;
		margin: 0 8px 8px 0;
	}
	.img_right,
	.alignright {
		float: right;
		margin: 0 0 8px 8px;
	}
	.voice_pic {
		float: left;
		margin: 0 16px 0 0;
	}
	.voice_pic p > :first-child {
		display: block;
		margin: 0 0 8px;
	}
	.catch_list .img_right {
		max-width: none;
		float: none;
		margin: 0 0 8px;
	}
	/*      スマホ横アクセス
	---------------------------------*/
	.access_box01 .img_left {
		width: 44.64%;
		max-width: none;
	}
	.access_info01 {
		float: right;
		width: 52.08%;
	}
	.access_pic {
		float: left;
		width: 47%;
	}
	.access_info02 {
		clear: both;
	}
}
/*==================================
for iPhone Landscape(iPhone 480px~782px)
==================================*/
@media screen and (min-width: 480px) and (max-width: 782px) {
	.contact_conts .img_left {
		float: none;
	}
	.copyright {
		margin: 10% 0 15%;
	}
}
/*==================================
for iPad~PC
==================================*/
@media screen and (min-width: 782px) {
	/*==================================
	PC_base
	==================================*/
	a:hover img,
	a:active img {
		-webkit-opacity: 0.7;
		opacity: 0.7;
	}
	.only_sp {
		display: none;
	}
	.only_pc {
		display: block;
	}
	body {
		line-height: 1.6;
		width: 100%;
		max-width: 1240px; /*main_imgの幅*/
		margin-top: 0 !important;
	}
	/*==================================
	PC_layout
	==================================*/
	.conts {
		margin: 0 24px 24px;
	}
	.ttl {
		margin: 0 0 32px;
	}
	.bnr {
		margin: 0 0 16px;
		text-align: center;
	}

	/*==================================
	PC_heading
	==================================*/
	.h_style01,
	.h_style02,
	.news_ttl {
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3",
			"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
			"MS PGothic", sans-serif;
	}
	.h_style01 /*下層ページのh2などに利用してください*/ {
		margin: 0 0 32px;
		padding: 20px;
		font-size: 30px;
		background-color: #eeeeee; /* 背景色 */
    border: 1px solid var(--c-grey02);
		border-radius: 10px;
	color: #627AD6; /* 文字色 */
	padding: 15px 25px; /* 上下・左右の余白 */
	position:relative;
}

	.h_style02,
	.post h3:not([class]),
	.block_wrapper h2:not(.nostyle)
	/*トップのh2、下層のh3*/ {
		font-size: 18px;
		margin: 3em auto 1.5em;
	}
	.h_style03,
	.post h4,
	.block_wrapper h3:not(.nostyle)
	/*トップのh3、下層のh4*/ {
		clear: both;
		overflow: hidden;
		margin: 32px 0 24px;
	}
	.h_style04,
	.post h5,
	.block_wrapper h4:not(.nostyle)
	/*ブログ見出し*/ {
		margin: 24px 0 16px;
		padding: 0 8px 2px 32px;
		font-size: 18px;
	}
	/*==================================
	PC_header
	==================================*/
	.h_inner,.h_info {
		display: flex;
		flex-direction: column;
		gap:.5em;
		margin: 0 auto;
		width: 98%;
		max-width: 1240px;
	}
	.h_contact {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1em;
	}
	.f_inner .h_contact {
		padding: 0 0 .5em;
		border-bottom: solid 1px var(--c-black01);
	}
	.h_add {
		padding: .35em 0 0;
	}
	.h_add a {
		color: #627AD6;
		font-weight: bold;
		font-size: 90%;
	}
	/*==================================
	PC_navigation
	==================================*/
	.gnav_pc {
		border-top: solid 1px var(--c-black01);
		overflow: hidden;
		max-width: 1240px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
		transform: rotate(.03deg);
		font-weight: bold;
	}
	.gnav_pc li {
		text-align: center;
		width: 20%;
	}
	.gnav_pc li a {
		display: block;
		padding: 15px 10px;
		color: inherit;
		text-decoration: none;
	}
	.gnav_pc li:hover {
		opacity: 0.7;
	}
	/*==================================
	PC_mainimg
	==================================*/
	.main_img {
		text-align: center;
		background-color: #f6f6f6;
	}
	.main_point {
		width: min(628px,50%);
		padding: 16px;
		right: 46%;
		left: auto;
		border-radius: 15px 15px 0 0;
	}
	.main_point::before {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(-100%,-100%);
		display: block;
		width: 15px;
		height: 15px;
		content: url(image/top/main_img_parts.png);
	}
	.main_catch {
		flex-direction: row-reverse;
		align-items: center;
		margin: 0 auto;
		padding: min(2%,38px) min(5%,2px);
		width: min(98%,1240px);
		background-image: linear-gradient( 328deg, rgb(229,229,229) 31%, rgb(232,231,220) 52%, rgb(255,248,158) 78%);
		border-radius: 20px;
		box-sizing: border-box;
		justify-content: space-evenly;
	}
	.main_catch_conts {
		padding: min(2%,8px) min(2%,24px) 0 0;
		display: block;
	}
	.main_catch .main_catch_img {
    width: 50%;
    margin: 1.6em auto;
}
	/*==================================
	PC_contact
	==================================*/
	.contact_conts {
		margin: 0 auto 32px;
		border-radius: 10px;
	}
	.contact_upper {
		width: auto;
		flex-direction: row-reverse;
		justify-content: center;
	}
	.contact_upper > * {
		width: calc(50% - 1em);
	}
	.contact_add {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
	}
	.page_top_pc {
		display: block;
		margin: 0 32px 0 0;
		text-align: right;
		font-size: 13px;
	}
	.page_top_pc a {
		color: #6c4c3d;
	}
	.page_top_pc a:hover,
	.page_top_pc a:active {
		color: #baea83;
	}
	/*==================================
	PC_menu sidemenu
	==================================*/
	.side_fixed_menu li {
		margin: 0 auto 16px;
	}
	.side_fixed_menu li a {
		padding: 16px 0;
		transition: .5s;
	}
	.side_fixed_menu li a:hover {
		color: var(--c-blue01);
		background: var(--c-blue02);
		border-color: solid 1px var(--c-blue01);
	}
	/*メニュー（固定ページ/関連メニュー）*/
	.widget_nav_menu,
	#custom_html-13,
	.widget_categories,
	.widget_recent_entries,
	.widget_search,
	.widget_archive,
	.widget_meta {
		width: 100%;
	}
	.widget_nav_menu li a:hover,
	.widget_categories li a:hover,
	.widget_recent_entries li a:hover {
		color: var(--c-blue01);
	}
	.widget_nav_menu a:hover::before,
	.widget_categories a:hover::before,
	.widget_recent_entries a:hover::before {
		color: var(--c-grey01);
	}
	/*==================================
	PC_copyright
	==================================*/
	.copyright {
		padding: 16px 0;
		margin: 0;
	}
	.copyright small {
		font-size: 14px;
	}
	.copyright a {
		color: inherit;
	}
	.copyright a:hover,
	.copyright a:active {
		color: #baea83;
	}
	/*==================================
	PC_footer
	==================================*/
	.f_inner {
		display: flex;
		flex-direction: column;
		gap:.5em;
		margin: 0 auto;
		padding: min(8vw,48px) 0 1em;
		width: 98%;
		max-width: 1240px;
	}
	/*==================================
	PC_voice
	==================================*/
	.voice {
		margin: 0 0 40px;
	}
	.voice_list li {
		margin: 0 24px 32px;
		padding: 24px;
	}
	.voice_conts {
		padding: 24px;
	}
	.voice_conts h3 {
		width: 100%;
	}
	.voice_txt {
		clear: right;
		overflow: hidden;
		padding: 0 0 0 16px;
	}
	.voice_pic {
		float: left;
		margin: 0 16px 0 0;
	}
	.voice_pic img {
		display: inline-block;
		margin: 0 0 8px;
		max-width: 100%;
		height: auto;
	}
	/*==================================
	PC_toppage
	==================================*/
	.top_catch h2 {
		margin: 0 0 32px;
	}
	.top_sejutsu_bt {
		margin: 0 0 24px;
		gap: 1em;
	}
	.top_nayami_list {
		width: min(98%, 720px);
		border-radius: 10px;
	}
	.top_sejutsu_bt li {
		padding: .5em 0;
		width: calc(50% - 1em);
		box-sizing: border-box;
	}
	.top_point {
		margin: 0 auto;
		width: 98%;
		border-radius: 10px;
	}
	.top_point_list {
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1em;
	}
	.top_point_list li {
		width: calc(50% - 1em)
	}
	.top_point_list h3 {
		min-height: 2.8em;
		font-size: clamp(16px,2.5vw,20px);
	}
	.top_greet > * {
		flex-direction: row;
		gap: 1em;
	}
	.top_greet_pic {
		width: calc(40% - .5em);
	}
	.top_greet_txt {
		width: calc(60% - .5em);
	}
	.top_line {
		border-radius: 10px;
	}
	.top_line > * > *:not(.top_line_ttl) {
		width: 90%;
	}
	/*==================================
	PC_page
	==================================*/
	.banner_area {
		text-align: center;
	}
	.catch_list ul {
		margin: 4px 0;
		float: left;
		width: 432px;
	}
	.catch_list li {
		padding: 6px 0 6px 44px;
		font-size: 18px;
	}
	.catch_list .img_right {
		width: 224px;
		float: right;
	}
	.catch_list .img_right img {
		width: auto;
		height: auto;
		max-width: 224px;
		max-height: 224px;
	}
	/*==================================
	PC_access
	==================================*/
	.access_info01 p {
		margin: 0;
	}
	.access_info02 {
		clear: both;
	}
	.access_info03 {
		margin: 0 auto;
		width: 500px;
	}

	/*==================================
	PC_form
	==================================*/
	.form_atention {
		width: 92%;
	}
	.privacy_policy {
		height: 150px;
	}
	/*==================================
	PC_Blog
	==================================*/
	.date {
		font-size: 13px;
		color: #ccc;
		text-align: right;
	}
	/*==================================
	PC_pager
	==================================*/
	.navigation {
		width: 630px;
	}
}
/*==================================
PC iPad landscape ~
==================================*/
@media screen and (min-width: 960px) {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
	#contents {
		margin: 0 auto 40px;
		padding: 48px 36px;
		width: 96%;
		max-width: 1090px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#contents::after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: "";
		clear: both;
		height: 0;
	}
	#form_contents {
		width: 720px;
		margin: 0 auto;
	}
	#main {
		z-index: -1;
		float: right;
		width: 74%;
		max-width: 720px;
	}
	#sidebar {
		display: block;
		float: left;
		width: 25%;
		max-width: 256px;
	}
	#sidebar > div {
		width: 100%;
	}
	/* img */
	.img_left {
		margin: 0 16px 16px 0;
		float: left;
	}
	.img_right {
		margin: 0 0 16px 16px;
		float: right;
	}
	.side_fixed_menu {
		width: 100%;
	}
	.h_upper > * {
		margin: 0 auto;
		padding: 0 0 0 4%;
		width: 98%;
		max-width: 1240px;
		font-weight: 500;
		text-align: left;
		box-sizing: border-box;
	}
	.h_inner, .f_inner {
		justify-content: space-between;
		flex-direction: row;
		align-items: center;
		gap: 1em;
	}
	.h_logo {
		width: min(25%,366px);
	}
	.h_info {
		width: min(60%,708px);
	}
	.h_add {
		font-size: 14px;
		width: 16em;
		padding-left: 8px;
	}
	.h_contact {
		gap: .5em;
	}
	.h_contact > :nth-child(2) {
		width: calc((100% - 16em)*0.7);
	}
	.h_contact > :last-child {
		width: calc((100% - 16em)*0.3);
	}

}
/*==================================
PC Wide
==================================*/
@media screen and (min-width: 1240px) {
	body {
		min-width: 1240px;
		max-width: none;
	}
	.side_fixed_menu {
		width: 100%;
	}
}
