@import url(font-awesome.min.css);

/* Reset
------------------------------------------------------------*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

address,
em {
	font-style: normal;
}

strong,
th {
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th {
	text-align: left;
}

hr,
legend {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

img,
fieldset {
	border: 0;
}

img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

li {
	list-style-type: none;
}

input[type="submit"],
button,
label,
select {
	cursor: pointer;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

/* link
------------------------------------------------------------*/

a {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color: #333;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
}

button:hover {
	opacity: 0.8;
}

/* Fonts
------------------------------------------------------------*/

html {
	font-size: 62.5%;
}

/* 10px base */

body {
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-family: -apple-system, BlinkMacSystemFont, "游ゴシック", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.7;
	color: #1a1a1a;
	letter-spacing: 0.2em;
}

body > div,
input,
button,
textarea,
select {
	font-size: 16px;
	font-size: 1.6rem;
}

input,
button,
textarea,
select {
	line-height: 1.7;
	color: #1a1a1a;
	font-family: -apple-system, BlinkMacSystemFont, "游ゴシック", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

/* form
------------------------------------------------------------*/

select {
	padding: 10px;
	border-radius: 5px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
select {
	padding: 10px;
	border-radius: 5px;
	border: solid 1px #aaa;
}

textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
select.error {
	background-color: #fff2f2;
	border: solid 2px #E33E41;
}

/* radio
-------------*/

input[type="radio"] {
	display: none;
}

input[type="radio"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 24px;
	cursor: pointer;
	width: 100%;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after {
	content: '';
	top: 50%;
	position: absolute;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}

input[type="radio"] + label::before {
	width: 16px;
	height: 16px;
	margin-top: -9px;
	left: 0;
	background: #EEE;
	border: 1px solid #ccc;
}

input[type="radio"].error + label::before {
	border: 1px solid #E33E41;
	background-color: #fff2f2;
}

input[type="radio"] + label:hover::before {
	background: #FEFEFE;
}

input[type="radio"] + label::after {
	opacity: 0;
	left: 3px;
	width: 10px;
	height: 10px;
	margin-top: -6px;
	background: #3498DB;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498DB;
}

input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* checkbox
-------------*/

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}

input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	position: absolute;
	content: '';
}

input[type="checkbox"] + label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="checkbox"] + label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498DB;
	border-bottom: 2px solid #3498DB;
	-webkit-transform: rotate(-45deg) scale(0.5);
	-ms-transform: rotate(-45deg) scale(0.5);
	transform: rotate(-45deg) scale(0.5);
}

input[type="checkbox"] + label:hover::before {
	background: #fff;
}

input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498DB;
}

input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	-ms-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/*
#overview
base
*/

body {
	background-color: #eeeee5;
}

#wrapper {
	padding-left: 100px;
}

#header {
	position: relative;
	padding: 20px 0;
	z-index: 1100;
}

#header .pcHeader .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1200px;
}

#header .pcHeader .siteTitle {
	width: 30%;
	max-width: 350px;
}

#header .pcHeader .siteTitle .tel {
	display: inline-block;
	margin-top: 10px;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.3;
	letter-spacing: 0;
	font-weight: bold;
	color: #666;
}

#header .pcHeader .siteTitle .tel .fa {
	-webkit-transform: rotate(265deg);
	-ms-transform: rotate(265deg);
	transform: rotate(265deg);
	margin-right: 4px;
	font-size: 22px;
}

#gNav {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#gNav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#gNav li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#gNav a {
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #424242;
	line-height: 1.4;
}

#gNav a:before {
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	width: 36px;
	height: 36px;
	margin: 0 auto 15px;
}

#gNav .about a:before {
	background-image: url(../img/common/icon_home.svg);
	background-size: 35px 31px;
}

#gNav .info a:before {
	background-image: url(../img/common/icon_clock.svg);
	background-size: 36px;
}

#gNav .staff a:before {
	background-image: url(../img/common/icon_doctor.svg);
	background-size: 31px 33px;
}

#gNav .iryou a:before {
	background-image: url(../img/common/icon_people.svg);
	background-size: 26px 32px;
}

#header .pcHeader .container > .info {
	width: 346px;
	padding: 0 100px 0 30px;
}

#header .pcHeader .container > .info .nav {
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
}

#header .pcHeader .container > .info .nav li {
	margin-top: 5px;
}

#header .pcHeader .container > .info .nav a {
	display: block;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	padding-left: 30px;
	text-decoration: none;
}

#header .pcHeader .container > .info .nav .faq a {
	background-image: url(../img/common/icon_help02.svg);
}

#header .pcHeader .container > .info .nav .recruit a {
	background-image: url(../img/common/icon_search.svg);
}

#header .pcHeader .container > .info .nav .contact a {
	background-image: url(../img/common/icon_mail02.svg);
}

#header .pcHeader .search {
	margin-bottom: 10px;
}

#header .pcHeader .search .gsc-control-cse {
	background-color: transparent;
	padding: 0;
}

#header .pcHeader .search .gsc-input {
	width: 100%;
	background-color: #fff;
	border: solid 1px #c0c0c0 !important;
	outline: none !important;
	box-shadow: none !important;
	height: 36px !important;
}

#header .pcHeader .search input[type="image"] {
	background-color: transparent;
	border: none;
}

#header .pcHeader .search .gsc-control-cse {
	border: none;
	position: relative;
}

#header .pcHeader .search .gsc-input-box {
	border: none;
	padding: 0;
	height: auto;
	box-shadow: none !important;
}

#header .pcHeader .search table,
#header .pcHeader .search form {
	margin: 0 !important;
}

#header .pcHeader .search td {
	padding: 0;
	vertical-align: top;
	line-height: 26px !important;
}

#header .pcHeader .search input[type=text] {
	width: 100%;
	padding: 6px 35px 6px 15px !important;
	border: none !important;
	line-height: 36px !important;
}

#header .pcHeader .search .gsc-search-button {
	vertical-align: middle;
	width: auto;
	height: auto;
	cursor: pointer;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding: 13px 16px 12px;
}

#header .pcHeader .hNav {
	position: fixed;
	top: 0;
	right: 10px;
	background-image: url(../img/common/bg_hnav.png);
	background-position: center top;
	background-repeat: no-repeat;
	padding: 50px 0 0;
}

#header .pcHeader .hNav li:not(:last-child) {
	margin-bottom: 6px;
}

#header .pcHeader .hNav a {
	display: block;
	-webkit-transition: none;
	transition: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: -9999px;
}

#header .pcHeader .hNav a:hover {
	opacity: 1;
}

#header .pcHeader .hNav .navAccess a {
	background-image: url(../img/common/btn_access.png);
	width: 102px;
	height: 101px;
}

#header .pcHeader .hNav .navAccess a:hover {
	background-position: 0 -101px;
}

#header .pcHeader .hNav .navDockkenshin a {
	background-image: url(../img/common/btn_dockkenshin.png);
	width: 112px;
	height: 109px;
}

#header .pcHeader .hNav .navDockkenshin a:hover {
	background-position: 0-109px;
}

#header .pcHeader .hNav .navSinryo a {
	background-image: url(../img/common/btn_sinryo.png);
	width: 97px;
	height: 100px;
}

#header .pcHeader .hNav .navSinryo a:hover {
	background-position: 0-100px;
}

#header .pcHeader .hNav .navOption a {
	background-image: url(../img/common/btn_option.png);
	width: 112px;
	height: 100px;
}

#header .pcHeader .hNav .navOption a:hover {
	background-position: 0-109px;
}

#header .pcHeader .hNav .navKenshin a {
	background-image: url(../img/common/btn_kenshin.png);
	width: 112px;
	height: 100px;
}

#header .pcHeader .hNav .navKenshin a:hover {
	background-position: 0-109px;
}

#header .spHeader {
	display: none;
	height: 60px;
	position: relative;
}

#header .spHeader .siteTitle {
	width: 150px;
	padding: 12px 0 0 15px;
}

#header .spHeader .headerInner {
	position: relative;
	z-index: 100;
	height: 60px;
	background-color: #eeeee5;
}

#header .btnAccess {
	position: absolute;
	top: 0;
	right: 60px;
	width: 60px;
	height: 60px;
	padding: calc(33px + 0.4em) 0 9px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	line-height: 18px;
	font-size: 8px;
	font-size: 0.8rem;
}

#header .btnAccess .txt:before {
	content: "";
	display: block;
	background-image: url(../img/common/icon_map.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 15px 20px;
	width: 15px;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: auto;
}

#header .btnMenu {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 33px 0 9px;
	display: block;
	-webkit-transition: none;
	transition: none;
	text-decoration: none;
	text-align: center;
	line-height: 18px;
}

#header .btnMenu:after {
	content: "";
	background-image: url(../img/common/btn_menu.png);
	background-size: 22px auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 22px;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: auto;
}

#header .btnMenu .txt {
	font-size: 8px;
	font-size: 0.8rem;
	text-align: center;
}

#header .btnMenu.select {
	background-color: #00ac7c;
	padding-top: 0;
}

#header .btnMenu.select .txt {
	opacity: 0;
}

#header .btnMenu.select:after {
	background-position: 0 -20px;
	top: 0;
	bottom: 0;
}

#gNavSp {
	width: 100%;
	position: absolute;
	top: 60px;
	right: -100vw;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#gNavSp.select {
	right: 0;
}

#gNavSp .overlay {
	display: none;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
}

#gNavSp .navWrapper {
	background-color: #fff;
	width: 80%;
	position: relative;
	margin-left: 20%;
	padding: 15px 0;
}

#gNavSp .nav01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 12px;
	margin: 10 20px;
	
}

#gNavSp .nav01 li {
	width: 48%;
	
}

#gNavSp .nav01 a {
	display: block;
	border-radius: 6px;
	background-color: #ccaf45;
	padding: 15px 6px;
	margin: 10px;
	position: relative;
	color: #fff;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0;
	font-size: 10px;
	font-size: 1rem;
}

#gNavSp .nav01 a:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	display: inline-block;
	margin-left: 10px;
	
}

#gNavSp .nav01 .type02 a {
	background-color: #295292;
}

#gNavSp .nav02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 25px;
	margin: 0 auto 20px;
}

#gNavSp .nav02 li {
	width: 49%;
	margin-bottom: 1%;
}

#gNavSp .nav02 a {
	display: block;
	background-color: #fff;
	border-radius: 6px;
	border: solid 2px #dbd6d6;
	padding: 15px 5px 10px;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	font-size: 1.3rem;
	letter-spacing: 0;
	font-weight: bold;
	min-height: 150px;
}

#gNavSp .nav02 .icon {
	max-width: 50%;
	margin: 0 auto 10px;
}

#gNavSp .nav02 .txt {
	line-height: 1.3;
}

#gNavSp .nav03 {
	margin-bottom: 15px;
}

#gNavSp .nav03 li {
	border-top: dashed 1px #808080;
}

#gNavSp .nav03 a {
	display: block;
	padding: 10px 30px 10px 80px;
	position: relative;
	text-decoration: none;
	font-size: 15px;
	font-size: 1.5rem;
}

#gNavSp .nav03 a:before {
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 0;
	left: 30px;
	bottom: 0;
	width: 36px;
	height: 36px;
	margin: auto;
}

#gNavSp .nav03 .about a:before {
	background-image: url(../img/common/icon_home.svg);
	background-size: 23px 21px;
}

#gNavSp .nav03 .info a:before {
	background-image: url(../img/common/icon_clock.svg);
	background-size: 18px;
}

#gNavSp .nav03 .staff a:before {
	background-image: url(../img/common/icon_doctor.svg);
	background-size: 20px 21px;
}

#gNavSp .nav03 .iryou a:before {
	background-image: url(../img/common/icon_people.svg);
	background-size: 17px 21px;
}

#gNavSp .nav03 .access a:before {
	background-image: url(../img/common/icon_map.svg);
	background-size: 15px 20px;
}

#gNavSp .nav03 .recruit a:before {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	height: 1em;
	text-align: center;
	font-size: 18px;
}

#gNavSp .search {
	padding: 0 30px;
	margin-bottom: 20px;
}

#gNavSp .search .gsc-control-cse {
	background-color: transparent;
	padding: 0;
}

#gNavSp .search .gsc-input {
	width: 100%;
	background-color: #fff;
	border: solid 1px #c0c0c0 !important;
	outline: none !important;
	box-shadow: none !important;
	height: 36px !important;
}

#gNavSp .search .gsc-search-button {
	border: none;
}

#gNavSp .search .gsc-control-cse {
	border: none;
	position: relative;
}

#gNavSp .search .gsc-input-box {
	border: none;
	padding: 0;
	height: auto;
	box-shadow: none !important;
}

#gNavSp .search table,
#gNavSp .search form {
	margin: 0 !important;
}

#gNavSp .search td {
	padding: 0;
	vertical-align: top;
	line-height: 26px !important;
}

#gNavSp .search input[type=text] {
	width: 100%;
	padding: 6px 35px 6px 15px !important;
	border: none !important;
	line-height: 36px !important;
}

#gNavSp .search .gsc-search-button {
	vertical-align: middle;
	width: auto;
	height: auto;
	cursor: pointer;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding: 13px 16px 12px;
}

#gNavSp .nav04 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 15px;
	margin: 0 0 20px;
}

#gNavSp .nav04 li {
	width: 32.3%;
}

#gNavSp .nav04 a {
	display: block;
	text-decoration: none;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.3;
	font-weight: bold;
}

#gNavSp .nav04 .image {
	max-width: 50px;
	margin: 0 auto 10px;
}

#gNavSp .group dt {
	border-bottom: dashed 1px #808080;
	padding: 0 15px 5px;
	margin: 0 0 8px;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}

#gNavSp .group ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 15px;
	text-align: center;
}

#gNavSp .group ul li {
	width: 49%;
}

#side {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.2) 0px -2px 30px;
	z-index: 1100;
}

#side.winMin {
	position: absolute;
}

#side.winMin:before {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.2) 0px -2px 30px;
}

#sideOverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.2;
	z-index: 1100;
	overflow: auto;
	display: none;
}

#side > ul {
	position: relative;
	background-color: #fff;
	z-index: 100;
}

#side > ul > li {
	border-bottom: solid 1px #e0e0e0;
	position: relative;
}

#side > ul > li:not(:first-child) > a {
	box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 30px -15px inset;
}

#side > ul > li > a {
	display: block;
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.3;
}

#side > ul > li.mmBtn:hover .mMenu {
	visibility: visible;
	opacity: 1;
}

#side .icon {
	padding: 0 30px;
}

#side .mMenu {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 100px;
	padding-left: 30px;
	opacity: 0;
}

#side .mMenu .inner {
	background-color: #fff;
	border-radius: 10px;
	min-width: 270px;
	padding: 26px 20px;
	position: relative;
}

#side .mMenu .inner:before {
	content: "";
	position: absolute;
	top: 20px;
	left: -34px;
	height: 0;
	width: 0px;
	margin: auto;
	border: 16px solid transparent;
	border-right: 18px solid #fff;
}

#side .mMenu .inner li:not(:last-child) {
	margin-bottom: 20px;
}

#side .mMenu .inner a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	text-decoration: none;
	line-height: 1.5;
	color: #736357;
}

#side .mMenu .inner a:hover {
	text-decoration: underline;
}

#side .mMenu .inner a:after {
	content: "";
	background-image: url(../img/common/arrow01.svg);
	background-size: 13px;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 0.3em;
	left: 0;
}

#contents .section {
	margin-bottom: 80px;
}

/*
#styleguide
container

```
<div class="container">
左右にpadding15pxつきます
</div>
<div class="container container_middle">
少しせまい<br>
1070px;
</div>
<div class="container container_small">
せまい<br>
900px;
</div>
```
*/

.container {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

.container.container_middle {
	max-width: 1070px;
}

.container.container_small {
	max-width: 900px;
}

.topicpath {
	background-color: #fff;
	padding: 10px 0;
	font-size: 14px;
	font-size: 1.4rem;
}

.topicpath ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.topicpath li {
	float: left;
	position: relative;
	padding-left: 18px;
}

.topicpath li:before {
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	height: 1em;
	margin: auto;
	font-family: FontAwesome;
	line-height: 1;
}

.IE .topicpath li:before {
	top: -5px;
}

.topicpath a {
	display: block;
	color: #333;
}

.topicpath a:hover {
	opacity: 0.6;
}

.topicpath .home {
	padding-left: 0;
}

.topicpath .home:before {
	display: none;
}

#footer .sitemap {
	background-color: #546a9f;
	padding: 0 0 20px;
}

#footer .sitemap .title {
	position: relative;
	padding: 20px 0 15px;
	border-bottom: dotted 1px rgba(255, 255, 255, 0.5);
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
}

