@charset "utf-8";

/* Config ------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overscroll-behavior: none; /*--- iOS のビヨヨン効果無効化 ---*/
}

* {
	box-sizing:border-box;
	padding: 0;
	margin: 0;
}


body {
	background-color: #fff;
	color: #051733;
	line-height: 30px;
	font-family: 'Sawarabi Mincho','Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS ゴシック","MS Gothic",Verdana,sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;

	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /*--- iOS の文字サイズ自動調節無効化 ---*/
	text-size-adjust: 100%;
}


a {color: #fda615; text-decoration: none;}
a:active {color: #fda615; text-decoration: none;}
a:visited {color: #fda615; text-decoration: none;}
a:hover {color: #ffcf7e; text-decoration: none;}

a:link img {border-color: #666;}
a:visited img {border-color: #666;}
a:hover img {
	border-color: #666;
	opacity: 0.66;
	-webkit-transition: .2s;
	transition: .2s;
}


/*--- list ---*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ol {
	list-style: decimal;
	margin: 0;
	padding-left: 0;
}


/* 上マージン */
.mT-10 {margin-top: -10px ;}
.mT-20 {margin-top: -20px ;}

.mT0  {margin-top: 0 !important;}
.mT1  {margin-top: 1px;}
.mT5  {margin-top: 5px;}
.mT10 {margin-top: 10px;}
.mT15 {margin-top: 15px;}
.mT20 {margin-top: 20px;}
.mT25 {margin-top: 25px;}
.mT30 {margin-top: 30px;}
.mT40 {margin-top: 40px;}
.mT50 {margin-top: 50px;}
.mT60 {margin-top: 60px;}


/* 下マージン */
.mB-10 { margin-bottom: -10px ;}

.mB0  {margin-bottom: 0 !important;}
.mB5  {margin-bottom: 5px;}
.mB10 {margin-bottom: 10px;}
.mB15 {margin-bottom: 15px;}
.mB20 {margin-bottom: 20px;}
.mB25 {margin-bottom: 25px;}
.mB30 {margin-bottom: 30px;}
.mB40 {margin-bottom: 40px;}
.mB50 {margin-bottom: 50px;}
.mB100 {margin-bottom: 100px;}


/* Fonts */
.f10 {font-size: 10px;}
.f12 {font-size: 12px;}
.f14 {font-size: 14px;}
.f16 {font-size: 16px;}
.f18 {font-size: 18px;}
.f20 {font-size: 20px;}
.f22 {font-size: 22px;}
.f24 {font-size: 24px;}
.f26 {font-size: 26px;}
.f28 {font-size: 28px;}
.f30 {font-size: 30px;}
.f32 {font-size: 32px;}
.f36 {font-size: 36px;}
.f38 {font-size: 36px;}
.f40 {font-size: 40px;}

.normal {font-weight: 400;}
.bold {font-weight: bold;}

.right {text-align: right;}
.center {text-align: center;}
.left {text-align: left;}


/*--- Load ---*/
#fadeWhite {
	position: fixed;
	width: 100%;
	background: #f7f7f7;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 99999;
}




/*--- 共通パーツ -----------*/
.whiteBox {
	width: 100%;
	max-width: 1100px;
	padding: 36px 30px 33px; 
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
	border-radius: 6px;
}

.infoBox {
	display: flex;
	max-width: 980px;
	justify-content: space-around;
	padding: 40px 20px 10px;
	margin: 0 auto -20px;
}

.infoBox li {
	width: 100%;
	max-width: 420px;
	padding: 20px; 
	margin: 0 20px;
	text-align:center;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0px 0px 0px 8px #f2e6cd ;/*外側*/
	border: dashed 2px #ccbe9f/*破線*/
}


h1 {
	font-size: 26px;
	font-weight: 400;
	padding: 0 0 22px;
	margin: 0 auto 31px;
	text-align:center;
	background-image: linear-gradient(90deg, #fda615 0 15%, #fda615 15%, transparent);
	background-repeat: no-repeat;
	background-size: 260px 5px;
	background-position: bottom;
}


h2 {
	font-size: 22px;
	font-weight: 400;
	border-left: 10px solid #fda615;
	padding: 0 0 3px 16px;
	margin-bottom: 21px;
	text-align: left;
	border-left-style: double;
}


h3 {
	position: relative;
	width: 100%;
	max-width: fit-content;
	font-size: 22px;
	font-weight: normal;
	text-align:center;
	padding: 8px 25px 12px 25px;
	border-top: solid 2px #fda615;
	border-bottom: solid 2px #fda615;
	margin: 42px 0 33px;
}
h3:before, h3:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	height: calc(100% + 14px);
	background-color: #fda615;
}
h3:before {
	left: 7px;
}
h3:after {
	right: 7px;
}


h4 {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
	text-align: right;
}

.bold {
	font-weight: bold;
}

.green {
	color: #12c112;
}

.blue {
	color: #0099de;
	font-weight: normal;
}

.red {
	color: #f15a6b;
}
.red2 {
	color: #eb6877;
}

.big {
	color: #d7000f;
	font-size: 22px;
	font-weight: bold;
	line-height: 32px
}

.br {
	display: block;
	content: "";
	height: 15px;
}
.br2 {
	margin-top: 10px;
}

.set {
	text-indent: -1.0rem;
	padding-left: 1.0rem;
}
.set2 {
	text-indent: -20px;
	padding-left: 20px;
}

.etc_pc {
	display: block;
}
.etc_sp {
	display: none;
}
/*--- 共通パーツ -----------*/




/* headerMenu --------------------------------------------*/
#sp_header {
	display: none;
}

#up_menu {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	background-image: linear-gradient(45deg, #f7f7f7 0%, #fff 100%); opacity: 0.94; filter: alpha(opacity=94);
	background-size: cover;
	transition: ease solid 3s;
	z-index: 10;
	box-shadow: 0 0 4px #888;
	-moz-box-shadow: 0 0 4px #888;
	-webkit-box-shadow: 0 0 4px #888;
}

.headerMenu {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	margin: 0 auto;
}

.headerMenu li {
	padding-top: 9px;
	line-height: 40px;
	text-align: center;
	transition: all 0.5s ease-out;
}
.headerMenu li img.logo {
	margin-top: -8px;
	max-width: 200px;
}

.headerMenu li a {
	position: relative;
	color: #051733;
}
ul.menubar {
	display: flex;
	justify-content: space-between;
	width: 70%;
}

.menuListLink::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fda615;
	border-radius: 3px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .2s;
}
.menuListLink:hover::after {
	transform: scale(1, 1);
}




/* btn -------------------------------*/
/*--- 資料請求 --------------*/
.btn,
a.btn,
button.btn {
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}

a.btn-flat {
	margin-top: -10px;
	height: 70px;
	overflow: hidden;
	padding: 18px 10px 8px;
	background: #051733;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 0 4px #aaa;
	-moz-box-shadow: 0 0 4px #aaa;
	-webkit-box-shadow: 0 0 4px #aaa;
}

a.btn-flat span {
	color: #fff;
	position: relative;
	z-index: 1;
}

a.btn-flat:before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 116px;
	height: 100px;
	content: '';
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-transform: translateY(-92%);
	transform: translateY(-92%);
	background: #fda615;
}

a.btn-flat:hover:before {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
/*--- 資料請求 -------------*/




/* btn -------------------------------*/
.btn01 {
	position: relative;
	display: inline-block;
	width: 160px;
	height: 46px;
	padding: 10px 5px;
	margin: 0 5px;
	text-align: center;
	background: #fda615;
	border: 2px solid #eee;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	overflow: hidden;
	line-heigt: 1.2em;
	-webkit-transition: .2s;
	transition: .2s;
}

.btn01.long {
	width: 230px;
}

.btn01::before,
.btn01::after {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 51%;
	height: 100%;
	background: #051733;
	-webkit-transition: .2s;
	transition: .2s;
}
.btn01::before {
	left: 0;
}
.btn01::after {
	right: 0;
}
.btn01:hover::before,
.btn01:hover::after {
	width: 0;
}
.btn01:hover {
	color: #fff;
}
.btn01 span {
	position: relative;
	z-index: 1;
}


/*--- btn jump -----------------------*/
.btn01_jump {
	overflow: hidden;
	padding: 6px 5px;
	margin: 22px 2px 0;

}
.btn01_jump a {
	color: #fff;
}
.result {
	left: 2px;
}
.btn01:hover .result {
	left: 5px;
	-webkit-transition: .5s;
	transition: .4s;
}
.btn01:hover .result img {
	opacity: 0.9;
}




/* ◆1. top ----------------------------------------------*/
/* ファーストビュー ------------------*/
#Pwrap {
	height: 100%;
	height: 780px;
	background-image: none;
}
#Pwrap::before {
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 720px;
	top: 60px;
	left: 0;
	z-index: -2;
	animation: image_anime 6s ease;
}
.bg_1::before {
	background: url(img/top/01.jpg?20251028-1) center 0% no-repeat;
}
.bg_2::before {
	background: url(img/top/02.jpg?20251028-1) center 0% no-repeat;
}

