@charset "utf-8";

html {
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
a {
  color: #1f7fe8;
  text-decoration: underline;
}
a:hover {
  color: #579be6;
  text-decoration: none;
}
img {
  width: 100%;
}
html, body, h1, h2, h3, h4, h5, h6, form, input, select {
  font-family: -apple-system, BlinkMacSystemFont, Avenir, "Helvetica Neue", Helvetica,
  Meiryo, "Original Yu Gothic", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
  Verdana, "M+ 1p", sans-serif;
}

input,textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}
body {
  font-size: 14px;
  line-height: 150%;
  background: #f6f6f6;
}
img {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 14px;
  font-weight: normal;
}
h2 {
  font-size: 24px;
  text-align: center;
}
h3 {
  color: #2ba1d8;
  font-size: 16px;
  font-weight: bold;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  background: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 5px;
  border-bottom: 1px solid #ccc;
}
.header .logo {
  width: 150px;
}
.header .logo img {
  display: block;
}
.header .ttl {}

.main {
  padding: 15px 10px;
}

.cta {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 10px auto;
}
.cta .cta_01,
.cta .cta_02 {
  position: relative;
  display: block;
  width: 48%;
  padding: 10px 15px 10px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px 2px #ccc;
  animation-name: hovering;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
.cta .cta_01 span,
.cta .cta_02 span {
  font-size: 18px;
}
.cta .cta_01::after,
.cta .cta_02::after {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -12px;
  transition: 0.3s ease;
  pointer-events: none;
}
.cta .cta_01 {
  background: linear-gradient(to bottom, #00ce1e, #00a718);
}
.cta .cta_02 {
  background: linear-gradient(to bottom, #f9a545, #fd7228);
}

.sample {
  margin-top: 25px;
}
.sample_content {
  margin-top: 15px;
  margin-bottom: 30px;
}
.sample_job {
  margin-bottom: 15px;
  padding: 15px 10px 12px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 3px #ccc;
}
.sample_job_inner {}
.sample_job_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.sample_job_detail_info {}
.sample_job_detail_image {
  flex-shrink: 0;
  width: 125px;
}
.sample_job_detail_info table {
  font-size: 85%;
  line-height: 150%;
}
.sample_job_detail_info table th,
.sample_job_detail_info table td {}
.sample_job_detail_info table th {
  width: 60px;
  padding: 0 3px;
  background: #f0f0f0;
  font-weight: normal;
  text-align: center;
}
.sample_job_detail_info table td {
  padding: 0 2px;
}

.footer {
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #ccc;
  font-size: 90%;
  line-height: 150%;
}

@keyframes hovering {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
