@charset "utf-8";

body {
    margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 1.7;		/*行間*/
	-webkit-text-size-adjust: none; 
}

ul {list-style-type: none;}


.sp-header{
	width: 100%;
}

.contents {
	clear: both;overflow: hidden;
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅　※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
	margin: 0 auto;
}

.text-left{
	text-align: left;
	padding-left: 10px;
}



/*メイン画像
---------------------------------------------------------------------------*/

.main-img {
    position: relative;
	margin-bottom: -10px;
}

.main-logo-img {
position: absolute;
top: 50% ;
left: 50%;
transform: translate(-50%,-50%);
}


.main-logo-text {
position: absolute;
top: 50% ;
left: 50%;
transform: translate(-50%,-50%);
font-size: 36px;
color: #ffffff;
text-shadow: 5px 5px 10px #000;
}


html {
    width: 100%;
    height: 100%;
}

h1 {
	font-size: 38px;
}
h2 {
	font-size: 24px;
	text-align: center;
	color: #C11920;
	font-weight: 900;
}

h3 {
	font-size: 18px;
	color: #898989;
	text-align: center;
	margin: 0px 0px 50px 0px;
	font-weight:100;
	letter-spacing: 2px;
}

h4 {
	font-size: 33px;
	text-align: left;
	color: #C11920;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	line-height: 1.7;
}

h5 {
	font-size: 24px;
}
h6 {
	font-size: 18px;
}


p {
    margin: 0 0 5px;

}

a {
    color: #000;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	text-decoration: none;
}


a:hover,
a:focus {
    text-decoration: none;
	color: #333;
}
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/*フェイドイン
---------------------------------------------------------------------------*/
.css-fade4{
  width:100%;
  height: 100%;
  opacity: 0;
}
.css-fade4--in{
  animation-name:fade-in4;
  animation-duration:2s;
  animation-timing-function: ease-out;
  animation-delay:0;
  animation-iteration-count:1;
  animation-direction:normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in4 {
  0% {opacity: 0; transform: translate3d(0,30px,0);}
  100% {opacity: 1; transform: translate3d(0,0,0);}
}
.css-fade5{
  width:100%;
  height: 100%;
  opacity: 0;
}
.css-fade5--in{
  animation-name:fade-in5;
  animation-duration:2s;
  animation-timing-function: ease-out;
  animation-delay:0;
  animation-iteration-count:1;
  animation-direction:normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in5 {
  0% {opacity: 0; transform: translate3d(0,30px,0);}
  100% {opacity: 1; transform: translate3d(0,0,0);}
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/

#menubar {
	clear: both;
	overflow: hidden;
	padding-top: 50px;
	margin-bottom: 20px;
	z-index: 9999;
}


.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
	background-color: #C11920;
z-index: 9999;
}

.submenu {
	font-size: 13px;
	letter-spacing: 0px;
	
}

/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	padding: 0px;	/*上下、左右へのボックス内の余白*/
	margin: 0px;
	
}

#menubar li.menu-logo{
	margin-top: -35px;
	
}


#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;	/*内容をセンタリング*/
	padding: 0px;	/*上下、左右へのボックス内の余白*/
	margin: 0px;
	color: #ffffff;
	letter-spacing: 1px;
	font-size: 18px;
	
}


/*１つ目のメニューへの追加設定*/

/*マウスオン時と、現在表示中(current)メニューの設定*/
#menubar li a:hover,
#menubar li.current a {/*背景色*/
	color: #B0B0B0;	/*文字色*/
	
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}


/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){

/*inner共通
---------------------------------------------------------------------------*/
	
.inner {
	width: 1200px;	/*サイト幅*/
}

/*メインメニューとドロップダウンメニューの設定変更。
上の共通設定で、max-widthを1200pxにしており、メニュー数が５個なので、1200÷5=240pxになります。
---------------------------------------------------------------------------*/
#menubar li {
	width: 190px;
	padding: 0px;	/*上下、左右へのボックス内の余白*/
	margin: 0px;
}

#menubar li:first-child {
	margin-left: 0px;
	margin-right: 20px;
}
#menubar li:last-child {
	margin-right: 0px;
}	
}

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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 95%;
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	top: 50px;
	display: block;
	overflow: hidden;
	position: absolute;               /* 右からの位置指定 */
    top: 50px; 
	width: 100%;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
    z-index: 9999999;
	padding:  0px; 
	margin: 0px;
	margin-left: 0px;
	padding-left: 0px;
}
/*メニュー１個あたりの設定*/
	