@keyframes image_anime {
4% {
	background-image: url(img/top/02.jpg);
}
40% {
	background-image: url(img/top/02.jpg);
 }
100% {
	background-image: url(img/top/02.jpg);
}
}


.Content1-1 {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: 700px;
	height: fit-content;
	padding: 39px 20px 0;
	margin: 130px auto 0;
	background: rgba(255,255,255,0.7);
	border-radius: 6px;
	z-index: 1;
}

.firstVlogo {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
.firstVlogo img {
	width: 100%;
	max-width: 360px;
	padding: 0;
	margin: 0 auto;
}
.Content1-1 .m1 {
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	padding: 32px 0 32px;
	margin-bottom: -1px;
}

.arrowT.first {
	padding-bottom: 30px;
	margin-top: -255px;
}


#wrap_1 {
	width: 100%;
	margin: 0 auto;
	background: url(img/top/wrap.jpg?20251026-1) center 0% repeat;
		overflow: hidden;
}




/* お知らせ --------------------------*/
.Content1-2 {
	max-width: 1200px;
	padding: 46px 20px 0;
	margin: 0 auto;
}

.Content1-2 h1 {
	margin-bottom: 40px;
}

.wng {
	margin-bottom: -5px;
}
.wng .whatsnew .newmark {
	background-color: #64b9d7;
	padding: 0px 5px 2px;
	margin-right: 4px;
	vertical-align: top;
}
.wng .whatsnew a:hover {
    background-color: #fff;
}

