@charset "utf-8";


/* ============================================
 import
=============================================== */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url("mainimg.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #5dbd87;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/

	--secondary-color: #9b8e68;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	
	--accent-color: #c43311;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/

	/*余白の一括管理用。主に左右の余白に使っています。4rem＝4文字分。*/
	--content-space: 2rem;
	
}


/* ============================================
　bodyの設定
=============================================== */
body * {box-sizing: border-box;}
html,body {
		font-size: 1.2em;
}

	/*画面幅768px以上の追加指定*/
	@media screen and (min-width:768px) {

	html, body {
	font-size: 1em;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
        font-weight: 600;
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/* リセット */
/* ======================================= */
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input {font-size: 1rem;}
section {
	padding: 1.5rem 0;  /* ← 左右の余白をゼロに */
}

@media screen and (max-width: 768px) {
  section {
    padding: 2rem 0.5rem; /* 少し余白を残す */
  }
}


/* a a:hover */
/* ======================================= */
a {
	color: inherit;
}

a:hover {
	filter: brightness(1.1);
}

/* PCでは電話リンクは無効
------------------------------------------ */
@media (min-width:768px) {
   a[href^="tel:"]{
	pointer-events: none;
  }

}/* end */


/* ============================================
 container
=============================================== */
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both; 
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/* ============================================
 header
=============================================== */
header {
	padding: 1rem var(--content-space);
	color: #fff;		/*文字色*/
	position: absolute;
	width: 100%;
}
header a {color: inherit;}

h1 {
  font-size: 8px;
  color: #999;
	position: absolute;
	left: 2%;
	top: 2%
}


#logo a {text-decoration: none;}
#logo img {
	display: block;
	width: 300px;
}

/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width:768px) {

	header {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
		align-items: center;
}

#logo img {
	width: 400px;
}

}/* end */


/* header-box 問い合わせボタン */
/* ======================================= */

#header-box * {margin: 0;padding: 0;}


	@media screen and (min-width:768px) {

	#header-box {
		margin-right: 30px;
	}

	}/*追加指定ここまで*/



#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;
}

#header-box .btn a {
	display: block;
        text-decoration: none;
	padding: 0.5rem 2rem;	/*上下、左右*/
	border-radius: 6px;
	background: #228b22;	/* forestgreen */
}


#header-box .btn i {
	margin-right: 1rem;
	transform: scale(1.4);
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	/*ボタンが入ったボックス*/
	#header-box .btn {
		display: inline-block;
	}
	
	/*ボタン１個あたり*/
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}

	}/*追加指定ここまで*/

/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	background: #228b22;	/* forestgreen */
	color: var(--accent-inverse-color);
	text-align: center;
}


/*マウスオン時*/
.btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}


/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）
---------------------------------------------------------------------------*/
/*ボタンに使用しているアイコン*/
.btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 80vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.btn-box .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box .btn a {
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ボタンブロック*/
	.btn-box .btn {
		flex-direction: row;	/*横並びに変更*/
	}
	
	/*ボタン１個あたり*/
	.btn-box .btn li {
		width: 40vw;	/*幅。画面幅の40%*/
	}

	}/*追加指定ここまで*/


/* ============================================
 ハンバーガーメニュー
=============================================== */
/* ▼ メニュー全体のラッパー */
.menu-wrapper {
  position: relative;
}

/* ▼ ハンバーガーアイコン（右上固定） */
.menu-icon {
  width: 60px;               /* 枠を大きく */
  height: 60px;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3;

  background: #000;          /* 黒背景 */
  border-radius: 10px;
  display: flex;             /* 中央揃え */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;                  /* 線の間隔 */
}

