@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name:
Note:


New Creation:	.
Last Change:	2014/10/24 16:17:04.


Created By		Yoshiaki Murakami

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
}

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

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font: 100%;
  font-size: inherit;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

caption, th {
  text-align: left;
  font-weight: normal;
}

th, td {
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

iframe {
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
  min-width: 1050px;
}

body {
  -webkit-text-size-adjust: 100%;
}

a, a::before, a::after {
  -moz-transition: background-color 0.15s linear, background-image 0.15s linear;
  -webkit-transition: background-color 0.15s linear, background-image 0.15s linear;
  transition: background-color 0.15s linear, background-image 0.15s linear;
}
a > * {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
a img {
  background: #fff;
}
a:hover {
  text-decoration: underline;
}
a:hover > * {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  text-decoration: none;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
body > #container {
  height: auto;
}

#container {
  background: url(../img/bg.gif);
}
#container::before, #container::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 50%;
  height: 32px;
  background-position: left top;
  background-repeat: repeat-x;
}
#container::before {
  left: 0;
  background-image: url(../img/header_bg3.gif);
}
#container::after {
  right: 0;
  background-image: url(../img/header_bg4.gif);
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
#header {
  position: relative;
  z-index: 1;
  background: url(../img/header_bg.gif) center top no-repeat;
  padding-top: 32px;
}

#header {
  padding-top: 92px;
  margin-bottom: 40px;
}

.h-title {
  position: relative;
  margin: 0 auto;
  width: 1050px;
}
.h-title img {
  margin-left: -120px;
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
#content {
  padding-bottom: 32px;
}

/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
#main {
  margin: 0 auto;
  width: 830px;
}

.m-order {
  margin-bottom: 28px;
}

.m-lead {
  margin-bottom: 28px;
  line-height: 2;
  font-size: 1.4em;
  color: #464646;
}

.m-form {
  margin-bottom: 100px;
}

#error {
  margin: 0 65px 35px;
  border: 2px solid #d9282e;
  background: #fff;
}

.error-message {
  margin-left: 115px;
  padding: 24px 0 24px 47px;
  background: url(../img/form_error_bg.png) left center no-repeat;
  line-height: 1.4285714286;
  font-weight: bold;
  font-size: 1.4em;
  color: #d9282e;
}
.error-message span {
  font-weight: normal;
  font-size: 0.8571428571em;
  color: #464646;
}

legend {
  display: none;
}

.form-wrapper {
  display: table;
  margin-bottom: 50px;
  width: 100%;
  border: 1px solid #b5b5b5;
}

.form-item {
  display: table-row;
  width: 100%;
  border: 1px solid #b5b5b5;
}
.form-item:nth-child(odd) > * {
  background-color: #fff;
}
.form-item:nth-child(odd) .errbg {
  background-color: #f9e5e0;
}
.form-item:nth-child(even) > * {
  background-color: #f6f6f6;
}
.form-item:nth-child(even) .errbg {
  background-color: #f1ddd8;
}

.form-label,
.form-input {
  display: table-cell;
}

.form-label {
  padding: 16px 20px;
  width: 234px;
  border-right: 1px solid #b5b5b5;
  background: url(../img/form_label_bg.gif) right 5px top 5px no-repeat;
  vertical-align: middle;
  line-height: 1.25;
  font-size: 1.6em;
  color: #464646;
}
.form-label.required {
  background-image: url(../img/form_required_bg.gif);
}

.form-input {
  padding: 16px 19px;
  line-height: 1.625;
  font-size: 1.6em;
  color: #464646;
}
.form-input ul {
  margin-bottom: -20px;
}
.form-input li {
  display: inline-block;
  margin: 0 20px 20px 0;
}
.form-input label {
  padding-left: .5em;
}

input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  min-height: 33px;
  width: 100%;
  border: 1px solid #b5b5b5;
}

input[type='text'].short,
input[type='email'].short,
input[type='tel'].short {
  width: 5em;
}
input[type='text'].middle,
input[type='email'].middle,
input[type='tel'].middle {
  width: 11em;
}