h2.wnew {
	margin-top: 45px;
	margin-bottom: 28px;
}

.Content1-2 table {
	width: 100%;
	padding: 0;
}

.Content1-2 .btn01_jump {
	margin-bottom: 8px;
}




/* 障害児相談支援事業について --------*/
.Content1-3 {
	max-width: 1200px;
	padding: 38px 20px 0;
	margin: 0 auto;
}
.Content1-3 h1 {
	margin-bottom: 40px;
}

.C3_LR {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	margin: 0 auto;
}
.C3_LR .solBox {
	margin-right: -60px;
}
.C3_LR .solBox img {
	position: relative;
	width: 100%;
	padding: 0;
	border-radius: 6px;
	z-index: 1;
}
.C3_LR .C3Box_txt {
	position: relative;
	width: 108%;
	line-height: 30px;
	padding: 20px 20px 21px 24px;
	margin-top: -8px;
	background: #fff;
	opacity: 0.90;
	border-radius: 6px;
	z-index: 2;
}

.arrowT {
	width: 100%;
	max-width: 1120px;
	padding: 42px 0 0;
	margin: 0 auto;
	text-align: center;
}
.arrowT img {
	width: 76px;
}




/* 相談について ----------------------*/
.Content1-4 {
	max-width: 1200px;
	padding: 38px 20px 0;
	margin: 0 auto;
}
.Content1-4 h1 {
	margin-bottom: 40px;
}

