@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-weight: bold;
}

body {
  font-family: "Noto Sans JP","Noto Sans JP subset", "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0.3px;
  color: #333333;
}

p {
  font-size: 14px;
  font-weight: normal;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

::-webkit-input-placeholder {
  color: #A9A9A9;
}

:-ms-input-placeholder {
  color: #A9A9A9;
}

::-ms-input-placeholder {
  color: #A9A9A9;
}

::placeholder {
  color: #A9A9A9;
}

/*  色の変数 */
.color-main {
  color: #1EB5A3;
  padding-left: 3.5rem;
  margin-bottom: 1.875rem;
  position: relative;
  font-size: 25px;
}

.color-main::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  background-color: #1EB5A3;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* レスポンシブ時の改行 */
.br-ip {
  display: none;
}

.br-pc {
  display: block;
}

/* ヘッダーのCSS*/
header {
  width: 100%;
  height: 5rem;
  background-color: #fff;
  margin: 0;
  position: relative;
  z-index: 99999;
  font-size: 12px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header nav #nav-content {
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);
  /*右に隠しておく*/
}

header nav .logo {
  width: 28rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 3rem;
}

header nav .logo img {
  width: 11rem;
  height: 70%;
  margin-top: -0.2rem;
}

header nav .logo p {
  width: 50%;
  height: 100%;
  padding: 0.4rem;
  line-height: 1rem;
  font-size: 12px;
  font-weight: 500;
  color: #1EB5A3;
}

header nav a {
  font-size: 1rem;
  font-weight: 500;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  height: 5rem;
  text-align: center;
}

header nav ul li {
  width: 15%;
  font-weight: 500;
  margin: 0 -0.1rem;
}

header nav ul li a {
  color: #222222;
  font-size: 12px;
}

header nav ul .form-tab {
  width: 10rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0rem;
  line-height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 1.2rem;
  background-color: #E994C7;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-radius: 5px;
  position: relative;
}

header nav ul .form-tab:hover {
  -webkit-filter: opacity(70%);
          filter: opacity(70%);
  cursor: pointer;
}

header nav ul .form-tab p {
  color: white;
  font-size: 12px;
  margin-left: -1rem;
  margin-top: 0;
}

header nav ul .form-tab img {
  width: 1.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

header nav #nav-drawer {
  display: none;
}

/* ファーストビュー */
main {
  display: block;
  width: 100%;
  height: 45rem;
}

main .main-background {
  width: 100%;
  height: auto;
  text-align: center;
}

main .main-background .main-background-pc {
  display: block;
  width: 100%;
  height: 45rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 5rem;
  position: absolute;
  top: 0;
  z-index: 1;
}

main .main-background .main-background-ip {
  display: none;
}

main .main-container {
  width: 88%;
  height: 45rem;
  margin: 0 auto;
  position: relative;
}

