/* Ion.CheckRadio, Skin Base
// Version 2.0.0
//
// © Denis Ineshin, 2015
// https://github.com/IonDen
// ===================================================================================================================*/

.icr-label {
    position: relative;
    display: inline-block;
}

.icr-hidden {
    position: absolute;
    display: block;
    top: 0; left: 0;
    width: 0; height: 0;
    overflow: hidden;
}

.icr-input {
    position: absolute;
    display: block;
    top: -20px; left: -20px;
}

.icr-text {
    display: inline-block;
    vertical-align: middle;
}

.icr-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: #FFF;
}


/* Sprite positions */

.icr-label .type_checkbox {
    background-position: 0 0;
}
.icr-label .type_radio {
    background-position: 0 -50px;
}

.icr-label:hover .type_checkbox {
    background-position: -50px 0;
}
.icr-label:hover .type_radio {
    background-position: -50px -50px;
}


.icr-label.checked .type_checkbox {
    background-position: -150px 0;
}
.icr-label.checked .type_radio {
    background-position: -150px -50px;
}

.icr-label.checked:hover .type_checkbox {
    background-position: -150px 0;
}
.icr-label.checked:hover .type_radio {
    background-position: -150px -50px;
}


.icr-label.disabled {
    opacity: 0.5;
}
.lt-ie9 .icr-label.disabled {
    filter: alpha(opacity=50);
}

.icr-label.disabled .type_checkbox {
    background-position: 0 0 !important;
}
.icr-label.disabled .type_radio {
    background-position: 0 -50px !important;
}

.icr-label.checked.disabled .type_checkbox {
    background-position: -100px 0 !important;
}
.icr-label.checked.disabled .type_radio {
    background-position: -100px -50px !important;
}



/* Ion.CheckRadio, Cloudy Skin
// Version 2.0.0
//
// © Denis Ineshin, 2015
// https://github.com/IonDen
// ===================================================================================================================*/

._icr-label {
    padding-right: 2px;
    margin: 0 5px 5px 0;
}

.icr-item {
    width: 18px; height: 18px;
    border: 1px solid #ccc;
}