#footer .sitemap .btn {
	position: relative;
	display: none;
	padding: 20px 0 35px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
}

#footer .sitemap .btn:before {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	width: 1em;
	font-size: 16px;
}

#footer .sitemap .btn.active:before {
	content: "";
}

#footer .sitemap .menu {
	padding: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#footer .sitemap .menu .box {
	width: 24%;
	padding: 0 20px 0 0;
}

#footer .sitemap .menu .box li:not(:last-child) {
	margin-bottom: 10px;
}

#footer .sitemap .menu .box a {
	display: block;
	position: relative;
	padding: 0 0 0 18px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
}

#footer .sitemap .menu .box a:hover {
	opacity: 0.6;
}

#footer .sitemap .menu .box a:before {
	content: "";
	position: absolute;
	top: 0em;
	left: 0;
	font-family: FontAwesome;
	line-height: 1;
	font-size: 24px;
	color: #c7b77d;
}

#footer .info {
	padding: 46px 0;
}

#footer .info .top {
	display: table;
	width: 100%;
	table-layout: fixed;
}

#footer .info .top .detail,
#footer .info .top .map {
	display: table-cell;
	vertical-align: top;
}

#footer .info .top .detail {
	padding: 0 56px 0 0;
	position: relative;
}

#footer .info .top .detail .deco {
	position: absolute;
	top: 40px;
	right: 75px;
}

#footer .info .top .logo {
	margin: 0 0 15px;
}

#footer .info .top address {
	border-bottom: dotted 1px #62b79f;
	padding: 0 0 12px;
	margin: 0 0 20px;
	font-size: 14px;
	font-size: 1.4rem;
}

#footer .info .top .department {
	margin-bottom: 25px;
}

#footer .info .top .department:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

#footer .info .top .department li {
	float: left;
	background-image: url(../img/common/icon_flower.png);
	background-position: left 0.2em;
	background-size: 17px auto;
	background-repeat: no-repeat;
	padding: 0 0 0 24px;
	margin: 0 15px 5px 0;
	color: #665352;
}

#footer .info .top .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#footer .info .top .box .tel {
	margin: 0 0 18px;
}

#footer .info .top .box .tel .num {
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: bold;
	color: #808080;
	line-height: 1.3;
	letter-spacing: 0;
}

#footer .info .top .box .tel .fa {
	-webkit-transform: rotate(265deg);
	-ms-transform: rotate(265deg);
	transform: rotate(265deg);
	margin-right: 4px;
	font-size: 32px;
}

#footer .info .top .box .tel a {
	text-decoration: none;
	color: #808080;
}

#footer .info .top .box .tel .time {
	font-size: 15px;
	font-size: 1.5rem;
	color: #808080;
}

#footer .info .top .box .sns {
	width: 200px;
}

#footer .info .top .box .sns:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

#footer .info .top .box .sns li {
	width: 40px;
	float: left;
}

#footer .info .top .box .sns li:not(:last-child) {
	margin-right: 10px;
}

#footer .info .top .btnList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#footer .info .top .btnList li {
	width: 48%;
}

#footer .info .top .btnList a {
	display: block;
	padding: 15px 10px;
	margin: 10px;
	background-color: #fff;
	border-radius: 2px;
	border: solid 1px #534741;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 15px;
	font-size: 1.5rem;
	color: #534741;
}

#footer .info .top .btnList a:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	margin-left: 10px;
	display: inline-block;
	font-weight: normal;
}

#footer .info .top .map {
	width: 48%;
	max-width: 544px;
	text-align: center;
}

#footer .info .top .map .btn {
	margin: 10px 0 0;
	text-align: right;
}

#footer .info .top .map .btn a {
	display: inline-block;
	background-color: #fff;
	border: solid 1px #ff9092;
	padding: 8px 30px;
	border-radius: 2px;
	text-decoration: none;
	font-size: 15px;
	font-size: 1.5rem;
	color: #ff9092;
	font-weight: bold;
}

#footer .info .top .map .btn a:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	margin-left: 10px;
	display: inline-block;
	font-weight: normal;
}

#footer .info .bottom {
	display: table;
	width: 100%;
	table-layout: fixed;
}

#footer .info .bottom .group,
#footer .info .bottom .illust {
	display: table-cell;
	vertical-align: top;
}

#footer .info .bottom .group {
	padding-right: 56px;
}

#footer .info .bottom .group dt {
	border-bottom: dotted 1px #62b79f;
	padding: 0 0 5px;
	margin: 0 0 15px;
	color: #808080;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}

#footer .info .bottom .group ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 540px;
	margin: 0 auto;
	text-align: center;
}

#footer .info .bottom .group ul li {
	width: 48.5%;
	text-align: center;
}

#footer .info .bottom .illust {
	width: 48%;
	max-width: 544px;
	padding: 20px 0 0;
	vertical-align: bottom;
	text-align: right;
}

#footer .foot {
	background-color: #fff;
	padding: 22px 0;
	font-size: 14px;
	font-size: 1.4rem;
	color: #665352;
	text-align: center;
}

#footer .pageTop {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 30px;
	width: 62px;
}

#footerFixedNav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 66px;
	z-index: 100;
}

#footerFixedNav .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: center;
}

#footerFixedNav a {
	width: 33.3%;
	padding: 40px 0 5px;
	background-color: #295292;
	border-left: solid 1px #fff;
	position: relative;
	color: #fff;
	text-decoration: none;
	font-size: 10px;
	font-size: 1rem;
	font-weight: bold;
	line-height: 26px;
}

#footerFixedNav a:first-child {
	border-left-color: #295292;
}

#footerFixedNav a.tel .fa {
	-webkit-transform: rotate(265deg);
	-ms-transform: rotate(265deg);
	transform: rotate(265deg);
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 32px;
}

#footerFixedNav a.sinryo {
	background-color: #ccaf45;
}

#footerFixedNav a.sinryo:before {
	content: "";
	background-image: url(../img/common/icon_calendar.svg);
	background-size: 28px 24px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
}

#footerFixedNav a.dockkenshin:before {
	content: "";
	background-image: url(../img/common/icon_note.svg);
	background-size: 20px 26px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
}

/* CSS Document */

.container {
	max-width: 1170px;
}

.modSpOnly {
	display: none;
}

/* CSS Document */

#cboxOverlay,
#cboxBottomCenter,
#cboxBottomLeft,
#cboxBottomRight,
#cboxTopCenter,
#cboxTopLeft,
#cboxTopRight,
#cboxMiddleLeft,
#cboxMiddleRight {
	background-image: none !important;
}

#cboxOverlay {
	background-color: #000 !important;
}

#cboxLoadedContent {
	margin-bottom: 0 !important;
}

#cboxContent,
#colorbox,
#cboxWrapper {
	overflow: visible !important;
}

#cboxClose {
	top: 15px;
	right: 15px !important;
	bottom: auto !important;
	width: 40px !important;
	height: 40px !important;
	background-image: url(../img/common/icon_close.svg) !important;
	background-position: center !important;
	background-size: 40px !important;
}

#cboxClose:hover {
	opacity: 0.8;
}

#cboxPrevious,
#cboxNext {
	background-position: 0 0 !important;
	background-size: 50px 50px !important;
	width: 50px !important;
	height: 50px !important;
	top: 0;
	margin: auto !important;
}

#cboxPrevious {
	background-image: url(../img/common/arrow01_left_color02.svg) !important;
	left: 10px !important;
}

#cboxNext {
	background-image: url(../img/common/arrow01_color02.svg) !important;
	right: 10px;
	left: auto !important;
}

#cboxCurrent {
	display: none !important;
}

/*
#overview
modTitle
*/

/*
#styleguide
modPageTitle01

各背景画像はclassで分けています。scssの$bg部分を参照
```
<header class="modPageTitle01 modPageTitle01_staff">
	<div class="inner">
		<h1 class="title"><span class="main">医師紹介</span><span class="en">doctor profile </span></h1>
	</div>
</header>
背景が入らないパターン
<header class="modPageTitle01 modPageTitle01_type02">
	<div class="inner">
		<h1 class="title"><span class="main">医師紹介</span><span class="en">doctor profile </span></h1>
	</div>
</header>
もやもやの色が違うパターン
<header class="modPageTitle01 modPageTitle01_staff modPageTitle01_color02">
	<div class="inner">
		<h1 class="title"><span class="main">医師紹介</span><span class="en">doctor profile </span></h1>
	</div>
</header>
<header class="modPageTitle01 modPageTitle01_staff modPageTitle01_color03">
	<div class="inner">
		<h1 class="title"><span class="main">医師紹介</span><span class="en">doctor profile </span></h1>
	</div>
</header>
<header class="modPageTitle01 modPageTitle01_staff modPageTitle01_color04">
	<div class="inner">
		<h1 class="title"><span class="main">医師紹介</span><span class="en">doctor profile </span></h1>
	</div>
</header>
```
*/

.modPageTitle01 {
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 1230px;
	border-radius: 12px;
	margin: 0 auto 14px;
	text-align: center;
}

.modPageTitle01 .inner {
	background-image: url(../img/common/bg_title.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 20px;
	border-radius: 10px;
}

.modPageTitle01_type02 .inner {
	background-image: url(../img/common/bg_title02.png);
}

.modPageTitle01_color02 .inner {
	background-image: url(../img/common/bg_title02.png);
}

.modPageTitle01_color03 .inner {
	background-image: url(../img/common/bg_title03.png);
}

.modPageTitle01_color04 .inner {
	background-image: url(../img/common/bg_title04.png);
}

.modPageTitle01 .title {
	background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 95%);
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 95%);
	max-width: 900px;
	margin: 0 auto;
	padding: 10px;
	line-height: 1.3;
	color: #534741;
}

.modPageTitle01 .main,
.modPageTitle01 .en {
	display: block;
}

.modPageTitle01 .main {
	font-size: 40px;
	font-size: 4rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	letter-spacing: 0.3em;
}

.modPageTitle01 .en {
	font-size: 21px;
	font-size: 2.1rem;
	font-family: "Niconne", cursive;
}

.modPageTitle01_staff {
	background-image: url(../img/staff/bg_title.jpg);
}

.modPageTitle01_shinryou {
	background-image: url(../img/shinryou/bg_title.jpg);
}

.modPageTitle01_fujinka {
	background-image: url(../img/fujinka/bg_title.jpg);
}

.modPageTitle01_nyusen {
	background-image: url(../img/nyusen/bg_title.jpg);
}

.modPageTitle01_hinyouki {
	background-image: url(../img/hinyouki/bg_title.jpg);
}

.modPageTitle01_naika {
	background-image: url(../img/naika/bg_title.jpg);
}

.modPageTitle01_ganka {
	background-image: url(../img/ganka/bg_title.jpg);
}

.modPageTitle01_dockkenshin {
	background-image: url(../img/dockkenshin/bg_title.jpg);
}

.modPageTitle01_about {
	background-image: url(../img/about/bg_title.jpg);
}

.modPageTitle01_saiyou {
	background-image: url(../img/saiyou/bg_title.jpg);
}

.modPageTitle01_info {
	background-image: url(../img/info/bg_title.jpg);
}

.modPageTitle01_refre {
	background-image: url(../img/refre/bg_title.jpg);
}

.modPageTitle01_noushin {
	background-image: url(../img/noushin/bg_title.jpg);
}

.modPageTitle01_qa {
	background-image: url(../img/qa/bg_title.jpg);
}

.modPageTitle01_nyuuin {
	background-image: url(../img/nyuuin/bg_title.jpg);
}

.modPageTitle01_iryou {
	background-image: url(../img/iryou/bg_title.jpg);
}

.modPageTitle01_saiyou_sinsotsu {
	background-image: url(../img/saiyou/bg_title2.jpg);
}

/*
#styleguide
modTitle01

```
<header class="modTitle01">
<h2 class="title"><span class="main">眼科の特長</span><span class="en">Feature</span></h2>
</header>
<header class="modTitle01">
<h2 class="title"><span class="main">眼科の特長</span><span class="red">※単独受診はできません</span><span class="en">Feature</span></h2>
</header>

<header class="modTitle01 modTitle01_type02">
	<h2 class="title"><span class="main">眼科の特長</span><span class="en">Feature</span></h2>
</header>

<header class="modTitle01 modTitle01_type03">
	<h2 class="title"><span class="main">眼科の特長</span><span class="en">Feature</span></h2>
</header>

<header class="modTitle01 modTitle01_nodeco">
	<h2 class="title"><span class="main">眼科の特長</span><span class="en">Feature</span></h2>
</header>
<header class="modTitle01">
	<p class="icon"><img src="/assets/img/common/icon_mail02.svg" width="42" alt=""></p>
	<h2 class="title"><span class="main">フォームからのお問い合わせ</span><span class="en">Contact form</span></h2>
</header>
```
*/

.modTitle01 {
	margin: 0 0 30px;
	text-align: center;
}

.modTitle01.mb0 {
	margin-bottom: 0;
}

.modTitle01 .icon {
	margin-bottom: 5px;
}

.modTitle01 .title {
	display: inline-block;
	padding: 0 90px;
	position: relative;
	line-height: 1.5;
	color: #736357;
}

.modTitle01 .title:before,
.modTitle01 .title:after {
	content: "";
	background-position: 0 0;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

.modTitle01 .title:before {
	background-image: url(../img/common/deco01_01.png);
	width: 34px;
	height: 30px;
	left: 20px;
}

.modTitle01 .title:after {
	background-image: url(../img/common/deco01_02.png);
	width: 72px;
	height: 53px;
	right: 0;
}

.modTitle01_type02 .title:before {
	background-image: url(../img/common/deco01_03.png);
	width: 61px;
	height: 44px;
	left: 0;
}

.modTitle01_type03 .title {
	padding: 0 100px;
}

.modTitle01_type03 .title:before {
	background-image: url(../img/common/deco01_04.png);
	width: 79px;
	height: 85px;
	left: 14px;
}

.modTitle01_type03 .title:after {
	background-image: url(../img/common/deco01_05.png);
	width: 135px;
	height: 106px;
}

.modTitle01_nodeco .title {
	padding: 0;
}

.modTitle01_nodeco .title:before,
.modTitle01_nodeco .title:after {
	display: none;
}

.modTitle01 .main,
.modTitle01 .en {
	display: block;
}

.modTitle01 .main {
	font-size: 32px;
	font-size: 3.2rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
}

.modTitle01 .red {
	font-size: 18px;
	font-size: 1.8rem;
	color: #d65a58;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	line-height: 2;
}

.modTitle01 .en {
	font-size: 21px;
	font-size: 2.1rem;
	font-family: "Niconne", cursive;
}

/*
#styleguide
modTitle02

```
<h2 class="modTitle02">Pick up</h2>
<h3 class="modTitle02 modTitle02_jp">日本語の場合</h3>
```
*/

.modTitle02 {
	background-image: url(../img/common/illust_bird.png);
	background-position: 0 center;
	background-repeat: no-repeat;
	padding: 10px 0 10px 55px;
	margin: 0 0 40px;
	color: #736357;
	font-family: "Niconne", cursive;
	font-size: 34px;
	font-size: 3.4rem;
	line-height: 1.3;
}

.modTitle02_jp {
	margin-bottom: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "游ゴシック", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
}

/*
#styleguide
modTitle03

```
<h3 class="modTitle03"><span class="inner">開催までの流れ</span></h3>
```
*/

.modTitle03 {
	margin: 0 0 26px;
	text-align: center;
	font-size: 22px;
	font-size: 2.2rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
}

.modTitle03 .inner {
	display: inline-block;
	position: relative;
	padding: 0 30px;
}

.modTitle03 .inner:before,
.modTitle03 .inner:after {
	content: "";
	background-image: url(../img/common/icon_flower02.png);
	background-size: 22px auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 22px;
	height: 22px;
}

.modTitle03 .inner:before {
	left: 0;
}

.modTitle03 .inner:after {
	right: 0;
}

/*
#overview
modTxt
*/

/*
#styleguide
modTxtDeco01

```
<p class="modTxtDeco01">14pxの小さい文字 ＆薄い茶色</p>
```
*/

.modTxtDeco01 {
	font-size: 14px;
	font-size: 1.4rem;
	color: #736357;
}

/*
#styleguide
modTxt

```
<p class="modTxtCenter">中央になる</p>
<p class="modTxtRight">右寄せになる</p>
<p class="modTxtBold">太字になる</p>
<p class="modTxtRed">赤字になる</p>
```
*/

.modTxtCenter {
	text-align: center;
}

.modTxtRight {
	text-align: right;
}

.modTxtBold {
	font-weight: bold;
}

.modTxtRed {
	color: #d65a58;
}

/*
#styleguide
modTxtLead

```
<p class="modTxtLead">幅狭め（1058px） 茶色テキスト</p>
```
*/

.modTxtLead {
	max-width: 1058px;
	margin-left: auto;
	margin-right: auto;
	color: #736357;
}

/*
#overview
modBtn
*/

/*
#styleguide
modBtn01

```
<p><a href="#" class="modBtn01">ボタン</a></p>
<p><a href="#" class="modBtn01 modBtn01_color02">ボタン</a></p>
<p><a href="#" class="modBtn01 modBtn01_large">ボタン</a></p>
<p><a href="#" class="modBtn01 modBtn01_arrowB">ボタン</a></p>
```
*/

.modBtn01 {
	display: block;
	background-color: #f1ccce;
	border: none;
	position: relative;
	width: 100%;
	padding: 8px 40px;
	border-radius: 8px;
	text-align: center;
	color: #736357;
	font-weight: bold;
	text-decoration: none;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
}

.modBtn01:after {
	content: "";
	background-image: url(../img/common/arrow01.svg);
	background-size: 15px;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
}

.modBtn01_large {
	font-size: 24px;
	font-size: 2.4rem;
}

.modBtn01_large:after {
	background-size: 20px;
	width: 20px;
	height: 20px;
}

.modBtn01_color02 {
	background-color: #2a5192;
	color: #fff;
}

.modBtn01_arrowB:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/*
#styleguide
modBtn02

```
<p><a href="#" class="modBtn02">ボタン</a></p>
```
*/

.modBtn02 {
	display: block;
	background-color: #fff;
	border: solid 1px #534741;
	position: relative;
	width: 100%;
	padding: 12px 40px;
	border-radius: 10px;
	text-align: center;
	color: #534741;
	text-decoration: none;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.5;
}

.modBtn02:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	display: inline-block;
	margin-left: 8px;
	font-weight: normal;
}