/* ▼ 三本線（白） */
.menu-icon span {
  width: 32px;               /* 線の長さ */
  height: 4px;               /* 線の太さ */
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

/* ▼ ハンバーガー → X 変形（白） */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ▼ オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ▼ メニュー本体：右からスライド */
.menu {
  position: fixed;
  top: 0;
  right: -320px;        /* 隠す位置 */
  width: 320px;         /* メニュー幅拡大 */
  height: 100%;
  background: #000;     /* 黒背景 */
  overflow-y: auto;     /* アイテムが多いときスクロール */
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  right: 0;             /* 開いたとき右からスライドイン */
}

.menu ul {
  list-style: none;
  padding: 70px 25px;
}

.menu li {
  margin: 24px 0;
}

.menu a {
  text-decoration: none;
  color: #fff;          /* 白文字 */
  font-size: 1.3rem;    /* 視認性UP */
  transition: color 0.3s;
}

.menu a:hover {
  color: #00aaff;
}



/* ヘッダータイトル */
/* ======================================= */
.top-title * {margin: 0;padding: 0;}

.top-title {
	position: absolute;
	top: 40vh;
        left:30vh;
	z-index: 1;
	width: 80vw;
	margin-left: 0vw;
	display: flex;
	align-items: center;
}

.top-title h2 {
	font-size: 4rem;
	font-weight: bold;
	color: #fff;		/*文字色*/
	padding: 0 1rem;
        line-height: 1.2;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
.top-title {
	position: absolute;
	top: 52vh;
        left:1vh;
	z-index: 1;
	width: 100%;
	margin-left: 0vw;
}

.top-title h2 {
	font-size: 1.8rem;
        line-height: 2;
}

}/* end */



/* ============================================
 css 縦長ボタン
=============================================== */
#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	/*右からの配置場所*/
	top: 10vw;	/*上からの配置場所*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: #ff6600;	/* orange */
	color: #fff;	/*文字色*/
	padding: 2rem 1rem;	/*上下、左右*/
	border-radius: 3px 0px 0px 3px;	/*  */
	letter-spacing: 0.1em;
}

/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
#btn-special a {
	right: 0px;	/*右からの配置場所*/
	top: 20vw;	/*上からの配置場所*/
}

}/* end */


/* ============================================
 contents
=============================================== */
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*h2見出し*/
.h2_waku {
  color: #004d99;               /* Mineral blue */
  font-weight: bold;
  padding: 0.5em 1em;
  border: 3px solid #004d99;               /* Mineral blue */
  overflow: hidden;
  position: relative;
  width: 70%;
  margin: 0px auto;
  text-align: center;
  margin-bottom:20px;
}


.h2_waku::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-width: 25px 25px 0 0;
  border-style: solid;
  border-color: #004d99 #fff #004d99;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 767px) {
.h2_waku {
  width: 100%;

 }

}/* end */


/*h3見出し*/
.midashi{
    background: #b22222;
    color: white;
    padding: 0.5rem;
    border-radius: 16px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}


/* waku_box google口コミ、freeDial枠、インボイス枠*/
/* ================================================= */
.waku_box {
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.waku_box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.waku_box p {
  text-align: center;  
  margin: 1rem 0;          /* 上下 */
}

.waku_box .middle {
  font-size: 1.7rem; 
  font-weight: bold;
}

.under_r {
  border-bottom: 2px solid red;
  display: inline-block;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
.waku_box {
  width: 100%;
 }

.waku_box .middle {
  font-size: 1.2rem; 
}

}/* end */


/* ============================================
 css grid
=============================================== */

/* grid2: 2列レイアウト */
/* ======================================= */

.grid2 .list * {
  margin: 0;
  padding: 0;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}


.grid2 .box2 {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1rem;
  background: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 0; 
  border-radius: 8px;
}

.grid2 .box2 p {
  line-height: 1.5;
}

.grid2 .text_box {

}

.grid2 .box2 h4 {
  font-size: 20px;
  color: #8b0000; /* darkred */
  margin-bottom: 0.5rem;
}

.grid2 .box2 figure {
  margin: -1rem;
  margin-bottom: 0rem;
}

.grid2 figure a {
  display: block;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.grid2 .box2 figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px 6px 0 0;
}

.grid2 figure a img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid2 figure a:hover img {
  transform: scale(1.05); 
  filter: brightness(1.1);  
}



/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  .grid2 {
    grid-template-columns: 1fr;
  }

  .grid2 .box2 {
    margin-bottom: 1rem; 
  }

  .grid2 .box2 h4 {
    font-size: 26px;
}

}/* end */


/* ============================================
 css flexbox
=============================================== */

/* flex_box 画像左 文字右 リバース*/
/* ======================================= */
.flex_box * {margin: 0;padding: 0px;}

.flex_box{
    width: 95%;
    margin: 0 auto;
}