.icr-item.type_radio {
    -moz-border-radius: 18px;
    border-radius: 18px;
}
.icr-label.checked .type_radio:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #999;
}
.icr-label.focused .icr-item {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.lt-ie9 .icr-label.focused .icr-item {
    border-color: #555;
}

.icr-item.type_checkbox {
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.icr-label.checked .type_checkbox:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%; left: 50%;
    width: 4px; height: 12px;
    margin: -6px 0 0 -2px;
    background: #999;

    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icr-label.checked .type_checkbox:before {
    position: absolute;
    display: block;
    content: "";
    top: 50%; left: 50%;
    width: 12px; height: 4px;
    margin: -2px 0 0 -6px;
    background: #999;

    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


.icr-label:hover .icr-item, .icr-label.checked .icr-item {
    border-color: #999;
}

.icr-label.checked:hover .icr-item:after, .icr-label.checked:hover .icr-item:before {
    background: #999;
}

.icr-label.disabled.checked:hover .icr-item:after, .icr-label.disabled.checked:hover .icr-item:before {
    background: #ccc;
}



.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: 500; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }




/* Form */

.form {
	margin: 0 auto;
	min-width: 500px;
	max-width: 100%;
	width: 100%;
}
.form .field {
	clear: both;
	margin-bottom: 2.5em;
}
.form .field:after {
	clear: both;
	content: "";
	display: table;
}
.form h6 {
	margin-bottom: 1em;
	font-weight: 500;
	font-size: 1.1em;
}
.form h6 .label {
	margin-left: 0.8em;
	padding-left: 0.8em;
	font-weight: 400;
	border-left: solid 1px #CCC;
}
.form .required h6 .label {
	color: #C00;
}
.form .optional h6 .label {
	color: #0297CE;
}
.form .enquete h6 .label {
	color: #02CE92;
}
.form .note {
	margin-top: 0.7em;
	color: #BBB;
	font-size: 0.85em;
}
.form .note.centering {
	text-align: center;
}
.form .note.attention {
	color: #C00;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="number"],
.form textarea {
	padding: 0.7em;
	width: 100%;
	font-size: 1.1em;
	font-weight: 400;
	letter-spacing: 0.08em;
	border: solid 1px #eee;
	/* background: #fff; */
	outline: none;
		-o-border-radius: 4px;
		-ms-border-radius: 4px;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
	border-radius: 4px;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	box-sizing: border-box;
}
.form input.zip {
	width: 7.5em;
}
.form textarea {
	width: 100%;
	height: 13em;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form input[type="password"]:focus,
.form input[type="number"]:focus,
.form textarea:focus {
	border: solid 1px rgba(0,129,229, 0.8) !important;
	border: solid 1px #0081E5\9; /* IE8 以下 */
		-webkit-box-shadow: 0px 0px 5px #EEE;
		-moz-box-shadow: 0px 0px 5px #EEE;
		-ms-box-shadow: 0px 0px 5px #EEE;
		-o-box-shadow: 0px 0px 5px #EEE;
	box-shadow: 0px 0px 5px #EEE;
}
.form input.disabled,
.form input.disabled[type="text"],
.form input.disabled[type="email"],
.form input.disabled[type="tel"],
.form input.disabled[type="password"],
.form input.disabled[type="number"],
.form textarea.disabled {
	background: #F0F0F0;
}
.form input[type="text"] placefolder,
.form input[type="email"] placefolder,
.form input[type="tel"] placefolder,
.form input[type="password"] placefolder,
.form input[type="number"] placefolder,
.form textarea placefolder {
	color: #EEE;
}


/* Submit */

.form input[type="submit"],
.form .submit span {
	display: inline-block;
	position: relative;
	width: 100%;
	padding: 1.3em 2.5em 1.35em 2.3em;
	color: #fff !important;
	background: #009ea1;
	border: 1px solid #009ea1;
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.2em;
	text-decoration: none;
	border-radius: 50vh;
	transition: all 250ms ease-in-out;
}
.form input[type="submit"]:hover {
	transform: scale(1.03);
	transition: all 300ms ease-in-out;
}
.form .submit span {
	border: solid 1px #DDD;
	background: #DDD;
	cursor: default;
}
.form .multiple_v p {
	margin-bottom: 1.5em;
}
.form .multiple_v p:last-child {
	margin-bottom: 0;
}
.form .multiple_h .half {
	margin-right: 2%;
	width: 34% !important;
}
.form .multiple_h .half:nth-child(2) {
	width: 34% !important;
}


/* Checkbox & Radio with form.check.css */

.checkbox,
.radio {
	margin-right: 1em;
	font-size: 1.1em;
}
.checkbox.v,
.radio.v {
	display: block;
	margin-bottom: 0.3em;
}
.checkbox .icr-text,
.radio .icr-text {
	margin-left: 0.5em;
}
.icr-item {
	margin-right: 0.2em;
    width: 1.5em !important;
    height: 1.5em !important;
    border: solid 1px #CCC !important;
}
.icr-item.type_checkbox {
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.icr-item.type_checkbox:hover {
	border: solid 1px rgba(0,129,229, 0.8) !important;
	border: solid 1px #0081E5\9; /* IE8 以下 */
		-webkit-box-shadow: 0px 0px 5px #EEE;
		-moz-box-shadow: 0px 0px 5px #EEE;
		-ms-box-shadow: 0px 0px 5px #EEE;
		-o-box-shadow: 0px 0px 5px #EEE;
	box-shadow: 0px 0px 5px #EEE;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.icr-label.checked .type_checkbox:before {
	margin: 0.5px 0 0 -8px !important;
	width: 8px !important;
	height: 2px !important;
	background: #000 !important;
}
.icr-label.checked .type_checkbox:after {
	margin: -7px 0 0 2px !important;
	width: 2px !important;
	height: 12px !important;
	background: #000 !important;
}
.icr-label.checked .type_radio {
		-moz-border-radius: 50%;
	border-radius: 50%;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	cursor: pointer;
}
.icr-item.type_radio:hover {
	border: solid 1px rgba(0,129,229, 0.8) !important;
	border: solid 1px #0081E5\9; /* IE8 以下 */
		-webkit-box-shadow: 0px 0px 5px #EEE;
		-moz-box-shadow: 0px 0px 5px #EEE;
		-ms-box-shadow: 0px 0px 5px #EEE;
		-o-box-shadow: 0px 0px 5px #EEE;
	box-shadow: 0px 0px 5px #EEE;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.icr-label.checked .type_radio:after {
	width: 0.6em !important;
	height: 0.6em !important;
	margin: -0.3em 0 0 -0.3em !important;
	background: #000 !important;
}


/* Select with form.select.css */

.nice-select {
	font-size: 1.1em !important;
	height: 3em !important;
	line-height: 3em !important;
	padding: 0 2em 0 1em !important;
	border: solid 1px #CCC;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	box-sizing: border-box;
}
.nice-select:hover {
	border: solid 1px rgba(0,129,229, 0.8) !important;
	border: solid 1px #0081E5\9; /* IE8 以下 */
		-webkit-box-shadow: 0px 0px 5px #EEE;
		-moz-box-shadow: 0px 0px 5px #EEE;
		-ms-box-shadow: 0px 0px 5px #EEE;
		-o-box-shadow: 0px 0px 5px #EEE;
	box-shadow: 0px 0px 5px #EEE;
}
.nice-select .option {
	font-size: 1.1em !important;
	height: 2.6em !important;
	line-height: 2.6em !important;
	padding: 0 2em 0 1em !important;
    min-height: 2.6em !important;
}
    
.nice-select.double {
	clear: none !important;
	float: left !important;
	margin: 0 1em 1em 0;
}


/* Privacy Policy */

#privacypolicy_container {
	position: relative;
	padding: 3.5em 2.5em;
	color: #888;
	letter-spacing: 0.08em;
	background: #F0F0F0;
	box-sizing: border-box;
}
#privacypolicy_container h3 {
	margin-bottom: 2em;
	font-size: 1.3em;
	font-weight: 500;
}
#privacypolicy_container h4 {
	margin-bottom: 1em;
	font-size: 1.1em;
}
#privacypolicy_container h5 {
	margin-bottom: 0.5em;
	font-weight: 500;
}
#privacypolicy_blocks {
	height: 18em;
	overflow-y: auto;
}
.privacypolicy_block {
	margin-top: 3em;
}
.privacypolicy_block p {
	margin-bottom: 0.8em;
	font-weight: 400;
	font-size: 0.95em;
}
#privacypolicy_update {
	position: absolute;
	right: 2.5em;
	top: 3.8em;
	font-weight: 400;
}