.modBtn02_green {
	background: #eff5f0;
	border: 1px solid #6dba92;
}

/*
#styleguide
modBtnBox

上に何か要素があるとmarginがつきます
```
<p class="modBtnBox"><a href="#" class="modBtn01">ボタン</a></p>
<p class="modBtnBox modBtnBox_large"><a href="#" class="modBtn01">ボタン</a></p>
<p class="modBtnBox modBtnBox_large2"><a href="#" class="modBtn01">ボタン</a></p>
<p class="modBtnBox modBtnBox_left"><a href="#" class="modBtn01">左寄せボタン</a></p>
```
*/

.modBtnBox {
	max-width: 280px;
	margin: 0 auto;
}

* + .modBtnBox {
	margin-top: 30px;
}

.modBtnBox_large {
	max-width: 360px;
}

.modBtnBox_large2 {
	max-width: 460px;
}

.modBtnBox_left {
	margin-left: 0;
	margin-right: auto;
}

/*
#overview
modBlock
*/

/*
#styleguide

```
<div class="modBlockInner">
	<div class="container">
		.modBlockInner<br>
		ノーマル 上下にpaddingがつく
	</div>
</div>
<div class="modBlockInner modBlockInner_bg01">
	<div class="container">
		.modBlockInner_bg01
	</div>
</div>
<div class="modBlockInner modBlockInner_bg02">
	<div class="container">
		.modBlockInner_bg02
	</div>
</div>
<div class="modBlockInner modBlockInner_bg03">
	<div class="container">
		.modBlockInner_bg03
	</div>
</div>
<div class="modBlockInner modBlockInner_bg04">
	<div class="container">
		.modBlockInner_bg04
	</div>
</div>
<div class="modBlockInner modBlockInner_bg05">
	<div class="container">
		.modBlockInner_bg05
	</div>
</div>
<div class="modBlockInner modBlockInner_bg06">
	<div class="container">
		.modBlockInner_bg06
	</div>
</div>
<div class="modBlockInner modBlockInner_bg07">
	<div class="container">
		.modBlockInner_bg07
	</div>
</div>
<div class="modBlockInner modBlockInner_bg08">
	<div class="container">
		.modBlockInner_bg08
	</div>
</div>
<div class="modBlockInner modBlockInner_bg09">
	<div class="container">
		.modBlockInner_bg09
	</div>
</div>
<div class="modBlockInner modBlockInner_bg10">
	<div class="container">
		.modBlockInner_bg10
	</div>
</div>
<div class="modBlockInner modBlockInner_bg11">
	<div class="container">
		.modBlockInner_bg11
	</div>
</div>
<div class="modBlockInner modBlockInner_bg12">
	<div class="container">
		.modBlockInner_bg12
	</div>
</div>
<div class="modBlockInner modBlockInner_bg13">
	<div class="container">
		.modBlockInner_bg13
	</div>
</div>
<div class="modBlockInner modBlockInner_bg14">
	<div class="container">
		.modBlockInner_bg14
	</div>
</div>
<div class="modBlockInner modBlockInner_bg15">
	<div class="container">
		.modBlockInner_bg15
	</div>
</div>
<br><br>

<div class="container">
	<p>ベタ背景色</p>
</div>

<div class="modBlockInner modBlockInner_color01">
	<div class="container">
		.modBlockInner_color01
	</div>
</div>

<div class="modBlockInner modBlockInner_color02">
	<div class="container">
		.modBlockInner_color02
	</div>
</div>
<div class="modBlockInner modBlockInner_color03">
	<div class="container">
		.modBlockInner_color03
	</div>
</div>
<div class="modBlockInner modBlockInner_color04">
	<div class="container">
		.modBlockInner_color04
	</div>
</div>
```
*/

.modBlockInner {
	padding: 60px 0;
	background-position: center top;
}

.modBlockInner_bg01 {
	background-image: url(../img/common/bg_pattern01.jpg);
}

.modBlockInner_bg02 {
	background-image: url(../img/common/bg_pattern02.jpg);
}

.modBlockInner_bg03 {
	background-image: url(../img/common/bg_pattern03.jpg);
}

.modBlockInner_bg04 {
	background-image: url(../img/common/bg_pattern04.jpg);
}

.modBlockInner_bg05 {
	background-image: url(../img/common/bg_pattern05.jpg);
}

.modBlockInner_bg06 {
	background-image: url(../img/common/bg_pattern06.jpg);
}

.modBlockInner_bg07 {
	background-image: url(../img/common/bg_pattern07.jpg);
}

.modBlockInner_bg08 {
	background-image: url(../img/common/bg_pattern08.jpg);
}

.modBlockInner_bg09 {
	background-image: url(../img/common/bg_pattern09.jpg);
}

.modBlockInner_bg10 {
	background-image: url(../img/common/bg_pattern10.jpg);
}

.modBlockInner_bg11 {
	background-image: url(../img/common/bg_pattern11.jpg);
}

.modBlockInner_bg12 {
	background-image: url(../img/common/bg_pattern12.jpg);
}

.modBlockInner_bg13 {
	background-image: url(../img/common/bg_pattern13.jpg);
}

.modBlockInner_bg14 {
	background-image: url(../img/common/bg_pattern14.jpg);
}

.modBlockInner_bg15 {
	background-image: url(../img/common/bg_pattern15.jpg);
}

.modBlockInner_color01 {
	background-color: #f4f7ee;
}

.modBlockInner_color02 {
	background-color: #faf7f2;
}

.modBlockInner_color03 {
	background-color: #F5F5F3;
}

.modBlockInner_color04 {
	background-color: #ffffff;
}

.modBlockInner02 {
	padding: 90px 0 0;
}

/*
#styleguide
modBlockLead01

```

<div class="modBlockLead01">
	<div class="detail">
		<p class="catch"><span class="br">キャッチコピーキャッチコピー</span>.brで囲むとpc時ブロックになります</p>
		<div class="txt">
			<p>テキストがはいりますテキストがはいりますテキストがはいりますテキストがはいりますテキストがはいりますテキストがはいります</p>
			<p>pタグが続くと間が空きます</p>
		</div>
	</div>
	<div class="image">
		<div class="inner"><img src="../assets/img/common/img_dummy02.png" srcset="../assets/img/common/img_dummy02.png 1x,../assets/img/common/img_dummy02@2x.png 2x" alt=""></div>
	</div>
</div>
<br>
真ん中の花が少ない
<div class="modBlockLead01 modBlockLead01_deco02">
	<div class="detail">
		<p class="catch"><span class="br">キャッチコピーキャッチコピー</span>.brで囲むとpc時ブロックになります</p>
		<div class="txt">
			<p>テキストがはいりますテキストがはいりますテキストがはいりますテキストがはいりますテキストがはいりますテキストがはいります</p>
			<p>pタグが続くと間が空きます</p>
		</div>
	</div>
	<div class="image">
		<div class="inner"><img src="../assets/img/common/img_dummy02.png" srcset="../assets/img/common/img_dummy02.png 1x,../assets/img/common/img_dummy02@2x.png 2x" alt=""></div>
	</div>
</div>
```
*/

.modBlockLead01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	min-height: 380px;
}

.modTitle01 + .modBlockLead01 {
	margin-top: 80px;
}

.modBlockLead01 + .modBlockInfo01 {
	margin-top: 70px;
}

.modBlockLead01 .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 30px 90px 0 0;
	position: relative;
}

.modBlockLead01 .detail:before {
	content: "";
	background-image: url(../img/common/deco02_01.png);
	width: 84px;
	height: 221px;
	position: absolute;
	top: -20px;
	left: -60px;
}

.modBlockLead01 .detail:after {
	content: "";
	background-image: url(../img/common/deco02_03.png);
	width: 150px;
	height: 342px;
	position: absolute;
	top: 30px;
	right: -5px;
}

.modBlockLead01_deco02 .detail:after {
	background-image: url(../img/common/deco02_04.png);
	width: 131px;
	height: 227px;
}

.modBlockLead01 .image {
	width: 38%;
	max-width: 390px;
	text-align: center;
}

.modBlockLead01 .image:before {
	content: "";
	background-image: url(../img/common/deco02_02.png);
	width: 84px;
	height: 78px;
	position: absolute;
	top: -55px;
	right: -55px;
}

.modBlockLead01 .catch {
	margin-bottom: 30px;
	position: relative;
	z-index: 10;
	font-size: 28px;
	font-size: 2.8rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	color: #534741;
	line-height: 1.5;
}

.modBlockLead01 .catch .br {
	display: block;
}

.modBlockLead01 .txt {
	position: relative;
	z-index: 10;
	color: #736357;
}

.modBlockLead01 .txt p + p {
	margin-top: 20px;
}

/*
#styleguide
modBlockLead02

```

<div class="modBlockLead02">
<div class="detail">
<p class="title">管理栄養士と和食の職人が作るお食事</p>
<p>お食事は、当院自慢の和御膳です。管理栄養士監修の栄養バランスのとれたメニューは、野菜たっぷりでヘルシーなだけでなく、和食の職人が調理した本格的なおいしさです。</p>
<dl class="myBlockMenu">
<dt>メニュー例</dt>
<dd>
<ul>
<li>重箱盛り<br>
（旬の焼き魚、さつま芋の栂尾煮、瓢亭玉子、笹麩、赤板、小蕪の金山寺、栗の渋皮煮、かつおくるみ、牛肉と牛蒡の金平、おからサラダ、もずく酢）</li>
<li>海草サラダ</li>
<li>野菜と豚肉のセイロ蒸し</li>
<li>麦御飯</li>
<li>茸のつみれのお吸い物　清まし仕立て</li>
<li>季節の果物</li>
<li>お飲み物</li>
</ul>
</dd>
</dl>
</div>
<div class="image">
<div class="inner"><img src="../../assets/img/dockkenshin/ladysdock/img_02.png" srcset="../../assets/img/dockkenshin/ladysdock/img_02.png 1x,../../assets/img/dockkenshin/ladysdock/img_02@2x.png 2x" alt=""></div>
</div>
</div>
```
*/

.modBlockLead02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.modBlockLead02 .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px 0 0 90px;
	position: relative;
}

.modBlockLead02 .image {
	width: 38%;
	max-width: 250px;
	text-align: center;
	position: relative;
}

.modBlockLead02 .image:before {
	content: "";
	background-image: url(../img/common/deco04_01.png);
	width: 85px;
	height: 79px;
	position: absolute;
	top: 5px;
	left: -30px;
}

.modBlockLead02 .image:after {
	content: "";
	background-image: url(../img/common/deco03_01.png);
	width: 74px;
	height: 76px;
	position: absolute;
	top: 170px;
	right: -35px;
}

.modBlockLead02 .image .inner {
	position: relative;
	z-index: 100;
}

.modBlockLead02 .title {
	font-weight: bold;
	margin-bottom: 15px;
	color: #534741;
}

.modBlockLead02 .txt {
	position: relative;
	z-index: 10;
	color: #736357;
}

.modBlockLead02 .txt p + p {
	margin-top: 20px;
}

/*
#styleguide
modBlockInfo01

```

<div class="modBlockInfo01">
	<dl class="item">
		<dt>タイトル</dt>
		<dd>
			<table class="modTbl01">
				<tbody>
					<tr>
						<th class="w40">タイトル</th>
						<td>テキストテキストテキストテキスト</td>
					</tr>
					<tr>
						<th>タイトル</th>
						<td>テキストテキストテキストテキスト</td>
					</tr>
				</tbody>
			</table>
			<ul class="modIndent01">
				<li>※直下にulがくるとマイナスmarginします</li>
			</ul>
		</dd>
	</dl>
	<dl class="item">
		<dt>タイトル</dt>
		<dd>
			<p>テキストテキストテキストテキスト</p>
		</dd>
	</dl>
	<dl class="item">
		<dt>タイトル</dt>
		<dd>
			<p class="modTxtDeco01">小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き</p>
		</dd>
	</dl>
	<dl class="item">
		<dt>タイトル<span class="sub">サブサブ</span></dt>
		<dd>
			<p class="modTxtDeco01">小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き小さいテキスト色付き</p>
		</dd>
	</dl>
	<dl class="item_long">
		<dt>タイトル<span class="sub">サブサブ</span></dt>
		<dd class="column2">
		<div class="inner">
		<div class="subTitle">二次健康診断</div>
		<ul class="modListFlower">
		<li>空腹時血中脂質検査</li>
		<li>空腹時血糖値検査</li>
		<li>ヘモグロビンA1c検査 (一次健診で実施済みの方は対象外)</li>
		<li>負荷心電図検査 </li>
		<li>頚部超音波検査</li>
		<li>微量アルブミン尿検査（一次健診の結果により実施）</li>
		</ul>
		</div>
		<div class="inner">
		<div class="subTitle">特定保健指導</div>
		<ul class="modListFlower">
		<li>栄養指導</li>
		<li>運動指導</li>
		<li>生活指導</li>
		</ul>
		</div>
		</dd>
	</dl>
</div>
```
*/

.modBlockInfo01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modBlockInfo01_line {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 2px dashed #808080;
}

.modBlockInfo01 .item {
	width: 48%;
	margin-top: 40px;
}

.modBlockInfo01 .item:nth-child(1),
.modBlockInfo01 .item:nth-child(2) {
	margin-top: 0;
}

.modBlockInfo01 .item dd + dt {
	margin-top: 40px;
}

.modBlockInfo01 .item > dt {
	display: inline-block;
	min-width: 130px;
	margin: 0 0 30px;
	padding: 9px 20px;
	background-color: #6dba92;
	border-radius: 10px;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}

.modBlockInfo01 .item dd {
	color: #736357;
}

.modBlockInfo01 .item dd p + p {
	margin-top: 1em;
}

.modBlockInfo01 .item dd p + .modListFlower {
	margin-top: 1em;
}

.modBlockInfo01 .item dd ul + ul {
	margin-top: 1em;
}

.modBlockInfo01 .item dd p + table {
	margin-top: 1em;
}

