@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ================================================================================

	Google Fonts FOUT対策

================================================================================ */

html {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 0.3s;
	transition-timing-function: ease-in;
	transition-delay: 0s;
}
html.wf-active {
	opacity: 1;
}





/* ================================================================================

	サイトスタイル

================================================================================ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	word-wrap: break-word;
	/* 明朝 */ font-family: '游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
	
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: none;
		text-size-adjust: none;
	}

	/* Elementor：フレックスアイテムを単一行に配置 */
	.elementor-row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}


#wrapper {
	position: relative;
	max-width: none;
	/* max-width: 1920px; 固定幅レイアウト時 */
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: block;
	overflow: hidden;
}

h1{
	margin: 0;
	font-weight: 300;
}
h2, h3, h4 {
	margin: 0;
	font-weight: 700;
}
p{
	color:#21303D;
	
}


img {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
/* Safariハック */
_:lang(x)+_:-webkit-full-screen-document, img {
	image-rendering: auto;
}

li,dt,dd {
	vertical-align: top;
}

iframe {
	vertical-align: bottom;
}


/* リンク：透過アクション付 */
a {
	color: #ff0000;
	opacity: 1;
	transition-property: opacity,color,background-color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover {
	opacity: 0.6;
}





/* ================================================================================

	404.php

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.not-found {
		position: relative;
		width: 1000px;
		margin: 0 auto;
	}
}





/* ================================================================================

	display:none

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none {
		display: none;
	}

}





/* ================================================================================

	pointer-events: none;

================================================================================ */

/* FAX */
.fax_num {
	pointer-events: none;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.pointer-events {
		pointer-events: none;
	}

}





/* ================================================================================

	フロート回り込み解除 clearfix

================================================================================ */

.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: "";
	overflow: hidden;
	float: none;
}
.clearfix {
	display: block; /* for IE8 */
}





/* ================================================================================

	エディター共通設定

================================================================================ */

p + * {
	margin-top: 1.5em;
}
p:not(:first-child) {
	margin-top: 1.5em;
}

strong,b {
	font-weight: 700;
}
big {
	font-size: larger;
}
small {
	font-size: smaller;
}
em {
	font-style: italic;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		font-size: 3.5vw;
	}

	/* youtube siteorigin */
	.youtube-player {
		width: 100%;
		height: 36.5vw;
		margin-top: 4vw;
	}

	/* エディターで画像の下に隙間ができるの解除 */
	img + br {
		display: none;
	}
}