.uum {
	width: 100%;
	padding: 17px 0 0;
	margin: 0 auto -30px;
}
.boxThree {
	position: relative;
	max-width: 100%;
	padding: 9px 16px 3px 16px;
	margin: 0 auto 47px;
	background: rgba(255,255,255,0.3);
	border-top: 3px solid #fdba4a;
	border-right: 3px solid #fdba4a;
	border-left: 3px solid #fda615;
	border-bottom: 3px solid #fda615;
	border-radius: 8px;
}
.boxThree span.box-title {
	position: absolute;
	display: inline-block;
	width: 370px;
	top: -20px;
	left: 16px;
	padding: 7px 10px 5px 12px;
	font-size: 20px;
	line-height: 1;
	background-image: linear-gradient(45deg, #fda615 0%, #fbe7d8 100%);
	border-radius: 8px;
}
.boxThree span.box-title span.uum_M {
	position: fixed;
    top: 7px;
}
.boxThree span.box-title img {
	width: 64px;
	margin: 0 8px 0 -4px;
}

.boxThree.list-mv02 {
	overflow: visible;
}
.boxThree.list-mv07 {
	overflow: visible;
}

.boxThree .flexT {
	height: auto;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.boxThree .boxThree-txt {
	font-size: 18px;
	padding: 66px 0 19px;
}


/* このような相談をお受けします ------*/
.uum2 {
	width: 100%;
	padding: 10px 0 0;
	margin: 0 auto 0;
}

.boxThree2 {
	display: flex;
	align-items: center;
	font-size: 18px;
	padding: 6px 10px 8px 12px;
	margin-bottom: 60px;
	background: #ffeaca;
    box-shadow: 0px 0px 0px 10px #ffeaca;
    border: dashed 2px white;
	border-radius: 8px;
}
.boxThree2 img {
	width: 96px;
	margin: 0 13px -2px 1px;
}

.tips {
	margin: -19px auto 1px;
}




/* サービス利用までの流れ ------------*/
.Content1-5 {
	max-width: 980px;
	padding: 38px 20px 86px;
	margin: 0 auto;
}
.Content1-5 h2 {
	margin: 33px 0 30px;
}
.Content1-5 h2.C1-5-2 {
	margin: 69px 0 30px;
}

.boxThree3 {
	max-width: 100%;
	font-size: 20px;
	text-align: center;
	padding: 22px 16px 23px 16px;
	margin: 0 auto -26px;
	background: rgba(255, 255, 255, 0.4);
	border-top: 3px solid #fdba4a;
	border-right: 3px solid #fdba4a;
	border-left: 3px solid #fda615;
	border-bottom: 3px solid #fda615;
	border-radius: 8px;
}
.boxThree4 {
	max-width: 100%;
	font-size: 20px;
	text-align: center;
	padding: 18px 16px 19px 16px;
	margin: 0 auto -26px;
	background: rgba(255, 255, 255, 0.4);
	border-top: 3px solid #143568;
	border-right: 3px solid #143568;
	border-left: 3px solid #051733;
	border-bottom: 3px solid #051733;
	border-radius: 8px;
}

.arrowT2 {
	width: 100%;
	max-width: 1120px;
	padding: 0;
	margin: 10px auto 8px;
	text-align: center;
}
.arrowT2 img {
	width: 64px;
}




#Pwrap1 {
	height: 320px;
	background-image: none;
}
#Pwrap1::before {
	background-size: cover;
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 60px;
	left: 0;
	z-index: -1;
}




/* 事業所情報 ------------------------*/
#c5 {
	margin-top: 8px;
}
.Content1-6 {
	max-width: 1200px;
	padding: 48px 20px 42px;
	margin: 0 auto;
}

/*--- 表 -------------------*/
#info {
	padding-top: 7px;
	margin-bottom: 6px;
}
#info table {
	width: 100%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0 2px;
}
#info table th {
	position: relative;
	text-align: left;
	width: 22.2%;
	background-color: #e0e4ea;
	font-weight: normal;
	padding: 11px 20px 13px;
	border-radius: 6px 0 0 6px;
}
#info table th:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #e0e4ea;
}
#info table td {
	text-align: left;
	background: rgba(255,255,255,0.4);
	padding: 11px 20px 13px;
	border: 1px solid #e0e4ea;
	border-radius: 0 6px 6px 0;
}
/*--- 表 -------------------*/