.modBlockInfo01 .item .sub {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockInfo01 .item_long {
	width: 100%;
}

.modBlockInfo01 .item_long:nth-child(2) {
	margin-top: 40px;
}

.modBlockInfo01 .item_long + .item {
	margin-top: 40px;
}

.modBlockInfo01 .title {
	font-size: 22px;
	font-size: 2.2rem;
	color: #736357;
	font-weight: bold;
}

.modBlockInfo01 .title .mark {
	font-size: 16px;
	font-size: 1.6rem;
	display: inline-block;
	background: #fff;
	color: #736357;
	border: 1px solid #736357;
	border-radius: 5px;
	margin-left: 10px;
	padding: 2px 5px;
	letter-spacing: 0;
}

.modBlockInfo01 .title .mark_red {
	color: #dc7370;
	border: 1px solid #dc7370;
}

.modBlockInfo01 .title .num {
	display: inline-block;
	width: 32px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #6dba92;
	color: #6dba92;
	border-radius: 50%;
	margin-right: 10px;
}

.modBlockInfo01 .subTitle {
	font-size: 18px;
	font-size: 1.8rem;
	color: #736357;
	font-weight: bold;
}

.modBlockInfo01 .txt {
	width: 100%;
	margin-top: 20px;
	background: rgba(255, 255, 255, 0.5);
	padding: 20px;
	border-radius: 10px;
	color: #736357;
}

.modBlockInfo01 .column2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modBlockInfo01 .column2 .inner {
	width: 48%;
}

.modBlockInfo01 .column2 .modListFlower {
	margin-top: 10px;
}

.modBlockInfo01 .column2 .modListFlower li {
	display: block;
}

/*
#styleguide
modBlockInfo02

```

<div class="modBlockInfo02">
<div class="inner">
<h3 class="title">付加健診</h3>
<dl class="item">
<dt><span>対象者</span></dt>
<dd><p><span class="br">一般健診を受診される</span>40歳、50歳</p></dd>
</dl>
<dl class="item">
<dt><span>検診内容</span></dt>
<dd>
<ul class="modListFlower">
<li>尿沈渣顕微鏡検査</li>
<li>血液学的検査</li>
<li>生化学的検査</li>
<li>眼底検査</li>
<li>肺機能検査</li>
<li>腹部超音波検査</li>
</ul>
</dd>
</dl>
<dl class="item">
<dt><span>費用</span></dt>
<dd>
<p>4,714円</p>
</dd>
</dl>
</div>
<div class="inner">
<h3 class="title">乳がん検診</h3>
<dl class="item">
<dt><span>対象者</span></dt>
<dd><p><span class="br">一般健診を受診される</span>
40歳～74歳の偶数年齢の女性</p></dd>
</dl>
<dl class="item">
<dt><span>検診内容</span></dt>
<dd>
<ul class="modListFlower">
<li>問診</li>
<li>視診</li>
<li>触診</li>
<li>マンモグラフィ</li>
</ul>
</dd>
</dl>
<dl class="item">
<dt><span>費用</span></dt>
<dd>
<p>50歳以上　   ：1,066円<br>
40歳～48歳：1,655円</p>
</dd>
</dl>
</div>
<div class="inner">
<h3 class="title">子宮頸がん検診</h3>
<dl class="item">
<dt><span>対象者</span></dt>
<dd><p><span class="br">一般健診を受診される</span>
<strong class="modTxtBold">36歳～74歳</strong>の偶数年齢の女性</p></dd>
</dl>
<dl class="item">
<dt><span>検診内容</span></dt>
<dd>
<ul class="modListFlower">
<li>問診</li>
<li>細胞診</li>
</ul>
</dd>
</dl>
<dl class="item">
<dt><span>費用</span></dt>
<dd>
<p>1,020円</p>
</dd>
</dl>
</div>
<div class="inner">
<h3 class="title">肝炎ウイルス検査</h3>
<dl class="item">
<dt><span>対象者</span></dt>
<dd><p><span class="br">一般健診を受診される</span>
C型肝炎ウイルス検査未受診の方</p></dd>
</dl>
<dl class="item">
<dt><span>検診内容</span></dt>
<dd>
<ul class="modListFlower">
<li>HCV抗体検査</li>
<li>HBs抗原検査</li>
</ul>
</dd>
</dl>
<dl class="item">
<dt><span>費用</span></dt>
<dd>
<p>612円</p>
</dd>
</dl>
</div>
</div>
```
*/

.modBlockInfo02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modBlockInfo02 .inner {
	width: 48%;
	margin-top: 40px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #808080;
}

.modBlockInfo02 .inner:nth-child(1),
.modBlockInfo02 .inner:nth-child(2) {
	margin-top: 0;
}

.modBlockInfo02 .title {
	font-size: 22px;
	font-size: 2.2rem;
	color: #736357;
	font-weight: bold;
	margin-bottom: 30px;
}

.modBlockInfo02 .title .num {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #6dba92;
	background: #fff;
	color: #6dba92;
	border-radius: 50%;
	margin-right: 10px;
}

.modBlockInfo02 .item {
	display: table;
	margin: 0 0 30px;
}

.modBlockInfo02 .item > dt {
	display: table-cell;
	vertical-align: top;
	width: 130px;
}

.modBlockInfo02 .item > dt > span {
	display: block;
	padding: 9px 20px;
	background-color: #6dba92;
	border-radius: 10px;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}

.modBlockInfo02 .item > dt.line2 > span {
	padding: 9px 5px;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: 0;
}

.modBlockInfo02 .item .sub {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockInfo02 .item dd {
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	color: #736357;
}

.modBlockInfo02 .item dd .br {
	display: block;
}

.modBlockInfo02 .item .modListFlower li {
	display: block;
	margin-bottom: 5px;
}

.modBlockInfo02 .item .modListFlower li:last-child {
	margin-bottom: 0;
}

.modBlockInfo02 .item .modListFlower .txt {
	display: block;
}

.modBlockInfo02 .item_long {
	width: 100%;
}

.modBlockInfo02 .item_long:nth-child(2) {
	margin-top: 40px;
}

.modBlockInfo02 .item_long + .item {
	margin-top: 40px;
}

/*
#styleguide

.modBlockEntryDetail
ブログの記事
*/

.modBlockEntryDetail .body {
	background-color: #fff;
	border-radius: 5px 5px 0 0;
}

.modBlockEntryDetail .head {
	border-bottom: dashed 1px #c7c7c7;
	display: table;
	width: 100%;
	table-layout: fixed;
	margin: 0 auto 46px;
	padding: 20px 30px;
}

.modBlockEntryDetail .head .left,
.modBlockEntryDetail .head .right {
	display: table-cell;
	vertical-align: bottom;
}

.modBlockEntryDetail .head .top {
	margin-bottom: 6px;
}

.modBlockEntryDetail .head .date {
	display: inline;
	margin: 0 10px 0 0;
	font-size: 15px;
	font-size: 1.5rem;
}

.modBlockEntryDetail .head .category {
	min-width: 80px;
	display: inline-block;
	font-size: 0;
	vertical-align: super;
}

.modBlockEntryDetail .head .title {
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.5;
	color: #000;
}

.modBlockEntryDetail .head .right {
	width: 220px;
	text-align: right;
	font-size: 13px;
	font-size: 1.3rem;
}

.modBlockEntryDetail .head .sns {
	font-size: 0;
}

.modBlockEntryDetail .head .sns li {
	display: inline;
	margin: 0 0 0 8px;
}

.modBlockEntryDetail .head .sns img {
	width: 30px;
}

.modBlockEntryDetail .head .sns a:hover {
	opacity: 0.8;
}

.modBlockEntryDetail .main {
	padding: 0 60px 40px;
}

.modBlockEntryDetail .main .modPartsTxt {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockEntryDetail .main .btnPdf {
	max-width: 320px;
	margin: 40px auto 0;
}

.modBlockEntryDetail .foot {
	background-color: #f6f6f4;
	padding: 30px 0;
	margin: 0 0 15px;
	border-radius: 0 0 5px 5px;
	color: #4d4d4d;
	text-align: center;
}

.modBlockEntryDetail .foot .txt {
	margin-bottom: 5px;
	font-size: 13px;
	font-size: 1.3rem;
}

.modBlockEntryDetail .foot .sns {
	font-size: 0;
}

.modBlockEntryDetail .foot .sns li {
	display: inline;
	margin: 0 4px;
}

.modBlockEntryDetail .foot .sns img {
	width: 30px;
}

.modBlockEntryDetail .foot .sns a:hover {
	opacity: 0.8;
}

/*
#styleguide
modBlockBox

```

<div class="modBlockBox">
<h3 class="headTitle">全国健康保険協会（協会けんぽ）の被保険者の方へ</h3>
<div class="contents">
<p>modBlockBox_topを付けると、上に余白がつきます</p>
</div>
</div>
<div class="modBlockBox modBlockBox_top modBlockBox_blue">
<h3 class="headTitle">全国健康保険協会（協会けんぽ）の被保険者の方へ</h3>
<div class="contents">
<p>modBlockBox_topを付けると、上に余白がつきます</p>
</div>
</div>
```
*/

.modBlockBox {
	border: 1px solid #469c77;
	border-radius: 10px;
	background: #fff;
	color: #736357;
}

.modBlockBox .headTitle {
	position: relative;
	background: #e9f6ed;
	padding: 15px 150px;
	border-radius: 10px 10px 0 0;
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	font-size: 2rem;
}

.modBlockBox .headTitle:before {
	position: absolute;
	top: 4px;
	left: 20px;
	content: "";
	background: url(../../assets/img/common/deco05_01.png) no-repeat top left;
	width: 112px;
	height: 55px;
}

.modBlockBox .headTitle:after {
	position: absolute;
	top: 4px;
	right: 20px;
	content: "";
	background: url(../../assets/img/common/deco05_02.png) no-repeat top left;
	width: 112px;
	height: 55px;
}

.modBlockBox .headTitle .sub {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
}

.modBlockBox .contents {
	padding: 40px;
}

.modBlockBox_top {
	margin-top: 60px;
}

.modBlockBox_blue {
	border: 1px solid #489aca;
}

.modBlockBox_blue .headTitle {
	background: #e8f3f9;
}

/*
#styleguide
modBlockAcdn

```
<div class="modBlockAcdn">
<p><a class="acdnBtn active">クリックで中身を表示</a></p>
<div class="acdnContant">
<ul class="modListArrow">
<li><a href="#block01">子宮筋腫</a></li>
<li><a href="#block02">子宮内膜症</a></li>
<li><a href="#block03">子宮腺筋症</a></li>
<li><a href="#block04">子宮頸管ポリープ</a></li>
<li><a href="#block05">子宮内膜ポリープ</a></li>
<li><a href="#block06">子宮頸癌</a></li>
<li><a href="#block07">子宮体癌</a></li>
</ul>
</div>
</div>
```
*/

.modBlockAcdn .acdnBtn {
	display: block;
	background-color: #fff;
	position: relative;
	width: 100%;
	padding: 12px 40px;
	border-radius: 10px;
	text-align: center;
	color: #736357;
	text-decoration: none;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 30px;
	cursor: pointer;
}

.modBlockAcdn .acdnBtn:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	color: #489aca;
	font-size: 24px;
	font-size: 2.4rem;
	display: inline-block;
	margin-left: 10px;
	font-weight: normal;
}

.modBlockAcdn .acdnBtn.active:after {
	content: "";
}

.modBlockAcdn .acdnContant {
	display: none;
}

/*
#styleguide
sentenceBlock

```
<div id="block01" class="modBlockBox modBlockBox_blue">
<h3 class="headTitle">子宮筋腫</h3>

↓ここから
<div class="contents sentenceBlock">
<div class="imageFloatR"><img src="../../../assets/img/fujinka/sinryo/sinryo/img_01.png" srcset="../../../assets/img/fujinka/sinryo/sinryo/img_01.png 1x,../../../assets/img/fujinka/sinryo/sinryo/img_01@2x.png 2x" alt=""></div>
<p>テキストテキストテキストテキストテキスト</p>
<p class="mb0">テキストテキストテキストテキストテキスト</p>
<ul class="list01">
<li>子宮の外に突出していく筋腫（漿膜下筋腫）</li>
<li>子宮の壁の中で発育する筋腫（壁内筋腫）</li>
<li>子宮の内腔に突出していく筋腫（粘膜下筋腫）</li>
</ul>
<p>テキストテキストテキストテキストテキスト</p>
<p>テキストテキストテキストテキストテキスト</p>
<h4 class="title01">治療方法</h4>
</div>

<div class="contents sentenceBlock">
<p>テキストテキストテキストテキストテキストテキスト</p>
<div class="imageBlock">
<div class="imageL"><img src="../../assets/img/nyusen/torikumi/img_02.png" alt="">
<div class="caption">ピンクリボンツリー</div>
</div>
<div class="imageR pd0"><img src="../../assets/img/nyusen/torikumi/img_03.png" alt="">
<div class="caption">募金キャンドル</div>
</div>
</div>
</div>


 </div>
```
*/

.sentenceBlock {
	letter-spacing: 0;
}

.sentenceBlock:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.sentenceBlock p {
	margin-bottom: 20px;
}

.sentenceBlock p.mb0 {
	margin-bottom: 0;
}

.sentenceBlock p a {
	font-weight: bold;
}

.sentenceBlock p .bold {
	font-weight: bold;
}

.sentenceBlock p.underLine {
	padding-bottom: 40px;
	margin-bottom: 30px;
	border-bottom: 1px dashed #439e76;
}

.sentenceBlock .list01 li {
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: 600;
	padding-left: 26px;
	background: url(../img/common/icon_flower03.png) no-repeat left 0.3em;
	background-size: 20px auto;
}

.sentenceBlock .title01 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #489aca;
	padding: 25px 0 15px;
	border-top: 1px dashed #489aca;
}

.sentenceBlock .title01_flower {
	padding-left: 26px;
	background: url(../img/common/icon_flower03.png) no-repeat left 1.7em;
	background-size: 20px auto;
}

.sentenceBlock .title01_noborder {
	border-top: none;
}

.sentenceBlock .title02 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #439e76;
	margin-bottom: 10px;
}

.sentenceBlock .title03 {
	display: inline-block;
	color: #fff;
	padding: 0 10px;
	margin: 20px 0;
	background-color: #93bdd6;
	line-height: 28px;
	border-radius: 14px;
	letter-spacing: 0;
	position: relative;
}

.sentenceBlock .imageFloatR {
	float: right;
	background-color: #fff;
	padding: 0 0 40px 40px;
}

.sentenceBlock .imageBlock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	text-align: center;
}

.sentenceBlock .imageBlock .imageR {
	padding: 0 0 40px 40px;
	text-align: center;
}

.sentenceBlock .pd0 {
	padding: 0;
}

.sentenceBlock .caption {
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
}

/*
#styleguide
modKensaBlock

```
<div class="modKensaBlock underLine">
<div class="detail">
<p class="title">マンモグラフィ</p>
<p>プラスチックの板で乳房を圧迫し、薄く広げて撮影します。圧迫の際、痛みを感じることがあります。痛みが強い場合は技師にお声かけ下さい。触っても分からないしこりや、石灰化を見つけることができます。</p>
<p>・ 水曜日はスタッフレディースデー<br>
・ マンモグラフィ認定技師が6名在籍しています。</p>
<dl class="modFoundList">
<dt>わかること</dt>
<dd>腫瘍の有無・大きさや形／石灰化の有無</dd>
</dl>
</div>
<div class="image">
<img src="../../assets/img/nyusen/kensa/img_01.png" srcset="../../assets/img/nyusen/kensa/img_01.png 1x,../../assets/img/nyusen/kensa/img_01@2x.png 2x" alt="">
</div>
</div>
```
*/

.modKensaBlock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.modKensaBlock.underLine {
	border-bottom: 1px dashed #469c77;
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.modKensaBlock .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 10px 50px 10px 10px;
	position: relative;
}

.modKensaBlock .image {
	width: 45%;
	max-width: 300px;
	text-align: center;
}

.modKensaBlock .title {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #439e76;
	padding-left: 26px;
	background: url(../img/common/icon_flower03.png) no-repeat left 0.3em;
	background-size: 20px auto;
}

.modKensaBlock .txt {
	color: #736357;
}

.modKensaBlock .txt p + p {
	margin-top: 20px;
}

.modKensaBlock p + ul {
	margin-top: 20px;
}

/*
#overview
modTable
*/

/*
#styleguide
xxxxx

```

<table class="modTbl01">
	<thead>
		<tr>
			<th>タイトル</th>
			<th>タイトル</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
		</tr>
	</tbody>
</table>

<p>.幅が狭い</p>
<div class="modTbl01_middle">
	<table class="modTbl01 modTbl01_center">
		<thead>
			<tr>
				<th>タイトル</th>
				<th>タイトル</th>
				<th>タイトル</th>
				<th>タイトル</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<th>タイトル</th>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
			</tr>
			<tr>
				<th>タイトル</th>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
			</tr>
		</tbody>
	</table>
</div>

<p>SP時縮小します。</p>
<div class="modTbl01_wrapper">
	<table class="modTbl01">
		<thead>
			<tr>
				<th>タイトル</th>
				<th>タイトル</th>
				<th>タイトル</th>
				<th>タイトル</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
			</tr>
			<tr>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
				<td>テキストテキスト</td>
			</tr>
		</tbody>
	</table>
</div>

<p>tdも中央寄せ</p>
<table class="modTbl01 modTbl01_center">
	<thead>
		<tr>
			<th>タイトル</th>
			<th>タイトル</th>
			<th>タイトル</th>
			<th>タイトル</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
		</tr>
		<tr>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
			<td>テキストテキスト</td>
		</tr>
	</tbody>
</table>
```
*/

