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

File Name:
Note:


New Creation:
Last Change:


Created By		Takumi Ouchi

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

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

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

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

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

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

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

p, li {
  background-image: url(../img/dummy.png);
}

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: none;
  vertical-align: bottom;
}

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

th, td {
  padding: 0px;
}

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

textarea {
  vertical-align: top;
}

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

body {
  min-width: 1000px;
  color: #444;
}

a {
  color: #0d1c4c;
}
a, a:before, a:after {
  -moz-transition: background-color 0.3s linear, background-image 0.3s linear;
  -webkit-transition: background-color 0.3s linear, background-image 0.3s linear;
  transition: background-color 0.3s linear, background-image 0.3s linear;
}
a > * {
  -moz-transition: opacity 0.3s linear;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.box-inner {
  margin: 0 auto;
  width: 1000px;
}

.title-area {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 65px 0 115px;
  min-width: 1000px;
}
.title-area:before {
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  margin: 0 -1000px;
  width: 2000px;
  min-width: 1000px;
  height: 167px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #dbe35f;
  -ms-transform-origin: right center;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.m-title {
  position: relative;
  z-index: 11;
  margin: -6px auto 0;
  padding: 107px 10px 72px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: url(../img/title_bg.png) 31px bottom no-repeat;
  text-align: center;
  color: #fff;
  box-sizing: boder-box;
}

.text {
  color: #7c7c7d;
}

.form-link {
  position: absolute;
  top: 609px;
  left: 725px;
  width: 306px;
  height: 67px;
  overflow: hidden;
}
.form-link a {
  position: relative;
  display: block;
  margin-left: 15px;
  width: 306px;
  height: 67px;
  background-color: #F53760;
  color: #000;
  overflow: hidden;
}
.form-link a span {
  display: block;
  width: 308px;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  margin-left: -15px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}
.form-link a::before {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #000;
  height: 120%;
  left: -10%;
  z-index: 0;
}
.form-link a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 38px;
  width: 18px;
  height: 20px;
  margin-top: -10px;
  background: url(../img/form_icon.png) left top no-repeat;
}
.form-link a:hover {
  cursor: pointer;
  color: #fff;
}
.form-link a:hover::before {
  left: -10%;
  width: 120%;
}
.form-link a:hover::after {
  background-image: url(../img/form_icon_h.png);
}

/*----------------------------------------------------------------------
6.	header
----------------------------------------------------------------------*/
.header {
  opacity: 0;
  position: fixed;
  width: 100%;
  border-bottom: 1px solid #fff;
  background-color: #cacaca;
}
.header.fixed {
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 99999;
}

.header-inner {
  overflow: hidden;
  *zoom: 1;
  position: relative;
  padding: 23px 341px 25px 20px;
  min-width: 1000px;
  box-sizing: border-box;
}
.header-inner .logo {
  float: left;
}
.header-inner .nav {
  float: left;
  padding-left: 20px;
}
.header-inner .nav-list {
  overflow: hidden;
  *zoom: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 0 0;
  padding: 0 17px 0 0;
  width: 375px;
}
.header-inner .nav-item {
  float: left;
  margin-top: 13px;
  padding: 0 15px;
  height: 15px;
  background: url(../img/nav_border.gif) right center no-repeat;
}
.header-inner .nav-item span {
  -moz-transition: color 0.3s linear;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}
.header-inner .nav-item span:hover {
  color: #dbe35f;
  text-decoration: none;
}
.header-inner .nav-item:nth-child(1), .header-inner .nav-item:nth-child(2), .header-inner .nav-item:nth-child(3), .header-inner .nav-item:nth-child(4) {
  margin-top: 0;
}
.header-inner .nav-item:nth-child(1), .header-inner .nav-item:nth-child(5) {
  position: relative;
  padding-left: 21px;
}
.header-inner .nav-item:nth-child(1)::before, .header-inner .nav-item:nth-child(5)::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 10px;
  background: url(../img/nav_border.gif) left center no-repeat;
}
.header-inner .h-time {
  -moz-transform: skewX(-24deg);
  -ms-transform: skewX(-24deg);
  -webkit-transform: skewX(-24deg);
  transform: skewX(-24deg);
  position: absolute;
  top: 30px;
  right: 278px;
  padding: 7px 25px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
}
.header-inner .h-time .h-time-inner {
  -moz-transform: skewX(24deg);
  -ms-transform: skewX(24deg);
  -webkit-transform: skewX(24deg);
  transform: skewX(24deg);
}
.header-inner .h-time span {
  letter-spacing: .05em;
  font-weight: bold;
}
.header-inner .h-form {
  top: 0;
  right: 0;
  left: auto;
  height: 95px;
}
.header-inner .h-form a {
  -moz-transform: skewX(-24deg);
  -ms-transform: skewX(-24deg);
  -webkit-transform: skewX(-24deg);
  transform: skewX(-24deg);
  height: 95px;
  margin-left: 21px;
}
.header-inner .h-form a:after {
  -moz-transform: skewX(24deg);
  -ms-transform: skewX(24deg);
  -webkit-transform: skewX(24deg);
  transform: skewX(24deg);
  right: 55px;
}
.header-inner .h-form span {
  -moz-transform: skewX(24deg);
  -ms-transform: skewX(24deg);
  -webkit-transform: skewX(24deg);
  transform: skewX(24deg);
  margin-left: -21px;
}