iframe {
	height: 320px;
	margin: 0 auto 52px;
}




/* SNS -------------------------------*/
.sns_txtvox {
	width: 100%;
	max-width: 259px;
	padding: 0 0 31px;
	margin: -9px auto 0;
	text-align: center;
}

.sns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0px 21px;
	margin: 0 auto;
}
.sns img {
	width: 48px;
}




/* お問い合わせ ----------------------*/
#wrap_2 {
	width: 100%;
	margin: 0 auto;
	background: url(img/top/obi.jpg?20251008-2) center center no-repeat;
	background-size: cover;
		overflow: hidden;
}
.contactB {
	text-align: center;
	padding: 38px 0 52px;
	margin: 0 auto;
}
.contactB .btn01_jump {
	padding: 5px;
	/* border: 2px solid #f7f7f7; ---*/
}



/* footer ------------------------------------------------*/
#bottom_line {
	display: block;
	padding: 4px 0;
	background-image: linear-gradient(30deg, #fda615 0%, #fdba4a 100%);
}


footer {
	color: #fff;
	text-align: center;
	padding : 32px 5px 32px;
	margin: 0;
	background-image: linear-gradient(30deg, #051733 0%, #0b367a 100%);
		overflow: hidden;
}

.footerSP {
	display: none;
}

.flink_sp {
	display: none;
}

footer a:link {color: #fff; text-decoration: none;}
footer a:active {color: #eee; text-decoration: none;}
footer a:visited {color: #eee; text-decoration: none;}
footer a:hover {color: #fff; text-decoration: underline;}

.snsIcons img {
	max-width: 56px;
	margin: 34px 10px 0px;
	border: 1px solid #000;
}
.snsIcons.twitter img {
	border: none;
}

.footer_info {
	max-width: 800px;
	align-items: center;
	margin: 33px auto 23px;
}
.footer_info img {
	max-width: 240px;
	margin: 0 auto 14px;
}

.footer_tel {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	padding: 12px 0 0;
	margin: 0 auto;
}
.footer_tel img {
	max-width: 36px;
	margin: 2px 16px 0 0;
}

.bizc {
	margin: 32px auto -2px;
}
.bizc img {
	max-width: 238px;
	margin: 0;
}

footer .footer_480 {
	margin-bottom: 24px;
}
footer br.sp_br480 {
	display: none;
}
footer span.bar_sp480 {
	display: none;
}


br.sp_br {
	display: none;
}
span.bar_sp {
	display: none;
}
.sp_br834 {
	display: none;
}
.sp_br480 {
	display: none;
}
.sp_br320 {
	display: none;
}

br.sp_br_copy {
	display: none;
}




/* ◆6. お問い合わせ -------------------------------------*/
.Content6 {
	width: 100%;
	background: url(img/top/wrap.jpg) center 0% repeat;
	padding: 116px 20px 40px;
	margin: 0 auto;
}

.Content6_1 {
	max-width: 1120px;
	padding: 0;
	margin: 0 auto 0;
}


/*--- フォーム ---*/
.Content6 input {
	outline: none;
	padding: 5px 5px 6px;/*--- 2025.10 ---*/
	border-width: 1px;
}
.Content6 input, select {
	font-size: 15px;
}
.Content6 textarea {
	outline: none;
}

.Content6 section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 11px 0 20px;
}
.Content6 section table {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 20px 0 19px;
}
.Content6 section th, section td {
	font-size: 15px;
	border: 1px solid #e0e4ea;
	margin: 0 auto;
	padding: 15px 15px 16px;
	border-radius: 0 6px 6px 0;
}
.Content6 section th {
	width: 25%;
	font-weight: normal;
	text-align: left;
	background-color: #e0e4ea;
	padding: 10px 15px 11px;
	border-radius: 6px 0 0 6px;
}
.Content6 section th span {
	color: #fda615;
	font-size: 0.90rem;
}

.Content6 textarea {
	width: 100%;
	font-size: 15px;
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3",Verdana,sans-serif;
}
.Content6 section td textarea {
	margin: 1px 0 -9px;/*--- 2025.10 ---*/
}

.Content6 input[type="date" i] {
	font-family: 'Noto Sans JP','M PLUS 1p',"メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3",Verdana,sans-serif;
	padding: 0;
}

.Content6 select {
	height: 27px;
}

.Content6 input.btn-OF {
	margin-left: 0 !important;
}
.tenpu {
	padding-top: 7px;
}


/*--- アコーディオン--------*/
.accordion-area {
	padding: 7px 0 13px;
	margin:0 auto;
	border-radius: 6px;
}
.accordion-area li {
	margin: 0;
}
.accordion-area section {
	border: 2px solid #051733;
	border-radius: 6px;
}

.title {
	position: relative;
	cursor: pointer;
	font-size: 18px;
	padding: 16px 33px 18px 16px;
	background: rgba(255,255,255,0.4);
	transition: all .5s ease;
}
.title::before,
.title::after {
	position: absolute;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #051733;
}
.title::before {
	top: 48%;
	right: 16px;
	transform: rotate(0deg);
}
.title::after {
	top:48%;
	right: 16px;
	transform: rotate(90deg);
}
.title.close::before {
	transform: rotate(45deg);
}
.title.close::after {
	transform: rotate(-45deg);
}

.box {
	cursor: pointer;
	display: none;
	margin: 0 auto;
	padding: 6px 17px 17px 17px;
	background: rgba(255,255,255,0.4);
}
/*--- アコーディオン--------*/


/*--- プライバシーポリシー ---*/
.Content6_1 .qaInner {
	padding: 0;
	margin: 12px auto -13px;
}
.Content6 .qaInner section {
	padding: 0;
	border: 1px solid #ccc;
}

.Content6 .qaInner .title {
	font-size: 16px;
	padding: 15px 33px 17px 16px;
}
.Content6 .qaInner .box {
	max-height: 45vh;
	overflow-y: scroll;
	padding-top: 8px;
}


/*--- ボタン ---*/
.Content6 .submitB {
	display: flex;
	justify-content: center;
	padding-top: 29px;
	margin: 11px auto 0;
	text-align: center;
	height: 65px;
}

.Content6 input[type="submit" i] {
	position: relative;
	display: inline-block;
	padding: 0.4em 0.6em 0.45em;/*--- 2025.10 ---*/
	margin: 0 10px;
	text-decoration: none;
	color: #fff;
	background: #98999a;
	border: solid 1px #999;
	border-radius: 6px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
	-webkit-appearance: none;
}
.Content6 input[type="submit" i]:hover {
		background: #ffa800;
}




/*--- thanks page ---*/
.entry-content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.Content6_thanks {
	max-width: 720px;
	margin: 0 auto;
	padding: 116px 20px 0;
	text-align: center;
}




/* ◆プライバシーポリシー --------------------------------*/
.cPP_Text1 {
	max-width: 1020px;
	padding: 0 20px 13px;
	margin: 0 auto;
}

.mT-br {
	display: block;
	content: "";
	height: 26px;
}

.set_pp {
	text-indent: -18px;
	padding-left: 26px;
}




/* ◆blog ------------------------------------------------*/
/*--- 一覧 ---*/
#blog_wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	padding-bottom: 16px; /*--- ページャー出たら消す ---*/
}

.pt-cv-wrapper {
	max-width: 1120px;
	padding: 50px 20px 8px;
	margin: 0 auto -17px;
}

.pt-cv-view .pt-cv-ifield {
	padding-bottom: 19px;
}

.pt-cv-wrapper img {
	width: 160px;
}


.pt-cv-view .pt-cv-title {
	max-height: 20px;
	overflow: hidden;
	text-align: left;
}
.pt-cv-view a {text-decoration: none;}
h4.pt-cv-title:hover {text-decoration: underline;}


.pt-cv-ifield>*, .pt-cv-view .pt-cv-content-item>* {
	margin-bottom: 7px !important;
}


/* 修正 ---*/
.pt-cv-view .pt-cv-title {
	margin-bottom: 11px !important;
}
.pt-cv-content {
	line-height: 28px;
}
/* 修正 ---*/


.pt-cv-wrapper .btn-success {
	background-color: #1871e4 !important;
	border-color: #1871e4 !important;
	margin-top: 9px;
}
.pt-cv-wrapper .btn-success:hover {
	background-color: #333 !important;
	border-color: #333 !important;
}

.pt-cv-meta-fields {
	font-size: 14px !important;
	padding-top: 6px;
}
.pt-cv-meta-fields a {
	color: #1871e4 !important;
}
.pt-cv-meta-fields a:hover {
	color: #333 !important;
	text-decoration: underline !important;
}


/*-- ページャー --*/
.pt-cv-pagination-wrapper {
	text-align: center;
	margin: 11px 0 -19px !important;
}
.pt-cv-wrapper .pagination>li>a, .pt-cv-wrapper .pagination>li>span {
	color: #333;
}
.pt-cv-wrapper .pagination>.active>a, .pt-cv-wrapper .pagination>.active>a:focus, .pt-cv-wrapper .pagination>.active>a:hover, .pt-cv-wrapper .pagination>.active>span, .pt-cv-wrapper .pagination>.active>span:focus, .pt-cv-wrapper .pagination>.active>span:hover {
	color: #fff !important;
	background-color: #1871e4 !important;
}
.pt-cv-wrapper .pagination>li>a, .pt-cv-wrapper .pagination>li>span {
	padding: 5px 12px 6px !important;
	color: #1871e4 !important;
}
.pt-cv-wrapper .pagination>li>a:focus, .pt-cv-wrapper .pagination>li>a:hover, .pt-cv-wrapper .pagination>li>span:focus, .pt-cv-wrapper .pagination>li>span:hover {
	color: #333 !important;
}


/*---- 共通ウイジェット ----*/
section#archives-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 44px;
	/*--margin-top: -17px;--*/
}
section#archives-2 select {
	font-size: 14px;
	color: #333;
	margin-top: 8px;
	padding: 6px 5px 5px 6px;
	border-radius: 4px;
	-webkit-appearance: none;
}
section#categories-2 {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px 60px;
}
section#categories-2 select {
	font-size: 14px;
	color: #333;
	margin-top: 8px;
	padding: 6px 7px 5px 6px;
	border-radius: 4px;
	-webkit-appearance: none;
}
section#archives-2 h2, section#categories-2 h2 {
	margin-bottom: 22px;
}
/*---- 共通ウイジェット ----*/