.modTbl01 {
	table-layout: fixed;
	border: solid 1px #439e76;
	margin-bottom: 60px;
}

.modTbl01 + ul {
	margin-top: -50px;
}

.modTbl01_wrapper {
	margin-bottom: 60px;
}

.modTbl01_wrapper + ul {
	margin-top: -50px;
}

.modTbl01_wrapper table {
	min-width: 820px;
	margin-bottom: 0;
}

.modTbl01_middle {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
}

.modTbl01 thead th {
	border-bottom: dashed 1px #808080;
}

.modTbl01 th,
.modTbl01 td {
	background-color: #fff;
	padding: 10px 20px;
	vertical-align: top;
	color: #736357;
}

.modTbl01 th {
	width: 30%;
	background-color: #e8f6ed;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
}

.modTbl01_center td {
	text-align: center;
}

.modTbl01 .w25 {
	width: 25%;
}

.modTbl01 .w30 {
	width: 30%;
}

.modTbl01 .w40 {
	width: 40%;
}

.modTbl01 .w55 {
	width: 55%;
}

.modTbl01 .valignM {
	vertical-align: middle;
}

.modTbl01 .alibnL {
	text-align: left;
}

.modTbl01 tr > *:not(:last-child) {
	border-right: dashed 1px #808080;
}

.modTbl01 tbody tr:not(:last-child) th {
	border-bottom: dashed 1px #808080;
}

.modTbl01 tbody tr:not(:last-child) td {
	border-bottom: dashed 1px #808080;
}

/*
#overview
modList
*/

/*
#styleguide
modList　modIndent

```
<ul class="modListNormal">
		<li>リスト</li>
		<li>リスト</li>
</ul>
<ol class="modListNormal">
		<li>リスト</li>
		<li>リスト</li>
</ol>
<ul class="modIndent01">
		<li>※テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。</li>
		<li>※リスト</li>
</ul>
<ul class="modIndent02">
		<li>１.　テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。</li>
		<li>２.　リスト</li>
</ul>
<ul class="modList01">
		<li>Illustrator に原寸で配置したサイズでの解像度が350dpiになるようにしてください。</li>
		<li> 拡大縮小率70%〜141％を超えると画質が劣化するのでご注意ください。</li>
</ul>
```
*/

.modListNormal {
	margin: 0 0 0 2em;
}

ul.modListNormal li:before {
	content: "\0030fb";
	margin-left: -2em;
	display: inline-block;
	width: 2em;
	text-align: center;
}

ol.modListNormal li {
	list-style: decimal;
}

/* indent */

.modIndent01 li {
	text-indent: -1em;
	margin: 0 0 0 1em;
}

.modIndent02 li {
	text-indent: -2.5em;
	margin: 0 0 0 2.5em;
}

/*
#styleguide
modListItem01

```
<div class="modListItem01">
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトルタイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトルタイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトルタイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
</div>
<br>
<br>
<p>.modListItem01_column05</p>
<div class="modListItem01 modListItem01_column05">
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
	<section class="item">
		<p class="image"><img src="../assets/img/common/img_dummy.png" srcset="../assets/img/common/img_dummy.png 1x,../assets/img/common/img_dummy@2x.png 2x" alt=""></p>
		<div class="detail">
			<h3 class="title">タイトルタイトルタイトル</h3>
			<p class="txt">テキストが入りますテキストが入りますテキストが入ります</p>
		</div>
	</section>
</div>

<br>
<br>
<p>.modListItem01_column04</p>
<div class="modListItem01 modListItem01_column04">
	<section class="item">
		<a href="#">
			<p class="image"><img src="/assets/img/about/thumb01.png" srcset="/assets/img/about/thumb01.png 1x,/assets/img/about/thumb01@2x.png 2x" alt=""></p>
			<div class="detail">
				<h3 class="title">婦人科</h3>
				<p class="txt txt_small">専門資格を持った医師が多数在籍。婦人科に関する様々な症状に幅広く対応します。</p>
			</div>
		</a>
	</section>
	<section class="item">
		<a href="#">
			<p class="image"><img src="/assets/img/about/thumb01.png" srcset="/assets/img/about/thumb01.png 1x,/assets/img/about/thumb01@2x.png 2x" alt=""></p>
			<div class="detail">
				<h3 class="title">乳腺外科</h3>
				<p class="txt txt_small">乳がん精密検診機関・乳がん検診認定機関に認定されており、専門性の高い診療が可能です。</p>
			</div>
		</a>
	</section>
	<section class="item">
		<a href="#">
			<p class="image"><img src="/assets/img/about/thumb01.png" srcset="/assets/img/about/thumb01.png 1x,/assets/img/about/thumb01@2x.png 2x" alt=""></p>
			<div class="detail">
				<h3 class="title">画像検査</h3>
				<p class="txt txt_small">技術認定医・認定技師が連携し、より精度の高い画像検査を目指します。</p>
			</div>
		</a>
	</section>
	<section class="item">
		<a href="#">
			<p class="image"><img src="/assets/img/about/thumb01.png" srcset="/assets/img/about/thumb01.png 1x,/assets/img/about/thumb01@2x.png 2x" alt=""></p>
			<div class="detail">
				<h3 class="title">人間ドック・けんしん</h3>
				<p class="txt txt_small">あなたとあなたの大切な人のために―　健康な身体づくりは人間ドック・けんしんから。</p>
			</div>
		</a>
	</section>
</div>
```
*/

.modListItem01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modListItem01 .item {
	width: 31.3%;
}

.modListItem01_column04 .item {
	width: 24%;
}

.modListItem01_column05 .item {
	width: 18%;
}

.modListItem01 a {
	display: block;
	text-decoration: none;
}

.modListItem01 .image {
	margin-bottom: 20px;
	text-align: center;
}

.modListItem01 .detail {
	color: #736357;
}

.modListItem01_column04 .detail {
	max-width: 230px;
	margin-right: auto;
	margin-left: auto;
}

.modListItem01 .title {
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.modListItem01 a .title:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	display: inline-block;
	position: relative;
	top: -0.15em;
	margin-left: 5px;
	font-weight: normal;
}

.modListItem01 .txt_small {
	font-size: 14px;
	font-size: 1.4rem;
}

.modListItem01_column05 .txt {
	line-height: 1.4;
}

/*
#styleguide
modListItem02

```
				 <div class="modListItem02">
					<section class="item">
					 <div class="detail">
						<h3 class="title">専門医・認定医による安心の医療をご提供</h3>
						<p class="txt">「日本産科婦人科内視鏡学会技術認定医」および「内視鏡外科学会技術認定医」の両方の資格を持つ医師が3名在籍しており、岡山市内でも珍しい専門性の高い体制となっています。患者様に安心してご来院頂けるように、経験豊富な医師が診療・手術を行います。</p>
					 </div>
					 <p class="image"><img src="../assets/img/fujinka/img_02.png" srcset="../assets/img/fujinka/img_02.png 1x,../assets/img/fujinka/img_02@2x.png 2x" alt=""></p>

					</section>
					<section class="item">
					 <div class="detail">
						<h3 class="title"><span class="br">腹腔鏡下手術・子宮鏡下手術など</span>
						 <span class="br">豊富な手術実績</span></h3>
						<p class="txt">腹腔鏡下手術や子宮鏡下手術、子宮頚部初期病変手術に関する実績が多数あり、手術は専門医・認定医が積極的に行っています。隣接の三宅医院 生殖医療センターで不妊治療をされている方であれば生殖外科手術も可能です。<br> ⇒
						 <a href="#">実績はこちら</a></p>
					 </div>
					 <p class="image"><img src="../assets/img/fujinka/img_03.png" srcset="../assets/img/fujinka/img_03.png 1x,../assets/img/fujinka/img_03@2x.png 2x" alt=""></p>

					</section>
					<section class="item">
					 <div class="detail">
						<h3 class="title">がん化しやすい病変の継続診療専門外来</h3>
						<p class="txt">子宮頸部の将来がん化する可能性がある前がん病変を子宮頸部異形成（CIN）といいます。この前がん病変を継続して診療するための「CIN外来」を設け、専門医が診療にあたっています。 ⇒
						 <a href="#">CIN外来についてはこちら</a></p>
					 </div>
					 <p class="image"><img src="../assets/img/fujinka/img_04.png" srcset="../assets/img/fujinka/img_04.png 1x,../assets/img/fujinka/img_04@2x.png 2x" alt=""></p>

					</section>
				 </div>
```
*/

.modListItem02 .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	min-height: 400px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modListItem02 .item .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 30px 70px 0 0;
	position: relative;
}

.modListItem02 .item .detail:before {
	content: "";
	background-image: url(../img/common/deco02_01.png);
	width: 84px;
	height: 221px;
	position: absolute;
	top: -100px;
	left: -80px;
}

.modListItem02 .item .detail:after {
	content: "";
	background-image: url(../img/common/deco02_03.png);
	width: 150px;
	height: 342px;
	position: absolute;
	top: -50px;
	right: -25px;
}

.modListItem02 .item .image {
	width: 38%;
	max-width: 390px;
	text-align: center;
}

.modListItem02 .item .image:before {
	content: "";
	background-image: url(../img/common/deco02_02.png);
	width: 84px;
	height: 78px;
	position: absolute;
	top: 35px;
	right: 5px;
}

.modListItem02 .item .title {
	margin-bottom: 30px;
	position: relative;
	z-index: 10;
	font-size: 25px;
	font-size: 2.5rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	color: #534741;
	line-height: 1.5;
}

.modListItem02 .item .title .br {
	display: block;
}

.modListItem02 .item:nth-child(2n) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.modListItem02 .item:nth-child(2n) .detail {
	padding: 30px 0 0 50px;
}

.modListItem02 .item:nth-child(2n) .detail:before {
	top: -100px;
	left: 690px;
}

.modListItem02 .item:nth-child(2n) .detail:after {
	top: -10px;
	left: -110px;
}

.modListItem02 .item:nth-child(2n) .image:before {
	top: 35px;
	right: 1095px;
}

/*
#styleguide
modListSick01

```
<dl class="modListSick01">
	<dt>タイトル</dt>
	<dd>
		<ul class="list">
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li class="span2">.span2長いテキスト長いテキストwith50%になる</li>
			<li>テキスト</li>
			<li>テキスト</li>
		</ul>
	</dd>
	<dt>タイトル</dt>
	<dd>
		<ul class="list list_column02">
			<li>長いテキストがはいる長いテキストがはいる</li>
			<li>長いテキストがはいる長いテキストがはいる</li>
			<li>テキスト</li>
			<li>長いテキストがはいる長いテキストがはいる</li>
		</ul>
	</dd>
	<dt>線がないパターン</dt>
	<dd>
		<ul class="list list_type02">
			<li>.list_type02</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
		</ul>
	</dd>
	<dt>タイトル</dt>
	<dd>
		<ul class="list list_type02">
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
		</ul>
		<p class="modBtnBox"><a href="#" class="modBtn01">ボタンも入る</a></p>
	</dd>
</dl>
<br>
奇数・全列埋まらない場合
<dl class="modListSick01">
	<dt>タイトル</dt>
	<dd>
		<ul class="list">
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li class="space"></li>
			<li class="space"></li>
			<li class="space"></li>
		</ul>
	</dd>
	<dt>タイトル</dt>
	<dd>
		<ul class="list list_column02">
			<li>長いテキストがはいる長いテキストがはいる</li>
			<li>長いテキストがはいる長いテキストがはいる</li>
			<li>テキスト</li>
			<li class="space"></li>
		</ul>
	</dd>
</dl>
<br>
幅が広いパターン
<dl class="modListSick01 modListSick01_wide">
	<dt>タイトル</dt>
	<dd>
		<ul class="list">
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
			<li>テキスト</li>
		</ul>
	</dd>
</dl>
```
*/

.modListSick01 {
	border: solid 1px #489aca;
	border-radius: 10px;
	overflow: hidden;
	max-width: 880px;
	margin: 0 auto;
}

.modListSick01_wide {
	max-width: 980px;
}

.modListSick01 > dt {
	background-color: #e8f3f9;
	padding: 12px;
	text-align: center;
	font-weight: bold;
	font-size: 23px;
	font-size: 2.3rem;
	line-height: 1.5;
}

.modListSick01 > dt:first-child {
	border-radius: 10px 10px 0 0;
}

.modListSick01 > dd + dt {
	border-top: solid 1px #489aca;
}

.modListSick01 > dd {
	background-color: #fff;
	padding-bottom: 40px;
}

.modListSick01 .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.modListSick01 .list_type02 {
	padding: 30px 70px 0;
}

.modListSick01 .list li {
	width: 25%;
	padding: 10px 10px 10px 45px;
	position: relative;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
}

.modListSick01 .list li:before {
	content: "";
	width: 14px;
	height: 14px;
	background-color: #489aca;
	border-radius: 50%;
	position: absolute;
	top: calc(10px + 0.38em);
	left: 25px;
}

.modListSick01 .list li.span2 {
	width: 50%;
}

.modListSick01 .list li.space:before {
	display: none;
}

.modListSick01 .list:not(.list_type02) li {
	border-top: dashed 1px #489aca;
}

.modListSick01 .list:not(.list_type02) li:nth-child(1),
.modListSick01 .list:not(.list_type02) li:nth-child(2) {
	border-top: none;
}

.modListSick01 .list:not(.list_column02) li:nth-child(3),
.modListSick01 .list:not(.list_column02) li:nth-child(4) {
	border-top: none;
}

.modListSick01 .list_column02 li {
	width: 50%;
}

/*
#styleguide
modListMark

```
<ul class="modListMark modListMark_pink">
<li>婦人科専門医</li>
<li>乳腺外来専門医</li>
<li>お食事付き</li>
<li>セレクトリラクゼーション</li>
</ul>
<ul class="modListMark modListMark_blue">
<li>婦人科専門医</li>
<li>乳腺外来専門医</li>
<li>お食事付き</li>
<li>セレクトリラクゼーション</li>
</ul>
<ul class="modListMark modListMark_yellow">
<li>婦人科専門医</li>
<li>乳腺外来専門医</li>
<li>お食事付き</li>
<li>セレクトリラクゼーション</li>
</ul>
```
*/

.modListMark {
	margin-top: 20px;
}

.modListMark li {
	display: inline-block;
	color: #fff;
	border-radius: 10px;
	margin: 2px;
	padding: 3px 7px;
	font-size: 13px;
	font-size: 1.3rem;
}

.modListMark_pink li {
	background: #e8a8b5;
}

.modListMark_blue li {
	background: #90a8d8;
}

.modListMark_yellow li {
	background: #d2b761;
}

/*
#styleguide
modListFlower

```
<ul class="modListFlower">
<li>身体計測</li>
<li>血液検査</li>
<li>尿検査</li>
<li class="redFlower">赤いお花は「.redFlower」をつけます</li>
</ul>
```
*/

.modListFlower li {
	position: relative;
	display: inline-block;
	margin: 0 30px 0px 0;
	padding-left: 30px;
}

.modListFlower li:not(:last-child) {
	margin-bottom: 15px;
}

.modListFlower li:before {
	position: absolute;
	content: "";
	display: block;
	width: 23px;
	height: 23px;
	left: 0;
	background: url(../../assets/img/common/icon_flower.png) no-repeat top left;
	background-size: 100% auto;
}

.modListFlower li.redFlower:before {
	background: url(../../assets/img/common/icon_flower_color02.png) no-repeat top left;
	background-size: 100% auto;
}

.modListFlower .sub {
	font-size: 13px;
	font-size: 1.3rem;
}

.modListFlower .label {
	display: block;
	font-weight: bold;
}

.modListFlower_type02 li {
	display: block;
}

/*
#styleguide
modListFlower02

```
<ul class="modListFlower02">
<li>HPV検査</li>
<li>経膣超音波検査</li>
<li>血液検査</li>
<li>おりもの検査</li>
<li>性病検査</li>
<li>コルポスコピー</li>
<li>パンチ生検</li>
<li>子宮鏡検査</li>
<li class="space"></li>
</ul>
```
*/

.modListFlower02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.modListFlower02 li {
	width: 33.3%;
	padding: 10px 10px 10px 45px;
	color: #439e76;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
	position: relative;
	font-size: 18px;
	font-size: 1.8rem;
	border-top: dashed 1px #469c77;
}

.modListFlower02 li:nth-child(1),
.modListFlower02 li:nth-child(2),
.modListFlower02 li:nth-child(3) {
	border-top: none;
}

.modListFlower02 li:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../img/common/icon_flower03.png) no-repeat left 0.3em;
	background-size: 20px auto;
	position: absolute;
	top: 10px;
	left: 20px;
}

