@charset "UTF-8";


/* ----------------------------------------------------------------------
inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 40px);
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
}
.inner960{
	max-width:960px;
	width:calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
}
.inner768{
	max-width:768px;
	width:calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------------------------------------------
flexbox
---------------------------------------------------------------------- */
.flexOrigin{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.flex-start{
	justify-content: flex-start;/*要素を左寄せ*/
}
.flex-wrap{
	flex-wrap: wrap; /*flex繰り返し*/
}
.row-reverse{
	flex-direction:row-reverse;	/*flex逆順*/
}
@media screen and (max-width:767px)  {
	.flex-block{
		display: block; /*スマホ時フレックス解除*/
	}
}

@media print, screen and (min-width:768px)  {
	.flexBox02{
		width:48%;
	}
	.flexBox03{
		width:30%;
	}
	.flexBox04{
		width:23%;
	}
}
@media screen and (max-width:767px)  {
	.flexBox02{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox03{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox02:last-child,.flexBox03:last-child{
		margin-bottom: 0;
	}
	.flexBox04{
		width:48%;
		margin-bottom: 20px;
	}
	.flexBox04:nth-child(3),.flexBox04:nth-child(4){
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------------------------
フォント（%）
---------------------------------------------------------------------- */
.font50 {
	font-size: 50% ;
}
.font60 {
	font-size: 60% ;
}
.font70 {
	font-size: 70% ;
}
.font80 {
	font-size: 80% ;
}
.font90 {
	font-size: 90% ;
}
.font100 {
	font-size: 100% ;
}
.font110 {
	font-size: 110% ;
}
.font120 {
	font-size: 120% ;
}
.font130 {
	font-size: 130% ;
}
.font150 {
	font-size: 150% ;
}
.font180 {
	font-size: 180% ;
}
.font200 {
	font-size: 200% ;
}
.font230 {
	font-size: 230% ;
}
.font250 {
	font-size: 250% ;
}

/* ----------------------------------------------------------------------
フォント（px）
---------------------------------------------------------------------- */
.font10px{
	font-size: 10px ;
}
.font12px{
	font-size: 12px ;
}
.font14px{
	font-size: 14px ;
}
.font16px{
	font-size: 16px ;
}
.font18px{
	font-size: 18px ;
}
.font20px{
	font-size: 20px ;
}
.font25px{
	font-size: 25px ;
}
.font30px{
	font-size: 30px ;
}
.font35px{
	font-size: 35px ;
}
.font40px{
	font-size: 40px ;
}
.font45px{
	font-size: 45px ;
}
@media screen and (min-width: 768px) {
	.font12-14px{
		font-size: 14px ;
	}
	.font14-16px{
		font-size: 16px ;
	}
	.font15-20px{
		font-size: 20px ;
	}
	.font15-18px{
		font-size: 18px ;
	}
	.font16-18px{
		font-size: 18px ;
	}
	.font16-20px{
		font-size: 20px ;
	}
	.font18-20px{
		font-size: 20px ;
	}
	.font18-25px{
		font-size: 25px ;
	}
	.font20-22px{
		font-size: 22px ;
	}
	.font20-25px{
		font-size: 25px ;
	}
	.font20-30px{
		font-size: 30px ;
	}
	.font22-30px{
		font-size: 30px ;
	}
	.font25-30px{
		font-size: 30px ;
	}
	.font28-32px{
		font-size: 32px ;
	}
	.font30-35px{
		font-size: 35px ;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px ;
	}
	.font14-16px{
		font-size: 14px ;
	}
	.font15-20px{
		font-size: 15px ;
	}
	.font15-18px{
		font-size: 15px ;
	}
	.font16-18px{
		font-size: 16px ;
	}
	.font16-20px{
		font-size: 16px ;
	}
	.font18-20px{
		font-size: 18px ;
	}
	.font18-25px{
		font-size: 18px ;
	}
	.font20-22px{
		font-size: 20px ;
	}
	.font20-25px{
		font-size: 20px ;
	}
	.font20-30px{
		font-size: 20px ;
	}
	.font22-30px{
		font-size: 22px ;
	}
	.font25-30px{
		font-size: 25px ;
	}
	.font28-32px{
		font-size: 28px ;
	}
	.font30-35px{
		font-size: 30px ;
	}
}

/* ----------------------------------------------------------------------
フォントファミリー
---------------------------------------------------------------------- */

.yu_font{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

/* ----------------------------------------------------------------------
行間調整
---------------------------------------------------------------------- */
.lh10{
	line-height:1.0em;
}
.lh12{
	line-height:1.2em;
}
.lh15{
	line-height:1.5em;
}
.lh18{
	line-height:1.8em;
}
.lh20{
	line-height:2em;
}
.lh24{
	line-height:2.4em;
}

/* ----------------------------------------------------------------------
文字揃え
---------------------------------------------------------------------- */
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}
.txtJustify{
	text-align:justify;
}

/* ----------------------------------------------------------------------
文字色
---------------------------------------------------------------------- */
.white{
	color:#fff;
}
.blk{
	color:#333;
}
.navy{
	color:#2e3b45;
}
.pink{
	color:#ff4664;
}


/* ----------------------------------------------------------------------
文字スタイル（ウエイト）
---------------------------------------------------------------------- */
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}

/* ----------------------------------------------------------------------
文字間
---------------------------------------------------------------------- */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
PC・スマホ・タブレットのみ改行
---------------------------------------------------------------------- */

@media print, screen and (min-width: 768px) {
	.kaigyouTab {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 767px) and (min-width : 641px){
	.kaigyouPc {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 640px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (min-width: 480px),print{
	.kaigyouSpMini {
		display: none;
	}
}

/* ----------------------------------------------------------------------
margin・padding
---------------------------------------------------------------------- */
/*margin top*/
.mt00 {
	margin-top: 0px;
}
.mt05 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mt45 {
	margin-top: 45px;
}
.mt50 {
	margin-top: 50px;
}
.mt80 {
	margin-top: 80px;
}
.mt100 {
	margin-top: 100px;
}
/*margin bottom*/
.mb00 {
	margin-bottom: 0px;
}
.mb05 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.mb70 {
	margin-bottom: 70px;
}
.mb80 {
	margin-bottom: 80px;
}
.mb100 {
	margin-bottom: 100px;
}
/*margin left*/
.ml05{
	margin-left: 5px;
}
.ml10 {
	margin-left: 10px;
}
.ml15 {
	margin-left: 15px;
}
/*margin right*/
.mr30 {
	margin-right: 30px;
}
/*padding top*/
.pt05 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
.pt35 {
	padding-top: 35px;
}
.pt40 {
	padding-top: 40px;
}
.pt45 {
	padding-top: 45px;
}
.pt50 {
	padding-top: 50px;
}
.pt80 {
	padding-top: 80px;
}
.pt100 {
	padding-top: 100px;
}
/*padding bottom*/
.pb05 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb35 {
	padding-bottom: 35px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb45 {
	padding-bottom: 45px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb80 {
	padding-bottom: 80px;
}
.pb100 {
	padding-bottom: 100px;
}
.pd10{
	padding: 10px;
}
.pd15{
	padding: 15px;
}
.pd20{
	padding: 20px;
}
.pd25{
	padding: 25px;
}
.pd30{
	padding: 30px;
}

/* ----------------------------------------------------------------------
画像
---------------------------------------------------------------------- */
img.img100{
	width:100%;
	display:block;
}
img.imgCenter{
	max-width: 100%;
	display:block;
	margin-left:auto;
	margin-right:auto;
}
img.imgLeft{
	max-width: 100%;
	display:block;
	margin-right:auto;
}
img.imgRight{
	max-width: 100%;
	display:block;
	margin-left:auto;
}

/* ----------------------------------------------------------------------
背景色
---------------------------------------------------------------------- */
.bgWhite{
	background:#fff;
}
.bgGray{
	background:#f6f6f6;
}

/* ----------------------------------------------------------------------
 スクロールフェード
---------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(50px);
}
.fade01 {
	transition: opacity 1.5s, transform 1s;	
}
.fade02 {
	transition: opacity 1.5s, transform 1s;
	transition-delay: 0.1s;
}
.fade03 {
	transition: opacity 1.5s, transform 1s;	
	transition-delay: 0.2s;
}
.fade04 {
	transition: opacity 1.5s, transform 1s;		
	transition-delay: 0.3s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

/* ----------------------------------------------------------------------
 マーカー
---------------------------------------------------------------------- */
.marker-animation.active{
    background-position: -100% .5em;
}
.marker-animation {
	background-repeat: repeat-x;
	background-size: 200% .8em;
	background-position: 0 .5em;
	transition: all 2s ease;
	font-weight:bold;
}
.marker-animation01{/*スカイブルー*/
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(210,240,235) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(210,240,235) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(210,240,235) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(210,240,235) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(210,240,235) 50%);
}

/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
@media screen and (min-width: 1001px){
	a.scroll_point {
	 height: 1px;
	 display: block;
	}
}
@media screen and (max-width: 1000px){
	 a.scroll_point {
	 height: 1px;
	 display: block;
	}
}

/* ----------------------------------------------------------------------
header
---------------------------------------------------------------------- */
@media (min-width: 1000px) {
	.l-header__logo {
		padding: 20px 0;
	}
}
.l-headerUnder{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

/* ----------------------------------------------------------------------
global menu
---------------------------------------------------------------------- */
.l-headerUnder .c-gnav>.menu-item>a{
	padding: 24px 24px;
}

/* ----------------------------------------------------------------------
main visual
---------------------------------------------------------------------- */
.mv{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-direction:row-reverse;
	width:calc(100% - 30px);
	max-width:1200px;
	margin:30px auto;
}
.mvImg{
	display:relative;
	width:calc(100% - 480px);
	height:500px;
}
.mvImg img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position: 20% 50%;
}
.mvTxt{
	width:445px;
	display:flex;
	align-items:center;
}
.mvTxtInner p{
	font-size:30px;
}
.mvTxtInner h2{
	font-size:70px;
}
@media screen and (max-width: 999px) {
	.mvImg{
		width:calc(100% - 330px);
	}
	.mvTxt{
		width:300px;
	}
	.mvTxtInner p{
		font-size:25px;
	}
	.mvTxtInner h2{
		font-size:45px;
	}
}
@media screen and (max-width: 767px) {
	.mv{
		display:block;
	}
	.mvImg,.mvTxt{
		width:100%;
	}
	.mvTxt{
		margin-bottom:15px;
	}
}
@media screen and (max-width: 767px) and (min-width:601px){
	.mvTxtInner h2 br{
		display:none;
	}
}
@media screen and (max-width: 600px){
	.mvImg{
		height:400px;
	}
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
.footerOrigin{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	padding:40px 0;
}
.footerLogo{
	width:350px;
}
img.footerLogoImg{
	display:block;
	width:150px;
}
.footerLink{
	width:calc(100% - 350px);
}
.footerLink ul:first-child{
	margin-bottom:15px;
}
.footerLink ul li{
	display:inline-block;
	margin-right:2em;
	font-size:14px;
}
.footerLink ul li:last-child{
	margin-right:0;
}
.footerLink ul li a{
	text-decoration:none;
	color:#2e3b45;
	transition : all 0.5s ease 0s;
}
.footerLink ul li a:hover{
	color:#ccc;
}
@media screen and (max-width: 1100px) and (min-width:960px){
	.footerLogo{
		width:300px;
	}
	.footerLink{
		width:calc(100% - 300px);
	}
	.footerLink ul:first-child{
		margin-bottom:10px;
	}
	.footerLink ul li{
		margin-right:1.5em;
		font-size:12px;
	}
}
@media screen and (max-width: 960px) {
	.footerLogo,.footerLink{
		width:100%;
	}
	.footerLogo{
		margin-bottom:20px;
	}
	.footerLink ul{
		padding-left:0;
	}
	.footerLink ul:first-child{
		margin-bottom:5px;
	}
	.footerLink ul li{
		margin-right:1.5em;
		font-size:12px;
	}
}
@media screen and (max-width: 600px) {
	.footerLink ul li{
		display:block;
	}
	.footerLink ul:first-child{
		margin-bottom:10px;
	}
}

/*トップへ戻るボタン*/
.c-fixBtn{
	background:#ff4664;
}

/* ----------------------------------------------------------------------
共通項目
---------------------------------------------------------------------- */
/*ボタン*/
a.btn{
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
	width:calc(100% - 15px);
    margin: 0 auto;
    height:60px;
    border: 1px solid #2e3b45;
    border-radius: 100px;
    background-color: #fff;
    color: #2e3b45;
    font-size: 14px;
	box-sizing:border-box;
	text-decoration:none;
}
a.btn::after{
	position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 25px;
    height: 6px;
	border-bottom:1px solid #2e3b45;
	border-right:2px solid #2e3b45;
	transform:skew(45deg);
    content: '';
    transition: all 0.5s ease;
}
a.btn:hover::after {
    right:1.5em;
}

/* ----------------------------------------------------------------------
トップページ
---------------------------------------------------------------------- */
/*最新記事*/
.topNewPost{
	border-top:1px #2e3b45 solid;
	border-bottom:1px #2e3b45 solid;
}
.topNewPostWrap{
	display:flex;
}
.topNewPostTit{
	width:60px;
	border-right:1px #2e3b45 solid;
	box-sizing:border-box;
	padding:80px 0;
}
.topNewPostTit h2{
	writing-mode: vertical-rl;
	font-size:40px;
}
.topNewPostTit h2 span{
	font-size:14px;
}
.topNewPostTit h2:first-letter{
	color:#ff4664;
}
.topNewPostContent{
	width:calc(100% - 60px);
	padding:80px 0;
}
@media screen and (max-width: 767px){
	.topNewPostTit,.topNewPostContent{
		padding:60px 0;
	}
}

.topNewPostContentInner{
	padding:0 40px;
}
.topPost_archive{
	display:flex;
	align-items:stretch;
	flex-wrap:wrap;
}
.topPost_item{
	width:calc((100% - 50px) / 2);
	margin-right:50px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:30px;
}
.topPost_item:nth-child(even){
	margin-right:0;
}
.topPost_thumbnail{
	width:180px;
}
.topPost_thumbnail a{
	width:100%;
	height:180px;
	display:block;
}
.topPost_thumbnail a img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
}
.topPost_txt{
	width:calc(100% - 210px);
}
.topPost_txt .post-title,
.topPost_txt .post-excerpt{
	overflow: hidden;
}
.topPost_txt .post-title a{
	text-decoration:none;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.topPost_txt .post-excerpt p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.post-category a{
	display:inline-block;
	text-decoration:none;
	border:1px #ff4664 solid;
	color:#ff4664;
	line-height:1;
	padding:3px 5px;
	margin-left:0.5em;
}
@media screen and (min-width: 1000px) ,print{
	.topPost_item:nth-child(5),
	.topPost_item:nth-child(6){
		margin-bottom:0;
	}
}
@media screen and (max-width: 999px){
	.topPost_item{
		width:100%;
		margin-right:0;
	}
	.topPost_item:last-child{
		margin-bottom:0;
	}
}
@media screen and (max-width: 600px){
	.topNewPostTit{
		width:40px;
	}
	.topNewPostTit h2{
		writing-mode: vertical-rl;
		font-size:30px;
	}
	.topNewPostContentInner{
		padding:0 0 0 20px;
	}
	.topPost_thumbnail{
		width:120px;
	}
	.topPost_thumbnail a{
		height:120px;
	}
	.topPost_txt{
		width:calc(100% - 140px);
	}
}

/*カテゴリー一覧*/
.topCate{
	border-bottom:1px #2e3b45 solid;
	padding-bottom:50px;
}
.topCateTit{
	padding:15px 0;
	border-bottom:1px #2e3b45 solid;
}
.topCate .l-article{
	padding:0 15px;
}
.topCateTit h2{
	font-size:40px;
}
.topCateTit h2:first-letter{
	color:#ff4664;
}
.topCateTit h2 span {
    font-size: 14px;
}
@media screen and (max-width: 767px){
	.topCate{
		padding-bottom:30px;
	}
}
@media screen and (max-width: 600px) {
	.topCateTit{
		padding:10px 0;
	}
	.topCateTit h2{
		font-size:30px;
	}
}
.topCateWrap{
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-top:50px;
}
.topCateBox{
	width:calc((100% - 6px) / 3);
}
@media screen and (max-width: 767px){
	.topCateWrap{
		margin-top:30px;
		display:block;
	}
	.topCateBox{
		width:100%;
		margin:0 auto 30px;
	}
	.topCateBox:last-child{
		margin-bottom:0;
	}
}
.topCateBoxThum{
	position:relative;
}
.topCateBox p.roboEb_font{
	position:absolute;
	top:10px;
	left:10px;
	font-size:40px;
	opacity:0.8;
	z-index:2;
}
.topCateLink{
	width:100%;
	position:absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.topCateBox img{
	object-fit:cover;
	width:100%;
	height:255px;
}
.topCateBox a img{
	transition:all 0.5s ease;
}
.topCateBox a img:hover{
	filter: grayscale(1);
}
@media screen and (max-width: 960px){
	.topCateBox p.roboEb_font{
		font-size:30px;
	}
}
@media screen and (max-width: 480px){
	.topCateBox img{
		height:200px;
	}
	.topCateLink a.btn{
		height:50px;
	}
}
.topCateTxt{
	padding: 0 15px;
}


/* ----------------------------------------------------------------------
アーカイブページ
---------------------------------------------------------------------- */
/*タイトル部分*/
p.p-archive__title_sub{
	font-size:60px;
}
p.p-archive__title_sub:first-letter{
	color:#ff4664;
}
.c-pageTitle__main{
	font-size:16px;
}
@media screen and (max-width: 768px){
	p.p-archive__title_sub{
		font-size:40px;
	}
}
/*記事一覧部分*/
.archive_loop{
	display:flex;
	flex-wrap:wrap;
}
@media screen and (min-width: 961px),print{
	.archive_loop li{
		width:calc((100% - 40px) /2);
		margin-right:40px;
	}
	.archive_loop li:nth-child(even){
		margin-right:0;
	}
}
@media screen and (max-width: 960px){
	.archive_loop li{
		width:100%;
	}
}
.archive_img{
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.archive_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive_excerpt p{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	overflow:hidden;
}

/* ----------------------------------------------------------------------
投稿ページ ヘッダー
---------------------------------------------------------------------- */
.p-entry__head .c-pageTitle h1.c-pageTitle__main{
	font-size:1.6rem;
}
.c-postTimes.u-flex--aicw{
	display:flex;
	align-items:center;
}
.u-flex--aicw.c-postTimes,
.u-flex--aicw.c-postTerms,
.u-flex--aicw.c-postTerms__item{
	display:flex;
	align-items:center;
}
.u-flex--aicw.c-postTimes svg,
.u-flex--aicw.c-postTerms svg{
	display:inline-block;
}
figure.p-entry__thumb img{
	width:100%;
	object-fit:cover;
	height:500px;
}
@media screen and (max-width: 960px) and (min-width:641px){
	figure.p-entry__thumb img{
		height:350px;
	}
}
@media screen and (max-width: 640px){
	figure.p-entry__thumb img{
		height:250px;
	}
}
/*.u-flex--aicw.c-postTimes{
	border-right:1px #ccc solid;
}
.u-flex--aicw.c-postTerms{
	margin-left:.5rem;
}
.u-flex--aicw.c-postTimes svg,
.u-flex--aicw.c-postTerms svg{
	display:none;
}
.p-entry__head .c-postMetas{
	margin-top:0;
	margin-bottom:0.5rem;
}*/


/* ----------------------------------------------------------------------
個別投稿　共通CSS
---------------------------------------------------------------------- */
/*目次部分*/
.postContents{
	margin-bottom:80px;
}
.postContents h2{
	position:relative;
	padding-top:40px;
	font-family:'NotoSansJP-Bold';
	font-size:20px;
	padding-left:0.5em;
}
.postContents h2 span{
	position:absolute;
	display:inline-block;
	font-family:'Roboto-ExtraBold';
	opacity: 0.1;
	font-size:50px;
	left:0;
	top:0;
}
.postContents nav ol{
	margin-top:1.5em;
	padding-left:0;
	list-style:none;
	counter-reset: listnum;
}
.postContents nav ol li{
	border-bottom:1px #ccc dashed;
}
.postContents nav ol li a::before{
	counter-increment: listnum;
	content: counter(listnum) ".";
	padding-left:0.5em;
}
.postContents nav ol li a{
	position:relative;
	text-decoration:none;
	color:#2e3b45;
	display:block;
	padding-top:0.5em;
	padding-bottom:0.5em;
	padding-left:0.8em;
	padding-right:2.2em;
	text-indent:-0.8em;
	font-size:16px;
	line-height:1.8em;
}
.postContents nav ol li a::after{
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\f105";
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right:10px;
	transition : all 0.5s ease 0s;
}
.postContents nav ol li a:hover::after{
	right:0px;
}

/*コンテンツ*/
.p-article__section{
	margin-bottom:80px;
}
@media screen and (max-width: 767px){
	.p-article__section{
		margin-bottom:60px;
	}
}

/*見出し（h2）*/
.p-article__section h2{
	position:relative;
	font-size:28px;
	padding-bottom:20px;
	margin-bottom:20px;
	color:#2e3b45;
}
.p-article__section h2::after{
	position:absolute;
	content:"";
	height:5px;
	width:60px;
	background: #FF4664;
	background: linear-gradient(90deg,rgba(255, 70, 100, 1) 0%, rgba(46, 59, 69, 1) 100%);
	left:0;
	bottom:0;
	border-radius:2.5px;
}
@media screen and (max-width: 767px){
	.p-article__section h2{
		font-size:25px;
	}
}

/*見出し（h2）*/
.p-article__section h3{
	position:relative;
	font-size:23px;
	padding:15px 0;
	color:#333;
}

/*本文（p）*/
.p-article__section p{
	font-size:18px;
	line-height:2.2em;
	font-family:'NotoSansJP-Regular';
}
@media screen and (max-width: 767px){
	.p-article__section p{
		font-size:16px;
	}
}

/*注意（ul）*/
ul.cautionUl{
	list-style:none;
	padding:1.5em;
	background:#fafafa;
	border-radius:10px;
}
ul.cautionUl li{
	padding-left:1.3em;
	text-indent:-1.3em;
	font-size:120%;
	border-bottom:1px #ccc solid;
}
ul.cautionUl li::before{
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	content: "\f06a";
	color:#ff4664;
	margin-right:0.3em;
}

/*対策（ol）*/
ol.planOl{
	counter-reset: listnum;
	list-style: none;
	padding:1.5em;
	background:#fafafa;
	border-radius:10px;
}
ol.planOl li{
	border-bottom:1px #ccc solid;
	padding-bottom:10px;
	margin-bottom:10px;
	padding-left:1.3em;
	text-indent:-1.3em;
}
ol.planOl li::before{
	counter-increment: listnum;
	content: counter(listnum)".";
	font-size:120%;
	font-weight:bold;
	color:#2e3b45;
}
ol.planOl li span{
	font-size:120%;
	font-weight:bold;
	color:#2e3b45;
}

/*記事内画像*/
img.postImg{
	display:block;
	width:100%;
	margin:15px 0;
}
@media screen and (max-width: 767px){
	img.postImg{
		object-fit:cover;
		height:200px;
	}
}

/*吹き出し*/

.chat-wrapper {
	max-width: 768px;
	width:100%;
	margin: 2em auto;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.chat-balloon {
	display: flex;
	align-items: flex-start;
	gap: 0.8em;
}

.chat-balloon.left {
	flex-direction: row;
	justify-content: flex-start;
}

.chat-balloon.right {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

/* アイコン */
.chat-icon {
	width: 80px;
	height: 80px;
	object-fit: cover;
	flex-shrink: 0;
}

/* 共通吹き出し設定 */
.chat-text {
	padding: 0.8em 1em;
	border-radius: 1em;
	width: calc(100% - 100px);
	font-size: 1rem;
	line-height: 1.5;
	position: relative;
	word-wrap: break-word;
	color: #333;
}

/* 女性（アン）：ピンク系 */
.chat-balloon.left .chat-text {
	background-color: #F4EEF3;
	border: 2px solid #DBABA8;
	box-sizing:border-box;
}

/* 男性（エイジ）：ブルー系 */
.chat-balloon.right .chat-text {
	background-color: #E9F2F2;
	border: 2px solid #859EAF;
	box-sizing:border-box;
}

/* モバイル対応 */
@media (max-width: 600px) {
	.chat-icon {
		width: 50px;
		height: 50px;
		object-fit: cover;
		flex-shrink: 0;
	}
	.chat-text {
		width: calc(100% - 65px);
		font-size: 0.95rem;
	}
}

/* ----------------------------------------------------------------------
固定ページ
---------------------------------------------------------------------- */
/*共通項目*/
.u-flex--aic, .u-flex--aicw{
	display:block;
}
.p-page__title .c-pageTitle__sub{
	margin-left:0;
	display:block;
	font-style: normal;
	font-size:60px;
}
.p-page__title .c-pageTitle__sub:first-letter{
	color:#ff4664;
}
.c-pageTitle__sub:after, .c-pageTitle__sub:before{
	content:"";
	margin:0;
}
@media screen and (max-width: 768px){
	.p-page__title .c-pageTitle__sub{
		font-size:40px;
	}
}

/*サイトについて*/
.about{
	margin-bottom:80px;
}
@media screen and (max-width: 767px){
	.about{
		margin-bottom:60px;
	}
}
.about01 ul,
.about02 ul{
	list-style:none;
	padding-left:0;
}
.about img{
	width:100%;
	object-fit:cover;
	height:400px;
	border-radius:10px;
}
@media screen and (max-width: 767px){
	.about img{
		height:250px;
		border-radius:10px;
	}
}
.aboutTitle{
	position:relative;
	padding-top:45px;
}
.aboutTitle h2{
	z-index:2;
	padding-left:1em;
}
.aboutTitle p{
	position:absolute;
	top:0;
	left:0;
	font-size:60px;
	opacity:0.1;
}
@media screen and (max-width: 768px){
	.aboutTitle{
		padding-top:25px;
	}
	.aboutTitle p{
		font-size:40px;
	}
}
.aboutLink{
	display:flex;
	justify-content:space-between;
	max-width:740px;
}
.aboutLink a{
	width:calc((100% - 40px) / 2);
}
@media screen and (max-width: 768px){
	.aboutLink{
		display:block;
	}
	.aboutLink a{
		width:100%;
		max-width:350px;
	}
	.aboutLink a:first-child{
		margin-bottom:20px;
	}
}

/*会社概要*/
table.companyTb{
	border-right:none;
	
}
table.companyTb tbody tr th{
	width:12em;
	background:none;
	color:#2e3b45;
}
table.companyTb tbody tr th,
table.companyTb tbody tr td{
	border-left:none;
	padding: var(--ark-padding--cell, 2.3em .75em) !important;
	vertical-align:middle;
	letter-spacing:0.1em;
}
table.companyTb tbody tr td ul li{
	margin-bottom:10px;
}
table.companyTb tbody tr td ul li:last-child{
	margin-bottom:0;
}
@media screen and (max-width: 767px){
	table.companyTb,table.companyTb tbody,table.companyTb tbody tr,
	table.companyTb tbody tr th,table.companyTb tbody tr td{
		display:block;
	}
	table.companyTb tbody tr th{
		width:100%;
		border-bottom:none;
		padding-bottom:0 !important;
	}
}

/*お問い合わせ*/
.contactHalf{
	width:48%;
	margin-bottom:50px;
}
@media screen and (max-width: 767px){
	.contactForm .flexOrigin{
		display:block;
	}
	.contactHalf{
		width:100%;
	}
}
p.contactTitEn{
	font-size:25px;
	line-height:1.2em;
}
p.contactTitJp{
	font-size:14px;
	line-height:1.8em;
}
p.contactTitJp span{
	color:#ff4664;
	font-size:150%;
}
.post textarea{
	margin:5px 0;
}

.contactHalf,.contactFull{
	position:relative;
	padding-bottom:10px;
}
.contactHalf::after,.contactFull::after{
	position:absolute;
	content:"";
	width:100%;
	height:3px;
	bottom:0;
	left:0;
	background: rgb(153, 134, 117);
	background: linear-gradient(90deg, rgba(153, 134, 117, 1) 50%, rgba(12, 44, 108, 1) 100%);
}
.post input:not(.st-tab-label):not([type="image"]), .post textarea{
	border: none;
}
input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel,
textarea.wpcf7-form-control.wpcf7-textarea{
	outline: none;
}

.btnSubmit input[type="submit"] {
	display:block;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 18px;
	font-weight: bold;
	width: 250px;
	padding: 15px 0 20px !important;
	border-radius: 10px !important;
	background-color: #0c2c6c;
	border: none;
	color: #fff;
	cursor: pointer;
	transition : all 0.5s ease 0s;
	margin:20px auto 0;
}
.btnSubmit input[type="submit"]:hover{
	background:#ff4664;
}
.btnSubmit span.wpcf7-spinner {
	display: none;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="text"]{
	width:100%;
}
.wpcf7 textarea{
	width:100%;
}
button, input, select, textarea{
	border:none;
	padding: 1em .5em;
	letter-spacing:0.1em;
}

/*プライバシーポリシー*/
.privacyWrap{
	counter-reset: number 0; 
}
.privacyBox{
	margin-bottom:40px;
	padding-bottom:40px;
	border-bottom:1px #ededed solid;
}
.privacyBox h2{
	position:relative;
	margin-bottom:25px;
	text-indent: -1.4em;
	padding-left: 1.4em;
}
.privacyBox h2::before{
	display:inline;
	counter-increment: number 1;
	 content: counter(number) ' ' ".";
	font-family:'Roboto-ExtraBold';
}