/* ================================================================================

	ヘッダー

================================================================================ */
#breadcrumb a{
	color:#21303D;
}

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {

	header.bs_header {
		position: relative;
	}
/*タイトル
----------------------------------------------------*/
	.page_title{
		
		width:90%;
		margin:80px auto 0px;
		max-width:1100px;
		display:flex;
		justify-content:space-between;
	}
	.page_title div:nth-child(1){
		width:100%;
		
	}
	.page_title h1{
		font-size:70px;
		line-height:70px;
	}
	.page_title ul{
		text-align:end;
	}
	.page_title p{
		margin-top:0;
		font-size:20px;
		padding-left:40px;
		position:relative;
	}
	.page_title p:after{
		width:27px;
		height:1px;
		content:"";
		position:absolute;
		background:#707070;
		top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	}

	/* ロゴ
	----------------------------------------------- */
	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		
	}
	.h_logo img{
		max-width:250px;
		width:100%; 
		padding-right:10px;
	}



	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: absolute;
		top: 8px;
		right: 8px;
		text-align: right;
		/*
		left: 8px;
		text-align: left;
		*/
		z-index: 1;
	}
	.pc_h1 h1 {
		font-size: 13px;
		line-height: 1;
		color: inherit;
	}


	/* グローバルナビゲーション
	----------------------------------------------- */
	.navi_pc {
	}
	.navi_pc > ul {
		font-size: 0;
		text-align: center;
	}
	.navi_pc > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		line-height: 1.1;
	}
	.navi_pc > ul > li:not(:first-child) {
		margin-left: 1.5em;
	}
	.navi_pc > ul > li:not(:first-child)::before {
/* 		position: absolute;
		content: "";
		display: block;
		background-color: #000000;
		width: 1px;
		height: 16px;
		top: 0.1em;
		left: -1em; */
	}
	.navi_pc > ul > li > button {
		background: transparent;
		border: none;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin: 0;
		padding: 0;
		font-size: 100%;
		vertical-align: baseline;
		text-decoration: none;
		font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
	}
	.navi_pc > ul > li > a,
	.navi_pc > ul > li > button {
		display: block;
		font-size: 16px;
		line-height: 1.1;
	}


	/* ドロップメニュー
	----------------------------------------------- */
	#dropmenu > ul > li > ul {
		list-style: none;
		position: absolute;
		z-index: 99999;
		top: 100%;
		left: -4px;
		margin:0;
		padding: 0;
		overflow: hidden;
		transition: 0.3s ease-in-out;
	}
	#dropmenu > ul > li > ul > li {
		overflow: hidden;
		font-size: 15px;
		width: 15em;
		height: 0;
		border-bottom: 1px solid #cccccc;
		transition: 0.3s ease-in-out;
		opacity: 0;
	}
	#dropmenu > ul > li:hover > ul {
		overflow: visible;
		padding-top: 10px;
	}
	#dropmenu > ul > li:hover > ul > li {
		overflow: visible;
		opacity: 1;
		height: 100%;
	}
	#dropmenu > ul > li > ul > li > a {
		display: block;
		background-color: #888888;
		color: #ffffff;
		padding: 0.8em 1em;
		text-align: left;
		font-weight: 700;
		border-bottom: none;
	}
	#dropmenu > ul > li > ul > li > a:hover {
		opacity: 1;
		background-color: #aaaaaa;
	}

}

@media (max-width: 1100px) {}



/* SP設定
------------------------------------------- */
@media (max-width: 800px) {

	header.bs_header {
		position: relative;
	}

	header.bs_header .main_top{
		height: 60vh;
		
	}
	header.bs_header .main_top	.fv_img{
		max-height:100%;
		height: auto;
	}
	header.bs_header .main_top	.fv_text{
	width: 100%;
    height: auto;
    margin-top: -200px;		
	}
	
	/*タイトル
----------------------------------------------------*/
	.page_title{
		
		width:90%;
		margin:0px auto 0px;
		
		display:flex;
		justify-content:flex-start;
		flex-flow: column;
		flex-direction:column-reverse;
	}
	.page_title div:nth-child(1){
		width:100%;
		margin-top:20px;
	}
	.page_title h1{
		font-size:48px;
		line-height:70px;
	}
	.page_title ul{
		text-align:left;
		padding:0!important;
	}
	.page_title p{
		margin-top:0;
		font-size:16px;
		padding-left:40px;
		position:relative;
	}
	.page_title p:after{
		width:27px;
		height:1px;
		content:"";
		position:absolute;
		background:#707070;
		top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	}
	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		margin:15px 0 0 15px;
		height: 12.8vw;
		width:200px;
	}
	.h_logo img{
		width:100%;
		
	}

	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
		background-color: #cccccc;
		padding: 2vw;
		display: none;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.3;
	}


	/* グローバルナビゲーション
	------------------------------------------- */
	.navi_pc {
		display: none;
	}

}





/* ================================================================================

	フッター

================================================================================ */
.tictok img{
	width:37px;
	height:auto;
}
/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
	}

	.f_wrap {
		position: relative;
/* 		background-color: #f5f5f5; */
		padding: 80px 0 30px;
		margin: 0 auto;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
	width:250px;	
	}
	.f_logo img {
	width:100%;	
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {
		
	}
	.f_navi > ul {
		font-size: 0;
		text-align: center;
	}
	.f_navi > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		line-height: 1.1;
	}
	.f_navi > ul > li:not(:first-child) {
		margin-left: 1em;
	}