/*--- パンくず -------------*/
#pk {
	width: 100%;
}
.pk {
	max-width: 1023px;
	padding: 1px 20px 3px;
	margin: 0 auto;
	font-size: 14px;
}
.pk a {text-decoration: none;}
.pk a:hover {text-decoration: underline;}




/*--- カテゴリー一覧 -----------------*/
#blogWrap_2 {
	width: 100%;
	max-width: 1080px;
	padding-bottom: 60px;
	margin: 0 auto;
}
#blogWrap_2.ichiran {
	margin-top: 116px;
}

ul.lcp_catlist {
	padding: 0;
	margin-top: 6px;
}

#blogWrap_2 .lcp_catlist li {
	width: 92%;
	max-width: 980px;
	margin: 0 auto;
}

ul.lcp_catlist li {
	display: block;
	width: 100%;
	height: 201px;
	padding: 17px 0 0;
	margin: 0 auto;
	border-bottom: 1px solid #CCC;
}
ul.lcp_catlist li img {
	float: left;
	margin: 3px 30px 0 0;
}


/*-- 文字制限 本文 --*/
.lcp_catlist h3 {
	font-size: 19px;
	line-height: 36px;
	padding: 0;
	margin-top: -2px;
	height: 45px;
	overflow: hidden;
}

