@charset "UTF-8";

/*------------------------------------*\
	Reset
\*------------------------------------*/

/**
 * normalize.css v3.0.3 (Excerpt)
 * https://github.com/necolas/normalize.css
 */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

img {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*------------------------------------*\
	Base
\*------------------------------------*/

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  color: #333;
  font-family: Meiryo, "MS PGothic", sans-serif;
  font-size: 75%;
}

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

p {
  margin: 0 0 1em;
}

ul,
ol {
  padding-left: 20px;
}

dt {
  margin-top: 10px;
  font-weight: bold;
}

dl,
dd {
  margin: 0;
}

label[for] {
  cursor: pointer;
}

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

small {
  font-size: 92%;
}

img {
  vertical-align: middle;
}

a {
  color: #1a65d4;
  text-decoration: underline;
}

a:visited {
  color: #994bb2;
}

a:hover {
  color: #07b7d7;
}

/*------------------------------------*\
	Layout
\*------------------------------------*/

/**
 * Container
 */
.l-container {
  width: 690px;
  margin-right: auto;
  margin-left: auto;
}

.l-header {
  /* height: 75px; */
  background-color: rgba(50, 60, 70, 0.5);
}
.l-header .logo {
  aspect-ratio: 541/79;
}

/**
 * Footer
 */
.l-footer {
  margin-top: 15px;
  padding: 15px 0 20px;
  border-top: 1px solid #cee1ec;
}

.footer-links {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  float: left;
  margin-right: 12px;
  font-size: 10px;
}

.footer-links a {
  padding-left: 13px;
  color: #8998a2;
  text-decoration: none;
  position: relative;
}
.footer-links a::before {
  --size: 6px;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: var(--size);
  height: var(--size);
  border: 1px solid #8998a2;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  float: right;
  margin-top: -3px;
  margin-right: 1px;
  display: flex;
  align-items: center;
}
.copyright > span {
  font-size: 22px;
  margin-top: 3px;
  margin-right: 4px;
}

/**
 * Main
 */
.l-main {
  padding-top: 40px;
}

/*------------------------------------*\
	Components
\*------------------------------------*/

/**
 * Headings
 */
.h1 {
  margin-bottom: 20px;
  padding: 0;
  color: #181042;
  font-size: 190%;
  font-weight: bold;
}

.h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 0 5px 1.2em;
  background: rgb(242, 246, 249);
  border: solid 1px rgb(219, 226, 231);
  color: #140e36;
  font-size: 150%;
  font-weight: bold;
  position: relative;
}

.h2::before {
  --height: 69%;
  content: "";
  position: absolute;
  top: calc((100% - var(--height)) / 2);
  left: 8px;
  border-left: solid 5px rgb(80, 108, 201);
  height: var(--height);
}

/**
 * StepBar
 */
.step-bar {
  position: relative;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  text-align: center;
  width: 100%;
  display: flex;
}
.step-bar .step {
  --height: 36px;
  width: calc(100% / 3);
  position: relative;
  display: inline-block;
  padding: 0 40px 0 20px;
  background-color: #eee;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.2;
  font-size: 1.3rem;
  font-size: 13px;
  height: var(--height);
  line-height: var(--height);
}
.step-bar .step:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-bar .step.current {
  color: #fff;
  background-color: #339794;
}

.step-bar .step:not(:first-child):before,
.step-bar .step:not(:first-child):after {
  position: absolute;
  left: -15px;
  display: block;
  content: "";
  background-color: #eee;
  border-left: 4px solid #fff;
  width: 24px;
  height: calc(var(--height) / 2);
}
.step-bar .step:not(:first-child):before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}
.step-bar .step:not(:first-child):after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}

.step-bar li:nth-child(1) > span:before {
  content: "\2460\5FC5\8981\4E8B\9805\306E\5165\529B";
}
.step-bar li:nth-child(2) > span:before {
  content: "\2461\5165\529B\5185\5BB9\306E\3054\78BA\8A8D";
}
.step-bar li:nth-child(3) > span:before {
  content: "\2462\53D7\4ED8\5B8C\4E86";
}

