@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 {
	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: #333;
}

body.IEUnder {
	font-family: "メイリオ",Verdana, "Hiragino Kaku Gothic ProN",  Meiryo, sans-serif;
}

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

input,
button,
textarea,
select {
	line-height: 1.7;
	color: #333;
	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
*/

#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: 240px;
}

#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;
}

#gNav .icon {
	margin-bottom: 10px;
}

#header .pcHeader .search {
	width: 306px;
	padding-right: 100px;
}

#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;
	padding: 0;
}

#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 a {
	display: block;
	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 .navTime a {
	background-image: url(../img/common/btn_time.png);
	width: 97px;
	height: 100px;
}

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

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

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

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

#header .spHeader .siteTitle {
	width: 150px;
	margin-left: 15px;
	padding: 15px 0 0;
	text-align: center;
}

#header .spHeader .hNav {
	position: absolute;
	top: 0;
	right: 50px;
	bottom: 0;
}

#header .spHeader .hNav li {
	float: right;
	margin: 0 2px;
}

#header .spHeader .hNav a {
	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;
	height: 60px;
	text-align: center;
	font-size: 8px;
	font-size: 0.8rem;
	text-decoration: none;
}

#header .spHeader .hNav a span {
	display: block;
	width: 100%;
}

#header .spHeader .hNav a span:before {
	content: "";
	background-position: center;
	display: block;
	margin: 0 auto;
	background-repeat: no-repeat;
	height: 30px;
}

#header .spHeader .btnTime a {
	color: #50a0c8;
}

#header .spHeader .btnTime span:before {
	background-image: url(../img/common/icon_time.svg);
	background-size: 20px 20px;
	width: 20px;
}

#header .spHeader .btnAccess a {
	color: #f87983;
}

#header .spHeader .btnAccess span:before {
	background-image: url(../img/common/icon_map.svg);
	background-size: 15px 20px;
	width: 15px;
}

#header .spHeader .btnContact a {
	color: #f5a32d;
}

#header .spHeader .btnContact span:before {
	background-image: url(../img/common/icon_mail.svg);
	background-size: 20px 16px;
	width: 20px;
}

#header .btnMenu {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	display: block;
}

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

#header .btnMenu.select:after {
	background-position: 0 -21px;
}

#header .subNav02 {
  width: 280px;
}

/*------------------- 20210826 -------------------*/

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

@media only screen and (max-width: 1200px) {
  #header .subNav02 {
    width: 240px;
  }
}

#header .subNav02 .item {
  width: 33.3%;
  float: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 86px;
  position: relative;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

#header .subNav02 .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: #fff;
}

#header .subNav02 .item .inner {
  width: 100%;
  line-height: 1.4;
}

#header .subNav02 .item .inner::before {
  content: "";
  background-position: center top;
  background-repeat: no-repeat;
  height: 30px;
  display: block;
  margin-bottom: 5px;
}

#header .subNav02 .en {
  font-size: 7px;
  font-size: 0.7rem;
  font-family: "Julius Sans One";
}

#header .subNav02 .ja {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 1200px) {
  #header .subNav02 .ja {
    font-size: 10px;
    font-size: 1rem;
  }
}

#header .subNav02 .con {
  background-color: #D9B84A;
}

#header .subNav02 .con .inner::before {
  background-image: url(../img/common/icon_tel.svg);
  background-size: 30px 23px;
}

#header .subNav02 .acc {
  background-color: #EA9996;
}

#header .subNav02 .acc .inner::before {
  background-image: url(../img/common/icon_map_color02.svg);
  background-size: 24px 25px;
}

#header .subNav02 .reservation {
  background-color: #D9B84A;
}

#header .subNav02 .reservation .inner::before {
  background-image: url(../img/common/icon_calendar_color02.svg);
  background-size: 26px 26px;
}

#header .subNavFixed {
  display: none;
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 75px;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .item {
    height: 75px;
    color: #5C3021;
    line-height: 1;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .item .inner::before {
    height: 25px;
    margin-bottom: 3px;
  }
}

@media only screen and (max-width: 768px) {
  #header .subNavFixed .ja {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .contact::before {
    display: none;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .contact .inner::before {
    background-image: url(../img/common/icon_tel.svg);
    background-size: 22px 25px;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .access .inner::before {
    background-image: url(../img/common/icon_map_color02.svg);
    background-size: 23px 25px;
  }
}

@media only screen and (max-width: 970px) {
  #header .subNavFixed .reservation .inner::before {
    background-image: url(../img/common/icon_calendar_color02.svg);
    background-size: 25px 25px;
  }
}

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

#gNavSp {
	background-color: #fff;
	padding: 20px 15px 40px;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	display: none;
}

#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;
}

#gNavSp .nav01 li {
	width: 48%;
	border-top: solid 2px #22a494;
}

#gNavSp .nav01 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;
	padding: 15px 5px;
	text-decoration: none;
}

#gNavSp .nav01 .icon {
	width: 26%;
	max-width: 80px;
	text-align: center;
}

#gNavSp .nav01 .txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 10px;
	line-height: 1.3;
}

#gNavSp .nav01 .txt .main {
	display: block;
	color: #22a494;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}

#gNavSp .nav01 .txt .en {
	color: #f87983;
	font-size: 8px;
	font-size: 0.8rem;
}

#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;
}

#gNavSp .nav02 li {
	width: 48%;
	border-top: dashed 1px #f87983;
}

#gNavSp .nav02 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;
	padding: 10px 0 10px 5px;
	text-decoration: none;
}

#gNavSp .nav02 .thumb {
	width: 26%;
	max-width: 80px;
	text-align: center;
}

#gNavSp .nav02 .thumb img {
	width: 70%;
}

#gNavSp .nav02 .txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 10px;
	line-height: 1.3;
}

#gNavSp .nav02 .txt .main {
	display: block;
	color: #f87983;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}

#gNavSp .nav02 .txt .sub {
	font-size: 7px;
	font-size: 0.7rem;
}

#gNavSp .info {
	border-top: solid 2px #22a494;
	padding: 20px 0 0;
}

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

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

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

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

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

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

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

#gNavSp .info .search input[type=image] {
	vertical-align: middle;
	background-color: #ccc;
	width: auto;
	height: auto;
	cursor: pointer;
	border: none;
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	margin: auto;
	padding: 13px 16px 12px;
}

#gNavSp .info .tel {
	text-align: center;
	color: #22a494;
	font-weight: bold;
	font-size: 25px;
	font-size: 2.5rem;
}