#menubar-s ul {
	width: 100%;
	margin-left: 0px;
	padding-left: 0px;
}
	
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 15px ;
	border-bottom: 1px solid #fff;
	background: rgba(193,25,32,0.9);
	color: #fff;
	font-size: 100%;
	
}

	
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 1%;	/*上から3%の場所に配置*/
	right: 2%;	/*右から3%の場所に配置*/
	
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}
}

img.shop-img {
	margin-left: 20px;
}

.menu-text {
	text-align: left;
	font-size: 18px;
	float: left;
}
.menu-fee {
	text-align: right;
	font-size: 18px;
}

/* misc */
hr {
  margin-top: 5px;
}

hr.bold {
  border-top: 2px solid #000;
}

.bg-menu {
	background: #f3f3f3;
}

.bg-footer {
	border-top: solid 15px #C11920; 
	padding-bottom: 20px;
}

.service_title {
	margin: 20px 0px;
}

.service_text1 {
	font-size: 17px;
	text-align: left;
	width: 573px;
}

.service_text2 {
	font-size: 20px;
	text-align: left;
	margin: 20px 0px 80px 10px 
}

.service_text2-1 {
	font-size: 20px;
	text-align: left;
	margin: 20px 0px 20px 10px 
}

.service_text3 {
	font-size: 15px;
	text-align: left;
	margin: 20px 0px 0px 10px 
}

.box3 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #2c2c2f;
    background: #cde4ff;/*背景色*/
}
.box3 p {
    margin: 0; 
    padding: 0;
}
.service-title {
	text-align: center;
	font-size: 18px;
	margin: 15px 0px;
}

.service-text {
	text-align: center;
	font-size: 21px;
	margin-bottom: 55px;
}

.price-text {
	text-align: center;
	font-size: 24px;
	color: #C11920;
	font-weight: 700;
	margin: 71px 0px 44px 0px
}

.price-obi1 {
	text-align: center;
	background-color: #F19DAE;
	font-size: 41px;
	color: #ffffff;
	letter-spacing: 2px;
	margin-bottom: 20px;
	width: 543px;
}

table.price-t1 {
	border: solid 1px #F19DAE;
	 border-collapse: collapse;
	font-size: 21px;
	width: 543px;
	margin: 0px;
	padding: 0px;
}

table.price-t1 th {
	border: solid 1px #F19DAE;
	text-align: center;
	background-color: #F8CFE1;
	padding: 25px;
	font-weight: 100;
}

table.price-t1 td {
	border: solid 1px #F19DAE;
	text-align: center;
	padding: 25px;
}

.price-obi2 {
	text-align: center;
	background-color: #47BEDA;
	font-size: 41px;
	color: #ffffff;
	letter-spacing: 2px;
	margin-bottom: 20px;
	width: 543px;
}

table.price-t2 {
	border: solid 1px #6FC9F3;
	 border-collapse: collapse;
	font-size: 21px;
	width: 543px;
	margin: 0px;
	padding: 0px;
}

table.price-t2 th {
	border: solid 1px #6FC9F3;
	text-align: center;
	background-color: #EAF6FD;
	padding: 25px;
	font-weight: 100;
}

table.price-t2 td {
	border: solid 1px #6FC9F3;
	text-align: center;
	padding: 25px;
}

/* ===========================
--- LIFE SUPPORT
============================ */

.ls_obi {
	font-size: 32px;
	border: solid 3px #EE86A3;
	text-align: center;
	padding: 2px;
	color: #EE86A3;
	border-radius: 30px;
	margin-top: 60px;
}

.ls_title {
	font-size: 22px;
	text-align: center;
	color: #EE86A3;
	margin: 17px 0px;
	font-weight: 900;
	letter-spacing: 2px;
}

.ls_text {
	font-size: 17px;
	text-align: justify;
}
.text_24r{
	font-size: 24px;
	text-align: center;
	color: #C11920;
    padding: 0;
	padding-bottom: 5px;
    border-bottom: 3px solid #F19DAE;
    text-decoration: none;
	font-weight: 900;
	margin-top: 85px;
	margin-bottom: 100px;
}

.text_box{
	margin-top: 85px;
	margin-bottom: 100px;
}

/* ===========================
--- PHYSICAL CARE
============================ */

.pc_obi {
	font-size: 32px;
	border: solid 3px #47BEDA;
	text-align: center;
	padding: 2px;
	color: #47BEDA;
	border-radius: 30px;
	margin-top: 60px;
}

.pc_title {
	font-size: 22px;
	text-align: center;
	color: #47BEDA;
	margin: 17px 0px;
	font-weight: 900;
	letter-spacing: 2px;
}

.pc_text {
	font-size: 17px;
	text-align: justify;
}


/* ===========================
--- OWN EXPENSE SERVICE
============================ */