.header {
  position: static;
  background: url(../img/header_form_bg.jpg) center center no-repeat #000;
  opacity: 1;
}

.header-inner {
  height: 285px;
}
.header-inner:after {
  -moz-transform-origin: right center 50%;
  -ms-transform-origin: right center 50%;
  -webkit-transform-origin: right center 50%;
  transform-origin: right center 50%;
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  content: '';
  position: absolute;
  top: 184px;
  left: 50%;
  z-index: 0;
  margin: 0 -1000px;
  width: 2000px;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.header-inner .logo {
  position: relative;
  z-index: 1000;
  float: none;
  margin: 0 auto;
  padding-top: 25px;
  width: 700px;
}
.header-inner .logo img {
  position: relative;
}

/*----------------------------------------------------------------------
7.	main
----------------------------------------------------------------------*/
.form-title {
  margin-top: -207px;
}
.form-title .m-title {
  margin-top: 23px;
  padding-top: 79px;
}

.form-box-inner {
  margin: 0 auto;
  width: 1000px;
}
.form-box-inner > .text {
  padding: 50px 0;
  text-align: center;
  line-height: 2;
  font-size: 16px;
}

.input-form .input-form-wrapper .input-form-label {
  background-position: 15px 16px;
}
.input-form .input-form-wrapper .input-form-label .note {
  display: block;
}
.input-form .input-form-wrapper .input-form-label > *:first-child {
  background-image: none;
}
.input-form .input-form-wrapper .input-form-label > *:first-child span {
  font-size: 1em;
  margin-right: -.5em;
}
.input-form .input-form-wrapper .input-form-item > * {
  border: 0;
}

.input-form-privacy {
  border-top: 1px solid #e3e3e3;
  display: none;
}
.input-form-privacy-inner {
  box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  width: 920px;
  padding: 80px 0 120px;
  color: #918c88;
}
.input-form-privacy .main-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 2em;
  color: #7f7875;
}
.input-form-privacy .title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #7f7875;
}
.input-form-privacy .text,
.input-form-privacy .item {
  line-height: 1.8333333333;
  font-size: 1.2em;
}
.input-form-privacy .contents-title {
  font-size: 1.2em;
  margin-bottom: .5em;
}
.input-form-privacy .list {
  counter-reset: list;
  margin-bottom: 1em;
  margin-left: 1em;
}
.input-form-privacy .item {
  margin-left: 2.5em;
  text-indent: -2.5em;
}
.input-form-privacy .item:nth-child(n)::before {
  counter-increment: list;
  content: "（" counter(list) "）";
}
.input-form-privacy .item .item {
  font-size: 1em;
}
.input-form-privacy .text {
  margin-bottom: 1em;
}
.input-form-privacy .text + .text,
.input-form-privacy .text + .list {
  margin-top: 1em;
}
.input-form-privacy .text.date {
  text-align: right;
}
.input-form-privacy .text + .title,
.input-form-privacy .list + .title {
  margin-top: 2em;
}
.input-form-privacy #reception dt,
.input-form-privacy #reception dd {
  line-height: 1.8333333333;
  font-size: 1.2em;
}
.input-form-privacy #reception dl {
  display: flex;
}
.input-form-privacy #reception dl dt,
.input-form-privacy #reception dl dd {
  font-size: 1em;
}
.input-form-privacy #reception a {
  color: #918c88;
  pointer-events: none;
}

.date .input-form-input select {
  margin-left: initial;
  width: initial;
  height: initial;
  font-size: initial;
  border: 0.2rem solid #d9d9da;
  border-radius: 0;
  line-height: 1.4;
  color: #7f7875;
}

.ui-datepicker table {
  border-collapse: collapse !important;
}
.ui-datepicker th {
  padding: 0.7em 0.3em !important;
  text-align: center !important;
  font-weight: bold !important;
  border: 0 !important;
}
.ui-datepicker td {
  border: 0;
  padding: 1px !important;
}

