@charset "UTF-8";

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
body{
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

/*　ハンバーガーボタン　*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
	position: absolute;
	right: .5em;
	top: 1em;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}
#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}
/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}
.category {
  text-align: left;
  /* margin-top: 2em; */
}
.category-title {
  padding: 0.5em;
  /* margin-left: -2em; */
  list-style: none;
}
.category-title a{
  color: #2D0902;
	font-size: 18px;
  text-decoration: none;
}
/* リストメニュープルダウン  */
.category li {
   position: relative;
   /* float: left; */
}
.category li a {
   display: block;
   width: 340px;
   padding: 10px;
	 border-radius: 10px;
}
.category li a:hover {
   /* background: #dbdbdb; */
}
.category li:hover > ul {
   display: block;
}
.category ul {
   display: none;
   position: absolute;
}
.category li a {
    display: block;
    text-decoration: none;
}
.category-title2 {
	margin-left: 5.5em;
}
.category-title2 {
	font-size: 13px;
}
/*子階層以降共通*/
.category li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
		z-index: 999;
		width: 100%;
}
.category li li a {
    /* border-top: 1px solid #eee; */
		margin-top: .5em;
		margin-bottom: .6em;
		font-size: 16px;
		color: #000;
		background: #FFF;
}
.category li:hover > ul > li {
    height: 2em;
    overflow: visible;
}
.category li a:hover{
	/* color: #6C5A3A; */
	transition: color .4s;
}
/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}
#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}
#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}
	/* トグルSP設定 */
	@media (max-width: 1080px){
		#nav-open{
			display: block;
		}
	}
	@media (min-width: 1090px){
		#nav-open{
			display: none;
		}
	}