#gNavSp .info .tel a {
	color: #22a494;
	text-decoration: none;
}

#gNavSp .info .address {
	margin-bottom: 15px;
	font-size: 11px;
	font-size: 1.1rem;
	text-align: center;
}

#gNavSp .info .btn {
	max-width: 480px;
	margin: 0 auto;
}

#gNavSp .info .btn a {
	display: block;
	background-color: #22a494;
	padding: 2px;
	border-radius: 9999px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
}

#gNavSp .info .btn a span {
	display: block;
	border: solid 2px #7AC8BF;
	border-radius: 9999px;
	padding: 10px;
}

#gNavSp .info .btn a span:before {
	content: "";
	display: inline-block;
	background-image: url(../img/common/icon_calendar02.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 20px auto;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

#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: 1000;
}

#side li {
	border-bottom: solid 1px #e0e0e0;
}

#side a {
	display: block;
	padding: 6px 0;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

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

#contents .modBlockInner:last-child {
	padding-bottom: calc(2% + 60px);
}

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

.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;
}

/*
#styleguide
container

```
<div class="container">
左右にpadding15pxつきます
</div>
```
*/

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

#footer {
	position: relative;
	z-index: 100;
}

#footer .photo {
	margin-top: -2%;
	text-align: center;
}

#footer .photo img {
	width: 100%;
	vertical-align: bottom;
}

#footer .infoBlock {
	display: table;
	width: 100%;
	table-layout: fixed;
	max-width: 890px;
}

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

#footer .infoBlock .facebook {
	width: 400px;
}

#footer .infoBlock .detail {
	padding-left: 30px;
}

#footer .groupList .title {
	margin-bottom: 40px;
	font-weight: bold;
	text-align: center;
	color: #cb9c1e;
	font-size: 30px;
	font-size: 3rem;
}

#footer .groupList 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: 784px;
	margin: 0 auto;
	text-align: center;
}

#footer .groupList ul li {
	width: 48%;
}

#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
}

/* CSS Document */

.container {
	max-width: 990px;
}

.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.png) !important;
	background-position: center !important;
	background-size: 40px auto !important;
}

#cboxClose:hover {
	opacity: 0.8;
}

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

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

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

#cboxCurrent {
	display: none !important;
}

/*
#overview
modTitle
*/

/*
#styleguide
.modPageTitle

```
<header class="modPageTitle"><span class="main">よくあるご質問</span><span class="sub">FAQ</span><!-- / .modPageTitle --></h1>
```
*/

