@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	
	margin: 0px;
	padding: 0px;
	color: #545454;	
	font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
	font-size: 1.2px;		
	line-height: 2;		
	background: #FFFFFF;	
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 1rem}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
h3{
	padding-bottom: 1rem;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #545454;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;
}
a:hover {
	color: #ffbbbb;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

s{
	color: red;
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
	background:url("../images/bg-pattern.png");	
	min-height: 1600px;
border-radius:30px;

}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	padding: 20px;
}
/*トップページのヘッダーブロックへの追加指定*/
.home header {
	padding: 0;
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 25%;		/*画像の幅*/
}


/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	position: absolute;z-index: 1;
	width: 30%;	
	right: 0%;	
}

.header-title{
	width: 30%;	
	padding: 2% 1% 1% 10%;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 25px;	/*文字サイズ*/	
	
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;			/*上下、左右へのメニューの外側にとる余白*/
	padding-top: 20px;
	padding-bottom: 0px;
	font-size: 20px;
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 0px 14px;	/*上下、左右へのメニューの内側にとる余白*/
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background: #fff;	/*背景色*/
	color: #ffbbbb;			/*文字色*/
	border-radius: 100px;
}

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	overflow: hidden;
	padding: 30px 4%;	/*上下、左右へのブロック内の余白*/
	text-align: center;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 1.4rem;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
}

.contents h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	
}