.flex_box .case_pict {
	background: #fff;
	color: #333;
	padding: 0rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

.flex_box .case_text {
       text-align: left;
	line-height: 1.5;
        font-size: 1.2rem;
        padding: 0 10px 10px 0 !important;  /* 上 右 下 左 */
}

.flex_box figure {
	width: 100%;
	margin-bottom: 1rem;
}

.flex_box h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
        color: #8b0000; /* darkred */
        font-weight: 700;
}


/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
  .flex_box{
    width: 80%;
    margin: 0 auto;
 }

  .flex_box .case_text {
		flex: 1;
  	        line-height: 1.5;
                color: #333;
                font-size: 0.9rem;
	        padding: 0 10px 0 0;/* 上 | 右 | 下 | 左 */
 }
	
  .reverse {
    flex-direction: row-reverse;
    background-position: left bottom !important;
 }
	
  .flex_box .case_pict {
    display: flex;
    gap: 2rem;	
 }
	
  .flex_box figure {
	width: 40%;
    margin-bottom: 0;
  }

  .flex_box h4 {
    font-size: 1.5rem;
    line-height: 1.8;
 }

}/* end */



/* flex 画像3個 保有資格、PRバナー */
/* ======================================= */
.wrapper{
  width: 100%;
  padding: 8px;
  border: .5px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin-bottom: 24px;
}

.img-wrapper img{
  width: 100%;
  vertical-align: bottom;
}

.content-wrapper{
  padding: 8px 0;
}

.content-wrapper .heading{
  margin: 0 0 8px;
    font-size: 20px;
  color: #8b0000; /* darkred */
  font-weight: 600;
}

.content-wrapper .text_c{
  margin: 0;
  font-size: 1em;
} 

/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media(min-width: 768px){
  .flex-container{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  
  .wrapper{
    width: 32%; 
    margin: 0;
  }

.content-wrapper .text_c{
    font-size: 0.7em;
    line-height: 1.2 !important;
 }

} /* end */



/* ============================================
 css ul li
=============================================== */

/* ul 悩み */
/* ======================================= */
.parent {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  .parent {
    display: block;
  margin: 0 auto;
  }

}


ul.nayami {
  width: 80%;
  font-size: 20px;
  font-weight: bold;
  border: solid 2px #679ff2;   /* Soft blue */
  background: #f4f9ff;         /* Snow White */
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
}

ul.nayami li {
  position: relative;
  line-height: 1.5;
  padding: 0.5em 0 0.5em 2em; 
  list-style-type: none !important;
  border-bottom: 1px dashed #0f4fad;
}

ul.nayami li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  content: "\f1b0";  /* pawアイコンのUnicode */
  color: #679ff2;
  position: absolute;
  left: 0;
  top: 0.6em;
  font-size: 1em;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  ul.nayami {
    width: 96% !important;
    font-size: 22px;
    padding: 10px 0px;
    margin: 0 auto !important;
  }

}/* end */



/* grid3: btnあり 3列 サービス一覧 */
/* ======================================= */
.grid3a {
  width: 95%;
  margin: 0 auto;
}

.grid3a .list_3a * {margin: 0;padding: 0;}

.grid3a .list_3a {
    display: grid;
    margin-bottom: 2rem;
}

