@charset "UTF-8";
.l-main {
  color: #cdcdcd;
}

.f-copyright {
  margin: 0 auto;
  padding: 20px 0;
  width: auto;
  background: url(../img/contents_bg.png) left top;
  text-align: center;
  color: #fff;
}

.c-note {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  color: #383634;
}
.c-note .detail {
  text-align: center;
  line-height: 1.7;
  font-size: 16px;
}

.c-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  text-align: center;
  line-height: 1.7;
  font-size: 16px;
  color: #383634;
}

.c-formbutton {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 180px;
}
.c-formbutton input,
.c-formbutton a {
  -moz-transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-formbutton input:hover,
.c-formbutton a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  text-decoration: none;
}

.c-complete {
  margin-bottom: 55px;
}
.c-complete .title {
  padding: 10px 0;
  background: url(../img/contents_bg.png) left top;
  text-align: center;
  line-height: 1.25;
  font-size: 24px;
  color: #fff;
}
.c-complete .detail {
  padding: 20px;
  background: #fff;
  line-height: 1.7142857143;
  font-size: 14px;
  color: #383634;
}
.c-complete .detail em {
  color: #be1c64;
}

.c-address {
  display: table;
  margin: 0 auto 40px;
  width: 100%;
}
.c-address > * {
  display: table-cell;
  padding: 15px;
  vertical-align: middle;
}
.c-address .title {
  width: 200px;
  background: url(../img/contents_bg.png) left top;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  color: #fff;
}
.c-address .detail {
  padding: 30px;
  background: #fff;
  font-size: 24px;
  font-weight: bold;
  color: #be1c64;
}

.c-attention {
  position: relative;
  padding: 20px 25px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.c-attention::before {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 96%;
  background-color: #383634;
}
.c-attention .title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #be1c64;
}
.c-attention .detail {
  line-height: 1.7142857143;
  font-size: 14px;
  color: #383634;
}
.c-attention-list {
  margin-top: 10px;
}
.c-attention-item {
  color: #be1c64;
}
.c-attention-item:first-child {
  margin-bottom: 5px;
}

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

File Name:		form.scss
Note:			PCフォーム用SCSSファイル


New Creation:	2018/07/11.
Last Change:	2018/07/13.


Created By		Kosuke Inoue

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

0.	共通使用変数定義
1.	ブラウザデフォルトスタイルリセット
2.	共通部分
3.	header
4.	main
5.	side
6.	footer
7.	original

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
0.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
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-family: "ヒラギノ角ゴ Pro W", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
}

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

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

.l-container {
  background: url(../img/body_bg.gif) left top repeat-x #000;
}

