/********************************************************************************************
	<<<　pcr.css　>>>
	※PCRのcss
/********************************************************************************************/


@charset "utf-8";

/* ---------------------------------------------------------------------------------------------
   カラム

--------------------------------------------------------------------------------------------- */

/* カラムの幅を決めてあげてください */
.w100 {	width: 100%; }
.w70 {	width: calc(70% - 1em); padding-right: 1em;}
.w50 {	width: calc(50% - 1em); }
.w30 {	width: calc(30% - 1em); }

@media (max-width: 750px) {

	.w70 {	padding-right: 0em;}

}

/* ---------------------------------------------------------------------------------------------
   pcrベース

--------------------------------------------------------------------------------------------- */
.wrapper {
	max-width: 1300px;
	margin: 0 auto;
}



/* ---------------------------------------------------------------------------------------------

　   flex

--------------------------------------------------------------------------------------------- */
.flex_box {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_box:nth-child(3n) {
	margin-right: 0;
}


@media (max-width: 750px) {

	.flex_box {
		flex-direction: column;
	}
	.flex_box > div {
		width: 100%;
	}
	.flex_box img {
		width: 100%;
		padding: 0.5em;
		height: 100% /*auto*/ ;
	}
}

.flex-box {
  display: flex;
}
.flex-box .align-left {
  flex: 1 0 auto;
}
.flex-box .align-right {
  flex: 0 1 auto;
}


/* ---------------------------------------------------------------------------------------------

　   汎用　画像

--------------------------------------------------------------------------------------------- */
.img_block {
	padding-top: 2em;
	padding-bottom: 4em;

}
.photos ul {
	display: flex;
	justify-content: space-between;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.photos li {
	width: calc(32% - .3em);
	padding: 1em;
	list-style: none;

}
.photos img {
	margin-bottom: 0.5em;
	display: block;
	margin: auto;
	border: 1px #ccc solid;
	border-radius: 0px;
}
.photos p {
	font-size: 0.9rem;
 	text-align: center;
}


@media screen and (max-width : 750px) {

	.photos li { width: calc(50% - 1em); 	padding: 0px;}
	.photos img { width: 100%; }


}

.imgcenter {
  	display: flex;
  	justify-content: center;
  	align-items: center;
	text-align: center;
}



/* ---------------------------------------------------------------------------------------------

　   汎用　テーブル

--------------------------------------------------------------------------------------------- */

.table01 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.table01 th, .table01 td {
  border: 2px solid #fff;
	padding: 1em;
	background-color: #FBF8F4;

}
.table01 th {
  background-color: var(--accent-color);
  color: var(--primary-inverse-color);
  font-weight: bold;
  text-align: center;
  width: 30%;
  min-width: 4em;
}



/* ---------------------------------------------------------------------------------------------

　   横並びボタン

--------------------------------------------------------------------------------------------- */

.wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
	margin-top: 2em;
	margin-bottom: 2em;
	justify-content:center;
}

.item {
	height: 200px;
  	width: calc((100% - 40px * 2) / 3);
  	background: linear-gradient(-20deg, #efdabf 0%, #fcf6ee 100%);
	border-radius: 10px;
	box-shadow: 3px 3px 10px rgba(135,111,82,0.3);
	font-size: 20pt;
	padding: 1em 10px 0px 10px;

}

.item:hover {
    color: var(--accent-color);
}

.item img {	width: 150px; }
.item a { /*text-decoration: none;*/ display: block; }

.item i { color: #cccccc; }

.item a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;

}

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

  .wrap { justify-content:center; }
  .item {
    width: 90%;

  }
}



/* ---------------------------------------------------------------------------------------------

　   各コンテンツページ

--------------------------------------------------------------------------------------------- */

#conttop {
	/*position: relative;*/ height: 150px;
	width: 100vw;
	color: var(--primary-color);
 	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	font-size: 20pt;
	text-align: center;
	letter-spacing: 1.5pt;
	font-weight: normal;
	padding: 2em 0 0 0;
	margin-top: 150px;
	margin-bottom: 2em;
	background-image: url(../image/pagettitle.jpg);
	background-repeat: no-repeat;

}

/*
#conttop h1 {
	color: #3173ba;
	font-size: 18pt;
	text-align: center;
	letter-spacing: 1.5pt;
	font-weight: normal;
	padding: 2em 0 0 0;

}
*/
@media (max-width: 750px) {

	#conttop {
/*		height: 200px;*/
		height: 100px;
		margin-top: 140px;
		margin-bottom: 1em;
/*		margin-top: 10px;*/
		font-size: 16pt;
		text-align: center;
/*		text-shadow: 0 0 10px #FFFFFF;*/
/*
		padding-left: 0;

		padding-right: 0;
*/
		padding-top: 35px;
		background-image: url(../image/pagettitle_sp.jpg);

	}

/*
	#conttop h1 {
		text-align: center;
		font-size: 120%;
		text-shadow: 0 0 10px #FFFFFF;
		padding-left: 0;
		padding-top: 1em;
		padding-right: 0;

	}
*/
}

.block {
	width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.block_bg {

	background: #F0FFF0;
	border-radius: 10px;
	padding: 2em;

}

@media (max-width: 750px) {
	.block {
		width: 100%;
	}

.block_bg {

	background: #F0FFF0;
	border-radius: 10px;
	padding: 1em;

}
}




.main {
 	width: 70%;
	padding: 2em;
	font-size: 105%;
}
.sub30 {
  	width: 30%; /*幅指定*/
	padding: 2em;

}

.sub45 {
  	width: 50%; /*幅指定*/
	padding: 2em;

}

@media screen and (max-width: 750px) {
  #contents {
    width: 100%;
    display: block;
  }
  .main {
    width: 100%;
	padding: 0em;
  }
  .sub30 {
    width: 100%;
  }

  .sub45 {
    width: 100%;
  }
}