.icp_post {
	margin: 1px 0 17px;
	height: 30px;
	overflow: hidden;
}

.lcp_excerpt {
	position: relative;
	height: 59px;
	overflow: hidden;
}
.lcp_excerpt:before, .ellipsis:after {
	position: absolute;
	background: #fefdfb;
}
.lcp_excerpt:before {
	content: "...";
	bottom: 0;
	right: 0;
	padding: 0 12px;
}
.lcp_excerpt:after {
	content: "";
	width: 100%;
	height: 100%;
}
/*-- 文字制限 本文 --*/


/*-- ページャー --*/
.lcp_paginator {
	text-align: center;
	margin: 48px auto -2px;
}

.lcp_currentpage {
	color: #fafafa;
	background-color: #2e7aaf !important;
	border: 1px solid #ddd !important;
	border-radius: 4px;
}
.lcp_paginator li {
	display: inline-block;
	width: 34px;
	height: 35px;
	border: 1px solid #ddd !important;
	border-radius: 4px;
}
.lcp_paginator li a {
	color: #a5937b !important;
	text-decoration: none;
}
.lcp_paginator li:hover {
	background-color: #ddd;
}


/*--- アーカイブ一覧 -----------------*/
#blogWrap_3 {
	width: 100%;
	max-width: 1080px;
	padding: 0;
	margin: 5px auto 0;
}