/**
 * Text
 */
.text-danger {
  color: #ce0000;
}

/**
 * Link arrow
 */
.arrow {
  display: inline-block;
  padding-left: 1.5em;
  background: url(data:image/gif;base64,R0lGODlhCwALAMQAAP///+76/Oz5/Ob3+8Lt9bzr9HrX6XHU6G/U52nS5jrE3im/3Ca+2yS92yG82h672hO42AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAHAP8ALAAAAAALAAsAAAU3IAAMhgIpxiACxAO970MAAgPfTIDAwA0hi1sPFvQNXzYeLqG8JQYN36uhKjh8jsJqcDApDipACAA7)
    no-repeat 2px 0.4em;
}

/**
 * Table
 */
.table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #c5d3dd;
}

.table > tbody > tr > th,
.table > tbody > tr > td {
  padding: 13px 15px;
  border-bottom: 1px solid #c5d3dd;
}

.table > tbody > tr > th {
  background-color: #e5f3fc;
  font-weight: bold;
}

.table > thead th {
  border-right-width: 1px;
  text-align: center;
}

.table > tbody > tr > td {
  border-left: 1px solid #c5d3dd;
}

.table td > p:first-child {
  margin-top: 0;
}

.table th.is-active,
.table td.is-active {
  padding-left: 13px;
  border-left: 1px solid #c5d3dd;
  background-color: #f5f5f5;
}

.th-wrapper {
  display: table;
  width: 100%;
}

.th-item {
  display: table-cell;
  vertical-align: middle;
}

.th-item:first-child {
  width: 100%;
  padding-right: 1em;
}

/**
 * Form
 */
.form-group {
  margin-top: 20px;
}

.table .form-group {
  margin-top: 1em;
}