.oe_obi {
	font-size: 32px;
	border: solid 3px #8FC31F;
	text-align: center;
	padding: 2px;
	color: #8FC31F;
	border-radius: 30px;
	margin-top: 60px;
}


.oe_text {
	font-size: 20px;
	text-align: left;
	letter-spacing: 1px;
	margin-top: 50px;
}


/* ===========================
--- Footer
============================ */

table.t-footer{
	margin-top: 28px;
	font-size: 15px;
}

table.t-footer td{
	padding: 0px 20px 20px 20px;
}

.access-text {
    line-height: 2;
}

.teltext {
    margin-bottom: -10px;
}
.teltext a {
    font-size: 43px;
	font-weight: 900;
	color: #C11920;
	font-family: Arial, Helvetica, "sans-serif";
	
}

table.t-access td{
	padding: 25px;
	line-height: 1.8;
	font-size: 17px;
}

table.t-access td:first-child{
	padding-left: 0px;
}

table.t-access td:last-child{
	padding-right: 0px;
}

.btn-gradient-radius {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #C11920;
  border: solid 2px #C11920;
  transition: .4s;
	font-size: 19px;
	width: 100%;
	text-align: center;
	font-weight: 900;
	margin-top: 10px;
}

.btn-gradient-radius:hover {
  background-color: #C11920;
	color: #fff;
}

p.copyright{
    font-size: 12px;
	margin-top: 50px;
}

/* ===========================
--- Contact
============================ */


.contact-text{
  text-align: center;
	font-size: 15px;
}
table.formTable {
	width: 1100px;
	border-collapse: collapse;
}

table.formTable th {
	color: #000000;
	width: 30%;
	background-color: #eef0f3;
	text-align: left;
	padding: 10px 20px;
}	


table.formTable td {
	color: #000000;
	width: 70%;
	background-color: #FCFCFD;
	border: none;
	text-align: left;
	padding: 10px 20px;
}

table.formTable td.syubetsu {
	width: 50%;
	text-align: left;
}

.form_h {
	text-align: left;
	display: inline-block;
	
}

.form_th {
	text-align: right;
	display: inline-block;
	width: 180px;
}	

.form_th2 {
	text-align: right;
	display: inline-block;
	width: 240px;
}	

.textbox {
  border: 1px solid #606060;
  color: #000;
  opacity: .7;
  padding: 10px;
  text-align: left;
  width: 583px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  font-size: 16px;
  outline: none;
  background-color: #FFF;
	margin-bottom: 10px;
	margin-left: 10px;
}

.textbox2 {
  border: 1px solid #606060;
  color: #000;
  opacity: .7;
  padding: 10px;
  text-align: left;
  width: 470px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  font-size: 16px;
  outline: none;
  background-color: #FFF;
	margin-bottom: 10px;
}

.textbox3 {
  border: 1px solid #606060;
  color: #000;
  opacity: .7;
  padding: 10px;
  text-align: left;
  width: 30%;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  font-size: 16px;
  outline: none;
  background-color: #fff;
margin-bottom: 10px;
}

.jtext {
	width: 100px;
	display: inline-block;
	margin-left: 20px;
}

textarea {
  resize: none;
  width: 583px;
	background-color: #fff;
    border: 1px solid #606060;
	margin-left: 10px;
}

.form_h {
	display: inline-block;
	margin-right: 20px;
	text-align: left;
}

.privacy_box {
	overflow:auto;
	width: 1100px;
	height:200px;
    padding: 1em 1.5em;
    margin: 2em 0;
    border: solid 1px #000000;
	border-radius: 15px;
}
.privacy_box p {
	text-align: left;
    margin: 0; 
    padding: 0;
}

input#submit_button {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #000;
  transition: .4s;
font-size: 18px;
	border: 1px solid #000000;
	width: 150px;
	background-color: #ffffff;
}

input#submit_button:hover {
  background: #606060;
  color: white;
}