/* ヘッダーデザイン */
header{
	width: 100%;
	height: 4.2em;
}
.header-left{
	position: absolute;
	top:0; left:140px;
  z-index: 2;
}
.header-left a:hover {
	opacity: 0.7;
	transition: .4s;
}
.header-right {
	width: 400px;
}
.header_wrapper{
	position: absolute;
	top:6px; right:40px;
}
.header-right h2{
	font-size: 25px;
	color: #2D0902;
	font-weight: bold;
}
.header-right p{
	font-size: 14px;
	color: #2D0902;
}
.header_contact{
	float: left;
}
.header-right i{
	font-size: 34px;
	color: #2D0902;
}
.access{
	float: left;
	margin-left: 1em;
}
.access i{
	margin-left: .4em;
}
.mail i{
	margin-left: .1em;
}
.mail {
	margin-left: 20em;
}
.header-right  a:hover{
	color: #6C5A3A;
	opacity: 0.6;
	transition: .4s;
}
.acces_sp a{
	font-size: 16px;
	color: #FFF;
}
.acces_sp{
	text-align: center;
	color: #000;
	margin-top: 1em;
	padding-top: .5em;
	width: 20em;
	height: 2em;
	background: #2D0902;
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
}
.contact_sp{
	text-align: center;
	color: #2D0902;
}
.contact_sp h3{
	margin-top: .6em;
	font-size: 28px;
	font-weight: bold;
}
.contact_sp p{
	margin-top: .4em;
	font-size: 15px;
}
@media (max-width: 1080px){
	header{
		display: none;
	}
}
/* トップ画面デザイン */
.top_photo img {
  width: 100%;
	height: auto;
}
@media (max-width: 770px){
	.top_photo .pc{
		display: none;
	}
}
@media (min-width: 770px){
	.top_photo .sp{
		display: none;
	}
}
/* ナビデザイン */
.top_wrapper{
	width: 100%;
	background: #2D0902;
}
.menu {
    display: flex;
    height: 3em;
    margin: 0 auto;
    width: 1100px;
}
.menu > li {/*親階層のみ幅を25%にする*/
    width: 25%;
}
/*全てのリスト・リンク共通*/
.menu li {
    list-style: none;
    position: relative;
}
.menu li a {
    background: #2D0902;
    /* border-right: 1px solid #eee; */
    color: #fff;
		font-size: 18px;
    display: block;
    /* height: 2em; */
    line-height: 2.5em;
    text-align: center;
    text-decoration: none;
    width: 110%;
}
/*子階層以降共通*/
.menu li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}
.menu li li a {
    border-top: 1px solid #eee;
		margin-top: .5em;
		margin-bottom: .6em;
}
.menu li:hover > ul > li {
    height: 2em;
    overflow: visible;
}
.menu li a:hover{
	color: #6C5A3A;
	transition: color .4s;
}
.group li {
	width: 240px;
}
.group li a{
	font-size: 16px;
}
@media (max-width: 1080px){
	.menu{
		display: none;
	}
}
/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);
  }
}
body{
  animation-duration: 2s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
}
/* 背景カラーの設定 */
.wrapper{
	background: #F5F0DC;
	height: 128em;
}
.back-color {
	background: #FFF;
	width: 1160px;
	height: 128em;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1080px){
	.wrapper{
		background: none;
		height: auto;
	}
	.back-color{
		background: none;
		width: auto;
		height: auto;
	}
}
/* 共通項目 */
.title{
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: .8em;
	padding-top: 2em;
}
@media (max-width: 768px){
	.title{
		font-size: 28px;
		padding-top: 1em;
		margin-bottom: 0;
	}
}
.line{
	margin-bottom: 2em;
	text-align: center;
}
@media (max-width: 768px){
	.line{
		font-size: 28px;
		margin-bottom: .6em;
	}
}
.content{
	text-align: center;
	margin-top: 3em;
	margin-bottom: 1em;
}
.content_text{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.content h1{
	font-size: 32px;
}
.content_text h4{
	font-size: 20px;
}
.content_text p{
	font-size: 18px;
	margin:.5em 0;
	line-height: 1.5em;
}
.content_text span{
	color: #FF0000;
}
.inner-text{
	margin-bottom: 3em;
	max-width: 800px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1.5em;
}
/*  訪問看護について設定 */
.main-text{
	width: 100%;
	background-color: #472821;
	border-radius: 6px;
	height: 2.6em;
}
.main-text h3{
	padding-top: .3em;
	font-size: 22px;
	color: #FFF;
	letter-spacing: .2em;
}
.content_text{
	max-width: 760px;
	margin-bottom: 2em;
}
.content_text h4{
	margin-top: .6em;
}
.content_text th{
	width: 150px;
	background: #F8F4E6;
}
.doyou-nomi{
	text-align: right;
}
.hatsu-houmon h1 br{
	display: none;
}
@media (max-width: 768px){
	.inner-text{
		width: auto;
	}
	.main-text{
		border-radius: 0px;
	}
	.main-text h3{
		font-size: 20px;
	}
	.content_text{
		width: auto;
		margin: auto;
		padding-left: 1em;
		padding-right: 1em;
	}
	.content_text p{
		font-size: 30px;
	}
	.content_text th{
		width: 100px;
	}
	.content_text table{
		margin-bottom: .5em;
	}
	.hatsu-houmon h1 br{
		display: block;
	}
}
/* テーブルデザイン　*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 760px;
  table-layout: fixed;
	margin-top: 1em;

}
table tr {
  background-color: #fff;
  border: 1px solid #bbb;
}
table th {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
	font-size: 16px;
}
table td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
	font-size: 16px;
}
table thead tr{
  background-color: #eee;
}
.enkaku-tittle th{
	width:150px;
}
.kamoku{
	font-size: 14px;
}
.enkaku-tittle th{
	background: #F8F4E6;

}
@media (max-width: 768px){
	table{
		width: auto;
	}
	table th {
	  padding: .5em 10px .5em .5em;
	  border-right: 1px solid #bbb;
		font-size: 14px;
	}
	table td {
	  padding: .5em 10px .5em .5em;
	  border-right: 1px solid #bbb;
		font-size: 14px;
	}
	.inner-text p{
		font-size: 16px;
	}
	.enkaku-tittle th{
		width:100px;
	}
}
/* お問い合わせボックス設定 */
.call{
	text-align: center;
	background-color: #F5F0DC;
	padding-top: 2em;
	padding-bottom: 3em;
	border-radius: 10px;
	margin-bottom: 1em;
	width: 760px;
	margin-top: 1em;
	margin-left: auto;
	margin-right: auto;
}
.call h3{
	font-size: 23px;
	color: #E38094;
}
.call h2{
	font-size: 42px;
	color: #E38094;
	margin-top: .1em;
}
.call p{
	font-size: 20px;
	color: #E38094;
	margin-top: .3em;
}
@media (max-width: 768px){
	.call{
		width: 100%;
		margin-bottom: 1em;
		border-radius: 0;
	}
	.call h3{
		font-size: 18px;
	}
	.call h2{
		font-size: 32px;
		color: #E38094;
		margin-top: .1em;
	}
	.call p{
		font-size: 15px;
	}
}
/* 初診診察の流れ設定 */
.content_nagare{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.content_nagare span{
	color: #BCA065;
}
.content_nagare{
	max-width: 760px;
}
.content_nagare{
	padding-top: 1.5em;
}
.content_nagare h4{
	font-size: 20px;
}
.content_nagare p{
	font-size: 17px;
	margin:.5em 0;
	line-height: 1.5em;
}
@media (max-width: 768px){
	.content_nagare{
		width: auto;
		margin: auto;
		padding-left: 1em;
		padding-right: 1em;
	}
}
/* フッターメニュー設定 */
#footer04{
	border-top: 1px solid #000;
}
a {
	text-decoration: none;
}
#footer04 .inner-block{
	width: 1380px;
	margin-left: auto;
	margin-right: auto;
}