.table .form-group:first-child {
  margin-top: 0;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.table .form-group > .form-label {
  display: inline;
}

.form-label > small {
  font-weight: normal;
}

.radio,
.checkbox {
  display: inline-block;
  min-height: 20px;
  cursor: pointer;
}

.radio + .radio {
  margin-left: 15px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  position: absolute;
  margin-top: 2px;
  margin-left: -20px;
}

.radio-group {
  display: flex;
  align-items: center;
}

.form-indent {
  min-height: 1em;
  margin: 15px 15px 0 30px;
}

.form-control {
  margin: 0;
  padding: 6px 12px;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #555;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.table .form-group > .form-control:not([name="birthday"]) {
  display: block;
  margin-top: 5px;
}

select.form-control {
  padding-top: 5px;
  padding-bottom: 4px;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control[disabled],
.form-control[readonly] {
  background-color: #eee;
  cursor: not-allowed;
}

.form-hint {
  margin-left: 10px;
}

/**
 * Data list
 */
.dl > dt {
  margin-top: 10px;
}

.dl > dt:first-child {
  margin-top: 0;
}

.dl > dd {
  min-height: 1em;
}

/**
 * Labels
 */
.label {
  display: inline-block;
  padding: 4px 6px;
  background-color: #999;
  font-size: 75%;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 0.25em;
}

.label-require {
  background-color: #d9534f;
}

/**
 * Alerts
 */
.error-bubble:not(:empty) {
  position: absolute;
  right: 10px;
  background-color: #ff6060;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-weight: bold;
  animation: floating-y 1.0s ease-in-out infinite alternate-reverse;
}
.error-bubble:not(:empty)::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: -15px;
  border: 5px solid transparent;
  border-right: 10px solid #ff6060;
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

/**
 * Frame
 */
.frame {
  margin-bottom: 30px;
  padding: 15px;
  border: 3px solid #ddd;
}

label.frame {
  display: block;
  margin-bottom: 0;
  padding-left: 35px;
  cursor: pointer;
}

.frame > *:first-child {
  margin-top: 0;
}

.frame > *:last-child {
  margin-bottom: 0;
}

.frame-alert {
  border: 2px solid #cc0000;
  background: #fff0f0;
}

/**
 * Well
 */
.well {
  padding: 15px;
  background-color: #f0f0f0;
}

/**
 * Pagetop
 */
.pagetop {
  margin-top: 20px;
  font-size: 10px;
  text-align: right;
}

.pagetop a {
  padding-left: 1.7em;
  color: #666;
  text-decoration: none;
  position: relative;
}
.pagetop a::before {
  content: ">";
  position: absolute;
  left: 0px;
  top: -2px;
  transform: rotate(-90deg);
}

.pagetop a:hover {
  text-decoration: underline;
}

/**
 * Shinsa
 */
.shinsa {
  margin-top: 20px;
  text-align: right;
}

.shinsa span {
  display: inline-block;
  padding: 1px 3px;
  border: 1px solid #c4cbd0;
  color: #95a2ab;
  font-size: 10px;
  text-align: center;
}

/**
 * hr
 */
.hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px dotted #ccc;
}

.table .hr {
  margin: 15px 0;
}

/**
 * Indent
 */
.indent-a {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-b {
  padding-left: 2.2em;
  text-indent: -2.2em;
}

.indent-c {
  padding-left: 2.8em;
  text-indent: -2.8em;
}

/**
 * Submit area
 */
.submit {
  margin: 60px 0 40px;
  text-align: center;
}

.submit-confirm {
  position: relative;
  overflow: hidden;
}

.submit-confirm ul {
  position: relative;
  right: 50%;
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.submit-confirm li {
  position: relative;
  right: -50%;
  float: right;
}

/**
 * Buttons
 */
.btn {
  display: inline-block;
  width: 250px;
  height: 60px;
  margin: 0 20px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background-color: rgb(255 140 40);
  color: white;
  font-size: 20px;
  letter-spacing: 4px;
  box-shadow: 0 3px 7px -1px #bbb;
  cursor: pointer;
}

/**
 *
 */
/* ._a,
._al {
  display: block;
}

.inline ._a,
.inline ._al {
  display: inline;
} */

/*------------------------------------*\
	Utility classes
\*------------------------------------*/

/**
 * Clearfix
 */
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/**
 * Image replace
 */
.u-ir {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * For screen readers
 */
.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * Hover
 */
.u-hover:hover {
  opacity: 0.8;
}

/**
 * Margin
 */
.u-m0 {
  margin: 0;
}

.u-mt0 {
  margin-top: 0;
}
.u-mt5 {
  margin-top: 5px;
}
.u-mt10 {
  margin-top: 10px;
}
.u-mt15 {
  margin-top: 15px;
}
.u-mt20 {
  margin-top: 20px;
}
.u-mt25 {
  margin-top: 25px;
}
.u-mt30 {
  margin-top: 30px;
}
.u-mt40 {
  margin-top: 40px;
}

.u-mr0 {
  margin-right: 0;
}
.u-mr5 {
  margin-right: 5px;
}
.u-mr10 {
  margin-right: 10px;
}
.u-mr15 {
  margin-right: 15px;
}
.u-mr20 {
  margin-right: 20px;
}
.u-mr25 {
  margin-right: 25px;
}
.u-mr30 {
  margin-right: 30px;
}
.u-mr40 {
  margin-right: 40px;
}

.u-mb0 {
  margin-bottom: 0;
}
.u-mb5 {
  margin-bottom: 5px;
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mb20 {
  margin-bottom: 20px;
}
.u-mb25 {
  margin-bottom: 25px;
}
.u-mb30 {
  margin-bottom: 30px;
}
.u-mb40 {
  margin-bottom: 40px;
}

.u-ml0 {
  margin-left: 0;
}
.u-ml5 {
  margin-left: 5px;
}
.u-ml10 {
  margin-left: 10px;
}
.u-ml15 {
  margin-left: 15px;
}
.u-ml20 {
  margin-left: 20px;
}
.u-ml25 {
  margin-left: 25px;
}
.u-ml30 {
  margin-left: 30px;
}
.u-ml40 {
  margin-left: 40px;
}

/**
 * Padding
 */
.u-p0 {
  padding: 0;
}

.u-pt0 {
  padding-top: 0;
}
.u-pt5 {
  padding-top: 5px;
}
.u-pt10 {
  padding-top: 10px;
}
.u-pt15 {
  padding-top: 15px;
}
.u-pt20 {
  padding-top: 20px;
}
.u-pt25 {
  padding-top: 25px;
}
.u-pt30 {
  padding-top: 30px;
}
.u-pt40 {
  padding-top: 40px;
}

.u-pb0 {
  padding-bottom: 0;
}
.u-pb5 {
  padding-bottom: 5px;
}
.u-pb10 {
  padding-bottom: 10px;
}
.u-pb15 {
  padding-bottom: 15px;
}
.u-pb20 {
  padding-bottom: 20px;
}
.u-pb25 {
  padding-bottom: 25px;
}
.u-pb30 {
  padding-bottom: 30px;
}
.u-pb40 {
  padding-bottom: 40px;
}

/**
 * Size
 */
.u-w10 {
  width: 10%;
}
.u-w15 {
  width: 15%;
}
.u-w20 {
  width: 20%;
}
.u-w25 {
  width: 25%;
}
.u-w30 {
  width: 30%;
}
.u-w33 {
  width: 33%;
}
.u-w35 {
  width: 35%;
}
.u-w40 {
  width: 40%;
}
.u-w45 {
  width: 45%;
}
.u-w50 {
  width: 50%;
}
.u-w55 {
  width: 55%;
}
.u-w60 {
  width: 60%;
}
.u-w65 {
  width: 65%;
}
.u-w66 {
  width: 66%;
}
.u-w70 {
  width: 70%;
}
.u-w75 {
  width: 75%;
}
.u-w80 {
  width: 80%;
}
.u-w90 {
  width: 90%;
}
.u-w100 {
  width: 100%;
}

/**
 * Misc
 */
.u-posr {
  position: relative;
}
.u-posa {
  position: absolute;
}

.u-dn {
  display: none;
}
.u-db {
  display: block;
}
.u-di {
  display: inline;
}
.u-dib {
  display: inline-block;
}
.u-vh {
  visibility: hidden;
}

.u-fwb {
  font-weight: bold;
}
.u-fwn {
  font-weight: normal;
}

.u-fzs {
  font-size: 91.7%;
}
.u-fzm {
  font-size: 100%;
}
.u-fzl {
  font-size: 116.7%;
}

.u-vat {
  vertical-align: top;
}
.u-vam {
  vertical-align: middle;
}
.u-vab {
  vertical-align: bottom;
}

.u-fln {
  float: none;
}
.u-fll {
  float: left;
}
.u-flr {
  float: right;
}

.u-tac {
  text-align: center;
}
.u-tal {
  text-align: left;
}
.u-tar {
  text-align: right;
}

.u-ca {
  cursor: auto;
}
.u-cp {
  cursor: pointer;
}

/*------------------------------------*\
	Projects
\*------------------------------------*/

.u-cf > .u-fll:first-child {
  margin-right: 20px;
}

@media screen and (max-width: 490px) {
  .p-industry-code {
    font-size: 12px;
  }
}

.p-check-detail {
  margin-top: 10px;
  margin-left: 5px;
  font-size: 11px;
}
[name="birthday"] {
  width: 140px;
  text-align: center;
}

.form-group.flex {
  display: flex;
}

.form-group.radio input + label {
  --size: 20px;
  position: relative;
  padding-left: calc(var(--size) + 7px);
  padding-right: 55px;
  font-size: 13px;
}
.form-group.radio input + label::before {
  content: "";
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 1px solid #999;
}
.form-group.radio input[type="radio"] {
  width: 0;
  height: 0;
  visibility: hidden;
}

.form-group.radio input[type="radio"]:checked + label::after {
  --space: 8px;
  content: "";
  position: absolute;
  border-radius: 50%;
  top: calc(var(--space) / 2);
  left: calc(var(--space) / 2);
  border: calc((var(--size) - var(--space)) / 2) solid cornflowerblue;
}
.form-group.radio input[type="radio"]:not(:first-child) {
  margin-left: 10px;
}

[name="pets"] {
  width: auto;
}