#monitor table,
#consultation table,
#confirmation table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
}
#monitor table th,
#monitor table td,
#consultation table th,
#consultation table td,
#confirmation table th,
#confirmation table td {
  font-size: 16px;
}
#monitor table th,
#consultation table th,
#confirmation table th {
  padding: 12px 25px 12px 50px;
  width: 190px;
  background-color: #dbe35f;
  vertical-align: top;
  text-align: right;
  line-height: 1.5;
  font-weight: bold;
  color: #424242;
}
#monitor table td,
#consultation table td,
#confirmation table td {
  padding: 15px 25px 15px 30px;
  background-color: #e9e9e9;
  color: #606060;
}
#monitor table input,
#consultation table input,
#confirmation table input {
  padding: 5px;
  border: 1px solid #b5b5b6;
}
#monitor table input.full,
#consultation table input.full,
#confirmation table input.full {
  width: 611px;
}
#monitor table textarea,
#consultation table textarea,
#confirmation table textarea {
  padding: 5px;
  width: 611px;
  border: 1px solid #b5b5b6;
  line-height: 1.25;
}
#monitor table li,
#consultation table li,
#confirmation table li {
  margin-top: 10px;
}
#monitor table li:first-child,
#consultation table li:first-child,
#confirmation table li:first-child {
  margin-top: 0;
}
#monitor table .chkradio label,
#consultation table .chkradio label,
#confirmation table .chkradio label {
  margin-left: .5em;
}
#monitor table .block,
#consultation table .block,
#confirmation table .block {
  display: block;
  padding-top: 3px;
}

.form-item.name em {
  display: block;
  margin-right: -.5em;
}
.form-item.emailcheck label {
  margin-right: -.5em;
}
.form-item.possibletime em {
  display: block;
  margin-right: -.5em;
}
.form-item.possibletime ul {
  overflow: hidden;
  *zoom: 1;
  padding: 5px 0;
  width: 550px;
}
.form-item.possibletime li {
  float: left;
  width: 170px;
}
.form-item.possibletime li:nth-child(1), .form-item.possibletime li:nth-child(2), .form-item.possibletime li:nth-child(3) {
  margin-top: 0;
}
.form-item .required {
  background-image: url(../img/form_required.gif);
  background-position: 15px 16px;
  background-repeat: no-repeat;
}
.form-item .option {
  background-image: url(../img/form_free.gif);
  background-position: 15px 16px;
  background-repeat: no-repeat;
}

.input-form-text {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1em;
}
.input-form-text a {
  color: #505050;
  text-decoration: underline;
  cursor: pointer;
}

.button {
  overflow: hidden;
  *zoom: 1;
  padding: 40px 0 60px;
  text-align: center;
}
.button.confirmation li {
  float: left;
}
.button .send {
  padding-left: 100px;
}

.address {
  margin: 0 auto;
  width: 800px;
}
.address .term {
  padding: 20px 0 18px;
  background-color: #dbe35f;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.address .description {
  padding: 15px 10px;
  border: 2px solid #dbe35f;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #000;
}

.attention {
  margin: 50px auto 80px;
  padding: 20px;
  width: 760px;
  background-color: #d4d4d4;
}
.attention .attention-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.attention .attention-text {
  line-height: 1.4;
  font-size: 16px;
}

.errbg {
  background-color: #fbe9e9;
}

.go-top {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 600px) {
  .header-inner {
    padding-right: 0;
  }

  .form-item .form-label {
    background-image: url(../img/dummy.png);
  }
  .form-item .form-input {
    background-image: url(../img/dummy.png);
  }
  .form-item em {
    display: inline;
  }
  .form-item.text {
    padding: 0;
  }
  .form-item .option {
    background-image: url(../img/dummy.png);
  }
  .form-item.name em {
    display: inline;
  }
  .form-item.clinic li {
    letter-spacing: -.02em;
  }
  .form-item.possibletime em {
    display: inline;
  }
  .form-item.possibletime li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
  }

  .form-box-inner .text {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 1em;
    padding-left: 1em;
    line-height: 1.5;
    font-size: 40px;
  }

  .item-inner {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    font-size: 40px;
  }

  form .errbg {
    background: none;
  }

  .form-box li span {
    padding: 10px;
    font-size: 30px;
  }

  .go-confirmation {
    margin: 0 auto;
    width: 360px;
  }

  .button li {
    border: 0;
    background: none;
  }
  .button li:last-child {
    border: 0;
    background: none;
  }
  .button li.back {
    float: left;
    margin-left: 20px;
    width: 230px;
    background: none;
  }
  .button li.send {
    width: 340px;
  }

  .address .term {
    font-size: 44px;
  }
  .address .description {
    padding: 30px 10px;
    font-size: 46px;
  }

  .attention .attention-title {
    font-size: 40px;
  }
  .attention .attention-text {
    font-size: 34px;
  }
}
/*----------------------------------------------------------------------
8.	footer
----------------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  background-color: #d4d4d4;
  text-align: center;
}
.footer .f-copyright-list {
  margin-bottom: 5px;
}
.footer .f-copyright-item a, .footer .f-copyright-text {
  font-size: 14px;
  color: #7c7c7d;
}
.footer .f-copyright-item {
  display: inline-block;
}

/*----------------------------------------------------------------------
9.	ブレイクポイント
----------------------------------------------------------------------*/

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