main .main-container .medal-pc {
  display: block;
  width: 10rem;
  height: auto;
  padding-top: 2rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

main .main-container .medal-ip {
  display: none;
}

main .main-container .main-title {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  position: relative;
  z-index: 3;
  margin-top: -5rem;
}

main .main-container .main-title h2 {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  padding-left: 1rem;
}

main .main-container .main-title h2 span {
  display: inline-block;
}

main .main-container .main-title h1 {
  font-size: 4.1rem;
  font-weight: 700;
  color: white;
}

main .main-container .main-title h1 .small {
  font-size: 3.5rem;
}

main .main-container .main-title h1 .ip-del {
  display: inline-block;
}

main .main-container .br-title {
  display: none;
}

main .main-container .woman-ip {
  display: none;
}

main .main-container .woman-pc {
  display: block;
  width: 100%;
  height: 45rem;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

main .main-container .woman-pc .woman-pc-img {
  width: 45%;
  min-width: 28rem;
  max-width: 36rem;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -4%;
}

main .main-container .main-btn {
  width: 38rem;
  height: auto;
  position: absolute;
  top: 33rem;
  z-index: 3;
  background-color: white;
  border-radius: 10px;
}

main .main-container .main-btn .flex {
  width: 100%;
  height: auto;
}

main .main-container .main-btn .flex:hover {
  -webkit-filter: opacity(70%);
          filter: opacity(70%);
  cursor: pointer;
}

main .main-container .main-btn .flex .btn-img-pc {
  display: block;
  width: 100%;
  height: auto;
}

main .main-container .main-btn .flex .btn-img-ip {
  display: none;
}

/* 詳細部 */
.detail {
  width: 100%;
  height: 16.25rem;
  background-color: #fafafa;
}

.detail .detail-container {
  width: 85%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 3rem;
}

.detail .detail-container h3 {
  font-weight: bold;
}

.detail .detail-container .detail-items {
  width: 60%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 3rem;
  margin: 0 auto;
}

.detail .detail-container .detail-items .detail-item p {
  font-weight: bold;
  font-size: 1rem;
}

.detail .detail-container .detail-items .detail-item .detail-text {
  font-size: 2rem;
  padding-top: 1.5rem;
}

.detail .detail-container .detail-items .detail-item .detail-text span {
  color: #1EB5A3;
}

/* 強み */
.service {
  width: 100%;
  height: 56.25rem;
  margin: 0 auto;
}

.service .service-strength {
  width: 100%;
  height: 50rem;
  margin: 0 auto;
  padding-top: 6.25rem;
}

.service .service-strength .strength-header {
  width: 80%;
  margin: 0 auto;
}

.service .service-strength .strength-contents {
  width: 48rem;
  margin: 0 auto;
  padding-top: 2.185rem;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service .service-strength .strength-contents .strength-content {
  width: 100%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3.125rem;
}

.service .service-strength .strength-contents .strength-content p {
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
}

.service .service-strength .strength-contents .strength-content p .br-ip {
  display: none;
}

.service .service-strength .strength-contents .strength-content span {
  font-size: 2.5rem;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(50%, #8FDAD1));
  background: linear-gradient(transparent 70%, #8FDAD1 50%);
}

.service .service-strength .strength-contents .strength-content img {
  width: 3.8rem;
  height: 3.8rem;
  margin-right: 4rem;
}

/* 求人情報 */
.matter {
  width: 100%;
  height: auto;
  padding-top: 4.7rem;
  padding-bottom: 5rem;
}

.matter .matter-header {
  width: 80%;
  margin: 0 auto;
}

.matter .matter-header h2 {
  padding-bottom: 1.875rem;
}

.matter .matter-contents {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-top: 4.625rem;
  position: relative;
  /* 矢印の画像変更 */
}

.matter .matter-contents .slick-prev:before, .matter .matter-contents .slick-next:before {
  display: block;
  font-size: 2rem;
}

.matter .matter-contents .slick-dots {
  display: block;
  margin-bottom: -2rem;
}

.matter .matter-contents .slick-dots li {
  margin: 20px 10px 0 10px;
}

.matter .matter-contents .slick-dots li button:before {
  font-size: 1rem;
  color: #616161;
}

.matter .matter-contents .slick-slide {
  margin: 0 0.4%;
}

.matter .matter-contents .slick-prev:before {
  content: "" !important;
}

.matter .matter-contents .slick-prev:after {
  content: url(../IMAGE/arrow1.png);
  position: absolute;
  top: 2rem;
  right: 0.5rem;
}

.matter .matter-contents .slick-next:before {
  content: "" !important;
}

.matter .matter-contents .slick-next:after {
  content: url(../IMAGE/arrow2.png);
  position: absolute;
  top: 2rem;
}

.matter .matter-contents .matter-content {
  width: 40%;
  height: 29.81rem;
  margin: 0 auto;
}

.matter .matter-contents .matter-content img {
  width: 100%;
  height: 21.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.matter .matter-contents .matter-content .matter-text {
  width: 100%;
  margin: 0 auto;
  padding-top: 0.5rem;
  color: #4F4F4F;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.9rem;
  letter-spacing: 0.3px;
}

.matter .matter-contents .matter-content .matter-points {
  padding-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.matter .matter-contents .matter-content .matter-points .matter-point {
  margin-right: 1rem;
  height: 2.3rem;
  background-color: #F9F9F9;
  text-align: center;
  padding: 0.3rem 0.75rem;
}

.matter .matter-contents .matter-content .matter-points .matter-point p {
  font-size: 0.875rem;
  color: #1EB5A3;
  display: inline-block;
}

.matter .matter-contents .matter-content .matter-text-0 {
  margin: 0;
  padding: 0;
}

/* value */
.value {
  width: 100%;
  height: auto;
  background-color: #FAFAFA;
  padding-bottom: 9rem;
}

.value .value-container {
  width: 80%;
  margin: 0 auto;
  padding-top: 6.25rem;
}

.value .value-container .value-header {
  width: 100%;
  margin: 0 auto;
}

.value .value-container .value-header h2 {
  padding-bottom: 1.875rem;
}

.value .value-container .value-items {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7.125rem;
  line-height: 2rem;
}

.value .value-container .value-items .value-item {
  width: 28%;
  text-align: center;
}

.value .value-container .value-items .value-item img {
  margin: 0 auto;
  width: 5rem;
  height: auto;
}

.value .value-container .value-items .value-item .item-header {
  color: #1EB5A3;
  margin-bottom: 2.25rem;
  font-weight: bold;
  font-size: 1rem;
}

.value .value-container .value-items .value-item .item-text {
  text-align: left;
  font-size: 1rem;
}

/* 転職の流れ */
.flow {
  width: 100%;
  height: auto;
  padding-bottom: 6rem;
}

.flow .flow-header {
  width: 80%;
  margin: 0 auto;
  padding-top: 3.8rem;
  margin-bottom: 6.5rem;
}

.flow .flow-header h2 {
  padding-bottom: 2.5rem;
}

.flow .flow-contents {
  width: 80%;
  height: auto;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flow .flow-contents .flow-content {
  width: 28%;
  height: auto;
  margin-bottom: 5rem;
}

.flow .flow-contents .flow-content .flow-text h3 {
  margin-bottom: 1.25rem;
}

.flow .flow-contents .flow-content .flow-text h3 span {
  color: #1EB5A3;
}

.flow .flow-contents .flow-content .flow-text p {
  line-height: 2rem;
  font-size: 1rem;
}

.flow .banner {
  width: 90%;
  height: 23.4rem;
  background-image: url(../IMAGE/banner.png);
  background-size: cover;
  background-position: top center;
  margin: 0 auto;
}

.flow .banner a {
  width: 100%;
  height: 100%;
}

.flow .banner a .banner-text {
  width: 80%;
  margin: 0 auto;
  color: white;
  padding-top: 60px;
}

.flow .banner a .banner-text h2 {
  font-size: 3.75rem;
  font-weight: bold;
  color: #1EB5A3;
  margin-top: -1rem;
  letter-spacing: 0;
}

.flow .banner a .banner-text h2 .space_-2px {
  letter-spacing: -0.125rem;
}

.flow .banner a .banner-text h2 .space_-7px {
  letter-spacing: -0.49rem;
}

.flow .banner a .banner-text h2 .space_-4px {
  letter-spacing: -0.25rem;
}

.flow .banner a .banner-text h2 .space_-6px {
  letter-spacing: -0.375rem;
}

.flow .banner a .banner-text h2 .space_-10px {
  letter-spacing: -0.625rem;
}

.flow .banner a .banner-text p {
  padding-top: 21px;
  padding-bottom: 2rem;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.flow .banner a .banner-text .banner-box {
  display: block;
  color: white;
  background-color: #E994C7;
  width: 20rem;
  height: 60px;
  border: 1px solid white;
  border-radius: 10px;
}

.flow .banner a .banner-text .banner-box:hover {
  -webkit-filter: opacity(70%);
          filter: opacity(70%);
  cursor: pointer;
}

.flow .banner a .banner-text .banner-box img {
  width: 30px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 1rem;
  margin-left: 2.4rem;
}

.flow .banner a .banner-text .banner-box p {
  color: #fff;
  margin-top: -3.4rem;
  margin-left: 6rem;
  font-size: 1rem;
}

/* 選ばれる理由 */
.reason {
  width: 100%;
  height: auto;
  background-color: #f9f9f9;
  padding-top: 4.7rem;
  padding-bottom: 3rem;
}

.reason .reason-header {
  width: 80%;
  height: 10rem;
  margin: 0 auto;
  margin-bottom: 3.125rem;
}

.reason .reason-container {
  width: 92%;
  height: auto;
}

.reason .reason-container .reason-content {
  width: 100%;
  height: auto;
  background-color: white;
  margin-bottom: 3.125rem;
  position: relative;
}

.reason .reason-container .reason-content .header1 {
  font-size: 5rem;
  font-weight: 500;
  position: absolute;
  top: -4%;
  right: 5%;
  color: #8FDAD1;
  z-index: 999;
}

.reason .reason-container .reason-content .header2 {
  font-size: 5rem;
  font-weight: 500;
  position: absolute;
  top: -2%;
  left: 5%;
  color: #8FDAD1;
  z-index: 999;
}

.reason .reason-container .reason-content .header3 {
  font-size: 5rem;
  font-weight: 500;
  position: absolute;
  top: -2%;
  right: 8%;
  color: #8FDAD1;
  z-index: 999;
}

.reason .reason-container .reason-content .content-container {
  width: 76%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 50px;
  margin: 0 auto;
}

.reason .reason-container .reason-content .content-container .reason-text1 {
  width: 42%;
  margin-bottom: 4rem;
}

.reason .reason-container .reason-content .content-container .reason-text1 h3 {
  color: #1EB5A3;
  font-weight: medium;
  margin-top: 7rem;
  margin-bottom: 4rem;
  line-height: 50px;
  position: relative;
  white-space: nowrap;
}

.reason .reason-container .reason-content .content-container .reason-text1 h3::after {
  content: "";
  display: block;
  width: 6.7rem;
  height: 0.8px;
  background-color: #1EB5A3;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.reason .reason-container .reason-content .content-container .reason-text1 p {
  font-size: 1rem;
  line-height: 2rem;
}

.reason .reason-container .reason-content .content-container .reason-text2 {
  width: 48%;
  margin-left: 15%;
  margin-bottom: 3rem;
}

.reason .reason-container .reason-content .content-container .reason-text2 h3 {
  color: #1EB5A3;
  font-weight: medium;
  margin-bottom: 4rem;
  margin-top: 3rem;
  line-height: 50px;
  position: relative;
  white-space: nowrap;
}

.reason .reason-container .reason-content .content-container .reason-text2 h3::after {
  content: "";
  display: block;
  width: 6.7rem;
  height: 0.8px;
  background-color: #1EB5A3;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.reason .reason-container .reason-content .content-container .reason-text2 p {
  font-size: 1rem;
  line-height: 2rem;
}

.reason .reason-container .reason-content .content-container .reason-text3 {
  width: 42%;
  margin-bottom: 3rem;
}

.reason .reason-container .reason-content .content-container .reason-text3 h3 {
  color: #1EB5A3;
  font-weight: medium;
  margin-top: 3rem;
  margin-bottom: 4rem;
  line-height: 50px;
  position: relative;
  white-space: nowrap;
}

.reason .reason-container .reason-content .content-container .reason-text3 h3::after {
  content: "";
  display: block;
  width: 6.7rem;
  height: 0.8px;
  background-color: #1EB5A3;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.reason .reason-container .reason-content .content-container .reason-text3 p {
  font-size: 1rem;
  line-height: 2rem;
}

.reason .reason-container .reason-content .content-container .img-size1 {
  width: 35%;
  height: 24rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-right: 6%;
}

.reason .reason-container .reason-content .content-container .img-size2 {
  width: 37%;
  height: 24rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-left: 5%;
  margin-top: 1rem;
}

.reason .reason-container .reason-content .content-container .img-size3 {
  width: 34%;
  height: 24rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-right: 4%;
}

.reason .reason-container .reason-content .content-container .img-size1-ip {
  display: none;
}

.reason .reason-container .reason-content .content-container .img-size2-ip {
  display: none;
}

.reason .reason-container .reason-content .content-container .img-size3-ip {
  display: none;
}

/* 他社比較 */
.comparison {
  width: 100%;
  height: 56.25rem;
}

.comparison .comparison-header {
  width: 80%;
  height: 10rem;
  margin: 0 auto;
  padding-top: 3.8rem;
  margin-bottom: 6.5rem;
}

.comparison .comparison-header h2 {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.comparison .table-box {
  width: 80%;
  margin: 0 auto;
  overflow-y: hidden;
  overflow-x: scroll;
}

.comparison .table-box .compotision-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 6.9rem;
  min-width: 60rem;
}

.comparison .table-box .compotision-table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.comparison .table-box .compotision-table tbody .top > td {
  border-top: none;
}

.comparison .table-box .compotision-table tbody .last-row > .second {
  border-bottom-color: #1EB5A3;
  border-bottom-width: 2px;
}

.comparison .table-box .compotision-table tbody tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.comparison .table-box .compotision-table tbody tr th, .comparison .table-box .compotision-table tbody tr td {
  border: 1px solid #CCCCCC;
  font-size: 1rem;
  font-weight: normal;
  width: 12rem;
  height: 5rem;
  color: #000;
  text-align: center;
}

.comparison .table-box .compotision-table tbody tr .first {
  border-left: none;
}

.comparison .table-box .compotision-table tbody tr .last {
  border-right: none;
}

.comparison .table-box .compotision-table tbody tr th.second {
  background-color: #1EB5A3;
  color: #fff;
  font-weight: bold;
  border-right-color: #1EB5A3;
  border-right-width: 2px;
  border-left-color: #1EB5A3;
  border-left-width: 2px;
}

.comparison .table-box .compotision-table tbody tr td.second {
  position: relative;
  color: #1EB5A3;
  font-weight: bold;
  border-right-color: #1EB5A3;
  border-right-width: 2px;
  border-left-color: #1EB5A3;
  border-left-width: 2px;
}

.comparison .table-box .compotision-table tbody .head > th {
  border-top: none;
  border-bottom: none;
  background-color: #EEEEEE;
  color: #000;
}

/* 利用者の声 */
.user {
  width: 100%;
  height: auto;
  padding-top: 4.7rem;
  padding-bottom: 2rem;
}

.user .user-header {
  width: 80%;
  height: 10rem;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.user .user-contents {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.user .user-contents .user-content {
  width: 31.5%;
  height: auto;
  padding-bottom: 3rem;
  background-color: #f9f9f9;
}

.user .user-contents .user-content .user-headline {
  color: #1EB5A3;
  padding: 1.8rem 0;
}

.user .user-contents .user-content .user-headline p {
  font-size: 0.75rem;
  padding-left: 1.56rem;
  color: #1EB5A3;
  letter-spacing: 0.3px;
}

.user .user-contents .user-content img {
  width: 100%;
  height: 10.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.user .user-contents .user-content h4 {
  font-size: 1rem;
  padding: 0 1.56rem;
  color: #4F4F4F;
  padding-bottom: 2rem;
  line-height: 1.56rem;
  letter-spacing: 0.3px;
}

.user .user-contents .user-content p {
  font-size: 0.75rem;
  line-height: 1.38rem;
  letter-spacing: 0.3px;
  color: #4F4F4F;
  padding: 0 1.56rem;
}

/* お問い合わせ */
.form {
  width: 100%;
  height: auto;
  padding-bottom: 4rem;
}

.form .form-header {
  width: 80%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.form .form-header h2 {
  padding-bottom: 1.875rem;
}

.form .form-contents {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
}

.form .form-contents .form-input {
  margin: 0 auto;
  width: 60%;
}

.form .form-contents .form-input label {
  font-size: 1.1rem;
  font-weight: 500;
}

.form .form-contents .form-input .required {
  margin-left: 1.6rem;
  color: #B5272D;
  font-size: 1rem;
  border: 1px solid #B5272D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1.25rem;
  padding: 0.25rem 1rem;
}

.form .form-contents .form-input input {
  width: 80%;
  height: 2.5rem;
  padding-left: 1.1rem;
  border-radius: 0.25rem;
  background: #F3F3F3;
  border: none;
  margin-top: 0.6rem;
  color: #222222;
  font-size: 1rem;
}

.form .form-contents .form-input span.wpcf7-not-valid-tip {
  display: block;
  position: static;
  top: 0;
  left: 0;
  border: none;
}

.form .form-contents .form-input p {
  margin-bottom: 1.25rem;
}

.form .form-contents .form-text {
  margin: 0 auto;
  width: 60%;
}

.form .form-contents .form-text h3 {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 1.25rem;
}

.form .form-contents .form-text p {
  padding-bottom: 3.1rem;
}

.form .form-contents .form-text p label {
  margin-left: 2%;
}

.form .form-contents .form-text p label br {
  display: block;
  content: "";
  margin: 0;
}

.form .form-contents .form-text p .wpcf7-list-item {
  display: contents;
}

.form .form-contents .form-text input {
  margin: 0 1rem;
  margin-bottom: 1rem;
}

.form .form-contents .form-text .wpcf7-not-valid-tip {
  margin-left: 1rem;
}

/* 確認ボタン */
center {
  position: relative;
}

center .wpcf7-form-control {
  -webkit-appearance: none;
  display: block;
  margin-top: 4rem;
  margin-bottom: 3rem;
  background-color: #E994C7;
  border-radius: 0.6rem;
  border: none;
  width: 25rem;
  height: 4.4rem;
  color: #fff;
  font-size: 1.5rem;
  outline: none;
}

center .wpcf7-form-control:hover {
  -webkit-filter: opacity(70%);
          filter: opacity(70%);
  cursor: pointer;
}

/* 送信ボタンは非表示（ポップアップで表示） */
.wpcf7-submit {
  display: none;
}

.wpcf7-response-output {
  display: none !important;
}

/* よくある質問 */
.question {
  width: 100%;
  height: auto;
  padding-bottom: 6rem;
}

.question .question-header {
  width: 80%;
  height: 10rem;
  margin: 0 auto;
  padding-top: 3.8rem;
}

.question .question-contents {
  width: 50%;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.question .question-contents .question-content {
  border-bottom: 1px solid #A9A9A9;
  color: #4F4F4F;
  padding: 5rem 0 1.5rem 0;
  line-height: 2.5rem;
}

.question .question-contents .question-content .anser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2.5rem;
}

.question .question-contents .question-content .anser .icon-blue {
  color: #1EB5A3;
  border: solid 1px #1EB5A3;
  text-align: center;
  border-radius: 8px;
  padding-top: 0.2rem;
}

.question .question-contents .question-content .anser .icon-normal {
  border: solid 1px #222222;
  text-align: center;
  border-radius: 8px;
  padding-top: 3px;
}

.question .question-contents .question-content .anser h3 {
  width: 3.1rem;
  height: 3.1rem;
  font-size: 1.56rem;
}

.question .question-contents .question-content .anser h4 {
  font-size: 1.5rem;
  width: 100%;
  font-weight: normal;
  padding-left: 1.6rem;
}

.question .question-contents .question-content .anser p {
  width: 100%;
  padding-left: 1.6rem;
}

/* フッター */
footer {
  width: 100%;
  height: 12.5rem;
  background-color: #1EB5A3;
  color: white;
  padding-bottom: 2rem;
}

footer .footer-contents {
  width: 80%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-contents .footer-content-right {
  display: none;
  width: 17.5rem;
  height: 4.68rem;
  border: 1px solid white;
  text-align: center;
  padding-top: 1.5rem;
  border-radius: 5px;
}

footer .footer-contents .footer-content-right a {
  color: white;
  font-weight: normal;
}

footer .footer-text {
  text-align: center;
  background-color: #1EB5A3;
}
/*# sourceMappingURL=style.css.map */