.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 1024px) {
.pc { display: none !important; }
.sp { display: block !important; }

body {
	font-size: 13px;
}

	
.contents {
	padding: 0px 0px;	/*上下、左右へのボックス内の余白*/
}

a.anchor{
    display: block;
    padding-top: 0px;
    margin-top: 0px;
}
	
h1 {
	font-size: 22px;
}
h2 {
	font-size: 20px;
	text-align: center;
}

h3 {
	font-size: 15px;
	margin-top: -10px;
	margin-bottom: 25px;
}
	
h4 {
	font-size: 17px;
}

.main-logo-text {
position: absolute;
top: 50% ;
left: 50%;
transform: translate(-50%,-50%);
font-size: 22px;
color: #ffffff;
text-shadow: 5px 5px 10px #000;
}
	
table.t-shop td {
	display: block;
}
table.t-shop {
	width: 100%;
}

.service-title {
	text-align: center;
	font-size: 15px;
}

.service-text {
	text-align: center;
	font-size: 16px;
	margin-bottom: 0px;
}
.service_title {
	margin: 10px 0px;
}
.service_text1 {
	font-size: 15px;
	text-align: left;
	width: 100%;
}

.service_text2 {
	font-size: 17px;
	text-align: left;
	margin: 10px 0px 10px 0px 
}

.service_text2-1 {
	font-size: 17px;
	text-align: left;
	margin: 10px 0px 20px 0px 
}

.service_text3 {
	font-size: 13px;
	text-align: left;
	margin: 20px 0px 0px 0px 
}

.price-obi1 {
	text-align: center;
	background-color: #F19DAE;
	font-size: 20px;
	color: #ffffff;
	letter-spacing: 2px;
	margin-bottom: 20px;
	width: 100%;
}

table.price-t1 {
	border: solid 1px #F19DAE;
	 border-collapse: collapse;
	font-size: 16px;
	width: 95%;
	margin: 0px;
	padding: 0px;
}

table.price-t1 th {
	border: solid 1px #F19DAE;
	text-align: center;
	background-color: #F8CFE1;
	padding: 5px;
	font-weight: 100;
}

table.price-t1 td {
	border: solid 1px #F19DAE;
	text-align: center;
	padding: 5px;
}

.price-obi2 {
	text-align: center;
	background-color: #47BEDA;
	font-size: 20px;
	color: #ffffff;
	letter-spacing: 2px;
	margin-bottom: 20px;
	width: 100%;
}

table.price-t2 {
	border: solid 1px #6FC9F3;
	 border-collapse: collapse;
	font-size: 16px;
	width: 95%;
	margin: 0px;
	padding: 0px;
}

table.price-t2 th {
	border: solid 1px #6FC9F3;
	text-align: center;
	background-color: #EAF6FD;
	padding: 5px;
	font-weight: 100;
}

table.price-t2 td {
	border: solid 1px #6FC9F3;
	text-align: center;
	padding: 5px;
}
	
.price-text {
	text-align: center;
	font-size: 18px;
	color: #C11920;
	font-weight: 700;
	margin: 20px auto;
	width: 95%;
}

table.t-footer {
	width: 95%;
}
	
table.t-footer td {
	display: block;
	padding: 10px;
}
.teltext a {
	font-size: 38px;
}
	
.ls_obi {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 20px;
	border: 1px solid;
}
	
	
.pc_obi {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 20px;
	border: 1px solid;
}
	
.oe_obi {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 20px;
	border: 1px solid;
}
	
.text_24r {
	font-size: 18px;
	text-align: center;
	color: #C11920;
	margin-top: 0px;
	margin-bottom: 0px;
}
.text_box{
	margin-top: 15px;
	margin-bottom: 50px;
}	
	
	
.oe_text {
	font-size: 15px;
	text-align: left;
	letter-spacing: 0px;
	margin-top: 20px;
}
	
/* ===========================
--- Contact
============================ */


.contact-text{
  text-align: left;
	font-size: 15px;
	margin-top: 70px;
}
table.formTable {
	width: 100%;
}

table.formTable th,.formTable td {
	padding: 10px 5px;
	display: block;
}	

table.formTable th {
	color: #000000;
	width: 100%;
	background-color: #eef0f3;
	border: none;
	text-align: left;
}	

table.formTable td {
	width: 100%;
}	
	
.form_h {
	text-align: left;
	display: inline-block;
	
}

.form_th {
	text-align: left;
	display: inline-block;
	width: 50px;
}	

.form_th2 {
	text-align: left;
	display: inline-block;
	width: 240px;
}	

.jtext {
	width: 150px;
	display: inline-block;
	margin-left: 0px;
}


.form_h {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
}

.form_h img {
	width: 35px;
}
	
.privacy_box {
	overflow:auto;
	width: 100%;
	height:100px;
    padding: 0.5em 1em;
    margin: 0em 0;
    font-weight: bold;
    border: solid 1px #000000;
}
.privacy_box p {
	text-align: left;
    margin: 0; 
    padding: 0;
}

table.formTable td.syubetsu {
	width: 100%;
	text-align: left;
}

.textbox {
  width: 100%;
	margin: 0px;
}

.textbox2 {
  width: 100%;
	margin: 0px;
}

.textbox3 {
  width: 100%;
	margin: 0px;
}

textarea {
  width: 100%;
	margin: 0px;
}
input#submit_button {
font-size: 15px;
	margin-bottom: 50px;
}

input#submit_button:hover {
  background: #606060;
  color: white;
}	
}