textarea {
  padding: 12px;
  line-height: 1.625;
  resize: vertical;
}

.m-form-button-item input {
  overflow: hidden;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  margin: 0 auto;
  width: 405px;
  height: 77px;
  border: none;
  background-position: left top;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
.m-form-button-item.confirmation input {
  background-image: url(../img/button_confirmation.png);
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#footer::before, #footer::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 50%;
  height: 32px;
  background-position: left top;
  background-repeat: repeat-x;
}
#footer::before {
  left: 0;
  background-image: url(../img/footer_bg2.gif);
}
#footer::after {
  right: 0;
  background-image: url(../img/footer_bg3.gif);
}
#footer .copyright {
  position: relative;
  z-index: 1;
  padding-bottom: 7px;
  background: url(../img/footer_bg.gif) center top no-repeat;
  text-align: center;
  line-height: 2.5;
  color: #fff;
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.reservation .m-contents {
  margin-bottom: 50px;
}
.reservation .m-title {
  margin-bottom: 16px;
}
.reservation .m-tel-clinic-list {
  margin: 0 15px;
}
.reservation .m-tel-clinic-item {
  *zoom: 1;
  margin-bottom: 17px;
}
.reservation .m-tel-clinic-item:after {
  content: "";
  display: table;
  clear: both;
}
.reservation .m-tel-clinic-title {
  float: left;
  position: relative;
  margin-right: 15px;
  width: 222px;
  height: 63px;
}
.reservation .m-tel-clinic-title img {
  position: absolute;
  bottom: -6px;
}
.reservation .m-tel .osaka .m-tel-clinic-title img {
  bottom: -3px;
}
.reservation .m-tel .fukuoka .m-tel-clinic-title img {
  bottom: -2px;
}
.reservation .m-tel-clinic-tel {
  background: rgba(255, 255, 255, 0.8);
  margin-left: 200px;
  height: 63px;
  color: #464646;
}
.reservation .m-tel-clinic-tel > * {
  float: left;
}
.reservation .m-tel-clinic-tel .free {
  margin-right: 15px;
  padding: 17px 0;
}
.reservation .m-tel-clinic-tel .free-img {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  vertical-align: top;
}
.reservation .m-tel-clinic-tel .free-img.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.reservation .m-tel-clinic-tel .international {
  padding: 11px 0;
  line-height: 1.4285714286;
  font-size: 1.4em;
  color: #464646;
}
.reservation .date .form-label p {
  margin-top: 1em;
  line-height: 1.3333333333;
  font-size: 0.75em;
}
.reservation .date .form-label em {
  color: #d9282e;
}
.reservation .ui-datepicker-trigger {
  overflow: hidden;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -moz-linear-gradient(#e6e6e6, #fefefe);
  background: -webkit-linear-gradient(#e6e6e6, #fefefe);
  background: linear-gradient(#e6e6e6, #fefefe);
  display: inline-block;
  position: relative;
  padding: 0;
  width: 33px;
  height: 33px;
  border: 1px solid #b5b5b5;
  border-left: 0;
  outline: none;
  cursor: pointer;
  vertical-align: top;
}
.reservation .ui-datepicker-trigger::before {
  content: '\f073';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-indent: 0;
  line-height: 33px;
  font-family: fontAwesome;
  font-size: 1.6em;
  color: #464646;
}
.reservation .ui-datepicker {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 242px;
  font-size: 1.4em;
}
.reservation .ui-datepicker td {
  line-height: 2;
}
.reservation .ui-datepicker a:hover > * {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.confirmation .form-label {
  background-image: none;
}
.confirmation .form-input {
  min-height: 1em;
}
.confirmation .email .form-input {
  font-weight: bold;
  font-size: 2em;
  color: #d9282e;
}
.confirmation .m-form-button-item {
  float: left;
  margin-left: 50px;
}
.confirmation .send input {
  background-image: url(../img/button_send.png);
}
.confirmation .m-sendto {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -moz-linear-gradient(#f3f3f3, #ffffff);
  background: -webkit-linear-gradient(#f3f3f3, #ffffff);
  background: linear-gradient(#f3f3f3, #ffffff);
  margin: 0 75px 30px;
  border: 2px solid #ea9471;
}
.confirmation .m-sendto-item {
  display: table-cell;
  vertical-align: middle;
  height: 54px;
}
.confirmation .m-sendto .title {
  width: 168px;
  background: #ea9471;
  text-align: center;
  font-weight: bold;
  font-size: 1.6em;
  color: #fff;
}
.confirmation .m-sendto .email {
  padding-left: 16px;
  font-weight: bold;
  font-size: 2em;
  color: #d9282e;
}
.confirmation .m-attention {
  margin: 0 75px 50px;
  padding: 28px 0 23px 26px;
  border-left: 2px solid #2a84a2;
  background: rgba(255, 255, 255, 0.8);
}
.confirmation .m-attention .title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.6em;
  color: #464646;
}
.confirmation .m-attention .text {
  margin-bottom: 10px;
  line-height: 1.5714285714;
  font-size: 1.4em;
}
.confirmation .attention-item {
  line-height: 1.7142857143;
  font-size: 1.4em;
  color: #d9282e;
  list-style-type: disc;
  list-style-position: inside;
}
.confirmation .m-button {
  text-align: center;
}

.js-accordion-title {
  cursor: pointer;
}

.js-accordion-contents {
  overflow: hidden;
  height: 0;
  min-height: 0;
  transition: all .4s ease-in;
  transform: translate3d(0, 0, 0);
}

.privacypolicy-text {
  text-align: center;
  margin-top: 20px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #4c4a4a;
}

.p-privacypolicy {
  position: relative;
  margin-bottom: 45px;
  color: #4c4a4a;
}

.p-privacypolicy-inner {
  margin: 0 auto;
  box-sizing: border-box;
}

.p-privacypolicy-inner.is-open .p-privacypolicy-title {
  background: url(../img/privacypolicy_arrow2.png) center bottom no-repeat;
}

.p-privacypolicy-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  text-align: center;
  letter-spacing: .18em;
  padding: 40px 0;
  background: url(../img/privacypolicy_arrow1.png) center bottom no-repeat;
  cursor: pointer;
}

.p-privacypolicy-title::before, .p-privacypolicy-title::after {
  display: block;
  flex: 1;
  content: '';
  height: 1px;
  background-color: #cccccc;
}

.p-privacypolicy-title::before {
  margin-right: 1em;
}

.p-privacypolicy-title::after {
  margin-left: 1em;
}

.p-privacypolicy-contents-wrapper {
  padding-top: 50px;
}

.p-privacypolicy .title {
  padding: 0;
  background: 0;
  height: auto;
  line-height: 1;
  border: 0;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-privacypolicy .text,
.p-privacypolicy .item {
  line-height: 1.8333333333;
  font-size: 1.2em;
}

.p-privacypolicy .contents-title {
  font-size: 1.2em;
  margin-bottom: .5em;
}

.p-privacypolicy .list {
  counter-reset: list;
  margin-bottom: 1em;
  margin-left: 1em;
}

.p-privacypolicy .item {
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.p-privacypolicy .item:nth-child(n)::before {
  counter-increment: list;
  content: "（" counter(list) "）";
}

.p-privacypolicy .item .item {
  font-size: 1em;
}

.p-privacypolicy .text {
  margin-bottom: 1em;
}

.p-privacypolicy .text + .text,
.p-privacypolicy .text + .list {
  margin-top: 1em;
}

.p-privacypolicy .text.date {
  text-align: right;
}

.p-privacypolicy .text + .title,
.p-privacypolicy .list + .title {
  margin-top: 2em;
}

.p-privacypolicy #reception dt,
.p-privacypolicy #reception dd {
  line-height: 1.8333333333;
  font-size: 1.2em;
}

.p-privacypolicy #reception dl {
  display: flex;
}

.p-privacypolicy #reception dl dt,
.p-privacypolicy #reception dl dd {
  font-size: 1em;
}

.p-privacypolicy #reception a {
  color: #4c4a4a;
  pointer-events: none;
}

/*# sourceMappingURL=form.css.map */