.grid3a .list_3a {
	padding: 1rem;	
	background: #fff;	/*背景色*/
	color: #111;		/*文字色*/
    grid-template-rows: auto 1fr auto;	
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.grid3a .list_3a figure {
	margin: -1rem;	
	margin-bottom: 0.5rem;	
}

.grid3a .list_3a h4 {
  font-size: 20px;
  color: #8b0000; /* darkred */
  margin-bottom: 0.5rem;
}

.grid3a .list_3a p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.grid3a figure a:hover img {
  transform: scale(1.05);      /* 拡大 */
  filter: brightness(1.1);     /* 明るく */
}

.grid3a .btn_a {
  text-align: center;
  margin-top: 1rem;
}

.grid3a .btn_a a {
  display: block;  
  width: 100%;  
  background-color: #228b22;    /* forestgreen */
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 1rem; 
  transition: background-color 0.3s, transform 0.2s;
  box-sizing: border-box;
}

.grid3a figure a img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid3a .btn_a a:hover {
  background-color: #8fbc8f;    /* darkseagreen */
  transform: scale(1.02); 
}

/* PC用768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width:768px) {

.grid3a {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 3vw;
}

.grid3a {
  width: 80%;
  margin: 0 auto;
}
.grid3a .list_3a {
		margin-bottom: 0;
}

}/*end*/


/* grid3: btnなし 3列 料金プラン */
/* ======================================= */
.grid3b {
  width: 95%;
  margin: 0 auto;
}

.grid3b .list_3b * {margin: 0;padding: 0;}

.grid3b .list_3b {
    display: grid;
    margin-bottom: 2rem;
}

.grid3b .list_3b {
	padding: 1rem;	
	background: #fff;	/*背景色*/
	color: #111;		/*文字色*/
    grid-template-rows: auto 1fr auto;	
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.grid3b .list_3b figure {
	margin: -1rem;	
	margin-bottom: 0.5rem;	
}

.grid3b .list_3b h4 {
  font-size: 20px;
  color: #8b0000; /* darkred */
  margin-bottom: 0.5rem;
}

.grid3b .list_3b p {
	font-size: 0.85rem;
	line-height: 1.5;
}


/* PC用768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width:768px) {

.grid3b {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 3vw;
}

.grid3b {
  width: 80%;
  margin: 0 auto;
}

.grid3b .list_3b {
		margin-bottom: 0;
}

}/*end*/


/* grid_multi: 9つのサービス */
/* ======================================= */

.grid_multi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
}

 
.clmn-list { 
    padding: 10px; 
    border: 1px solid #ddd; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    border-radius: 4px; 
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 768px) {
  .grid_multi {
    grid-template-columns: repeat(1, 1fr);
  width: 95%;
  }

}/*end*/



/* 悪質な請求 */
/* ======================================= */
.waku-4 {
  width: 80%;
  margin: 0 auto;
    border: 2px solid #004d99;    /* Mineral blue */
}

.waku-4 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #004d99;    /* Mineral blue */
    color: #fff;
    font-weight: 600;
}

.waku-4 p {
	font-size: 1rem;
	line-height: 1.5;
    color: #333;
	text-align: center;
}

.waku-4 ul {
    list-style-type: none;
    margin: 0;
    padding: 1em 1em 1em 2.5em;
}

.waku-4 li {
    padding: .3em .3em .3em 0;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 768px) {
.waku-4 {
  width: 96%;
  margin: 0 auto;
}

}/*end*/


/* red-box */
/* ======================================= */
.red-box {
        width: 80% !important;
        margin: 0 auto;
        margin-bottom: 10px;
	padding:1em 2em 1.5em;
	background-color: #660000;   /* darkred */
	border-radius:10px;
        line-height: 1.5;
        text-align: center;
	color:#fff; /* タイトル文字色 */
}

.red-box .box-title {
	color:#fff; /* タイトル文字色 */
	font-size: 18px;
	font-weight: bold;
        text-align: center;
}

.red-box .box-title:before {
	font-family: "Font Awesome 6 Free";
	content: "\f1b0";
	font-size: 18px;
	margin: 0 3px 0 0;
	font-weight: bold;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
.red-box {
  width: 100% !important;
}

}


/* f_table */
/* ======================================= */
.contact_item {
  width: 80%;
	margin: 0 auto;
border: 2px solid #004d99;    /* Mineral blue */
  padding: 10px;
  text-align: center;
}

.item-img {
  padding: 0;
}
.item-body {
  padding: 0;
}
.item-title {
  margin: 0 0 8px;
  font-size: 2em;
  font-weight: 700;
  color: #ef5350;
}
.item-body p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

/* ============================================
 css table
=============================================== */

/* f_table */
/* ======================================= */

.f_table caption {
  text-align: center;
  background: #D0E4F7;    /* lightblue */
  color: #333;
  font-weight: bold;
  padding: 10px;
}

.f_table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 2rem;
  background: #fff;
  color: #333;
  border-collapse: collapse;
}

.f_table, .f_table th, .f_table td {
  border: 1px solid #ccc;
  word-break: break-all;
}

.f_table th {
  background: #f5f5f5;  /* whitesmoke */
  width: 20%;
  text-align: center;
  padding: 8px;
}

.f_table th.w60 {
  background: #f5f5f5;  /* whitesmoke */
  width: 60% !important;
  text-align: center;
  padding: 8px;
}