/* Confirm */

#form_confirm {
	position: fixed;
	padding: 2.5em;
	max-width: 300px;
	width: 25%;
	height: 100vh;
	right: 0;
	bottom: 0;
	color: #888;
	background: #FAFAFA;
	border: solid 1px #EEE;
	z-index: 10000;
	box-sizing: border-box;
}
#form_confirm h3 {
	margin-bottom: 1.5em;
}
#form_inputted {
	height: 80vh;
	overflow-y: auto;
}
#form_inputted dt {
	clear: both;
	margin-bottom: 0.1em;
	font-weight: 400;
	font-size: 0.85em;
}
#form_inputted dt.inputted_required:after {
	content: "";
}
#form_inputted dd {
	display: inline-block;
	float: left;
	margin: 0 0.8em 1em 0;
	font-weight: 400;
	font-size: 1em;
	color: #333;
}

#form_privacy {
	vertical-align: baseline;
}
#form_privacy .icr-text {
	display: none;
}
#form_privacy .mwform-checkbox-field {
	float: left;
	margin-right: 0.4em;
}
#form_privacy .error {
	display: inline-block !important;
	margin-left: 0.5em;
}
#privacy_text {
	float: left;
}
#privacy_open {
	float: left;
	text-decoration: underline;
	cursor: pointer;
}
#form_privacy .icr-item {
	margin-top: -3px;
}

/* Privacy Policy */

#privacy_open {
	text-decoration: underline;
	cursor: pointer;
}
#privacy_container {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 100001;
}
#privacy_container_inner {
	position: relative;
	width: 100%;
	height: 100%;
}
#privacy_pane {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -300px 0 0 -40%;
	min-width: 800px;
	width: 80%;
	height: 600px;
	background: #FFF;
		-o-border-radius: 6px;
		-ms-border-radius: 6px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
	border-radius: 6px;
	box-sizing: border-box;
		-o-box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
		-ms-box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 18px rgba(0,0,0,0.2);
	overflow-y: auto;
}
#privacy_pane_inner {
	position: relative;
	padding: 50px;
	height: 600px;
	box-sizing: border-box;
}
#privacy_close {
	position: absolute;
	right: 30px;
	top: 30px;
	margin: -20px -20px 0 0;
	width: 30px;
	height: 30px;
	background: url(../images/common/icon_close.png) no-repeat center center / cover;
	cursor: pointer;
}
#privacy_pane_content {
	width: 100%;
	height: 460px;
	overflow-y: auto;
}
#privacy_pane h3.title {
	margin-right: 0.5em;
	font-size: 1.35em !important;
}
#privacy_pane h2,
#privacy_pane strong {
	margin-top: 1.6em;
	margin-bottom: 0.8em;
	font-weight: 500;
	font-size: 1.15em !important;
}
.field.required h6::before {
    position: absolute;
	top: 5px;
	left: 0;
	content: '';
	width: 5px;
	height: 5px;
	background: #e80e56;
	border-radius: 100px;
	overflow: hidden;
}
.field.depend h6::before {
    position: absolute;
	top: 5px;
	left: 0;
	content: '';
	width: 5px;
	height: 5px;
	background: #b7b5ad;
	border-radius: 100px;
	overflow: hidden;
}
._field.required h6:after {
	content: '必須';
	margin-left: 0.6em;
	padding-left: 0.6em;
	color: #C00;
	font-weight: normal;
	font-size: 0.9em;
	border-left: solid 1px #CCC;
}
._field.optional h6:after {
	content: '任意';
	margin-left: 0.6em;
	padding-left: 0.6em;
	color: #0297CE;
	font-weight: normal;
	font-size: 0.9em;
	border-left: solid 1px #CCC;
}

@media screen and (min-width:480px) and (max-width:599px) {

.form {
	font-size: 21px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="number"],
.form textarea {
	width: 100%;
	-webkit-appearance: none;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="number"],
.form textarea,
.nice-select {
	border: solid 1px #666;
}
.icr-item {
	border: solid 1px #666 !important;
}
	
}