.modListFlower02 li.space:before {
	display: none;
}

/*
#styleguide
modListFlower03

.modBlockBoxの中に入ります。
```
<div class="modListFlower03">
	<ul>
		<li>視力検査</li>
		<li>眼圧検査</li>
		<li>屈折検査</li>
	</ul>
	<ul>
		<li>OCT検査</li>
		<li>眼底検査</li>
		<li>前眼部検査</li>
	</ul>
</div>
```
*/

.modListFlower03 {
	padding: 30px 0;
}

.modListFlower03 ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0 0 100px;
}

.modListFlower03 ul:not(:first-child) {
	border-top: dashed 1px #439e76;
}

.modListFlower03 li {
	width: 33.3%;
	padding: 20px 10px 20px 30px;
	background-image: url(../img/common/icon_flower02.png);
	background-repeat: no-repeat;
	background-size: 22px auto;
	background-position: left center;
	position: relative;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	color: #439e76;
}

/*
#styleguide
modListCase

```
<dl class="modListCase">
<dt>例えばこんなこと</dt>
<dd>
<ul>
<li>おなかが痛い</li>
<li>不正出血がある</li>
<li>月経前のイライラ</li>
<li>月経がこない</li>
<li>陰部がかゆい</li>
<li>更年期症状</li>
<li>生理痛がつらい</li>
</ul>
</dd>
</dl>
<br>
画像パターン
<dl class="modListCase">
	<dt>例えばこんなこと</dt>
	<dd class="image">
		<picture>
			<source srcset="/assets/img/ganka/sinryo/case01@2x.png" media="(max-width:600px)">
			<img src="/assets/img/ganka/sinryo/case01.png" alt="保険診療の例">
		</picture>
	</dd>
</dl>
```
*/

.modListCase {
	margin-bottom: 20px;
}

.modListCase dt {
	color: #e7ab63;
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	position: relative;
}

.modListCase dt:after {
	position: absolute;
	content: "";
	display: block;
	width: 260px;
	height: 7px;
	left: 50%;
	bottom: -10px;
	margin-left: -130px;
	background-image: -webkit-linear-gradient(135deg, transparent 40%, #e7ab63 40%, #e7ab63 50%, transparent 50%, transparent 90%, #e7ab63 90%, #e7ab63);
	background-image: linear-gradient(-45deg, transparent 40%, #e7ab63 40%, #e7ab63 50%, transparent 50%, transparent 90%, #e7ab63 90%, #e7ab63);
	background-size: 6px 6px;
}

.modListCase dd {
	padding: 30px 0;
}

.modListCase dd ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modListCase dd ul li {
	text-align: center;
	display: inline-block;
	color: #736357;
	background-color: #f0d098;
	border-radius: 5px;
	margin: 5px 2px;
	padding: 5px 10px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0;
}

.modListCase dd.image {
	text-align: center;
}

/*
#styleguide
modListArrow

```
<ul class="modListArrow">
<li>子宮筋腫</li>
<li>子宮内膜症</li>
<li>子宮腺筋症</li>
<li>子宮頸管ポリープ</li>
<li>子宮内膜ポリープ</li>
<li>子宮頸癌</li>
<li>子宮体癌</li>
</ul>
```
*/

.modListArrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.modListArrow li {
	width: 25%;
	padding: 10px 10px 10px 40px;
	position: relative;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.5;
}

.modListArrow li:before {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	color: #489aca;
	display: inline-block;
	margin-right: 8px;
	font-weight: normal;
}

.modListArrow li a {
	text-decoration: none;
}

.modListArrow span {
	font-size: 11px;
	font-size: 1.1rem;
	display: block;
	margin-left: 20px;
	letter-spacing: 0;
}

.modListArrow span.nowrap {
	white-space: nowrap;
}

/*
#styleguide
modFoundList

```
<dl class="modFoundList">
<dt>わかること</dt>
<dd>腫瘍の有無・大きさや形／石灰化の有無</dd>
</dl>
```
*/

.modFoundList {
	margin-top: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}

.modFoundList dt {
	float: left;
	font-size: 16px;
	font-size: 1.6rem;
	color: #fff;
	padding: 0 10px;
	margin-right: 15px;
	background-color: #736357;
	line-height: 28px;
	border-radius: 14px;
	letter-spacing: 0;
}

/*
#overview
form
*/

/*
#styleguide
modFormTbl

```
<table class="modFormTbl">
<tbody>
<tr>
<th scope="row"><span class="modFormRequired">お名前</span></th>
<td><ul class="modFormName">
<li>
<input type="text" placeholder="姓" class="error">
</li>
<li>
<input type="text" placeholder="名" class="error">
</li>
</ul>
<p class="modFormErrorTxt">お名前を入力してください</p></td>
</tr>
</tbody>
</table>
```
*/

.modFormTbl {
	font-size: 16px;
	font-size: 1.6rem;
	table-layout: fixed;
	margin-bottom: 10px; /* .modFormTbl */
}

.modFormTbl th,
.modFormTbl td {
	padding-bottom: 30px;
	vertical-align: top;
}

.modFormTbl th {
	width: 260px;
	padding-top: 0.5em;
}

.modFormTbl input[type="text"],
.modFormTbl input[type="email"],
.modFormTbl input[type="password"],
.modFormTbl textarea,
.modFormTbl select {
	background-color: #fff;
	border: solid 3px #fff;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 15px;
	font-size: 1.5rem;
}

.modFormTbl input[type="text"]:focus,
.modFormTbl input[type="email"]:focus,
.modFormTbl input[type="password"]:focus,
.modFormTbl textarea:focus,
.modFormTbl select:focus {
	border-color: #A3A3A3;
	outline: none;
}

.modFormTbl input[type="text"].inline,
.modFormTbl input[type="email"].inline,
.modFormTbl input[type="password"].inline,
.modFormTbl textarea.inline,
.modFormTbl select.inline {
	width: auto;
}

.modFormTbl input[type="text"].small,
.modFormTbl input[type="email"].small,
.modFormTbl input[type="password"].small,
.modFormTbl textarea.small,
.modFormTbl select.small {
	max-width: 240px;
}

.modFormTbl input[type="text"].error,
.modFormTbl input[type="email"].error,
.modFormTbl input[type="password"].error,
.modFormTbl textarea.error,
.modFormTbl select.error {
	border-color: #ff4a4b !important;
}

.modFormTbl input[type="text"],
.modFormTbl input[type="email"],
.modFormTbl input[type="password"],
.modFormTbl textarea,
.modFormTbl select {
	width: 100%;
}

.modFormTbl textarea {
	vertical-align: top;
}

.modFormTbl textarea::-webkit-input-placeholder {
	color: #999999;
}

.modFormTbl textarea::-moz-placeholder {
	color: #999999;
}

.modFormTbl textarea:-ms-input-placeholder {
	color: #999999;
}

.modFormTbl input::-webkit-input-placeholder {
	color: #999999;
}

.modFormTbl input::-moz-placeholder {
	color: #999999;
}

.modFormTbl input:-ms-input-placeholder {
	color: #999999;
}

.modFormTbl input[type="text"][disabled],
.modFormTbl input[type="email"][disabled],
.modFormTbl input[type="password"][disabled],
.modFormTbl textarea[disabled] {
	background-color: #ECEBEB;
}

.modFormRequired {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	background-image: url(../img/common/icon_flower_color02.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 22px auto;
	padding: 0 30px 0 0;
}

.modFormName {
	display: table;
	width: 100%;
	table-layout: fixed; /* .modFormName */
}

.modFormName li {
	display: table-cell;
	vertical-align: middle;
	padding: 0 7px 0 0;
}

.modFormName li:last-child {
	padding: 0 0 0 7px;
}

.modFormDate {
	display: table;
	width: 100%;
	table-layout: fixed; /* .modFormDate */
}

.modFormDate li {
	display: table-cell;
	vertical-align: middle;
}

.modFormDate .txt {
	width: 46px;
	text-align: center;
}

.modFormTel { /* .modFormTel */
}

.modFormTel:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.modFormTel ul {
	margin: 0 -1%;
}

.modFormTel li {
	float: left;
	width: 31.3%;
	margin: 0 1%;
}

.modFormAddr { /* .modFormAddr */
}

.modFormAddr li {
	margin-bottom: 15px;
}

.modFormAddr .zip {
	display: table;
}

.modFormAddr .zip .input,
.modFormAddr .zip .btn,
.modFormAddr .zip .txt {
	display: table-cell;
	vertical-align: middle;
}

.modFormAddr .zip .input {
	width: 227px;
	padding: 0 17px 0 0;
}

.modFormAddr .zip .btn {
	width: 150px;
	padding: 0 17px 0 0;
}

.modFormAddr .zip .btn a {
	display: block;
	padding: 8px 0;
	background-color: #fff;
	border: solid 1px #534741;
	border-radius: 5px;
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}

.modFormCheck {
	font-size: 16px;
	font-size: 1.6rem; /* .modFormCheck */
}

.modFormCheck a:hover {
	opacity: 0.6;
}

.modFormCheck .inner {
	display: block;
	position: relative;
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
}

.modFormCheck input {
	margin-right: 5px;
}

.modFormSubTxt {
	margin: 5px 0 0;
}

.modFormErrorTxt {
	margin: 6px 0 0;
	color: #ff4a4b;
	font-weight: bold;
}

.modFormConf {
	font-size: 16px;
	font-size: 1.6rem;
}

.modFormConf dt {
	border-bottom: dashed 2px #F3DAD1;
	margin: 0 0 10px;
	padding: 0 0 4px;
}

.modFormConf dd {
	padding: 0 22px;
	margin: 0 0 50px;
}

/*
#overview
modNav
*/

/*
#styleguide
modNav01

```
<div class="modNav01">
	<ul>
		<li><a href="#">がん検診</a></li>
		<li><a href="#">その他</a></li>
	</ul>
</div>
<div class="modNav01">
	<ul>
		<li><a href="#">画像検査</a></li>
		<li class="active"><a href="#">がん検診</a></li>
		<li class="option"><a href="#">その他</a></li>
		<li class="small"><a href="#">小さいテキスト</a></li>
	</ul>
</div>
<div class="modNav01">
	<ul>
		<li><a href="#">画像検査</a></li>
		<li><a href="#">がん検診</a></li>
		<li><a href="#">その他</a></li>
		<li><a href="#">長いテキスト長いテキスト長いテキスト</a></li>
		<li><a href="#">その他</a></li>
		<li><a href="#">その他</a></li>
		<li><a href="#">その他</a></li>
	</ul>
</div>
<br>
<br>
最大6つパターン modNav01_max06
<div class="modNav01 modNav01_max06 modNav01_deco">
	<ul>
		<li><a href="#fujinka">婦人科</a></li>
		<li><a href="#nyusen">乳腺外科</a></li>
		<li><a href="#naika">内科</a></li>
		<li><a href="#masui">麻酔科</a></li>
		<li><a href="#noushin">頭痛・しびれ外来</a></li>
		<li><a href="#hoshasen">放射線科</a></li>
	</ul>
</div>
<br>
<br>
幅いっぱい3カラムパターン
<div class="modNav01 modNav01_column03 modNav01_tab">
	<ul>
		<li><a href="voice01">手術患者様の声</a></li>
		<li><a href="voice02">外来患者様の声</a></li>
		<li><a href="voice03">人間ドック受診者様の声</a></li>
	</ul>
</div>
<br>
<br>
左寄せパターン
<div class="modNav01 modNav01_left">
	<ul>
		<li><a href="#">手術患者様の声</a></li>
		<li><a href="#">手術患者様の声</a></li>
		<li><a href="#">手術患者様の声</a></li>
		<li><a href="#">手術患者様の声</a></li>
		<li><a href="#">手術患者様の声</a></li>
	</ul>
</div>

<div class="modBlockInner modBlockInner_bg08">
	<div class="container">
		<header class="modTitle01 modTitle01_nodeco">
			<h2 class="title"><span class="main">タイトル</span><span class="en">Feature</span></h2>
		</header>
		<div class="modNav01 modNav01_deco">
			<ul>
				<li><a href="#">画像検査</a></li>
				<li><a href="#">がん検診</a></li>
				<li><a href="#">がん検診</a></li>
				<li><a href="#">その他</a></li>
			</ul>
		</div>
	</div>
</div>
タイトルがない場合は親要素にhiddenを入れる必要があるかも modNav01Wrapper
<div class="modBlockInner modNav01Wrapper modBlockInner_bg08">
	<div class="container">
		<div class="modNav01 modNav01_deco">
			<ul>
				<li><a href="#">画像検査</a></li>
				<li><a href="#">がん検診</a></li>
				<li><a href="#">がん検診</a></li>
				<li><a href="#">その他</a></li>
			</ul>
		</div>
	</div>
</div>

<p>.modNav01_tab<br>
タブになるclass<br>
タブの中身のstyleは各自。</p>
<p>disabledclassをつけると移動しません。&色変わります</p>
<div class="modNav01 modNav01_tab">
	<ul>
		<li><a href="voice01">手術患者様の声</a></li>
		<li class="active"><a href="voice02">外来患者様の声</a></li>
		<li class="disabled"><a>人間ドック受診者様の声</a></li>
	</ul>
</div>
```
*/

.modNav01 {
	max-width: 990px;
	position: relative;
	margin: 0 auto;
}

.modNav01 + * {
	margin-top: 40px;
}

.modNav01Wrapper {
	overflow: hidden;
}

.modNav01_deco:before {
	content: "";
	background-image: url(../img/common/deco03_01.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 74px;
	height: 76px;
	position: absolute;
	top: -46px;
	left: -64px;
}

.modNav01_deco:after {
	content: "";
	background-image: url(../img/common/deco03_02.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 121px;
	height: 163px;
	position: absolute;
	top: -80px;
	right: -80px;
}

.modNav01 ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modNav01_left ul {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav01 li {
	width: 25%;
	padding: 0 8px;
	margin: 15px 0 0;
	position: relative;
}

.modNav01 li.txtSmall a{
	font-size: 16px;
}

.modNav01 li:after {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: -1px;
	width: 4px;
	border-left: dashed 1px #b98747;
}

.modNav01 li:last-child:before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: -1px;
	width: 4px;
	border-right: dashed 1px #b98747;
}

.modNav01 li:nth-child(4n):before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: -1px;
	width: 4px;
	border-right: dashed 1px #b98747;
}

.modNav01_max06 li {
	width: 16.6%;
}

.modNav01_max06 li:nth-child(4n):not(:nth-child(6n)):not(:last-child):before {
	display: none;
}

.modNav01_max06 li:nth-child(6n):before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: -1px;
	width: 4px;
	border-right: dashed 1px #b98747;
}

.modNav01_column03 li {
	width: 33.3%;
}

.modNav01 a {
	display: block;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	padding: 5px;
	min-height: 65px;
	text-decoration: none;
	font-size: 22px;
	font-size: 2.2rem;
	text-align: center;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	line-height: 1.5;
	font-weight: bold;
	color: #736357;
}

.modNav01 a:hover {
	background-color: #fffdf8;
}

.modNav01 .active a {
	background-color: #ede2b9;
}

.modNav01 .disabled a {
	background-color: #f9f9f9;
}

.modNav01 .disabled a:hover {
	background-color: #f9f9f9;
	opacity: 1;
}

.modNav01 .option a {
	color: #e2929d;
}

.modNav01 .spacing a {
	letter-spacing: -0.1em;
}

.modNav01 .small a {
	font-size: 18px;
	font-size: 1.8rem;
}

.modNav01_max06 a {
	font-size: 20px;
	font-size: 2rem;
}

/*
#styleguide
modNav02

```
<div class="modNav02">
	<a href="#" class="item">
		<div class="inner">
			<div class="image"><img src="../assets/img/common/img_dummy03.png" srcset="../assets/img/common/img_dummy03.png 1x,../assets/img/common/img_dummy03@2x.png 2x" alt=""></div>
			<div class="detail">
				<p class="title">タイトル</p>
				<p class="txt">ここの文字量によってタイトルのmarginが変動しちゃっているみたいですが、統一で。<br>
				変だったらdetail上paddingを調整してしまう。</p>
			</div>
		</div>
	</a>
	<a href="#" class="item">
		<div class="inner">
			<div class="image"><img src="../assets/img/common/img_dummy03.png" srcset="../assets/img/common/img_dummy03.png 1x,../assets/img/common/img_dummy03@2x.png 2x" alt=""></div>
			<div class="detail">
				<p class="title">タイトル</p>
				<p class="txt">コピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピー</p>
			</div>
		</div>
	</a>
	<a href="#" class="item">
		<div class="inner">
			<div class="image"><img src="../assets/img/common/img_dummy03.png" srcset="../assets/img/common/img_dummy03.png 1x,../assets/img/common/img_dummy03@2x.png 2x" alt=""></div>
			<div class="detail">
				<p class="title">タイトル</p>
				<p class="txt">コピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピーコピー</p>
			</div>
		</div>
	</a>
</div>

<div class="modNav02 modNav02_type02">
	<a href="/dockkenshin/option/" class="item">
		<div class="inner">
			<div class="image"><img src="../assets/img/dockkenshin/top/img_check06.png" srcset="../assets/img/dockkenshin/top/img_check06.png 1x,../assets/img/dockkenshin/top/img_check06@2x.png 2x" alt=""></div>
			<div class="detail">
			<p class="title">オプション検査（コースに追加できます）</p>
			<p class="txt">
			オプション検査も充実しています。お選びのコースに希望のオプション検査を加えて、気になるところをさらに詳しく検査することができます。『MRI』はオプションで加えることができます。
			</p>
			</div>
		</div>
	</a>
</div>
```
*/

.modNav02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav02 .item {
	display: block;
	width: 48%;
	margin-top: 50px;
}

.modNav02 .item:nth-child(1),
.modNav02 .item:nth-child(2) {
	margin-top: 0;
}

.modNav02 a.item {
	text-decoration: none;
}

.modNav02 .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav02 .image {
	width: 27%;
	max-width: 258px;
}

.modNav02 .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px 0 0 36px;
}

.modNav02 .detail .step {
	display: inline-block;
	background: #e8a8b5;
	padding: 2px 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	color: #fff;
}

.modNav02 .detail .title {
	margin-bottom: 5px;
	font-weight: bold;
	color: #534741;
}

.modNav02 .detail .title:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	position: relative;
	top: -0.12em;
	display: inline-block;
	margin: 0 0 0 10px;
	font-weight: normal;
	font-size: 15px;
}

.modNav02 .detail .txt {
	font-size: 13px;
	font-size: 1.3rem;
}

.modNav02_type02 {
	max-width: 740px;
	background: #fff;
	border-radius: 20px;
	margin: 50px auto;
	padding: 30px;
}

.modNav02_type02 .item {
	width: 100%;
	margin-top: 20px;
}

.modNav02_type02 .item:nth-child(2n) {
	margin-top: 20px;
}

.modNav02_type02 .image {
	width: 108px;
}

.modNav02_type02 .detail {
	padding-top: 0;
}

.modNav02_top .detail {
	padding-top: 0;
}

/*
#styleguide
modNav03

奇数の場合はspace入れる
```
<div class="modBlockInner modNav03">
<div class="container">

 <ul class="list">
  <li>
   <a href="/fujinka/sinryo/">

    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav08.png" alt=""></p>
     <p class="title">診療内容</p>
    </div>

   </a>
  </li>
  <li>
   <a href="/fujinka/shujyutsu/">

    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav09.png" alt=""></p>
     <p class="title">手術について</p>
    </div>

   </a>
  </li>
  <li>
   <a href="#">
    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav10.png" alt=""></p>
     <p class="title">入院される方へ</p>
    </div>
   </a>
  </li>
  <li>
   <a href="/fujinka/senmon/">
    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav11.png" alt=""></p>
     <p class="title">専門外来</p>
    </div>
   </a>
  </li>
  <li>
   <a href="/fujinka/kensa/">
    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav07.png" alt=""></p>
     <p class="title">検査</p>
    </div>
   </a>
  </li>
  <li class="space">
  </li>
 </ul>
</div>
</div>
<div class="modBlockInner modNav03">
<div class="container">
 <ul class="list list_column02">
  <li>
   <a href="/fujinka/sinryo/">

    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav08.png" alt=""></p>
     <p class="title">診療内容</p>
    </div>

   </a>
  </li>
  <li>
   <a href="/fujinka/shujyutsu/">

    <div class="inner">
     <p class="icon"><img src="../assets/img/common/icon_nav09.png" alt=""></p>
     <p class="title">手術について</p>
    </div>

   </a>
  </li>
 </ul>
</div>
</div>
```
*/

/*ドック下*/
.modNav13 {
	background: #fff;
}

.modNav13 .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav13 .list li {
	position: relative;
	width: 25%;
	margin: 10px 0;
	padding: 40px 10px;
	border-right: dashed 1px #b98747;
}

.modNav13 .list li:first-child,
.modNav13 .list li:nth-child(5n) {
	border-left: dashed 1px #b98747;
}

.modNav13 .list li:nth-child(5):after,
.modNav13 .list li:nth-child(6):after,
.modNav13 .list li:nth-child(7):after,
.modNav13 .list li:nth-child(8):after {
	content: "";
	display: block;
	position: absolute;
	width: 94%;
	height: 1px;
	border-top: dashed 1px #b98747;
	top: -10px;
}

.modNav13 .list li a {
	display: block;
	text-decoration: none;
}

.modNav13 .list li .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modNav13 .list li .icon,
.modNav13 .list li .title {
	display: inline-block;
	vertical-align: middle;
}

.modNav13 .list li .icon {
	margin: 0 15px 0 20px;
	text-align: center;
	width: 75px;
}

.modNav13 .list li .title {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.4;
}

.modNav13 .list {
	margin-right: auto;
	margin-left: auto;
}

.modNav13 .list_column02 {
	max-width: 700px;
}

.modNav13 .list_column02 li {
	width: 50%;
}

.modNav13 .list_column02 li:nth-child(3) {
	border-left: dashed 1px #b98747;
}

.modNav13 .list_column02 li:nth-child(3):after {
	content: "";
	display: block;
	position: absolute;
	width: 94%;
	height: 1px;
	border-top: dashed 1px #b98747;
	top: -10px;
}

.modNav13 .list_column02 li:nth-child(4n) {
	border-left: none;
}

.modNav13_type02 .list {
	max-width: 100%;
}

.modNav13_type02 .list li .title {
	margin: 0 auto;
	font-weight: bold;
	padding: 40px 0;
}

.modNav13_type02 .list li .title:before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url(../img/common/arrow01.svg);
	margin-right: 5px;
}