/* 	.f_navi > ul > li:not(:first-child)::before {
		position: absolute;
		content: "";
		display: block;
		background-color: #000000;
		width: 1px;
		height: 16px;
		top: 0.1em;
		left: -1em;
	} */

	.f_navi > ul > li a {
		
	}
	.f_wrap{
	max-width:1300px;
	width:90%;
	}
	.f_content{
		padding-bottom: 20px;
		border-bottom: solid 1px #c1c1c1;		
	}
	.f_content_main{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.f_info{
		margin-top: 25px;
	}
	.f_info p{
		margin-top: 0;
		font-size: 14px;
		color: #21303d;
		font-weight: 500;
	}
	.f_navi li a{
		color: #21303d;
		font-size: 14px;
	}
	.f_sns{
		display: flex;
		justify-content: flex-end;
		margin-top: 40px;
	}
	.f_sns li{
		margin-left: 10px;
	}
	.f_other-menu{
		margin-top: 60px;
		display: flex;
		justify-content: center
	}
	.f_other-menu li{
		position: relative;
		margin: 0 15px;
	}
	.f_other-menu li:nth-of-type(2):before{
		position: absolute;
		content: "";
		top: 10px;
		left: -15px;
		width: 1px;
		height: 15px;
		background-color: #707070;
	}	
	.f_other-menu li a{
		font-size: 16px;
		color:#8b8b8b;
	}
	.f_copy{
		padding-top:15px;
	}
	@media screen and (min-width: 768px){
		.pc_h_content{
			display: flex;
			justify-content:space-between;
			align-items: center;
			height: 100px;
			padding-left: 10vw;
		}
		.pc_h_content .navi_pc ul li a{
			font-size: 14px; 
			color:#21303d;
		}
		.nav-contact{
			background-color: #3b1e87;
			height:100%;
			
		}
		.nav-contact a{
			padding: 40px 20px;
			width:100%;
			height:100%;
			display: flex !important;
			align-items: center !important;
			justify-content: center !important;
			color: #fff !important;
			font-size: 14px;
			gap:5px;
		}		
		.navi_pc{
			height: 100%;
		}
		.navi_pc ul{
			height: 100%;
			display: flex;
			align-items: center;
		}
	}
	/* シェアボタン */
	footer .addtoany_shortcode > div {
		display: none;
	}


	/* コピーライト */
	.f_copy {
	}
	.f_copy p {
		font-size: 14px;
		text-align: center;
		color: #c1c1c1;
	}

}

@media screen and (max-width: 767px){
		.pc_h_content{
			display: flex;
			justify-content:space-between;
			align-items: center;
			height: 100px;
			padding-left: 1vw;
		}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer.bs_footer {
		position: relative;
	}

	.f_wrap {
		position: relative;
/* 		background-color: #f5f5f5; */
		padding: 16vw 8vw;
		width:100%;
	}
	
	


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		width:80%;
		margin:0 auto;
	}
	.f_logo img{
		width:100%;
		
	}


	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
		font-size:16px;
	}
	.f_navi > ul > li {
		float: left;
		width: 48%;
		padding: 2vw 2vw;
/* 		border-bottom: 1px solid; */
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		margin-right: 2%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		margin-left: 2%;
	}
	.f_navi > ul > li > a {
		display: block;
		font-size: 3.5vw;
		text-decoration: none;
		color: #21303d;
	}

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
	}
	.f_navi > ul > li {
		float: left;
		width: 50%;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li > a {
		background-color: #000000;
		color: #ffffff ;
		display: block;
		font-size: 3.5vw;
		font-weight: 700;
		text-decoration: none;
		padding:3vw 0;
		margin-bottom: 1px;
		text-align: center;
	}
	.f_navi > ul > li > a:hover {
		background-color: #222222;
	}
	*/
	/* ボタンが奇数の場合
	.f_navi > ul > li:first-child {
		width: 100%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 0;
	}
	*/


	/* シェアボタン */
	footer .addtoany_shortcode > div {
		text-align: center;
		display: block;
	}


	/* コピーライト */
	.f_copy {
		margin-top: 6vw;
	}
	.f_copy p {
		text-align: center;
	}

}