/*----------------------------------------------------------------------
2.	共通部分
----------------------------------------------------------------------*/
form legend {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*----------------------------------------------------------------------
3.	header
----------------------------------------------------------------------*/
.form .h-title {
  margin: 0 auto;
  width: 1200px;
}

/*----------------------------------------------------------------------
4.	main
----------------------------------------------------------------------*/
.p-form {
  margin: 0 auto;
  padding-bottom: 140px;
  width: 1200px;
  background: #fff;
}
.p-form .c-box-inner {
  margin: 0 auto;
  width: 920px;
}

.progress {
  text-align: center;
}
.progress img {
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------
5.	side
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
6.	footer
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	original
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
	Input
----------------------------------------------------------------------*/
.input .input-form-wrapper {
  color: #51504e;
}
.input .input-form-wrapper .input-form-item {
  border-top: 1px solid #d9d9da;
}
.input .input-form-wrapper .input-form-item > * {
  font-size: 16px;
}
.input .input-form-wrapper .input-form-item:last-child {
  border-bottom: 1px solid #d9d9da;
}
.input .input-form-wrapper .input-form-item:nth-child(odd),
.input .input-form-wrapper .input-form-item.odd.odd,
.input .input-form-wrapper .input-form-item:nth-child(even),
.input .input-form-wrapper .input-form-item.even.even {
  background: none;
}
.input .input-form-wrapper .input-form-item :nth-child(odd) > *,
.input .input-form-wrapper .input-form-item :nth-child(even) > *,
.input .input-form-wrapper .input-form-item.odd.odd th,
.input .input-form-wrapper .input-form-item.odd.odd td,
.input .input-form-wrapper .input-form-item.even.even th,
.input .input-form-wrapper .input-form-item.even.even td {
  background-image: none;
  background-color: inherit;
}
.input .input-form-wrapper .input-form-item .formError.fixed .formErrorContent,
.input .input-form-wrapper .input-form-item .errMsg {
  background-color: #d1000f;
}
.input .input-form-wrapper .input-form-label,
.input .input-form-wrapper .input-form-input {
  border: 0;
  background: none;
}
.input .input-form-wrapper .input-form-label {
  border-right: 1px solid #d9d9da;
}
.input .input-form-wrapper .input-form-label small {
  font-weight: normal;
}
.input .input-form-wrapper .input-form-input li {
  margin-right: 0;
}
.input .input-form-wrapper tbody tr:last-child th,
.input .input-form-wrapper tbody tr:last-child td {
  border-bottom: 0;
}
.input .input-form-wrapper textarea,
.input .input-form-wrapper input[type='text'],
.input .input-form-wrapper input[type='email'],
.input .input-form-wrapper input[type='submit'],
.input .input-form-wrapper input[type='number'],
.input .input-form-wrapper input[type='tel'] {
  border: 1px solid #d9d9da;
  color: #51504e;
}
.input .input-form-wrapper input:not([type=radio]):not([type=checkbox]) {
  height: 45px;
}
.input .input-form-wrapper .date input:not([type=radio]):not([type=checkbox]) {
  height: 33px;
}
.input .input-form-wrapper input:not([type=radio]):not([type=checkbox]),
.input .input-form-wrapper .input-form .input-form-wrapper textarea {
  color: #51504e;
}
.input .input-form-wrapper .required .input-form-label {
  background-image: none;
}
.input .input-form-wrapper .required .input-form-label label::after {
  content: '';
  float: right;
  width: 61px;
  height: 24px;
  background: url(../img/form_required_ok.png) left bottom no-repeat;
  background-position: left top;
}
.input .input-form-wrapper .required.is-empty .input-form-label label::after {
  content: '';
  float: right;
  width: 51px;
  height: 24px;
  background: url(../img/form_required.png) left bottom no-repeat;
  background-position: left top;
}
.input .input-form-wrapper .required.err .input-form-label label::after {
  content: '';
  float: right;
  width: 51px;
  height: 24px;
  background: url(../img/form_required_ng.png) left bottom no-repeat;
  background-position: left top;
}
.input .input-form-wrapper .operation,
.input .input-form-wrapper .name,
.input .input-form-wrapper .email,
.input .input-form-wrapper .tel {
  height: 90px;
}
.input .input-form-wrapper .operation {
  display: none;
}
.input .input-form-wrapper .text textarea {
  height: 120px;
  min-height: 120px;
}

/*----------------------------------------------------------------------
	CONFIRMATION
----------------------------------------------------------------------*/
.confirmation .m-button {
  justify-content: space-between;
}
.confirmation .form-item {
  height: 90px;
  border-top: 1px solid #d9d9da;
}
.confirmation .form-item:last-child {
  border-bottom: 1px solid #d9d9da;
}
.confirmation .form-item.operation {
  display: none;
}
.confirmation .item-inner {
  display: flex;
  align-items: center;
}
.confirmation .form-label {
  padding-left: 60px;
  width: 319px;
}
.confirmation .form-label label {
  font-size: 16px;
  color: #a9aeb8;
}
.confirmation .form-input,
.confirmation .form-input em {
  padding: 10px 60px 10px 0;
  width: 741px;
  line-height: 1.4;
  font-size: 18px;
  color: #51504e;
  word-break: break-all;
}

/*----------------------------------------------------------------------
	SEND
----------------------------------------------------------------------*/
.send .c-formbutton {
  justify-content: center;
}
.send .m-address {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 60px;
  height: 90px;
  border-top: 1px solid #d9d9da;
  border-bottom: 1px solid #d9d9da;
}
.send .m-address-title {
  width: 259px;
  font-size: 16px;
  color: #a9aeb8;
}
.send .m-address-contents {
  width: 741px;
  line-height: 1.4;
  font-size: 18px;
  color: #51504e;
  word-break: break-all;
}
.send .m-attention {
  color: #51504e;
}
.send .m-attention-title {
  margin-bottom: 30px;
  padding: 10px 0 10px 40px;
  background: url(../img/form_attention_title_bg.png) left top no-repeat;
  font-size: 18px;
}
.send .m-attention-text {
  line-height: 1.875;
  font-size: 16px;
}
.send .m-attention-text a {
  text-decoration: underline;
  color: #51504e;
}
.send .m-attention-item {
  padding-left: 10px;
  text-indent: -10px;
  line-height: 1.875;
  font-size: 16px;
}
.send .m-attention-item::before {
  content: '●';
}

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