/*保存用*/
.modNav03 {
	background: #fff;
}

.modNav03 .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav03 .list li {
	position: relative;
	width: 33.3%;
	margin: 10px 0;
	padding: 40px 10px;
	border-right: dashed 1px #b98747;
}

.modNav03 .list li:first-child,
.modNav03 .list li:nth-child(4n) {
	border-left: dashed 1px #b98747;
}

.modNav03 .list li:nth-child(4):after,
.modNav03 .list li:nth-child(5):after,
.modNav03 .list li:nth-child(6):after {
	content: "";
	display: block;
	position: absolute;
	width: 94%;
	height: 1px;
	border-top: dashed 1px #b98747;
	top: -10px;
}

.modNav03 .list li a {
	display: block;
	text-decoration: none;
}

.modNav03 .list li .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modNav03 .list li .icon,
.modNav03 .list li .title {
	display: inline-block;
	vertical-align: middle;
}

.modNav03 .list li .icon {
	margin: 0 15px 0 20px;
	text-align: center;
	width: 75px;
}

.modNav03 .list li .title {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.4;
}

.modNav03 .list {
	margin-right: auto;
	margin-left: auto;
}

.modNav03 .list_column02 {
	max-width: 700px;
}

.modNav03 .list_column02 li {
	width: 50%;
}

.modNav03 .list_column02 li:nth-child(3) {
	border-left: dashed 1px #b98747;
}

.modNav03 .list_column02 li:nth-child(3):after {
	content: "";
	display: block;
	position: absolute;
	width: 94%;
	height: 1px;
	border-top: dashed 1px #b98747;
	top: -10px;
}

.modNav03 .list_column02 li:nth-child(4n) {
	border-left: none;
}

.modNav03_type02 .list {
	max-width: 100%;
}

.modNav03_type02 .list li .title {
	margin: 0 auto;
	font-weight: bold;
	padding: 40px 0;
}

.modNav03_type02 .list li .title:before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url(../img/common/arrow01.svg);
	margin-right: 5px;
}

/*
#overview
other
*/

/*
#styleguide
xxxxx

```
コード
```
*/

/*↓消さないこと*/

.modLoading {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.8);
}

.modLoading i {
	font-size: 24px;
	font-size: 2.4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
}

/*↑消さないこと*/

.modCategory01 {
	display: block;
	border-radius: 6px;
	padding: 6px 5px;
	background-color: #808fb4;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}

.modCategory02 {
	display: block;
	border-radius: 6px;
	padding: 6px 5px;
	background-color: #e2929d;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}

.modCategory03 {
	display: block;
	border-radius: 6px;
	padding: 6px 5px;
	background-color: #87c2e3;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}

.modCategory04 {
	display: block;
	border-radius: 6px;
	padding: 6px 5px;
	background-color: #d8c17a;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}

.modPartsImage,
.modPartsImageList,
.modPartsYoutube,
.modPartsTxt {
	margin: 0 0 40px;
}

.modPartsImage {
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	color: #959595;
	font-size: 11px;
	font-size: 1.1rem;
}

.modPartsImage .caption {
	margin: 5px 0 0;
}

.modPartsImage a:hover {
	opacity: 0.8;
}

.modPartsTitle {
	border-bottom: solid 1px #333;
	padding: 0 0 4px;
	margin: 0 0 20px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}

.modPartsImageList {
	overflow: hidden;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.modPartsImageList ul {
	margin: 0 -1.5%;
}

.modPartsImageList ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.modPartsImageList li {
	float: left;
	width: 47%;
	margin: 0 1.5%;
}

.modPartsImageList_column03 li {
	width: 30.3%;
	margin-left: 1.5%;
	margin-right: 1.5%;
}

.modPartsYoutube {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.modPartsTxt iframe {
	width: 100%;
	height: 400px;
}

.modPartsTxt ul {
	margin-left: 2em;
}

.modPartsTxt ul li {
	list-style: disc;
}

.modPartsTxt ol {
	margin-left: 2.2em;
}

.modPartsTxt ol li {
	list-style: decimal;
}

.modPartsTxt strong,
.modPartsTxt th {
	font-weight: bold;
}

.modPartsTxt .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.modPartsTxt img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

.modPartsTxt img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
}

.modPartsTxt .alignright {
	float: right;
}

.modPartsTxt .alignleft {
	float: left;
}

.modPartsTxt strong {
	font-weight: bold;
}

.modPartsSet02 .inner {
	margin: 0 -2%;
}

.modPartsSet02 .inner:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.modPartsSet02 .box {
	float: left;
	width: 46%;
	margin: 0 2%;
}

@media all and (-ms-high-contrast: none) {

.modNav03_type02 .list li .title {
	letter-spacing: 0.1em;
}

}

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

.modPageTitle01 {
	margin-right: 15px;
	margin-left: 15px;
}

}

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

.modNav01_deco:before {
	display: none;
}

.modNav01_deco:after {
	display: none;
}

}

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

.modBlockLead01 .detail:before {
	display: none;
}

.modBlockLead01 .image:before {
	display: none;
}

.modBlockLead02 .image:before {
	display: none;
}

.modListItem02 .item .detail:before {
	display: none;
}

.modListItem02 .item .image:before {
	display: none;
}

}

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

#wrapper {
	padding-left: 0;
	padding-bottom: 66px;
	overflow: hidden;
}

#header {
	padding: 0;
}

#header .pcHeader {
	display: none;
}

#header .pcHeader .siteTitle .tel {
	display: none;
}

#header .pcHeader .hNav {
	display: none;
}

#header .spHeader {
	display: block;
}

#side {
	display: none;
}

#footer .info .top {
	display: block;
	width: auto;
}

#footer .info .top .detail,
#footer .info .top .map {
	display: block;
}

#footer .info .top .detail {
	padding: 0;
	margin-bottom: 20px;
}

#footer .info .top .detail .deco {
	display: none;
}

#footer .info .top .map {
	width: auto;
	padding: 0;
	text-align: center;
}

#footer .info .bottom {
	display: block;
	width: auto;
}

#footer .info .bottom .group,
#footer .info .bottom .illust {
	display: block;
}

#footer .info .bottom .group {
	padding-right: 0;
}

#footer .info .bottom .illust {
	width: auto;
	text-align: center;
}

#footer .pageTop {
	bottom: 100px;
}

#footerFixedNav {
	display: block;
}

.container {
	max-width: 750px;
}

.modPcOnly {
	display: none;
}

.modSpOnly {
	display: block;
}

.modPageTitle01 .inner {
	background-image: url(../img/common/bg_title@2x.png);
}

.modPageTitle01_type02 .inner {
	background-image: url(../img/common/bg_title02@2x.png);
	padding-top: 20px;
	padding-bottom: 20px;
}

.modPageTitle01_color02 .inner {
	background-image: url(../img/common/bg_title02@2x.png);
}

.modPageTitle01_color03 .inner {
	background-image: url(../img/common/bg_title03@2x.png);
}

.modPageTitle01_color04 .inner {
	background-image: url(../img/common/bg_title04@2x.png);
}

.modListItem01_column04 {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modListItem01_column04 .item {
	padding-right: 1.5%;
	padding-left: 1.5%;
}

.modListItem01_column05 {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modListItem01_column05 .item {
	width: 31.3%;
	padding-right: 1.5%;
	padding-left: 1.5%;
	margin-top: 30px;
}

.modListItem01_column05 .item:nth-child(1),
.modListItem01_column05 .item:nth-child(2),
.modListItem01_column05 .item:nth-child(3) {
	margin-top: 0;
}

.modListSick01 .list_type02 {
	padding-right: 0;
	padding-left: 0;
}

.modListSick01 .list_type02 {
	padding-top: 20px;
}

.modListArrow span.nowrap {
	white-space: normal;
}

.modFormTbl input[type="text"],
.modFormTbl input[type="email"],
.modFormTbl input[type="password"],
.modFormTbl textarea,
.modFormTbl select {
	font-size: 12px;
	font-size: 1.2rem;
}

.modFormAddr .zip .input {
	width: 150px;
}

.modNav01 a {
	font-size: 14px;
	font-size: 1.4rem;
}

.modNav01 .small a {
	font-size: 14px;
	font-size: 1.4rem;
}

.modNav02 .detail {
	padding: 0 0 0 15px;
}

.modNav03 .list li .icon {
	width: 45px;
	margin: 0 10px;
}

.modNav03 .list li .title {
	font-size: 18px;
	font-size: 1.8rem;
}

.modPartsYoutube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.modPartsYoutube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.modPartsTxt iframe {
	height: 250px;
}

}

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

body > div,
input,
button,
textarea,
select {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
}

#contents .section {
	margin-bottom: 40px;
}

#footer .sitemap {
	padding-bottom: 0;
}

#footer .sitemap .title {
	display: none;
}

#footer .sitemap .btn {
	display: block;
}

#footer .sitemap .menu {
	display: block;
	width: auto;
	padding: 20px 0;
}

#footer .sitemap .menuWrapper {
	display: none;
}

#footer .sitemap .menu .box {
	padding: 0;
	width: auto;
}

#footer .sitemap .menu .box a:before {
	top: 0.2em;
}

#footer .sitemap .menu .box a {
	padding-top: 8px;
	padding-bottom: 8px;
	background-position: left 14px;
}

#footer .info {
	padding: 20px 0;
}

#footer .info .top .department {
	padding: 0 15px;
}

#footer .info .top .box {
	display: block;
	padding: 0 15px;
	margin-bottom: 25px;
}

#footer .info .top .box .tel .num {
	font-size: 30px;
	font-size: 3rem;
}

#footer .info .top .box .tel .time {
	font-size: 11px;
	font-size: 1.1rem;
}

#footer .info .top .box .sns {
	width: auto;
}

#footer .info .top .btnList a {
	padding: 15px 5px;
	margin: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}

#footer .info .top .map {
	margin-bottom: 40px;
}

#footer .info .top .map .btn a {
	padding: 8px 20px;
	font-size: 9px;
	font-size: 0.9rem;
}

#footer .info .bottom .group ul {
	display: block;
}

#footer .info .bottom .group ul li {
	width: auto;
}

#footer .info .bottom .group ul li:not(:last-child) {
	margin-bottom: 15px;
}

#footer .pageTop {
	width: 40px;
	right: 20px;
	bottom: 80px;
}

#cboxClose {
	background-size: 30px !important;
	top: 10px;
	right: 10px !important;
	width: 30px !important;
	height: 30px !important;
}

#cboxPrevious,
#cboxNext {
	background-size: 30px 30px !important;
	width: 30px !important;
	height: 30px !important;
}

.modPageTitle01 .inner {
	padding-top: 20px;
	padding-bottom: 20px;
}

.modPageTitle01 .main {
	font-size: 24px;
	font-size: 2.4rem;
}