/* ================================================================================

	ページトップボタン

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0px;
		right: 10px;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 10px;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 40px;
		height: 40px;
		text-indent: -9999px;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0vw;
		right: 3vw;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 3vw;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 10vw;
		height: 10vw;
		text-indent: -9999px;
	}
}





/* ================================================================================

	パンくずリスト

================================================================================ */

/* 背景色 */
#breadcrumb {
	background-color: transparent;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position: relative;
		max-width: none;
		width: 100%;
		padding: 16px 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		max-width: 1020px;
		width: 100%;
		padding: 0 10px;
		margin: 0 auto;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 14px;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position: relative;
		width: 100%;
		padding: 4vw 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		position: relative;
		width: 100%;
		padding: 0 4vw;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 3.5vw;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}





/* ================================================================================

	Elementor Lightbox フッター非表示

================================================================================ */
.elementor-slideshow__footer {
	display: none;
}





/* ================================================================================

	Addtoanyボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
/* 	.addtoany_shortcode {
		margin: 14px -4px 0;
	} */
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
/* 	.f_share {
		margin-top: 8vw;
		font-weight: 600;
		text-align: center;
	}
	.addtoany_shortcode {
		margin: 2vw -4px 0;
	} */
}


/* 翻訳プラグインバグ対策 */
.addtoany_shortcode font {
	display: none;
}





/* ================================================================================

	共通スクロールバーデザイン

================================================================================ */

/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
html {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}


/* 幅1366px以上ディスプレイ用 スクロールバーの幅
----------------------------------------------- */
@media (min-width: 1366px) {
	html {
		scrollbar-width: auto; /* auto ブラウザ準拠  thin 狭い */
	}
	::-webkit-scrollbar {
		width: 17px;
	}
}





/* ================================================================================

	指定クラスのスクロールバーデザイン　.scrollbar

================================================================================ */

/* スクロールバーの設定 */
.scrollbar {
	overflow-y: auto;
}


/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
/* スクロールバーのカラー*/
.scrollbar {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
.scrollbar::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
.scrollbar::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
.scrollbar::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}





/* ================================================================================

	IEハック

================================================================================ */

/* IE10以上 */
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
	.elementor-image a {
		display: inline !important;
	}
}