.f_table td {
  text-align: left;
  line-height: 1.5;
  padding: 8px;
}

.f_table .col-1 {
        color: #ffff00;		/* yellow  */
}

.f_table .col-2 {
        color: #fff;		/* yellow  */
}

.f_table .col-3 {
        color: #ff4500;		/* orangered  */
}

.bg-glay {
  background-color: #f5f5f5;  /* whitesmoke */
}

/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
  .f_table {
    width: 80%;
    margin: 0 auto 2rem auto;
  }

  .f_table th {
    font-size: 1rem;
    background: #f5f5f5;  /* whitesmoke */
    width: 20%;
    text-align: center;
    padding: 8px;
}

  .f_table td {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.5;
    padding: 8px;
 }

} /* end */


/* FAQ よく頂く質問 */
/* ======================================= */
.Qa-Box {
  width: 80%;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 5px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  color: #8b0000;
  font-weight: bold;
  width: 100%;
    font-size: 18px;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  color: #333;
  width: 100%;
    font-size: 18px;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #8b0000;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50px;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #000080;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50px;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
  .Qa-Box {
    width: 95%;
  }

}/* end */









/* grid_3box: 3列レイアウト */
/* ======================================= */
.grid_3box .3waku * {margin: 0;padding: 0;}

.grid_3box .3waku {
  display: grid;
  position: relative;
  overflow: hidden;
  padding: 1rem;	
  grid-template-rows: auto 1fr;	
  border: 1px solid #ccc; 
  background: #fff;  
  border-radius: 5px; 
  margin-bottom: 1rem;
}

.grid_3box .3waku figure img {
	margin-bottom: 0.5rem;
}

.grid_3box .3waku p {
	line-height: 1.5;
}

/* PC用768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width:768px) {

  .grid_3box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /*3列*/
    gap: 1rem;

  }

  .grid_3box h4 {
    font-size: 20px;
}

 .grid_3box .3waku {
    border: 1px solid #ccc; 
}

}/* end */


/* g_card3: 3列レイアウト 3つの問合せ */
/* ======================================= */
.g_card3 {
  width: 90%;
  margin: 0 auto;
}

.g_card3 .g_item * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.g_card3 .g_item {
    display: grid;
	margin-bottom: var(--global-space);	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.g_card3 .g_item p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.g_card3 .g_item {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

.g_card3 .text_g h4 {
    font-size: 22px;
    color: #8b0000; /* darkred */
}

/*ボックス内のfigure画像*/
.g_card3 .g_item figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.g_card3 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.g_card3 .g_item {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/


/*ボタン（btn_g）
---------------------------------------------------------------------------*/
.btn_g a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--accent-color);	/*背景色。css冒頭のvar(accent-color)を読み込みます*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;	/*ボタンの外（上）に空けるスペース*/
}

/* card: 3列レイアウト  */
/* ======================================= */
.card {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.card_item {
  background: #fff;
  padding: 20px;
}
.card_img-area {

  margin-bottom: 20px;
}
.card_img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}


/* line-box */
/* ======================================= */
.line-box {
        width: 80% !important;
        margin: 0 auto;
        margin-bottom: 10px;
	padding:1em 2em 1.5em;
	background-color: #fff;   /*  */
        border: 3px solid #660000;   /* darkred */
	border-radius:10px;
        line-height: 1.5;
        text-align: center;
	color:#333;   /*  */
	font-size: 20px !important;
}

.line-box .box-title {
	color:#660000;   /* darkred */
	font-size: 24px;
	font-weight: bold;
        text-align: center;
}

.line-box .box-title:before {
	font-family: "Font Awesome 6 Free";
	content: "\f1b0";
	font-size: 18px;
	margin: 0 3px 0 0;
	font-weight: bold;
}



/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
.line-box {
  width: 100% !important;
  text-align: left;
  padding: 1em 1em;
}

}/* end */

/* center_box */
/* ======================================= */
.center_box99{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}



/* table tokusyu 特殊清掃料金 レスポンシブ */
/* ======================================= */
.tokusyu {
  width: 70%;
  margin: 0 auto;
}

.tokusyu th{
  border: 1px solid #ccc ; 	/*  */
  padding: 20px;
  font-weight: 500;
  background-color: #4d4d4d;    /* gray */
  width: 70%;
  color: #fff;
}