#footer04 .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
}

#footer04 .cont-item {
  display: block;
  width: calc(100% / 5);
}

#footer04 .nav a {
  display: block;
  color: #000;
}

#footer04 .nav .ttl {
  display: block;
  /* margin: 30px 0 6px; */
  font-size: 15px;
  font-weight: bold;
  color: #2D0902;
}

#footer04 .nav .ttl:first-child {
  margin-top: 0;
}

#footer04 .nav .ttl + .ttl {
  margin-top: 10px;
}

#footer04 .nav ul {
  display: block;
  font-size: 14px;
  line-height: 2;
	text-decoration: none;
}

#footer04 .nav li {
  display: block;
  font-size: 14px;
  line-height: 2;
}

#footer04 .nav li:first-child {
  margin-top: 0;
}

#footer04 .nav li ul {
  margin: 0 0 0 2em;
}
#footer04 .nav li li {
  position: relative;
}

#footer04 .nav li li:before {
  position: absolute;
  top: 50%;
  left: -10px;
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 1380px){
	#footer04 .inner-block{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		height: auto;
	}
}
@media screen and (max-width: 1080px) {
	#footer04 .inner-block{
		width: 96%;
		margin-left: auto;
		margin-right: auto;
		height: auto;
	}
}
@media screen and (max-width: 680px) {
  #footer04 .cont {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
		padding: 30px 0;
  }
	#footer04 .nav .ttl {
	  display: block;
	  /* margin: 30px 0 6px; */
	  font-size: 14px;
	}
  #footer04 .cont-item {
    display: block;
    width: 48%;
  }
  #footer04 .cont-item:nth-child(n+3) {
    margin-top: 30px;
  }
  #footer04 .nav ul {
    margin: 0;
    font-size: 12px;
  }
  #footer04 .nav ul + .ttl {
    margin-top: 12px;
  }
  #footer04 .nav li {
    font-size: 12px;
  }
}
/*  フッター 2設定 */
.footer_inner_2{
	background-color: #2D0902;
	height: 30em;
	text-align: center;
}
.footer_inner_2 p{
	color: #FFFFFF;
}
.footer_text{
	padding-top: 5em;
}
.footer_text h3{
	font-size: 36px;
	color: #FFFFFF;
}
.footer_text p{
	font-size: 18px;
	color: #FFFFFF;
	margin-top: 1em;
}

@media (max-width: 768px){
	.footer_inner_2{
		height: 26em;
	}
	.footer_logo{
		width: 60%;
	}
	.footer_text h3{
		font-size: 26px;
	}
	.footer_text p{
		font-size: 14px;
	}
}
/* コピーライト設定 */
.copyright{
	font-size: 15px;
	padding-top: 5em;
	padding-bottom: 1.2em;
	color: #FFF;
	text-align: center;
}
@media (max-width: 768px){
	.copyright{
		font-size: 12px;
	}
}