.contents h1 {
	clear: both;
	margin-bottom: 30px;
	font-size: 1.8rem;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/


}
/*コンテンツ内にあるh3(見出し)タグの指定*/
.contents h3 {
	clear: both;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
.contents p {
	padding: 15px 45px 30px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
.contents p + p {
	margin-top: -5px;
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}

.red span{
	font-size: 1.1rem;

	font-weight: 900;
}

.red-line span{
	font-size: 1.1rem;
	color: #504445;
	font-weight: 900;
	background:linear-gradient(transparent 70%, #F3CBCB 0%);
}


.red a{
	color: #E74E51;
	font-size: 1.1rem;
}


.red a:hover {
	color: #ffbbbb;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


.anshin{
	 padding-bottom: 2rem;
}

/*角丸タイトル*/
.kadomaru h2 {
	
  position: relative;
  padding: 0.5rem 1rem;
  text-align: center;
  border: 3px solid #FF8793;
	background-color:rgba(255, 255, 255, 0.6);
  border-radius: 0 10px 10px 10px;
	    margin-bottom: 20px;
	    
}

.kadomaru h2:before {
  font-size: 1rem;
  position: absolute;
  top: -30px;
  left: -3px;
  height: 24px;
  padding: 0.1rem 1em;
  content: 'POINT';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #FF8793;
}


/*すみかについて*/

.about-sumika{
	margin-top: 30px;
	
	width: 60%;
	display: inline-block;
}


.about-point{
	padding-bottom: 2rem;

}



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



.btn,
a.btn,
button.btn {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #727271;
  border-radius: 0.5rem;
}

a.btn--yellow {
  color: #4C4C4C;
  background-color: #F7C6C4;
  border-bottom: 5px solid #D3AFAF;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #727271;
  background: #F2DADA;
  border-bottom: 2px solid #D3AFAF;
}

/*お問合せ*/
.left-title {
	width: 22rem;
	padding:20px 40px;
}

.left-tittle img{
	width: 350px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	font-size: 90%;		/*文字サイズ*/
	margin-bottom: 30px;	/*ブロックの下に空けるスペース*/
}
/*各ブロックごとの設定（サムネイルタイプへの追加指定）*/
.list.thumb {
	width: 23%;			/*画像幅*/
	margin: 0 1% 30px;
	padding-top: 1%;
	float: left;		/*画像を左に回り込み*/
	text-align: center;
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像の幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%;	/*画像の右に空けるスペース*/
}
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	margin: 0;
	float: none;
	width: 60%;		/*画像の幅*/
}
/*マウスオン事*/
.list a:hover img {
	transition: 0.5s;
	opacity: 0.7;	/*透明度。70%色が出た状態。*/
}
/*マウスオン事（サムネイルタイプへの追加指定）*/
.list.thumb a:hover img {
	transform: scale(1.05);	/*ほんの少し画像を大きくする指定*/
}
/*h4タグ*/
.list h4 {
	font-size: 140%;	/*文字サイズ*/
}
/*h4タグ（サムネイルタイプへの追加指定）*/
.list.thumb h4 {
	font-size: 100%;	/*文字サイズ*/
}
/*p(段落)タグ*/
.list p {
	padding: 0 !important;
	line-height: 2;
}

/*ヘッダータイトル*/
.header-title{
	padding-bottom: 5rem;
}

/*タイトルアイコン*/
.icon {
    display: inline-block;
	 width: 40px;
    height: 30px;
    background: url("images/title-sumika.png") no-repeat;
}
.title{ 
	  text-align: center;}

/*電話*/

.tell-box{
	float: right;
    top: 0;
    width: 20%;
	padding-bottom: 10px;
}

/*カウンセリング*/

.campagin-img{
	padding-top: 30px;
}


.counseling{
	margin-top: 30px;
	background:url("../images/bg_pattern01.png");
	width: 60%;
	display: inline-block;
}

.counseling-title{
    padding: 18px 0 15px 0;
    text-align: center;
    font-size: 21px;
    letter-spacing: 0.08em;
    line-height: 1.45;
}

.counseling small{
	display: inline-block;
    color: #fff;
    background: url("../images/btn_color01_bg.png");
    margin-bottom: 4px;
    padding: 6px 10px 5px 12px;
    border-radius: 20px;
	font-size: 16px;
	
}
.counseling img{

	width: 250px;
}

.attention {
  background:#faf8f7;
  box-shadow: 0px 0px 0px 15px #faf8f7;/*線の外側*/
  border: dashed 2px #FFA5C4;/*破線*/
  border-radius: 9px;
  padding: 1rem 1rem 1rem 0.1rem;
  width: 58%;
 display: inline-block;
	
}
.attention-wrap{
      text-align: left;
}

.attention　ul li {
  line-height: 1.5;
  padding: 0.5em 0;
}
.attention-child{
	text-align: left;
	display: inline-block;
	padding-left: 40px;
}

.attention-wrap a{
	color: #CD6061;
}


.attention-wrap a:hover {
	color: #ffbbbb;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ご利用の流れ*/
.step-child h3{
	font-size: 1.2rem;
	
}

.attention span{
 font-color: #33895D;
}

/*地域*/
.price-img{
	padding-bottom: 20px;
}

.area-img{
	padding-bottom: 400px;
}

/*よくある質問*/
.faq-wrap{
	padding-bottom: 30px;
	padding-top: 25px;
}

.faq-q{
	background: url("../images/faq-q.png")no-repeat left top;
    padding: 0 0 0 40px;
    font-size: 10rem;
    font-weight: bold;
    text-align: left;
}

.faq-a{
	background: url("../images/faq-a.png")no-repeat left top;
    padding: 0 0 0 40px;
    font-size: 10rem;
    font-weight: bold;
    text-align: left;
}


.box_faq p{
	padding:  0!important;

}

.faq{
	padding-top: 50px;
}
 
.box_faq{
	padding:  15px 10px;
	text-align: left;
}

.box_faq h3{
	font-size: 1.2rem;
	text-align: left;
}

/*見開き*/

.second-title{
width: 86%;	
	padding:0 2.9rem;
}

.second-title h4 {
  position: relative;/*相対位置*/

  line-height: 1.4;/*行高*/
  color: #7b6459;/*文字色*/
	  border-bottom: solid 3px #7b6459;
	text-align: left;
}

.second-title p{
  padding: 0 0px 0 20px;
}

/*会社概要*/
.info_wraper{
text-align: center;
}
.info_title{
	display: inline-block;
	width: 600px;
}

.info_table {
	display: inline-block;
    width: 450px;
    text-align: left;
    margin-left: 10px;
}

.left_cell {
    font-size: 1rem;
    letter-spacing: 1em;
    line-height: 2rem;
    vertical-align: top;
}

.right_cell {
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 2rem;
    vertical-align: top;
}


/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #FEE2E9;	/*背景色*/
	color: #fff;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}


/*リスト*/
.footer_box_01{
	display: block;
	width: auto;
	text-align: center;
}
.sub_navi{
	display: inline-block;
	margin: 30px 0 0 0;
	text-align: center;
}

.sub_navi_li{
	display: block;
	float: left;
	background:url("../images/line_02.png")right center no-repeat;
	margin: 0 25px 0 0;
	padding: 0 20px 0 0;
	font-size: 95%;
}

.sub_navi_li_last{
	float: left;
	font-size: 95%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: 5em;	/*高さ。内様がこれを超えるとスクロールバーが出ます。*/
	overflow: auto;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 1em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 7em;
}

/*box指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box {
	overflow: hidden;position: relative;
	padding: 20px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	text-align: center;
}

.box-in {
    overflow: hidden;
    position: relative;
    padding: 31px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    text-align: center;
}

/*bg1タイプの背景色*/
.bg1 {
	background: #ede9e2;	/*背景色*/
}
/*bg2タイプの背景色*/
.bg2 {
	background: transparent;	/*背景を透明にする*/
	border: 2px dashed #fff;	/*枠線の幅、線種、色*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #545454;	/*下の線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
	background: rgba(0,0,0,0.03);	/*背景色。0,0,0は黒の事で0.03は色が3%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	border-top: 1px solid #545454;		/*上の線の幅、線種、色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border-bottom: 1px solid #545454;	/*各行の下線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 25%;			/*幅*/
}

tnle{
	width: 100%;
}

/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #f38080;
	background: #FEE2E9;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #f38080;
}

/*予約ボタン*/

.button-reserve{
	flex-shrink: 0;
	position: relative;
	transition-property: transform;
	
}

.flex{
	display: flex;
}

.with-img{
	padding: 0.6rem;
	justify-content: flex-start;
	text-align: left;
}
.with-img img{
	marigin-right: 1.8rem;
	width: 3rem;
	height: 2.5rem;
	border-radius: 50%;
}


.button-tag{
	padding: 0.9rem 2rem;
	border: 0.1rem solid #FFFFFF;
	border-radius: 10rem;
	background: #FFFFFF;
	text-decoration: none;
}
.button-title{
	font-size: 1.1rem;
	padding: 0rem 1rem;
}
/*
a img{
	max-resolution: 1.8rem;
	width: 10rem;
	height: 6rem;
	border-radius: 50%;
}*/

.button-padding{
	margin-bottom: 1rem;
}

.align-center{
	align-items: center;
}

.inline{
	text-align: center;}

.left{
	text-align: left;
}

.centering-item{
	display: inline-block;
}
.right-buttom{
	text-align: right;
}

/*blog*/
.cover-image{
	height: 100%;
	width: 100%;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	
}

.blog{
	background:url("../images/bg_pattern01.png");
	width:60%;
  display: inline-block;
}


.blog li{
	
	vertical-align: top;
	
   }

.price-bg{
	background:url("../images/bg_pattern01.png");
	 width: 60%;
	display: inline-block;
}


.detail{
	font-weight: 400;
	color: aliceblue;
	font-size: 1rem;
	padding: 1rem 1.8rem;
	background: url("../images/btn_color01_bg.png");
	letter-spacing: 0.1rem;
	border-radius: 10rem;
	
}

.blog_list{
	text-align: center;
}

/*Twitter*/

.twitter-wrap{
	text-align: center;

}
.twitter1{
	display: inline-block;
}

.twitter2{
	display: inline-block;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	
	
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	 transform:scale(1.2,1.2);
  transition:0.5s all;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	font-size: 70%;
	display: inline-block;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}

.defaultlist
,.defaultlist li{
	padding:0px;
	margin:0px;
}
 
.defaultlist li{
	list-style-type:none !important;
	list-style-image:none !important;
	margin: 5px 0px 5px 0px !important;
}
 
.list8{
	counter-reset:li;
	margin-left:1rem !important;
}
 
.list8 li{
	position:relative;
	display: block;
	font-size: 1.2rem;
	padding:0px 0px 8px 20px; 
}
 
li{
	font-weight: bolder;
	font-size: 1.1rem;
}
li.list8-count:after{
	counter-increment: li;
	content: counter(li);
	position: absolute;	
	left: -18px;
	top: 2px;
	background: #FF8E8F;
	height: 30px;
	width: 30px;
	color: aliceblue;
	line-height: 32px;
	border: 2px solid #FF8E8F;
	text-align: center;
	font-weight: bold;
	border-radius: 30px;
	
}
 


/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #f38080;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width : 782px ){

.box_faq {
    padding: 20px 0px;
    text-align: left;
}	
	
/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}
	.contents h2{
		font-size: 20px
	}

.contents h3{
		font-size: 15px;
	}
.contents p{
	padding: none;
		font-size: 15px;
	}
	
.contents p {
    padding: 5px 10px 25px;
}
/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;		/*画像の幅*/
}
	
.header-title{
	width: 55%;	
	padding: 2% 0.5% 0% 4%;
}

	.tell-box{
	width: 30%;	
}
	.heaader-sub{
		padding-bottom: 8%;
	}
/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 100%;
}

	#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 0px;			
	padding-top: 20px;
	padding-bottom: 0px;
	font-size: 20px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	width: 80%;		/*画像の幅*/
}
	list{
	padding: 20%;
	}
	