/* ================================================================================

	インスタ　ギャラリー

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.insta_gallery ul {
	  text-align: center;
	}
	.insta_gallery ul li {
		display: inline-block;
		width: 210px;
		height: 210px;
		margin-bottom: 4px;
	}
	.insta_gallery img {
		width: 210px;
		height: 210px;
		object-fit: cover;
	}
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		.insta_gallery ul {
	  text-align: center;
	}
	.insta_gallery ul li {
		display: inline-block;
		width: 27vw;
		height: 27vw;
		margin-bottom: 1vw;
	}
	.insta_gallery img {
		width: 27vw;
		height: 27vw;
		object-fit: cover;
	}
}

.top-blog-list ul.clearfix{
	display: flex;
	justify-content: flex-start;
    flex-wrap: wrap;	
}
.top-blog-list ul.clearfix li{
	width: calc(33.33% - 20px);
    margin: 10px;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;	
	
}

.top-blog-list .post_thumb{
	margin-bottom:20px;
}

.top-blog-list .post_icon_box{
	display: inline-block;
}
.top-blog-list .post_icon_box span{
	border: solid 1px #3B1E87;
	color:#3B1E87;
	padding: 5px 10px;
	font-size: 14px
}
.top-blog-list .post_date{
		font-size: 14px;
		color:#21303D;
	display: inline-block;
}

.top-blog-list .post_title{
	margin-top: 15px;
}

.top-blog-list .post_excerpt{
	display: none;
}

.top-blog-list .post_title a{
	font-size: 16px;
	color: #21303D;
}

.menu-title-sub{
	display: inline-block;
	font-size:18px;
}

.menu_ttle{
	position: relative;
}

.menu_ttle:before{
	content:"";
	position: absolute;
	top:10px;
	left: 0;
	background-image: url("https://www.kumami-counseling.com/wordpress/wp-content/uploads/2024/01/menu-title-icon.png");
	width: 13px;
	height: 13px;
}

.title-icon{
	margin-right: 10px;
}

@media screen and (max-width: 767px){
.top-counseling-img .top-01{
	position: absolute;
	top: -30px;
	left: -20px;
}
	.top-blog-list ul.clearfix li{
	width: 100%;
}

.top-blog-list .post_thumb{
	margin-bottom:15px;
}


.top-blog-list .post_title{
	margin-top: 15px;
}
	.f_logo{
		text-align: center;
	}
	.f_info{
		margin-top: 20px;
	}
	.f_info p{
		margin-top:0;
	}
	.f_sns{
		margin-top: 20px;
		display: flex;
				align-items: center;
		justify-content: center;
	}
	.f_sns li{
		margin: 0 10px;
	}	
	.f_other-menu{
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}	
	.f_other-menu li{
		margin: 0 10px;
	}	
	.f_other-menu li a{
		color: #21303d;
	}
}

/* ================================================================================

contactセクション
================================================================================ */
.contact_sc{
	background-image:url("https://www.kumami-counseling.com/wordpress/wp-content/uploads/2024/02/contact_bg.jpg");
	background-position:center;
	background-size:cover;
}
.contact_sc_column{
	display:flex;
	justify-content:center;
	gap:40px;
	align-items:center;
	width:90%;
	max-width:1100px;
	padding:120px 0px;
	margin:0 auto;
}
.contact_sc >div > div:nth-child(1){
	font-size:23px;
	color:#fff!important;
}
.contact_sc_column > div:nth-child(2){
	justify-content:center;
	padding:50px 60px 30px;
	margin:0 auto;
	border:1px solid #fff;
	display:flex;
	align-items:center;
	font-size:18px;
	width:50%;
}
.contact_sc_column > div:nth-child(2) p{
	text-align:center;
	color:#fff;
}
.contact_sc_column > div:nth-child(2) a{
	background:#47A400;
	width:100%;
	text-align:center;
	padding:15px 40px;
	color:#fff;
	display:inline-block;
}
.contact_sc_column > div:nth-child(2) a img{
	padding:0px 0px 16px 10px;
}
.contact_sc .contact_title{
	color:#C0B3D2;
	font-size:80px;
	line-height:80px;
}
@media (max-width:980px){
	.contact_sc_column > div:nth-child(2){
	justify-content:center;
	padding:50px 15px 30px;
	margin:0 auto;
	border:1px solid #fff;
	display:flex;
	align-items:center;
	font-size:16px;
	width:50%;
}
	.contact_sc_column > div:nth-child(2) a{
	background:#47A400;
	width:100%;
	text-align:center;
	padding:10px 20px;
	color:#fff;
}
	.contact_sc .contact_title{
	color:#C0B3D2;
	font-size:60px;
	line-height:60px;
}
	
}
@media (max-width:768px){
	.contact_sc_column{
	display:flex;
	
	gap:40px;
	align-items:center;
	width:90%;
	padding:60px 0px;
	margin:0 auto;
	flex-flow: column;
}
	.contact_sc_column > div:nth-child(2){
	justify-content:center;
	padding:50px 20px 30px;
	margin:0 auto;
	border:1px solid #fff;
	display:flex;
	align-items:center;
	font-size:18px;
	width:100%;
}
	.contact_sc >div > div:nth-child(1){
	font-size:18px;
	text-align:center;
}
		.contact_sc .contact_title{
	color:#C0B3D2;
	font-size:50px;
	line-height:40px;
}
}