.pk_2 {
	font-size: 14px;
	margin-left: 20px;
}

#blogWrap_3 .date-head {
	max-width: 1020px;
	text-align: center;
	padding: 17px 20px 0;
	margin: 0 auto;
}
.date-head p {
	display: none;
}

.date-head h3 {
	font-size: 24px;
	padding: 7px 7px 7px;
	margin-bottom: 13px;
}

.date-list {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
}
.date-list ul {
	padding: 9px 20px 4px;
	margin: 0 auto;
}
.date-list ul li {
	display: block;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 9px 16px 8px;
	margin: 0 auto 40px;
}


/*--- NEW アーカイブ ---*/
.dateC {
	margin-top: -2px;
}
.date-cont {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-top: -1px;
	margin-bottom: -6px;
}
.date-cont img {
	margin-right: 15px;
}
.date-cont2 {
	margin-top: -9px;
}
.date-cont2 .lcp_excerpt:before {
	display: none;
}
/*--- NEW アーカイブ ---*/


.date-list li h2 {
	margin: 8px 0 11px;
}
.date-list li p {
	padding: 6px 0;
}

.dateCtg {
	font-size: 14px;
}


/*--- 記事詳細 ---*/
#content_blog {
	max-width: 1000px;
	padding: 53px 20px 39px;
	margin: 0 auto;
	min-height: 23.1vh;
}
#content_blog strong {
	display: block;
	font-size: 18px;
	margin: 0 0 -10px;
}

#content_blog img {
	/*--- width: 100%;---*/
	max-width: 100%;
	height: auto;
	padding: 0;
	margin: 18px 0 9px;
}
#content_blog img.mT-8 {
	padding: 9px 0 7px;
}

#content_blog a:hover {
	text-decoration: underline;
}

.kijiPeager {
	max-width: 960px;
	padding: 0 20px;
	margin: 29px auto 53px;
}
.kijiPeager a {
	padding: 20px 10px 0;
}
.kijiPeager a:hover {
	color: #aaa;
	text-decoration: underline;
}

.img_br {
	display: block;
	content: "";
	margin-top: -10px;
}


/*--- リセット ---*/
#content_blog p {
	margin: 15px auto 14px;
}
#content_blog h1 {
	margin: 7px 0 12px;
}
#content_blog h2 {
	margin: 0 0 21px;
}
#content_blog h3 {
	margin: 17px 0 18px;
}
#content_blog h4 {
	text-align: left;
	margin: 1px 0 1px;
}
#content_blog h5 {
	margin: -1px 0 1px;
}
h5 {
	font-size: 18px
}
/*--- リセット ---*/