.modPageTitle {
	background-image: url(../img/common/bg_title01.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 45px 10px;
	text-align: center;
}

.modPageTitle .main,
.modPageTitle .sub {
	display: block;
}

.modPageTitle .main {
	font-size: 38px;
	font-size: 3.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.modPageTitle .sub {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

/*
#styleguide
.modPageTitle02

```
<header class="modPageTitle02 modPageTitle02_qa"><span class="main">よくあるご質問</span><span class="sub">FAQ</span><!-- / .modPageTitle --></h1>
```
*/

.modPageTitle02 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	text-align: center;
	color: #fff;
}

.modPageTitle02_qa {
	background-image: url(../img/qa/bg_pagetitle.jpg);
}

.modPageTitle02_dentistry {
	background-image: url(../img/dentistry/bg_pagetitle.jpg);
}

.modPageTitle02_yobou {
	background-image: url(../img/yobou/bg_pagetitle.jpg);
}

.modPageTitle02_kyousei {
	background-image: url(../img/kyousei/bg_pagetitle.jpg);
}

.modPageTitle02_rec {
	background-image: url(../img/rec/bg_pagetitle.jpg);
}

.modPageTitle02_staff {
	background-image: url(../img/staff/bg_pagetitle.jpg);
}

.modPageTitle02_shinbi {
	background-image: url(../img/shinbi/bg_pagetitle.jpg);
}

.modPageTitle02_shishu {
	background-image: url(../img/shishu/bg_pagetitle.jpg);
}

.modPageTitle02_pedo {
	background-image: url(../img/pedo/bg_pagetitle.jpg);
}

.modPageTitle02_about {
	background-image: url(../img/about/bg_pagetitle.jpg);
}

.modPageTitle02_ninpu {
	background-image: url(../img/ninpu/bg_pagetitle.jpg);
}

.modPageTitle02_takuji {
	background-image: url(../img/takuji/bg_pagetitle.jpg);
}

.modPageTitle02 .main,
.modPageTitle02 .sub {
	display: block;
}

.modPageTitle02 .main {
	font-size: 38px;
	font-size: 3.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.modPageTitle02 .sub {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

/*
#styleguide
.modTitle01

```
<header class="modTitle01">
<p class="icon"><img src="assets/img/common/icon_title_first.png" alt=""></p>
<h2 class="title"><span class="main">初めての方へ</span><span class="en">FIRST VISITER</span></h2>
</header>
```
*/

.modTitle01 {
	margin-bottom: 30px;
	padding: 0 230px;
	position: relative;
	text-align: center;
}

.modTitle01_short {
	padding-right: 0;
	padding-left: 0;
}

.modTitle01 .deco {
	position: absolute;
	top: 0;
}

.modTitle01 .decoR {
	right: 0;
}

.modTitle01 .decoL {
	left: 0;
}

/*
#styleguide
.modTitle02

```
<h2 class="modTitle02"><span class="main">ごあいさつ</span><span class="sub">greeting</span></h2>
```
*/

.modTitle02 {
	margin: 0px 0 40px;
	text-align: center;
}

.modTitle02 .main,
.modTitle02 .sub {
	display: block;
}

.modTitle02 .main {
	font-size: 36px;
	font-size: 3.6rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.modTitle02 .sub {
	font-size: 17px;
	font-size: 1.7rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
	line-height: 1.5;
	color: #f87983;
	letter-spacing: 0.1em;
}

.modTitle02_il .title {
	position: relative;
	display: inline-block;
	padding: 0 140px;
}

.modTitle02_il .title:before,
.modTitle02_il .title:after {
	position: absolute;
	background-repeat: no-repeat;
}

.modTitle02_il .title:before {
	content: "";
	background-image: url(../img/contact/titleDeco01.png);
	width: 73px;
	height: 48px;
	left: 20px;
	bottom: 20px;
}

.modTitle02_il .title:after {
	content: "";
	background-image: url(../img/contact/titleDeco02.png);
	width: 136px;
	height: 86px;
	right: -20px;
	bottom: 0;
}

/*
#styleguide
.modTitle03

```
<h2 class="modTitle03"><span class="inner">タイトル</span></h2>
```
*/

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

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

.modTitle03 .inner:before,
.modTitle03 .inner:after {
	position: absolute;
	background-repeat: no-repeat;
}

.modTitle03 .inner:before {
	content: "";
	background-image: url(../img/common/deco_title01_01.png);
	width: 76px;
	height: 58px;
	left: 10px;
	bottom: 10px;
}

.modTitle03 .inner:after {
	content: "";
	background-image: url(../img/common/deco_title01_02.png);
	width: 65px;
	height: 44px;
	right: 0;
	bottom: 10px;
}

/*
#overview
modTxt
*/

/*
#styleguide
modTxtLink

```
<a href="#" class="modTxtLink">テキストリンク</a>
```
*/

.modTxtLink {
	display: inline-block;
	background-image: url(../img/common/arrow03.svg);
	background-size: 16px;
	background-position: left calc(3px + 0.1em);
	background-repeat: no-repeat;
	padding: 3px 0 3px 24px;
	color: #f87983;
	text-decoration: none;
}

.modTxtLink:hover {
	opacity: 1;
	text-decoration: underline;
}

/*
#styleguide
modTxtLead

```
<p class="modTxtLead">テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
```
*/

.modTxtLead {
	max-width: 600px;
	margin: 0 auto 40px;
}

/*
#overview
modBtn
*/

/*
#styleguide
.modBtn01

```
<p><a href="#" class="modBtn01">button</a></p>
<p><a href="#" class="modBtn01 modBtn01_color02">button</a></p>
<p><a href="#" class="modBtn01 modBtn01_color03">button</a></p>
<p><a href="#" class="modBtn01 modBtn01_calendar">button</a></p>
<p><a href="#" class="modBtn01 modBtn01_map">button</a></p>
```
*/

.modBtn01 {
	display: block;
	background-color: #fff;
	width: 100%;
	padding: 12px 10px;
	border: solid 2px #febcbf;
	border-radius: 99999px;
	text-align: center;
	text-decoration: none;
	font-size: 17px;
	font-size: 1.7rem;
	color: #f87983;
	line-height: 1.5;
	font-weight: bold;
}

.modBtn01:after {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	margin-left: 15px;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: normal;
}

.modBtn01_color02 {
	border-color: #22a494;
	color: #22a494;
}

.modBtn01_color03 {
	border: none;
	background-color: #f87983;
	color: #fff;
}
.modBtn01_color04 {
	border: none;
	background-color: #22a494;
	color: #fff;
}


.modBtn01_calendar:before {
	content: "";
	display: inline-block;
	background-image: url(../img/common/icon_calendar.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 27px auto;
	width: 27px;
	height: 27px;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

.modBtn01_calendar:after {
	display: none;
}

.modBtn01_map:before {
	content: "";
	display: inline-block;
	background-image: url(../img/common/icon_map.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 37px auto;
	width: 37px;
	height: 30px;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

.modBtn01_map:after {
	display: none;
}

/*
#styleguide
.modBtn02

```
<p><a href="#" class="modBtn02">button</a></p>
```
*/

.modBtn02 {
	display: block;
	border: none;
	background-color: #ff7a80;
	border: none;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	border-radius: 4px;
	padding: 10px 40px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 22px;
	font-size: 2.2rem;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "メイリオ", Meiryo, serif;
}

.modBtn02:after {
	content: "";
	background-image: url(../img/common/arrow02.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto;
}

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

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

.modBtn02_inline {
	display: inline-block;
	width: auto;
}

.modBtn02_back {
	background-color: #969696;
}

.modBtn02_back:after {
	background-image: url(../img/common/arrow02_l.png);
	left: 10px;
	right: auto;
}

.modBtn02_back:hover {
	background-color: #aaa;
}

.modBtn02_arrowB:after {
	background-image: url(../img/common/arrow02_b.png);
}

.modBtn02_arrow02:after {
	background-image: url(../img/common/arrow04.svg);
	background-size: 20px;
}

.modBtn02_dl:after {
	background-image: url(../img/common/icon_dl.png);
	background-size: 25px auto;
	background-color: transparent;
	width: 25px;
	height: 26px;
	left: 20px;
	right: auto;
	border-radius: 0;
}

.modBtn02_green {
	background: #8eb355;
}

.modBtn02_green:hover {
	background-color: #a1c46a;
}

.modBtn02_yellow {
	background: #f1af2d;
}

.modBtn02_yellow:hover {
	background-color: #f4c260;
}

.modBtn02_brown {
	background: #BF9250;
}

.modBtn02_brown:hover {
	background-color: #BF9250;
}

/*
#styleguide
.modBtn03

```
<p><a href="#" class="modBtn03">button</a></p>
```
*/

.modBtn03 {
	display: block;
	border: solid 1px #f87983;
	border-radius: 5px;
	background-color: #fff;
	width: 100%;
	padding: 6px 40px;

	box-sizing: border-box;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
	color: #f87983;
	text-decoration: none;
	text-align: center;
}

.modBtn03_inline {
	display: inline-block;
	width: auto;
}

/*
#styleguide
.modBtnList

```
<ul class="modBtnList">
<li><a href="#" class="modBtn02 modBtn02_arrowB">more</a></li>
</ul>
```
*/

.modBtnList li {
	max-width: 402px;
	margin: 0 auto;
}

.modBtnList_column02 {
	position: relative;
	max-width: 890px;
	margin: 0 auto;
}

.modBtnList_column02 li {
	width: 49%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.modBtnList_column02 .right {
	position: absolute;
	top: 0;
	right: 0;
}

/*
#overview
modBlock
*/

/*
#styleguide

.modBlockInner
```
<div class="modBlockInner">上下余白</div>
<div class="modBlockInner modBlockInner_type01">色違い.modBlockInner_type01</div>
<div class="modBlockInner modBlockInner_type02">色違い.modBlockInner_type02</div>
<div class="modBlockInner modBlockInner_type03">色違い.modBlockInner_type03</div>
<div class="modBlockInner modBlockInner_type04">色違い.modBlockInner_type04</div>
```
*/

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

.modBlockInner_type01 {
	background-image: url(../img/common/bg_pattern01.png);
}

.modBlockInner_type02 {
	background-image: url(../img/common/bg_pattern02.png);
}

.modBlockInner_type03 {
	background-image: url(../img/common/bg_pattern03.png);
}

.modBlockInner_type04 {
	background-image: url(../img/common/bg_pattern04.png);
}

.modBlockInfo .schTable {
	background-color: #22a494;
	padding: 3px;
	margin-bottom: 20px;
	border-radius: 6px;
	color: #fff;
}

.modBlockInfo .schTable .inner {
	border: dotted 1px #fff;
	padding: 10px 15px;
	border-radius: 6px;
}

.modBlockInfo .schTable table {
	table-layout: fixed;
}

.modBlockInfo .schTable th,
.modBlockInfo .schTable td {
	padding: 3px 0;
	text-align: center;
}

.modBlockInfo .schTable thead th {
	border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.modBlockInfo .schTable thead th:first-child {
	width: 130px;
}

.modBlockInfo .schTable tbody tr:not(:last-child) th,
.modBlockInfo .schTable tbody tr:not(:last-child) td {
	border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.modBlockInfo .caution {
	margin-bottom: 30px;
	position: relative;
	font-size: 15px;
	font-size: 1.5rem;
}

.modBlockInfo .caution .deco {
	position: absolute;
	top: 0;
	right: -30px;
}

.modBlockInfo .info {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 20px;
}

.modBlockInfo .info .logo,
.modBlockInfo .info .txt {
	display: table-cell;
	vertical-align: bottom;
}

.modBlockInfo .info .logo {
	width: 130px;
	text-align: center;
}

.modBlockInfo .info .address {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.4;
}

.modBlockInfo .info .tel {
	color: #22a494;
	font-weight: bold;
	font-size: 36px;
	font-size: 3.6rem;
	line-height: 1.1;
}

.modBlockInfo .info .tel a {
	color: #22a494;
}

.modBlockInfo .btn {
	max-width: 480px;
	margin-right: auto;
	margin-left: auto;
}

/*
#styleguide

.modBlockEntryDetail
ブログの記事
*/

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

.modBlockEntryDetail .head {
	background-image: url(../img/common/line.png);
	background-position: left bottom;
	background-repeat: repeat-x;
	display: table;
	width: 100%;
	table-layout: fixed;
	margin: 0 auto 46px;
	padding: 0 0 18px;
}

.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;
	color: #666666;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
}

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

.modBlockEntryDetail .head .title {
	color: #4f4f4f;
	font-weight: bold;
	font-size: 23px;
	font-size: 2.3rem;
	line-height: 1.5;
}

.modBlockEntryDetail .head .right {
	width: 220px;
	text-align: right;
}

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

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

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

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

.modBlockEntryDetail .main {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 10px;
}

.modBlockEntryDetail .main .modPartsTxt {
	font-size: 18px;
	font-size: 1.8rem;
}

.modBlockEntryDetail .main .btnPdf {
	max-width: 402px;
	margin: 75px auto 0;
}

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

.modBlockEntryDetail .foot .txt {
	margin-bottom: 10px;
}

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

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

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

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

.modBlockEntryDetail .btnFoot {
	text-align: right;
}

/*
#styleguide

.modBlockLead
```
```
*/

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

.modBlockLead .catch {
	margin-bottom: 20px;
	text-align: center;
	color: #f87983;
	font-size: 27px;
	font-size: 2.7rem;
	font-weight: bold;
}

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

.modBlockLead .txt {
	max-width: 890px;
	margin: 0 auto;
}

/*
#styleguide

.modBlockStep
ステップ
*/

.modBlockStep {
	position: relative;
	margin-top: 60px;
}

.modBlockStep:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 80px;
	width: 10px;
	background-image: url(../img/common/line_flow.png);
	background-position: center;
	background-repeat: repeat-y;
}

.modBlockStep_type02:before {
	left: 140px;
	background-image: url(../img/common/line_flow02.png);
}

.modBlockStep > ul > li {
	position: relative;
	padding: 0 0 90px 240px;
	min-height: 250px;
}

.modBlockStep > ul > li:first-child:before {
	content: "";
	background-image: url(../img/common/bg_pattern01.png);
	background-position: center;
	position: absolute;
	top: 0;
	left: 80px;
	bottom: 50%;
	width: 10px;
}

.modBlockStep > ul > li:last-child:before {
	content: "";
	background-image: url(../img/common/bg_pattern01.png);
	position: absolute;
	top: 50%;
	left: 80px;
	bottom: 0;
	width: 10px;
}

.modBlockStep_type02 > ul > li {
	padding-left: 340px;
	padding-right: 0;
	min-height: 330px;
}

.modBlockStep_type02 > ul > li:first-child:before {
	left: 140px;
}

.modBlockStep_type02 > ul > li:last-child:before {
	left: 140px;
}

.modBlockStep .image {
	position: absolute;
	top: -130px;
	bottom: 0;
	left: -30px;
	margin: auto;
	height: 211px;
}

.modBlockStep .image img {
	max-width: none;
}

.modBlockStep_type02 .image {
	top: -150px;
	height: 306px;
}

.modBlockStep .detail {
	max-width: 620px;
	border: solid 1px #FED6D8;
	background-color: #fff;
	position: relative;
	border-radius: 8px;
	padding: 30px 20px;
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockStep .detail:after {
	content: "";
	background-image: url(../img/common/arrow_flow.png);
	width: 23px;
	height: 43px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -23px;
	margin: auto;
}

.modBlockStep .detail .deco {
	position: absolute;
	top: 10px;
	right: 20px;
}

.modBlockStep_type02 .detail {
	border-style: dotted;
	border-width: 2px;
	border-color: #ecbc1e;
}

.modBlockStep_type02 .detail:after {
	background-image: url(../img/common/arrow_flow02.png);
	width: 27px;
	height: 41px;
	left: -27px;
}

.modBlockStep .txt {
	margin-bottom: 15px;
}

.modBlockStep .btn {
	max-width: 360px;
}

.modBlockStep .title {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

.modBlockStep .title span {
	display: inline-block;
	position: relative;
	padding: 0 20px;
	text-align: center;
}

.modBlockStep .title span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/common/icon_flower01_small_green.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 15px;
	height: 16px;
}

.modBlockStep .title span:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url(../img/common/icon_flower01_small_green.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 15px;
	height: 16px;
}

.modBlockStep .box .txt {
	color: #ff4a4b;
	text-decoration: underline;
}

.modBlockStep .box .title {
	font-weight: bold;
	font-size: 21px;
	font-size: 2.1rem;
	color: #38AEA3;
}

/*
#styleguide

.modBlockAbout01
```

<div class="modBlockAbout01">
    <div class="item">
        <p class="image"><img src="../assets/img/dentistry/img_01_01.png" alt=""></p>
        <div class="detail">
            <p class="title">痛くない（麻酔の調整）</p>
            <p class="txt">ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。<br>ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。</p>
        </div>
    </div>
    <div class="item">
        <p class="image"><img src="../assets/img/dentistry/img_01_02.png" alt=""></p>
        <div class="detail">
            <p class="title">治療の進め方</p>
            <p class="txt">ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。<br>ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。</p>
        </div>
    </div>
    <div class="item">
        <p class="image"><img src="../assets/img/dentistry/img_01_03.png" alt=""></p>
        <div class="detail">
            <p class="title">最新医療への取り組み</p>
            <p class="txt">ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。<br>ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト。</p>
        </div>
    </div>
</div>
```
*/

.modBlockAbout01 {
	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;
}

.modBlockAbout01_type02 {
	background-color: #fff;
	max-width: 890px;
	border-radius: 10px;
	border: solid 1px #fed6d8;
	padding: 40px 50px;
	margin: 0 auto;
}

.modBlockAbout01 .item {
	width: 31.3%;
}

.modBlockAbout01_column02 .item {
	width: 46%;
}

.modBlockAbout01_type02 .item:nth-child(even) {
	position: relative;
}

.modBlockAbout01_type02 .item:nth-child(even):after {
	content: "";
	background-color: #fed6d8;
	width: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -10%;
}

.modBlockAbout01 .image {
	margin-bottom: 24px;
	text-align: center;
}

.modBlockAbout01 .title {
	margin-bottom: 15px;
	color: #f87983;
	font-weight: bold;
	text-align: center;
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 1.4;
}

.modBlockAbout01 .title .sub {
	display: block;
	font-size: 18px;
	font-size: 1.8rem;
}

.modBlockAbout01 .title .br {
	display: block;
}

.modBlockAbout01 .link {
	margin-top: 5px;
}

/*
#styleguide

.modBlockAbout02
```
```
*/

.modBlockAbout02 {
	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: 900px;
	margin: 0 auto;
}

.modBlockAbout02_column03 {
	max-width: none;
}

.modBlockAbout02 + * {
	margin-top: 50px;
}

.modBlockAbout02 .item {
	width: 48%;
	margin-top: 50px;
}

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

.modBlockAbout02_column03 .item {
	width: 31.3%;
}

.modBlockAbout02_column03 .item:nth-child(3) {
	margin-top: 0;
}

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

.modBlockAbout02 .title {
	margin-bottom: 20px;
	padding: 0 10px;
	text-align: center;
	font-weight: bold;
	font-size: 27px;
	font-size: 2.7rem;
	color: #f87983;
	line-height: 1.5;
}

.modBlockAbout02 .title_small {
	font-size: 21px;
	font-size: 2.1rem;
}

.modBlockAbout02 .txt {
	margin-bottom: 20px;
}

/*
#styleguide

.modBlockAbout03
```
```
*/

.modBlockAbout03 {
	background-color: #fff;
	max-width: 890px;
	margin: 0 auto;
	padding: 30px;
}

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

.modBlockAbout03 .title {
	margin: 0 0 30px;
	text-align: center;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
}

.modBlockAbout03 .title span {
	background-image: url(../img/common/line02.png);
	background-position: center bottom;
	background-repeat: repeat-x;
	display: block;
	padding: 0 0 20px;
	margin: 0 auto;
	max-width: 370px;
}

.modBlockAbout03 .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;
	padding: 0 50px;
	color: #665352;
	font-size: 18px;
	font-size: 1.8rem;
}

.modBlockAbout03 .list li {
	width: 45%;
	padding: 3px 0 3px 36px;
	background-image: url(../img/common/icon_flower01_large_blue.png);
	background-position: left 0.2em;
	background-repeat: no-repeat;
}

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

.modBlockAbout03 .caution {
	margin: 15px 0 0;
	font-weight: bold;
	text-align: center;
	color: #f87983;
	font-size: 19px;
	font-size: 1.9rem;
}

/*
#styleguide

.modBlockImage
中央寄せ ＋margin-bottomがつくだけ
```
<p class="modBlockImage"><img src="/assets/img/yobou/img_people.png" alt=""></p>
```
*/

.modBlockImage {
	margin-bottom: 100px;
	text-align: center;
}

/*
#overview
modTable
*/

/*
#styleguide
modTbl01

```
コード
```
*/

.modTbl01 {
	table-layout: fixed;
}

.modTbl01Wrapper {
	border: solid 1px #ccc;
	max-width: 860px;
	margin: 0 auto 30px;
}

.modTbl01Title {
	background-color: #fffeec;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	color: #f87983;
	font-size: 22px;
	font-size: 2.2rem;
}

.modTbl01 th,
.modTbl01 td {
	padding: 15px;
	font-size: 18px;
	font-size: 1.8rem;
}

.modTbl01 .w30 {
	width: 30%;
}

.modTbl01 th {
	background-color: #f87983;
	color: #fff;
}

.modTbl01 td {
	background-color: #fff;
}

.modTbl01 tr:not(:last-child) th {
	border-bottom: dotted 2px #fff;
}

.modTbl01 tr:not(:last-child) td {
	border-bottom: dotted 2px #cb9c1e;
}

.modTbl01 .txtRight {
	text-align: right;
}

/*
#styleguide
modTbl02

```
コード
```
*/

.modTbl02 {
	table-layout: fixed;
}

.modTbl02Wrapper {
	max-width: 830px;
	border: solid 1px #ccc;
	margin: 0 auto 60px;
}

.modTbl02Title {
	background-color: #f87983;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 22px;
	font-size: 2.2rem;
}

.modTbl02 th,
.modTbl02 td {
	background-color: #fff;
	padding: 15px;
	vertical-align: top;
	font-size: 18px;
	font-size: 1.8rem;
}

.modTbl02 th {
	width: 20%;
	color: #f87983;
	text-align: center;
	font-weight: bold;
}

.modTbl02 .w30 {
	width: 30%;
}

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

.modTbl02 tr > *:not(:last-child) {
	border-right: dotted 2px #cb9c1e;
}

.modTbl02 tr:not(:last-child) th {
	border-bottom: dotted 2px #cb9c1e;
}

.modTbl02 tr:not(:last-child) td {
	border-bottom: dotted 2px #cb9c1e;
}

.modTbl02 .txtLeft {
	text-align: left;
}

.modTbl02 .txtRight {
	text-align: right;
}

/*
#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>
```
*/

.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;
}

/* フォーム
***************************************/

.modDlForm {
	margin: 0 0 20px;
}

.modDlForm dt {
	float: left;
	clear: both;
	width: 16em;
	padding: 33px 0 20px 63px;
	position: relative;
}

.modDlForm dt.required:before,
.modDlForm dt.any:before {
	position: absolute;
	left: 0;
	top: 33px;
	color: #FFF;
	font-size: 11px;
	font-size: 1.1rem;
	padding: 2px 10px;
}

.modDlForm dt.required:before {
	content: "必須";
	background: #E33E41;
}

.modDlForm dt.any:before {
	background: #999999;
	content: "任意";
}

.modDlForm dd {
	border-bottom: solid 1px #ccc;
	padding: 10px 0;
	padding-left: 17em;
}

.modDlForm dd .parts {
	padding: 10px 0;
}

.modDlForm dd .parts textarea,
.modDlForm dd .parts input[type="text"],
.modDlForm dd .parts input[type="email"] {
	width: 100%;
}

.modDlForm dd .parts.radio_inline > div,
.modDlForm dd .parts.check_inline > div {
	display: inline-block;
}

.modDlForm dd .parts.name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modDlForm dd .parts.name > div {
	width: 48.5%;
}

.modDlForm dd .parts.post,
.modDlForm dd .parts.tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.modDlForm dd .parts.post .hyphen,
.modDlForm dd .parts.tel .hyphen {
	padding: 10px 10px 0 10px;
}

.modDlForm dd .parts.password input {
	width: 100%;
	max-width: 300px;
}

.modDlForm dd .parts.password .text {
	padding: 10px 0;
}

.modDlForm .validationError {
	color: #E33E41;
}

/*
#styleguide
modListNews

ニュースリスト
*/

.modListNews {
	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;
	margin-bottom: 60px;
}

.modListNews::after {
	content: "";
	display: block;
	width: 21%;
}

.modListNews::before {
	content: "";
	display: block;
	width: 21%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.modListNews li {
	width: 21%;
	margin: 0 0 18px;
}

.modListNews a {
	display: block;
	background-color: #fff;
	position: relative;
	border: solid 1px rgba(236, 229, 211, 0.3);
	border-radius: 0 0 5px 5px;
	text-decoration: none;
}

.modListNews .image {
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.modListNews .image img {
	width: 100%;
}

.modListNews .body {
	padding: 10px 14px 20px;
	color: #666;
}

.modListNews .head {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 15px;
}

.modListNews .head .date,
.modListNews .head .category {
	display: table-cell;
	vertical-align: middle;
}

.modListNews .head .date {
	width: 6em;
}

.modListNews .date {
	font-size: 13px;
	font-size: 1.3rem;
}

.modListNews .category {
	width: 73px;
	text-align: right;
}

.modListNews .title {
	height: 44px;
	line-height: 22px;
	margin-bottom: 8px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}

.modListNews .txt {
	height: 40px;
	line-height: 20px;
	font-size: 13px;
	font-size: 1.3rem;
}

/*
#styleguide
modList01

```
<ul class="modList01">
    <li>テキスト</li>
    <li> テキストテキスト</li>
</ul>
```
*/

.modList01 li {
	padding: 3px 0 3px 30px;
	background-image: url(../img/common/icon_flower01.png);
	background-position: left 0;
	background-repeat: no-repeat;
}

.modList01 li:not(:last-child) {
	margin-bottom: 10px;
}

.modList01.type02 li {
	background-image: url(../img/common/icon_flower01_blue.png);
}

/* wysiwyg
------------------------------------------------------------*/

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

.modPartsImage {
	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;
	text-align: center;
}

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

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

.modPartsImageList li {
	float: left;
	width: 46%;
	margin: 0 2%;
}

.modPartsImageList_column03 {
	margin-left: -1%;
	margin-right: -1%;
}

.modPartsImageList_column03 li {
	width: 31.3%;
	margin-left: 1%;
	margin-right: 1%;
}

.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%;
}

/*
#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/iconCloverRequired.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: 4px 0;
	background-color: #A3A3A3;
	border-radius: 5px;
	box-shadow: #828282 0 4px 0;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}

.modFormAddr .zip .btn a:hover {
	background-color: #828282;
}

.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 */
}

.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 modNav01_column05">
<ul>
<li><a href="#anc01">全体</a></li>
<li><a href="#anc02">一般歯科</a></li>
<li><a href="#anc03">小児歯科</a></li>
<li><a href="#anc04">矯正歯科</a></li>
<li><a href="#anc05">審美歯科</a></li>
</ul>
</div>
<div class="modNav01 modNav01_column03">
	<ul>
		<li><a href="#anc01">三宅ハロー歯科の一般歯科</a></li>
		<li><a href="#anc02">歯科インプラント</a></li>
		<li><a href="#anc03">一般歯科の料金について</a></li>
	</ul>
</div>
<div class="modNav01 modNav01_column02">
	<ul>
		<li><a href="#anc01">三宅ハロー歯科の一般歯科</a></li>
		<li><a href="#anc03">一般歯科の料金について</a></li>
	</ul>
</div>
```
*/

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

.modNav01 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;
}

.modNav01 li {
	padding: 0 12px;
	position: relative;
}

.modNav01 li:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2px;
	width: 4px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.modNav01_column05 ul::after {
	content: "";
	display: block;
	width: 20%;
}

.modNav01_column05 ul::before {
	content: "";
	display: block;
	width: 20%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.modNav01_column05 li {
	width: 20%;
	margin-top: 36px;
}

.modNav01_column05 li:nth-child(1),
.modNav01_column05 li:nth-child(2),
.modNav01_column05 li:nth-child(3),
.modNav01_column05 li:nth-child(4),
.modNav01_column05 li:nth-child(5) {
	margin-top: 0;
}

.modNav01_column05 li:nth-child(5n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 4px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.modNav01_column04 ul::after {
	content: "";
	display: block;
	width: 25%;
}

.modNav01_column04 ul::before {
	content: "";
	display: block;
	width: 25%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.modNav01_column04 li {
	width: 25%;
	margin-top: 36px;
}

.modNav01_column04 li:nth-child(1),
.modNav01_column04 li:nth-child(2),
.modNav01_column04 li:nth-child(3),
.modNav01_column04 li:nth-child(4) {
	margin-top: 0;
}

.modNav01_column04 li:nth-child(4n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 4px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.modNav01_column03 ul::after {
	content: "";
	display: block;
	width: 33.3%;
}

.modNav01_column03 ul::before {
	content: "";
	display: block;
	width: 33.3%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.modNav01_column03 li {
	width: 33.3%;
	margin-top: 36px;
}

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

.modNav01_column03 li:nth-child(3n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 4px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.modNav01_column02 {
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}

.modNav01_column02 li {
	width: 50%;
	margin-top: 36px;
}

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

.modNav01_column02 li:nth-child(2n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 4px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
}

.modNav01 a {
	display: block;
	background-color: #fff;
	border-radius: 10px;
	padding: 15px 0;
	text-decoration: none;
	font-size: 18px;
	font-size: 1.8rem;
	color: #f87983;
	text-align: center;
	font-weight: bold;
}

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

.modNav01_flat a {
	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;
	line-height: 1.3;
}

/*
#styleguide
modNav02

```

```
*/

.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;
}

.modNav02Wrapper .container {
	max-width: 1060px;
}

.modNav02::after {
	content: "";
	display: block;
	width: 31.3%;
}

.modNav02::before {
	content: "";
	display: block;
	width: 31.3%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.modNav02 li {
	width: 31.3%;
	margin-top: 30px;
}

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

.modNav02 a {
	display: block;
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
	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;
	text-decoration: none;
}

.modNav02 .image {
	width: 86px;
	text-align: center;
}

.modNav02 .detail {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 18px;
}

.modNav02 .detail .main {
	color: #22a494;
	font-weight: bold;
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 1.4;
}

.modNav02 .detail .en {
	color: #f87983;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4;
}

/*
#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: 2px;
	padding: 2px 5px;
	background-color: #90B45A;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

.modCategory02 {
	display: block;
	border-radius: 2px;
	padding: 2px 5px;
	background-color: #589BBC;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

.modCategory03 {
	display: block;
	border-radius: 2px;
	padding: 2px 5px;
	background-color: #BE8857;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

.modCategory04 {
	display: block;
	border-radius: 2px;
	padding: 2px 5px;
	background-color: #DE963A;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

.modCategory05 {
	display: block;
	border-radius: 2px;
	padding: 2px 5px;
	background-color: #F6B9B2;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

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

#wrapper {
	padding-left: 0;
}

#header {
	padding: 0;
}

#header .pcHeader {
	display: none;
}

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

#header .spHeader {
	display: block;
}

#side {
	display: none;
}

#footer .infoBlock {
	display: block;
	width: auto;
}

#footer .infoBlock .facebook,
#footer .infoBlock .detail {
	display: block;
}

#footer .infoBlock .facebook {
	width: auto;
	margin-bottom: 20px;
}

#footer .infoBlock .detail {
	padding-left: 0;
}

.container {
	max-width: 750px;
}

.modPcOnly {
	display: none;
}

.modSpOnly {
	display: block;
}

.modTitle01 {
	padding: 0;
}

.modTitle01 .deco {
	display: none;
}

.modTitle02_il .title {
	padding: 0;
}

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

.modTitle03 .inner:before,
.modTitle03 .inner:after {
	display: none;
}

.modBtnList_column02 {
	max-width: none;
}

.modBtnList_column02 li {
	width: auto;
}

.modBtnList_column02 .right {
	position: static;
	margin-bottom: 10px;
}

.modBlockInfo .caution .deco {
	display: none;
}

.modDlForm dt {
	float: none;
	width: auto;
	padding: 33px 0 0 63px;
}

.modDlForm dd {
	padding: 10px 0;
}

.modListNews::after {
	width: 29%;
}

.modListNews::before {
	width: 29%;
}

.modListNews li {
	width: 29%;
}

.modListNews .body {
	padding: 10px 10px 15px;
}

.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;
}

.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;
}

.modNav02::after {
	display: none;
}

.modNav02::before {
	display: none;
}

.modNav02 li {
	width: 48%;
	margin-top: 20px;
}

.modNav02 li:nth-child(3) {
	margin-top: 20px;
}

.modNav02 .image {
	width: 20%;
}

.modNav02 .detail .main {
	font-size: 18px;
	font-size: 1.8rem;
}

}

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

#footer .groupList .title {
	margin-bottom: 20px;
	font-size: 22px;
	font-size: 2.2rem;
}

#footer .groupList ul {
	display: block;
}

#footer .groupList ul li {
	width: auto;
}

#footer .groupList ul li:not(:last-child) {
	margin-bottom: 20px;
}

#pageTop {
	width: 40px;
}

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

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

.modPageTitle {
	background-image: url(../img/common/bg_title01@2x.jpg);
	padding: 25px 10px;
}

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

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

.modPageTitle02 {
	padding: 25px 0;
}

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

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

.modTitle01 {
	margin-bottom: 20px;
}

.modTitle01 .title {
	max-width: 60%;
	margin: 0 auto;
}

.modTitle02 {
	margin-bottom: 30px;
}

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

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

.modTitle03 {
	margin-bottom: 30px;
	font-size: 24px;
	font-size: 2.4rem;
}

.modTitle03 .inner {
	padding: 0;
}

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

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

.modBtn01_calendar:before {
	background-size: 20px auto;
	width: 20px;
	height: 20px;
}

.modBtn01_map:before {
	background-size: 27px auto;
	width: 27px;
	height: 24px;
}

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

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

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

.modBtn02_dl:after {
	background-size: 20px auto;
	width: 20px;
	height: 21px;
}

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

.modBlockInner {
	padding: 40px 0;
}

.modBlockInfo .info .logo {
	width: 80px;
}

.modBlockInfo .info .txt {
	padding-left: 10px;
}

.modBlockInfo .info .tel {
	font-size: 26px;
	font-size: 2.6rem;
}

.modBlockEntryDetail .body {
	padding: 20px 0;
}

.modBlockEntryDetail .head {
	display: block;
	width: auto;
	padding: 0 10px 15px;
	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 .head .sns img {
	width: 30px;
}

.modBlockEntryDetail .main .modPartsTxt {
	font-size: 15px;
	font-size: 1.5rem;
}

.modBlockEntryDetail .main .btnPdf {
	margin-top: 30px;
}

.modBlockEntryDetail .foot {
	padding: 15px 0;
}

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

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

.modBlockEntryDetail .btnFoot {
	text-align: center;
}

.modBlockEntryDetail .btnFoot a {
	display: block;
}

.modBlockLead .catch {
	font-size: 22px;
	font-size: 2.2rem;
}

.modBlockLead .catch .br {
	display: inline;
}

.modBlockStep:before {
	display: none;
}

.modBlockStep > ul > li {
	padding: 0;
	margin-bottom: 20px;
	min-height: 0;
}

.modBlockStep > ul > li:first-child:before {
	display: none;
}

.modBlockStep > ul > li:last-child:before {
	display: none;
}

.modBlockStep .image {
	margin-bottom: 20px;
	position: static;
	height: auto;
	text-align: center;
}

.modBlockStep .image img {
	max-width: 100%;
}

.modBlockStep_type02 .image {
	height: auto;
}

.modBlockStep .detail {
	padding: 15px;
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockStep .detail:after {
	display: none;
}

.modBlockStep .detail .deco {
	display: none;
}

.modBlockStep .title {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockStep .box .title {
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockAbout01 {
	display: block;
}

.modBlockAbout01_type02 {
	padding: 20px;
}

.modBlockAbout01 .item {
	width: auto;
}

.modBlockAbout01 .item:not(:last-child) {
	margin-bottom: 30px;
}

.modBlockAbout01_column02 .item {
	width: auto;
}

.modBlockAbout01_type02 .item:nth-child(even) {
	border-top: solid 1px #fed6d8;
	padding-top: 30px;
}

.modBlockAbout01_type02 .item:nth-child(even):after {
	display: none;
}

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

.modBlockAbout01 .title .sub {
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockAbout01 .title .br {
	display: inline;
}

.modBlockAbout02 {
	display: block;
}

.modBlockAbout02 .item {
	width: auto;
	margin-top: 0;
}

.modBlockAbout02 .item:not(:last-child) {
	margin-bottom: 30px;
}

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

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

.modBlockAbout03 {
	padding: 20px;
}

.modBlockAbout03 .title {
	margin-bottom: 20px;
	font-size: 16px;
	font-size: 1.6rem;
}

.modBlockAbout03 .list {
	display: block;
	padding: 0;
	font-size: 14px;
	font-size: 1.4rem;
}

.modBlockAbout03 .list li {
	padding-left: 30px;
	background-size: 22px auto;
	width: auto;
}

.modBlockAbout03 .caution {
	font-size: 13px;
	font-size: 1.3rem;
}

.modBlockImage {
	margin-bottom: 50px;
}

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

.modTbl01 th,
.modTbl01 td {
	padding: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}

.modTbl02Wrapper {
	margin-bottom: 30px;
}

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

.modTbl02 th,
.modTbl02 td {
	padding: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}

.modTbl02 th {
	width: 30%;
}

.modDlForm dd .parts.post .hyphen,
.modDlForm dd .parts.tel .hyphen {
	padding: 10px 5px 0 5px;
}

.modDlForm dd .parts.password input {
	max-width: none;
}

.modListNews::after {
	width: auto;
}

.modListNews::before {
	width: auto;
}

.modListNews li {
	width: auto;
	margin: 0 0 10px;
}

.modListNews a {
	box-sizing: border-box;
	border-radius: 0 5px 5px 0;
}

.modListNews .body {
	padding: 10px;
}

.modListNews .txt {
	display: none;
}

.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 {
	margin: 0;
}

.modPartsImageList_column03 li {
	width: auto;
	margin: 0 0 10px;
}

.modPartsSet02 .inner {
	margin: 0;
}

.modPartsSet02 .box {
	float: none;
	width: auto;
	margin: 0 0 20px;
}

.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 {
	padding: 0 5px;
	margin-bottom: 10px;
}

.modNav01 li:after {
	width: 2px;
	background-size: 2px auto;
}

.modNav01_column05 ul::after {
	width: 33.3%;
}

.modNav01_column05 ul::before {
	width: 33.3%;
}

.modNav01_column05 li {
	width: 33.3%;
	margin-top: 0;
}

.modNav01_column05 li:nth-child(5n):before {
	display: none;
}

.modNav01_column05 li:nth-child(3n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 2px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
	background-size: 2px auto;
}

.modNav01_column05 .space {
	display: none;
}

.modNav01_column04 ul::after {
	width: 50%;
}

.modNav01_column04 ul::before {
	width: 50%;
}

.modNav01_column04 li {
	margin-top: 0;
}

.modNav01_column04 li {
	width: 50%;
}

.modNav01_column04 li:nth-child(4n):before {
	display: none;
}

.modNav01_column04 li:nth-child(2n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 2px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
	background-size: 2px auto;
}

.modNav01_column03 ul::after {
	width: 50%;
}

.modNav01_column03 ul::before {
	width: 50%;
}

.modNav01_column03 li {
	margin-top: 0;
}

.modNav01_column03 li {
	width: 50%;
}

.modNav01_column03 li:nth-child(3n):before {
	display: none;
}

.modNav01_column03 li:nth-child(2n):before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2px;
	width: 2px;
	background-image: url(../img/qa/line.png);
	background-position: 0 center;
	background-repeat: no-repeat;
	background-size: 2px auto;
}

.modNav01_column02 li {
	margin-top: 0;
}

.modNav01_column02 li:nth-child(2n):before {
	display: none;
}

.modNav01 a {
	border-radius: 5px;
	padding: 12px 0;
	font-size: 10px;
	font-size: 1rem;
}

.modNav02 {
	display: block;
}

.modNav02 li {
	width: auto;
	margin-top: 10px;
}

.modNav02 li:nth-child(2) {
	margin-top: 10px;
}

.modNav02 li:nth-child(3) {
	margin-top: 10px;
}

.modCategory01 {
	padding: 0;
}

.modCategory02 {
	padding: 0;
}

.modCategory03 {
	padding: 0;
}

.modCategory04 {
	padding: 0;
}

.modCategory05 {
	padding: 0;
}

}

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

#header .spHeader .siteTitle {
	width: 120px;
	padding-top: 18px;
}

}

br.spBr {
	display: none;
}

br.pcBr {
	display: block;
}

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

br.spBr {
	display: block;
}

br.pcBr {
	display: none;
}

}

/*# sourceMappingURL=maps/common.css.map */