.modPageTitle01 .en {
	font-size: 14px;
	font-size: 1.4rem;
}

.modPageTitle01_dockkenshin .inner {
	padding-left: 0;
	padding-right: 0;
}

.modPageTitle01_dockkenshin .inner .title {
	padding-left: 0;
	padding-right: 0;
}

.modPageTitle01_dockkenshin .inner .title .main {
	letter-spacing: 0;
}

.modTitle01 {
	margin-bottom: 15px;
}

.modTitle01 .title {
	padding: 0;
}

.modTitle01 .title:before,
.modTitle01 .title:after {
	display: none;
}

.modTitle01 .main {
	font-size: 26px;
	font-size: 2.6rem;
}

.modTitle01 .en {
	font-size: 16px;
	font-size: 1.6rem;
}

.modTitle02 {
	background-size: 30px auto;
	padding: 5px 0 5px 40px;
	margin-bottom: 15px;
	font-size: 20px;
	font-size: 2rem;
}

.modTitle02_jp {
	font-size: 16px;
	font-size: 1.6rem;
}

.modTitle03 {
	margin-bottom: 15px;
	font-size: 18px;
	font-size: 1.8rem;
}

.modTxtDeco01 {
	font-size: 11px;
	font-size: 1.1rem;
}

.modBtn01 {
	font-size: 15px;
	font-size: 1.5rem;
}

.modBtn01_large {
	font-size: 18px;
	font-size: 1.8rem;
}

.modBtn02 {
	border-radius: 4px;
	padding: 12px;
}

* + .modBtnBox {
	margin-top: 20px;
}

.modBlockInner {
	padding: 20px 0 30px;
}

.modBlockInner02 {
	padding: 40px 0 0;
}

.modBlockLead01 {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modTitle01 + .modBlockLead01 {
	margin-top: 0;
}

.modBlockLead01 + .modBlockInfo01 {
	margin-top: 40px;
}

.modBlockLead01 .detail {
	width: 100%;
	padding: 0;
	margin: 0 0 30px;
}

.modBlockLead01 .detail:after {
	display: none;
}

.modBlockLead01 .image {
	width: 100%;
}

.modBlockLead01 .catch {
	margin-bottom: 15px;
	font-size: 22px;
	font-size: 2.2rem;
}

.modBlockLead01 .catch .br {
	display: inline;
}

.modBlockLead02 .detail {
	width: 100%;
	padding: 0;
	margin: 0 0 30px;
}

.modBlockLead02 .image {
	width: 100%;
	max-width: 100%;
}

.modBlockLead02 .image:after {
	display: none;
}

.modBlockInfo01 {
	display: block;
}

.modBlockInfo01 .item {
	width: auto;
	margin-top: 0;
}

.modBlockInfo01 .item:not(:last-child) {
	margin-bottom: 30px;
}

.modBlockInfo01 .item > dt {
	font-size: 14px;
	font-size: 1.4rem;
	padding: 5px 10px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.modBlockInfo01 .item .sub {
	font-size: 12px;
	font-size: 1.2rem;
}

.modBlockInfo01 .item_long:nth-child(2) {
	margin-top: 30px;
}

.modBlockInfo01 .title {
	font-size: 18px;
	font-size: 1.8rem;
}

.modBlockInfo01 .title .mark {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockInfo01 .subTitle {
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockInfo01 .txt {
	padding: 10px;
	margin: 10px 0;
}

.modBlockInfo01 .column2 {
	display: block;
}

.modBlockInfo01 .column2 .inner {
	width: 100%;
}

.modBlockInfo01 .column2 .inner:not(:last-child) {
	margin-bottom: 15px;
}

.modBlockInfo02 {
	display: block;
}

.modBlockInfo02 .inner {
	width: auto;
	margin-top: 0;
}

.modBlockInfo02 .inner:not(:last-child) {
	margin-bottom: 30px;
}

.modBlockInfo02 .title {
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.modBlockInfo02 .title .num {
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockInfo02 .item > dt {
	display: block;
	margin-bottom: 15px;
}

.modBlockInfo02 .item > dt > span {
	font-size: 14px;
	font-size: 1.4rem;
	padding: 5px 10px;
	border-radius: 5px;
}

.modBlockInfo02 .item > dt.line2 > span {
	font-size: 14px;
	font-size: 1.4rem;
	padding: 5px 10px;
}

.modBlockInfo02 .item > dt.line2 {
	width: 200px;
}

.modBlockInfo02 .item .sub {
	font-size: 12px;
	font-size: 1.2rem;
}

.modBlockInfo02 .item dd {
	display: block;
	padding-left: 0;
}

.modBlockInfo02 .item dd .br {
	display: inline;
}

.modBlockInfo02 .item .modListFlower li {
	display: inline-block;
}

.modBlockInfo02 .item_long:nth-child(2) {
	margin-top: 30px;
}

.modBlockEntryDetail .head {
	display: block;
	width: auto;
	padding: 15px 10px;
	margin-bottom: 20px;
	background-size: auto 2px;
}

.modBlockEntryDetail .head .left,
.modBlockEntryDetail .head .right {
	display: block;
}

.modBlockEntryDetail .head .date {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockEntryDetail .head .title {
	font-size: 18px;
	font-size: 1.8rem;
}

.modBlockEntryDetail .head .right {
	width: auto;
}

.modBlockEntryDetail .main {
	padding: 0 20px 30px;
}

.modBlockEntryDetail .main .modPartsTxt {
	font-size: 12px;
	font-size: 1.2rem;
}

.modBlockEntryDetail .main .btnPdf {
	margin-top: 30px;
}

.modBlockEntryDetail .foot {
	padding: 15px 0;
}

.modBlockBox .headTitle {
	padding: 10px;
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockBox .headTitle:before {
	display: none;
}

.modBlockBox .headTitle:after {
	display: none;
}

.modBlockBox .contents {
	padding: 20px;
}

.modBlockBox_top {
	margin-top: 30px;
}

.modBlockAcdn .acdnBtn {
	font-size: 24px;
	font-size: 2.4rem;
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 20px;
}

.sentenceBlock p.underLine {
	padding-bottom: 30px;
	margin-bottom: 10px;
}

.sentenceBlock .list01 li {
	font-size: 14px;
	font-size: 1.4rem;
}

.sentenceBlock .title01_flower {
	background: none;
}

.sentenceBlock .title01 {
	font-size: 14px;
	font-size: 1.4rem;
	padding: 15px 0 10px;
}

.sentenceBlock .title02 {
	font-size: 16px;
	font-size: 1.6rem;
}

.sentenceBlock .title03 {
	margin-bottom: 20px;
}

.sentenceBlock .imageFloatR {
	float: none;
	text-align: center;
	padding: 0 0 20px 0;
}

.sentenceBlock .imageBlock .imageL {
	padding: 0 0 20px 0;
}

.sentenceBlock .imageBlock .imageR {
	text-align: center;
	padding: 0 0 20px 0;
}

.sentenceBlock .caption {
	margin-top: 10px;
}

.modKensaBlock.underLine {
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.modKensaBlock .detail {
	width: 100%;
	padding: 0;
}

.modKensaBlock .image {
	width: 100%;
	max-width: 100%;
}

.modKensaBlock .title {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 10px;
	padding-left: 20px;
	background-size: 16px auto;
}

.modTbl01 {
	margin-bottom: 40px;
}

.modTbl01 + ul {
	margin-top: -30px;
}

.modTbl01_wrapper {
	margin-bottom: 40px;
}

.modTbl01_wrapper + ul {
	margin-top: -30px;
}

.modTbl01 th,
.modTbl01 td {
	padding: 10px;
}

.modTbl01 th {
	width: 30%;
	font-size: 14px;
	font-size: 1.4rem;
}

.modListItem01 {
	display: block;
}

.modListItem01 .item {
	width: 100%;
}

.modListItem01 .item:not(:last-child) {
	margin-bottom: 30px;
}

.modListItem01_column04 .item {
	width: 100%;
	margin-top: 0;
}

.modListItem01_column05 .item {
	width: 100%;
}

.modListItem01 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modListItem01 .image {
	width: 45%;
	margin-bottom: 0;
}

.modListItem01 .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.modListItem01 .title {
	display: block;
	text-align: left;
}

.modListItem01 .txt_small {
	font-size: 12px;
	font-size: 1.2rem;
}

.modListItem02 .item {
	margin: 0 0 40px;
}

.modListItem02 .item .detail {
	width: 100%;
	padding: 0;
	margin: 0 0 20px;
}

.modListItem02 .item .detail:after {
	display: none;
}

.modListItem02 .item .image {
	width: 100%;
}

.modListItem02 .item .title {
	margin-bottom: 15px;
	font-size: 22px;
	font-size: 2.2rem;
}

.modListItem02 .item .title .br {
	display: inline;
}

.modListItem02 .item:nth-child(2n) .detail {
	width: 100%;
	padding: 0;
	margin: 0 0 30px;
}

.modListSick01 > dt {
	font-size: 18px;
	font-size: 1.8rem;
}

.modListSick01 > dd {
	padding-bottom: 20px;
}

.modListSick01 .list li {
	padding: 10px 0 10px 45px;
	font-size: 15px;
	font-size: 1.5rem;
}

.modListSick01 .list li:before {
	left: 20px;
	top: calc(10px + 0.3em);
}

.modListSick01 .list li.space + .space {
	display: none;
}

.modListSick01 .list li:nth-child(even) + .space {
	display: none;
}

.modListSick01 .list:not(.list_type02):not(.list_column02) li:nth-child(3),
.modListSick01 .list:not(.list_type02):not(.list_column02) li:nth-child(4) {
	border-top: dashed 1px #489aca;
}

.modListSick01 .list:not(.list_column02) li {
	width: 50%;
}

.modListSick01 .list_column02 li {
	width: 100%;
}

.modListSick01 .list_column02 li:nth-child(2) {
	border-top: dashed 1px #489aca !important;
}

.modListSick01 .list_column02 li.space {
	display: none;
}

.modListFlower li {
	padding-left: 25px;
	margin-right: 0;
}

.modListFlower li:before {
	width: 15px;
	height: 15px;
}

.modListFlower li.redFlower:before {
	width: 15px;
	height: 15px;
}

.modListFlower02 li {
	width: 100%;
	padding: 10px 0 10px 25px;
	font-size: 15px;
	font-size: 1.5rem;
}

.modListFlower02 li:nth-child(2),
.modListFlower02 li:nth-child(3) {
	border-top: dashed 1px #469c77;
}

.modListFlower02 li:before {
	left: 0;
	top: 8px;
}

.modListFlower02 li.space + .space {
	display: none;
}

.modListFlower02 li:nth-child(even) + .space {
	display: none;
}

.modListFlower03 {
	padding: 0;
}

.modListFlower03 ul {
	padding: 0;
}

.modListFlower03 li {
	background-size: 18px auto;
	background-position: 8px calc(10px - 0.05em);
	padding: 10px 5px 10px 30px;
	line-height: 1.3;
	font-size: 12px;
	font-size: 1.2rem;
}

.modListCase dd {
	padding: 30px 0 0;
}

.modListCase dd ul li {
	font-size: 12px;
	font-size: 1.2rem;
	box-sizing: border-box;
	width: auto;
	margin: 3px 1px;
}

.modListArrow li {
	width: 50%;
	padding: 10px 0;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: 0;
}

.modFoundList dt {
	font-size: 13px;
	font-size: 1.3rem;
	width: auto;
	line-height: 24px;
	border-radius: 12px;
}

.modFormTbl {
	display: block;
}

.modFormTbl tr,
.modFormTbl tbody,
.modFormTbl th,
.modFormTbl td {
	display: block;
}

.modFormTbl th,
.modFormTbl td {
	padding-bottom: 0;
}

.modFormTbl th {
	width: auto;
	padding: 0;
	margin: 0 0 10px;
}

.modFormTbl th br {
	display: none;
}

.modFormTbl td {
	margin-bottom: 20px;
}

.modFormTbl input[type="text"],
.modFormTbl input[type="email"],
.modFormTbl input[type="password"],
.modFormTbl textarea,
.modFormTbl select {
	border-width: 1px;
}

.modFormRequired {
	background-size: 15px auto;
	padding-right: 20px;
}

.modFormDate select {
	padding: 6px 3px;
}

.modFormDate .txt {
	width: 30px;
}

.modFormAddr .zip .input {
	width: 100px;
	padding-right: 8px;
}

.modFormAddr .zip .btn {
	width: 100px;
	padding-right: 8px;
}

.modFormAddr .zip .btn a {
	font-size: 13px;
	font-size: 1.3rem;
}

.modFormAddr .zip .txt {
	font-size: 12px;
	font-size: 1.2rem;
}

.modFormCheck {
	font-size: 14px;
	font-size: 1.4rem;
}

.modFormConf {
	font-size: 14px;
	font-size: 1.4rem;
}

.modFormConf dd {
	padding: 0;
	margin: 0 0 20px;
}

.modNav01 + * {
	margin-top: 20px;
}

.modNav01 li {
	width: 50%;
	padding: 0 5px;
}

.modNav01 li:after {
	width: 2px;
}

.modNav01 li:last-child:before {
	width: 2px;
}

.modNav01 li:nth-child(4n):before {
	width: 2px;
}

.modNav01 li:nth-child(even):before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: -1px;
	width: 2px;
	border-right: dashed 1px #b98747;
}

.modNav01_max06 li {
	width: 33.3%;
}

.modNav01_max06 li:nth-child(even):not(:nth-child(3n)):not(:last-child):before {
	display: none;
}

.modNav01_max06 li:nth-child(6n):before {
	width: 2px;
}

.modNav01_max06 li:nth-child(3n):before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: -1px;
	width: 2px;
	border-right: dashed 1px #b98747;
}

.modNav01 a {
	border-radius: 5px;
	min-height: 40px;
	font-size: 12px;
	font-size: 1.2rem;
}

.modNav01 .small a {
	font-size: 12px;
	font-size: 1.2rem;
}

.modNav02 {
	display: block;
}

.modNav02 .item {
	width: auto;
	margin-top: 0;
}

.modNav02 .item:not(:last-child) {
	margin-bottom: 20px;
}

.modNav02 .detail .title {
	font-size: 13px;
	font-size: 1.3rem;
}

.modNav02 .detail .title:after {
	top: -0.005em;
}

.modNav02 .detail .txt {
	font-size: 12px;
	font-size: 1.2rem;
}

.modNav02_type02 {
	margin: 20px auto;
	padding: 20px;
}

.modNav02_type02 .image {
	width: 27%;
}

.modNav03 .list {
	display: block;
}

.modNav03 .list li:first-child,
.modNav03 .list li:nth-child(4n) {
	border-left: none;
}

.modNav03 .list li:nth-child(4):after,
.modNav03 .list li:nth-child(5):after,
.modNav03 .list li:nth-child(6):after {
	display: none;
}

.modNav03 .list li {
	width: 100%;
	border-right: none;
	border-bottom: dashed 1px #b98747;
	margin: 0;
	padding: 0;
}

.modNav03 .list li.space {
	border-bottom: none;
}

.modNav03 .list li .inner {
	display: block;
	padding: 10px 0;
}

.modNav03 .list_column02 li:nth-child(3) {
	border-left: none;
}

.modNav03 .list_column02 li:nth-child(3):after {
	display: none;
}

.modNav03_type02 .list li .title {
	width: 100%;
	padding: 10px 0;
}

.modNav03_type02 .list li .title:before {
	margin-bottom: -5px;
}

.modCategory01 {
	padding: 3px;
	border-radius: 3px;
	font-size: 8px;
	font-size: 0.8rem;
}

.modCategory02 {
	padding: 3px;
	border-radius: 3px;
	font-size: 8px;
	font-size: 0.8rem;
}

.modCategory03 {
	padding: 3px;
	border-radius: 3px;
	font-size: 8px;
	font-size: 0.8rem;
}

.modCategory04 {
	padding: 3px;
	border-radius: 3px;
	font-size: 8px;
	font-size: 0.8rem;
}

.modPartsImage,
.modPartsImageList,
.modPartsYoutube,
.modPartsTxt {
	margin-bottom: 20px;
}

.modPartsTitle {
	font-size: 14px;
	font-size: 1.4rem;
}

.modPartsImageList ul {
	margin: 0;
}

.modPartsImageList li {
	margin: 0 0 10px;
	float: none;
	width: auto;
}

.modPartsImageList_column03 li {
	width: auto;
	margin: 0 0 10px;
}

.modPartsSet02 .inner {
	margin: 0;
}

.modPartsSet02 .box {
	float: none;
	width: auto;
	margin: 0 0 20px;
}

}


/*# sourceMappingURL=maps/common.css.map */