.tokusyu td {
  border: 1px solid #ccc ; 	/*  */
  padding: 20px;
  line-height: 1.5 !important;
  vertical-align:top
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 768px) {
 .tokusyu,
 .tokusyu tr,
 .tokusyu td,
 .tokusyu th {display:block;width:auto;}

 .tokusyu th,
 .tokusyu td {
   padding: 10px;
  font-size:1.0em;
 }

 .tokusyu th {
    text-align: left;
 }

}/* end */





/* ============================================
 css リンクボタン
=============================================== */
.btn_base,
a.btn_base,
button.btn_base {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  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: #212529;
  border-radius: 0.5rem;
}

.btn_r,
a.btn_r {
  color: #fff;
  background-color: #004d99;               /* Mineral blue */
}
.btn_r:hover,
a.btn_r:hover {
  color: #fff;
  background: #f56500;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}

/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*マウスオン時*/
.btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}


/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）
---------------------------------------------------------------------------*/
/*ボタンに使用しているアイコン*/
.btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 80vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.btn-box .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box .btn a {
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*ボタンブロック*/
	.btn-box .btn {
		flex-direction: row;	/*横並びに変更*/
	}
	
	/*ボタン１個あたり*/
	.btn-box .btn li {
		width: 40vw;	/*幅。画面幅の40%*/
	}

	}/*追加指定ここまで*/

/* btn_14 横長ボタン */
/* ======================================= */
a.btn_14 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 3px solid #0f4fad;   /* Dark blue */
	color: #0f4fad;   /* Dark blue */
	background: #fff;
	font-size: 1.4rem;
	border-radius: 100vh;
	transition: 0.5s;
}

a.btn_14:hover {
	color: #fff;
	background: #0f4fad;   /* Dark blue */
}

a.btn_14::after {
	font-family: "Font Awesome 6 Free";
	content: "\f0a9";
	font-weight: bold;
	margin-left: 0.5em;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
 a.btn_14{
	width: 100%;
	margin: auto;
	padding: 1rem 1rem;
 }

}/*End*/






/* 口コミ REVIEW */
/* ======================================= */

.modern-accordion {
  max-width: 800px;
  margin: 0 auto;
  --primary-color: #2563eb;
  --text-color: #1f2937;
  --border-color: #e5e7eb;
}