/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

	.price-bg {
    background: url(../images/bg_pattern01.png);
    width: 50%;
    display: inline-block;
}
	
	
/*	質問*/
	
	.cp_qa .cp_plus {
    font-size: 2em;
    line-height: 100%;
    position: absolute;
    z-index: 5;
    margin: 17px 0 0 25px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
	
	
	/*すみかについて*/

.about-sumika{
	margin-top: 10px;
	
	width: 90%;
	display: inline-block;
}
	
	
	.second-title{
width: 90%;	
	padding:0 1rem;
}

}








/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width : 492px ){
	.html{
		font-size: 64%;
	}
/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	position: absolute;z-index: 1;
	width: 30%;	
	right: 0%;	
}

	
	
/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	padding: 30px 3%;
}






/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}
	
	
.price-bg{
	background:url("../images/bg_pattern01.png");
	width: 87%;
	display: inline-block;
}

	
	.counseling{
	margin-top: 30px;
	background:url("../images/bg_pattern01.png");
	width: 86%;
	display: inline-block;
}
	
	
	.attention {
  background:#faf8f7;
  box-shadow: 0px 0px 0px 15px #faf8f7;/*線の外側*/
  border: dashed 2px #FFA5C4;/*破線*/
  border-radius: 9px;
  padding: 1rem 1rem 1rem 0.1rem;
  width: 84%;
 display: inline-block;
	
}
	
	.blog {
    background: url(../images/bg_pattern01.png);
    width: 85%;
    display: inline-block;
}
/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}