/* ---------------------------------------------------------------------------------------------

   テキスト囲み

--------------------------------------------------------------------------------------------- */

.midashi {
	color: #FFF;
  	border-radius: 5px;/*角丸*/
    background-color: var(--primary-color);
	font-size: 90%;
	vertical-align: middle;
	padding: 5px 10px 5px 10px;
}

/* ---------------------------------------------------------------------------------------------
	医院案内
--------------------------------------------------------------------------------------------- */


#drname { font-size: x-large;
	font-family: HG正楷書体-PRO;
/*
	padding-left: 2em;
	padding-right: 0em;
*/
	display: block;
}

/* 略歴 */
.biography { display: flex;	}
.biography dl { width: 100%; }
.biography dt {
	background-color: #00a199;
	color: #FFFFFF;
	border-radius: 8px;
	padding: 0.5rem;
	margin-right: 0.5em;

}

/* ---------------------------------------------------------------------------------------------

	テーブル

--------------------------------------------------------------------------------------------- */
.tb-wrap{
  width:100%;
  overflow-x:scroll;
}

.tb01 {
  border-collapse: collapse;
  width: 100%;
	font-size: 90%;
}
.tb01 th,
.tb01 th {	width: 100px; border-bottom: solid 1px #ccc; 	padding: 10px;}

.tb01 td {
  border: solid 1px #ccc;
  text-align: left;
  box-sizing: border-box;
	padding: 10px;

}
.tb01 th {
  background: var(--primary-color);
  color: #fff;
   border-right: solid 1px #ccc;
}

@media(max-width:750px){
	.tb01 {  	width: 500px;	}
}

/* ---------------------------------------------------------------------------------------------

	リスト

--------------------------------------------------------------------------------------------- */

.list01 {
	list-style-position: outside;
	padding-inline-start: 0;

}

.list01 li {
	border-bottom: dashed #d2af8c thin;
	padding: 5px;
	margin-bottom: 5px;

}

.list01 li::marker {
    color: #88c021;
    font-size: 1.1em;
}

.list01 li ol,
.list01 li ol li { 	border-bottom: none; }


.list02 {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0em;
 }
.list02 li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

.list02 li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: var(--secondary-color);
  color: white;
  font-weight:nomal;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


.list03 {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0em;
 }

.list03 li {
    position: relative;
    padding-left: 25px;
  	line-height: 1.5em;

  }



.list03 li:after {
    content: "";
    position: absolute;
    top: .3em;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 2px;
  	background: var(--secondary-color);
  }

@media(max-width:750px) {
	.list03 li {
  		line-height: 1.5em;
		padding-left: 10px;
	}

	.list03 li:after {
		   left: -10px;
	 }
}



/* ---------------------------------------------------------------------------------------------

   ボタン

--------------------------------------------------------------------------------------------- */
.button {
	padding-left: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
	font-size: 90%;

}

.button a {
	background: #ECD1B5;
    border-radius: 10px;
    position: relative;
    justify-content: space-around;
 /*   align-items: center; */
    max-width: 250px;
    color: #333;
    line-height: 1.2;
    text-decoration: none;
    transition: 0.3s ease-in-out;
	padding: 10px 50px 10px 25px;

}
.button a:hover {
    background: #d6cfc9;
    color: #58350A;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}

.button-1 {
    display: flex;
    justify-content: center;
    align-items: center;

    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1em;
}

.button-1::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

@media(max-width:750px) {
	.button-1 {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    font-size: 90%;
	padding: 10px;
	margin: 0 auto 0 auto;

	}
}



/* ---------------------------------------------------------------------------------------------

   ボックス

--------------------------------------------------------------------------------------------- */
.box-1 {
  background-color: #fff;
  background-image: linear-gradient(#e5f4f0 1px, transparent 1px), linear-gradient(to right, #e5f4f0 1px, #fff 1px);
  background-size: 20px 20px;
	padding: 1em;
	margin: 1em 1em 1em 1em;

}


.box-2 {
    position: relative;
    border: solid 3px var(--accent-color);/*線*/
    border-radius: 8px;/*角の丸み*/
    color: #000000;/*文字色*/
	padding: 1em 0em 1em 0em;
	margin: 1em 1em 1em 1em;
   background-image: linear-gradient(323deg, #eafffa, #ffffff 100%);

}
.box-2 .box_title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    line-height: 1;
    background: #ffffff;/*タイトル文字背景色*/
    color: var(--accent-color);/*タイトル文字色*/
	padding: 0 0px 10px 10px;

}
.box-2 p {
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------------------------------------------------------

   虫眼鏡アイコン

--------------------------------------------------------------------------------------------- */

.magnifying_glass {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 0.8em;
    color: #000;
    font-size: 16px;

}
.magnifying_glass::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0.7em;
    height: 0.7em;
    box-sizing: border-box;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    content: "";
}
.magnifying_glass::after {
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: -1;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 1em;
    box-sizing: border-box;
    background-color: currentColor;
    content: "";
}

/* ---------------------------------------------------------------------------------------------

   アンカー

--------------------------------------------------------------------------------------------- */

@media(max-width:750px){
	/* スマホでページ内ジャンプをした際にヘッダー分下げてやるやつ */
	.anchor{						/* ヘッダやメニューの作りによっては変わる */
		display: block;
		padding-top: 60px;
		margin-top: -60px;
	}
}


/* ------------------------------------------------------

	地図

------------------------------------------------------- */
.map_canvas {
	width: 100%;
	height: 600px;
/*	padding: 5px;*/
	border: 1px #ccc solid;
}

@media(max-width:750px) {

	.map_canvas { height: 300px; }

}