.accordion-item {
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.accordion-header {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 64px; 
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: #f8fafc;
}

.header-content {
  text-align: left;
}

.label {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: block;
}

.title {
  font-size: 18px;
  color: #333;
  margin-right: 30px;
  font-weight: 500;

}

.icon-wrap {
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.faq_name {
  font-size: 14px;
  color: #2563eb; /* 適宜調整 */
  margin-right: 6px;
}

.faq_stars {
  color: #f59e0b; /* オレンジ色 */
  font-size: 14px;
  margin-right: 6px;
  letter-spacing: 1px;
}

.plus {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff4500;
  transition: transform 0.3s ease;

}

.plus:first-child {
  transform: translateY(-50%);
}

.plus:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-header.active .plus:last-child {
  transform: translateY(-50%) rotate(0);
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.accordion-body p {
  font-size: 14px;  
  line-height: 1.4; 
  color: #333; 
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 4px;
}

.body-content {
  padding: 0 24px 24px;
}

/* アニメーション用の状態 */
.accordion-body.entering {
  height: var(--content-height);
}

.accordion-body.leaving {
  height: 0;
}






/* list-box 孤独死コラム */
/* ======================================= */
.list-tit {
  background: #007bbb;    /* 紺碧 こんぺき */
  border-radius: 6px 6px 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 2;
  margin: 0;
  padding: .2em 1em;
  text-align: center;
  max-width: 100%;
}

.list-box {
  background: #fff;
  border: 2px solid #99bdde;
  border-radius: 10px;
  line-height: 2;
  width: 80%;
}

.list-design {
  list-style-type: disc;
  font-size: 1.2em;
}

.list-design li {
  margin-top: 10px;
}

.list-design li:first-of-type {
  margin-top: 0;
}

.list-design li::marker {
  color: #007bbb;    /* 紺碧 こんぺき */
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width:768px) {
.list-box {
  width: 100%;

}

}

/* list-4 */
/* ======================================= */
.list-4 {
    border: 2px solid #2589d0;
  width: 80%;
    margin: 0 auto;
}

.list-4 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #2589d0;
    font-size: 1.2em;
    color: #fff;
    font-weight: 600;
}

.list-4 ul {
    list-style-type: disc;
    margin: 0;
    padding: 1em 1em 1em 2.5em;
}

.list-4 li {
    padding: .3em .3em .3em 0;
}

.list-4 li::marker {
    color: #2589d0;
    font-size: 1.1em;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width:768px) {
.list-4 {
  width: 100%;

}

}



/* *************************************
/* ■ footer
***************************************/
.footer-3 {
    padding: 3rem 2rem 1.5rem;
    background-color: #202020;
}

.footer-3__container {
    display: grid;
    justify-items: center;
    grid-template-columns: 150px 2fr 1fr 1fr;
    gap: 20px; 
    max-width: 1500px;
    margin: 0 auto;
}

.footer-3__logo {
    width: 110px;
    height: auto;
    margin-bottom: .2em;
}

.footer-3__caption {
    margin-top: 0;
    color: #a6adb3;
    font-size: .75em;
}

.footer-3__title,
.footer-3__link {
    margin: 0 0 .8em;
    font-size: .9em;
}

.footer-3__title {
    font-weight: 600;
    color: #ff6347;
}

.footer-3__list {
    padding: 0;
    list-style-type: none;
    color: #fff;
}

.footer-3__link {
    display: block;
}

.footer-3__link:not(:hover) {
    text-decoration: none;
}

.footer-3__copyright {
    text-align: center;
    color: #ccc;
    font-size: 0.8em;
    margin-top: 2rem;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
    .footer-3__container {
        justify-items: start;
        grid-template-columns: repeat(1, 1fr);
        gap: 1em;
    }

    .footer-3__head {
        grid-column: 1/3;
    }

.footer-3__logo {
    width: 110px;
    height: auto;
    margin: 0 auto;
}

    .footer-3__caption br {
        display: none;
    }

    .footer-3__copyright {
        text-align: center;
    }
}



/* pagetop */
/* ======================================= */
#pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
}
#pagetop a {
    position: relative;
    display: flex;
    width: 65px;
    height: 65px;
    justify-content: center;
    background: rgb(255 166 80);
    transition: opacity .6s ease;
    color: #FFF;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    border-radius: 100%;
}
#pagetop a:hover {
    opacity: .3;
}
@media screen and (max-width:767px) {
#pagetop a {
    width: 45px;
    height: 45px;
}
}

.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/* formWrap メールフォーム*/
/* ======================================= */
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width:768px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

/* ============================================
 css 横に流れるスライダー
=============================================== */
.swiper {
            width: 80%; /* スライダー全体の幅 */
            height: auto; /* スライダー全体の高さ */
            margin: 50px auto; /* 上下の余白と中央寄せ */
            border: 1px solid #ccc; /* 枠線 */
        }
        .swiper-slide {
            display: flex; /* 中央寄せのため */
            justify-content: center; /* 中央寄せのため */
            align-items: center; /* 中央寄せのため */
            font-size: 30px; /* 文字の大きさ */
            font-weight: bold;
            background-color: #f0f0f0; /* 背景色 */
            color: #333;
        }

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width:768px) {
.swiper {
            width: 96%; /* スライダー全体の幅 */
        }


}/* end */

span.double-underline { 
      border-bottom: 6px double #dc143c;
}

/* 肉球アイコン */
.icon-paw::before {
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; 
  content: "\f1b0"; /* fa-paw の Unicode */
  margin-right: 0.5em;
  display: inline-block;
  color: #e91e63;  /* pink */
}

/* Font装飾 */
/* ======================================= */
.red {color: #ff4500 !important;font-size: 100%;font-weight: bold;}	/* orangered */
.red_b {color: #ff4500 !important;font-size: 120%;font-weight: bold;}	/* orangered */
.orange_c {color: #ffa500 !important;font-size: 100%;font-weight: bold;}	/* orange */
.blue {color: #0000cd !important;font-size: 100%;font-weight: bold;}	/* mediumblue */
.aqua {color: #00ffff !important;font-size: 100%;font-weight: bold;}	/* cyan */

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/



